1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
// Copyright 2023 Brian Cook (a.k.a. Coding-Badly)
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use ;
use size_of;
use OsStringExt;
use PathBuf;
use ;
use ;
use ;
use UNLEN;
use crate;
use crateALIGNMENT;
use crate;
use crateWindowsString;
use crate::;
const BETTER_MAX_PATH: usize = MAX_PATH as usize;
/// Size of [`WCHAR`][wc] / [`u16`] (two bytes) cast as a [`u32`].
///
/// The value is cast to [`u32`] to make it more convenient when working with buffer capacities.
///
/// [gc]: https://crates.io/crates/grob
/// [wc]: https://learn.microsoft.com/en-us/windows/win32/extensible-storage-engine/wchar
///
pub const SIZE_OF_WCHAR: u32 = as u32;
/// A good starting buffer capacity, in bytes, for Windows API calls that return the name of something.
///
/// The value is based on [`UNLEN`]. According to the Windows API documentation this value works
/// as-is for some operating system calls like [`GetUserNameW`][1].
///
/// [`winapi_string`][2] uses this value for the initial stack buffer capacity.
///
/// [1]: https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getusernamew
/// [2]: crate::generic::winapi_string
///
pub const CAPACITY_FOR_NAMES: usize = + ALIGNMENT;
/// A good starting buffer capacity, in bytes, for Windows API calls that return a file system path.
///
/// The value is based on [`MAX_PATH`]. Windows has support for arbitrarily long paths so this
/// value is only useful as a starting buffer capacity. [`GetModuleFileNameW`][4] is an example API
/// call where this value is useful.
///
/// [`winapi_path_buf`][3] uses this value for the initial stack buffer capacity.
///
/// [3]: crate::generic::winapi_path_buf
/// [4]: https://learn.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-getmodulefilenamew
///
pub const CAPACITY_FOR_PATHS: usize =
+ ALIGNMENT;
/// Wrapper for the return value from a Windows API call that returns an error code.
///
/// The primary purpose of [`RvIsError`] is to convert a [`BOOL`] or [`u32`] (ULONG) Windows API
/// return value into a [`FillBufferResult`]. The [`FillBufferResult`] is either
/// Ok([`FillBufferAction`]) or an operating system error (Err([`std::io::Error`])) that is not
/// handled by the [grob crate][gc].
///
/// # Examples
///
/// [`GetAdaptersAddresses`][1] is a good example for [`RvIsError`]. A complete example is
/// available on [GitHub][2].
///
/// ``` ignore
/// // Make the API call indicating what the return value means
/// let rv = RvIsError::new(unsafe {
/// GetAdaptersAddresses(
/// AF_UNSPEC.0 as u32,
/// GET_ADAPTERS_ADDRESSES_FLAGS(0),
/// None,
/// Some(argument.pointer()),
/// argument.size(),
/// )
/// });
///
/// // Convert the return value to an action
/// let fill_buffer_action = rv.to_result(&mut argument)?;
/// ```
///
/// [`GetLogicalProcessorInformationEx`][3] is also a good example for [`RvIsError`]. A complete
/// example is available on [GitHub][4].
///
/// [gc]: https://crates.io/crates/grob
/// [1]: https://microsoft.github.io/windows-docs-rs/doc/windows/Win32/NetworkManagement/IpHelper/fn.GetAdaptersAddresses.html
/// [2]: https://github.com/Coding-Badly/grob/blob/main/grob/examples/adapters-addresses-full.rs
/// [3]: https://microsoft.github.io/windows-docs-rs/doc/windows/Win32/System/SystemInformation/fn.GetLogicalProcessorInformationEx.html
/// [4]: https://github.com/Coding-Badly/grob/blob/main/grob/examples/processor-full.rs
///
;
/// Wrapper for the return value from a Windows API call that returns the number of elements stored
///
/// The primary purpose of [`RvIsSize`] is to convert the number of elements stored and the value
/// returned from [`GetLastError`] into a [`FillBufferResult`]. The [`FillBufferResult`] is either
/// Ok([`FillBufferAction`]) or an operating system error (Err([`std::io::Error`])) that is not
/// handled by the [grob crate][gc].
///
/// # Examples
///
/// [`GetModuleFileNameW`][1] is a good example for [`RvIsSize`]. A complete example is
/// available on [GitHub][2].
///
/// ``` ignore
/// let mut argument = growable_buffer.argument();
/// let rv = unsafe { GetModuleFileNameW(HMODULE(0), argument.as_mut_slice()) };
/// let rv: RvIsSize = rv.into();
/// let result = rv.to_result(&mut argument);
/// match result? {
/// FillBufferAction::Commit => {
/// argument.commit();
/// break;
/// }
/// FillBufferAction::Grow => {
/// argument.grow();
/// }
/// FillBufferAction::NoData => {
/// argument.commit_no_data();
/// break;
/// }
/// }
/// ```
///
/// [`GetSystemWindowsDirectoryW`][3] is also a good example for [`RvIsError`]. A complete example
/// is available on [GitHub][4].
///
/// [gc]: https://crates.io/crates/grob
/// [1]: https://microsoft.github.io/windows-docs-rs/doc/windows/Win32/System/LibraryLoader/fn.GetModuleFileNameW.html
/// [2]: https://github.com/Coding-Badly/grob/blob/main/grob/examples/module-filename-full.rs
/// [3]: https://microsoft.github.io/windows-docs-rs/doc/windows/Win32/System/SystemInformation/fn.GetSystemWindowsDirectoryW.html
/// [4]: https://github.com/Coding-Badly/grob/blob/main/grob/examples/version-info-generic.rs
///
;
/// Windows (UTF-16) string placed on the stack when possible to improve performance sized for
/// paths.
///
/// [`WindowsPathString`] provides a convenient fast way to convert from a Rust UTF-8 string to a
/// Windows API UTF-16 NUL terminated string. It's typically used for path parameters when calling
/// Windows API functions like [`ReplaceFileW`][rf].
///
/// # Examples
///
/// This example creates a file using functions from the Rust Standard Library then deletes that
/// file using the Windows API [`DeleteFileW`][df] function.
///
/// ```
/// # #[cfg(not(miri))]
/// # mod miri_skip {
/// #
/// use std::fs::{canonicalize, File};
/// use std::io::Write;
///
/// use windows::Win32::{Foundation::TRUE, Storage::FileSystem::DeleteFileW};
///
/// use grob::{AsPCWSTR, WindowsPathString};
///
/// fn main() -> Result<(), Box<dyn std::error::Error>> {
/// let working_dir = canonicalize(".")?;
/// let target_path = working_dir.join("delete-me.tmp");
///
/// let mut output = File::create(&target_path)?;
/// write!(output, "Please delete this file.")?;
/// drop(output);
///
/// let rv = unsafe { DeleteFileW(WindowsPathString::new(&target_path)?.as_param()) };
/// if rv == TRUE {
/// println!("{} successfully deleted.", target_path.display());
/// } else {
/// let loe = std::io::Error::last_os_error();
/// println!("DeleteFileW failed. The error is...\n {:?}.", loe);
/// }
///
/// Ok(())
/// }
/// # }
/// ```
///
/// [rf]: https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-replacefilew
/// [df]: https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-deletefilew
///