perforce-cli 0.1.0-alpha.2

A type-safe builder library for spawning Perforce (p4) commands, with compile-time option state isolation and multi-version support.
Documentation
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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
use std::{
    ffi::OsStr,
    path::PathBuf,
    process::{Child, Stdio},
};

use super::SubCommand;

use crate::{global::GlobalOpts, spawn::ParameterizedSpawn};

/// `p4 [g-opts] add [-c changelist] [-d -f -I -n] [-t filetype] file ...`
///
/// Open files in a client workspace for addition to the depot.
#[derive(Debug, Clone, Default)]
pub struct Add {
    bin: PathBuf,

    global_opts: GlobalOpts,

    change_list: Option<String>,

    downgrade: bool,

    force_literal_filenames: bool,

    skip_ignore: bool,

    preview: bool,

    filetype: Option<String>,
}

impl SubCommand for Add {
    fn name(&self) -> &str {
        "add"
    }

    fn inject_local_args(&self, command: &mut std::process::Command) {
        if let Some(change_list) = self.change_list.as_ref() {
            command.arg("-c").arg(change_list);
        }
        if self.downgrade {
            command.arg("-d");
        }
        if self.force_literal_filenames {
            command.arg("-f");
        }
        if self.skip_ignore {
            command.arg("-I");
        }
        if self.preview {
            command.arg("-n");
        }
        if let Some(filetype) = self.filetype.as_ref() {
            command.arg("-t").arg(filetype);
        }
    }

    fn global_opts(&self) -> Option<&GlobalOpts> {
        Some(&self.global_opts)
    }
}

impl ParameterizedSpawn for Add {
    type Input<'a> = &'a [&'a OsStr];
    type Output<'a> = Child;
    type Error = std::io::Error;

    /// Spawns `p4 add` for the given files as a child process.
    ///
    /// The child process inherits the standard input, output, and error
    /// streams of the current process, and runs asynchronously; use the
    /// returned [`Child`] handle to wait for it or interact with it.
    fn spawn_with<'a>(&mut self, input: Self::Input<'a>) -> Result<Self::Output<'a>, Self::Error> {
        self.setup_command(&self.bin)
            .args(input)
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
    }
}

impl Add {
    /// Open files in a client workspace for addition to the depot.
    ///
    /// `bin` is the path to the Perforce command-line executable.
    pub fn new(bin: impl Into<PathBuf>, global_opts: GlobalOpts) -> Self {
        Self {
            bin: bin.into(),
            global_opts,
            ..Default::default()
        }
    }

    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn get_global_opts(&self) -> &GlobalOpts {
        &self.global_opts
    }

    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn set_global_opts(&mut self, v: GlobalOpts) -> &mut Self {
        self.global_opts = v;
        self
    }

    /// # Description
    ///
    /// g-opts
    ///
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "See the [Global Options](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "See the [“Global Options”](GlobalOpts) section."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See [“Global Options”](GlobalOpts)."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "See [Global Options](GlobalOpts)."
    )]
    #[cfg_attr(not(feature = "lt2018_2"), doc = "See [Global options](GlobalOpts).")]
    pub fn global_opts(mut self, v: GlobalOpts) -> Self {
        self.global_opts = v;
        self
    }

    /// # Description
    ///
    /// -c changelist
    ///
    /// Opens the files for add within the specified changelist. If this
    #[cfg_attr(feature = "lt2014_2", doc = "flag is")]
    #[cfg_attr(not(feature = "lt2014_2"), doc = "option is")]
    /// not used, the files are linked to the default changelist.
    pub fn get_change_list(&self) -> Option<&String> {
        self.change_list.as_ref()
    }

    /// # Description
    ///
    /// -c changelist
    ///
    /// Opens the files for add within the specified changelist. If this
    #[cfg_attr(feature = "lt2014_2", doc = "flag is")]
    #[cfg_attr(not(feature = "lt2014_2"), doc = "option is")]
    /// not used, the files are linked to the default changelist.
    pub fn set_change_list(&mut self, v: impl Into<String>) -> &mut Self {
        self.change_list = Some(v.into());
        self
    }

    /// # Description
    ///
    /// -c changelist
    ///
    /// Opens the files for add within the specified changelist. If this
    #[cfg_attr(feature = "lt2014_2", doc = "flag is")]
    #[cfg_attr(not(feature = "lt2014_2"), doc = "option is")]
    /// not used, the files are linked to the default changelist.
    pub fn change_list(mut self, v: impl Into<String>) -> Self {
        self.change_list = Some(v.into());
        self
    }

    /// # Description
    ///
    /// -d
    ///
    /// Downgrade file open status to simple add.
    pub fn get_downgrade(&self) -> bool {
        self.downgrade
    }
    /// # Description
    ///
    /// -d
    ///
    /// Downgrade file open status to simple add.
    pub fn set_downgrade(&mut self, v: bool) -> &mut Self {
        self.downgrade = v;
        self
    }
    /// # Description
    ///
    /// -d
    ///
    /// Downgrade file open status to simple add.
    pub fn downgrade(mut self, v: bool) -> Self {
        self.downgrade = v;
        self
    }

    /// # Description
    ///
    /// -f
    ///
    /// Use the -f
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "flag to force inclusion of wildcards in filenames. See the",
        doc = "File Specifications chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "option to force inclusion of wildcards in filenames. See the",
        doc = "“File Specifications” chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "option to force inclusion of wildcards in filenames. See",
        doc = "“File Specifications” for details."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "Specifications for details."
    )]
    #[cfg_attr(
        all(feature = "lt2025_1", not(feature = "lt2018_2")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details."
    )]
    #[cfg_attr(
        not(feature = "lt2025_1"),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details.",
        doc = "",
        doc = "Filenames that contain the special characters '@', '#', '%', or '*' are",
        doc = "reformatted to encode the characters using ASCII hexadecimal",
        doc = "representation. After the files are added, refer to them using the",
        doc = "reformatted file name instead of the local file system name."
    )]
    pub fn get_force_literal_filenames(&self) -> bool {
        self.force_literal_filenames
    }

    /// # Description
    ///
    /// -f
    ///
    /// Use the -f
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "flag to force inclusion of wildcards in filenames. See the",
        doc = "File Specifications chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "option to force inclusion of wildcards in filenames. See the",
        doc = "“File Specifications” chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "option to force inclusion of wildcards in filenames. See",
        doc = "“File Specifications” for details."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "Specifications for details."
    )]
    #[cfg_attr(
        all(feature = "lt2025_1", not(feature = "lt2018_2")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details."
    )]
    #[cfg_attr(
        not(feature = "lt2025_1"),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details.",
        doc = "",
        doc = "Filenames that contain the special characters '@', '#', '%', or '*' are",
        doc = "reformatted to encode the characters using ASCII hexadecimal",
        doc = "representation. After the files are added, refer to them using the",
        doc = "reformatted file name instead of the local file system name."
    )]
    pub fn set_force_literal_filenames(&mut self, v: bool) -> &mut Self {
        self.force_literal_filenames = v;
        self
    }

    /// # Description
    ///
    /// -f
    ///
    /// Use the -f
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "flag to force inclusion of wildcards in filenames. See the",
        doc = "File Specifications chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "option to force inclusion of wildcards in filenames. See the",
        doc = "“File Specifications” chapter for details."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "option to force inclusion of wildcards in filenames. See",
        doc = "“File Specifications” for details."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_1")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "Specifications for details."
    )]
    #[cfg_attr(
        all(feature = "lt2025_1", not(feature = "lt2018_2")),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details."
    )]
    #[cfg_attr(
        not(feature = "lt2025_1"),
        doc = "option to force inclusion of wildcards in filenames. See File",
        doc = "specifications for details.",
        doc = "",
        doc = "Filenames that contain the special characters '@', '#', '%', or '*' are",
        doc = "reformatted to encode the characters using ASCII hexadecimal",
        doc = "representation. After the files are added, refer to them using the",
        doc = "reformatted file name instead of the local file system name."
    )]
    pub fn force_literal_filenames(mut self, v: bool) -> Self {
        self.force_literal_filenames = v;
        self
    }

    /// # Description
    ///
    /// -I
    ///
    /// Do not perform any ignore checking; ignore any settings specified by
    /// P4IGNORE.
    pub fn get_skip_ignore(&self) -> bool {
        self.skip_ignore
    }
    /// # Description
    ///
    /// -I
    ///
    /// Do not perform any ignore checking; ignore any settings specified by
    /// P4IGNORE.
    pub fn set_skip_ignore(&mut self, v: bool) -> &mut Self {
        self.skip_ignore = v;
        self
    }
    /// # Description
    ///
    /// -I
    ///
    /// Do not perform any ignore checking; ignore any settings specified by
    /// P4IGNORE.
    pub fn skip_ignore(mut self, v: bool) -> Self {
        self.skip_ignore = v;
        self
    }

    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for add, without actually changing
    /// any files or metadata.
    pub fn get_preview(&self) -> bool {
        self.preview
    }
    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for add, without actually changing
    /// any files or metadata.
    pub fn set_preview(&mut self, v: bool) -> &mut Self {
        self.preview = v;
        self
    }
    /// # Description
    ///
    /// -n
    ///
    /// Preview which files would be opened for add, without actually changing
    /// any files or metadata.
    pub fn preview(mut self, v: bool) -> Self {
        self.preview = v;
        self
    }

    /// # Description
    ///
    /// -t filetype
    ///
    /// Adds the file as the specified filetype, overriding any settings in the
    /// typemap table.
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "Please see the File Types chapter for a list of Perforce",
        doc = "file types."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "Please see the “File Types” chapter for a list of",
        doc = "Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See “File Types” for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_2", not(feature = "lt2017_1")),
        doc = "See File Types for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_2")),
        doc = "See File Types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2019_1", not(feature = "lt2018_2")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2021_1", not(feature = "lt2019_1")),
        doc = "See File types for a list of Helix server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2024_1", not(feature = "lt2021_1")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2025_2", not(feature = "lt2024_1")),
        doc = "See File types as well as the lbr.autocompress",
        doc = "configurable."
    )]
    #[cfg_attr(
        not(feature = "lt2025_2"),
        doc = "See Base file types and modifiers as well as the",
        doc = "lbr.autocompress configurable."
    )]
    pub fn get_filetype(&self) -> Option<&String> {
        self.filetype.as_ref()
    }

    /// # Description
    ///
    /// -t filetype
    ///
    /// Adds the file as the specified filetype, overriding any settings in the
    /// typemap table.
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "Please see the File Types chapter for a list of Perforce",
        doc = "file types."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "Please see the “File Types” chapter for a list of",
        doc = "Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See “File Types” for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_2", not(feature = "lt2017_1")),
        doc = "See File Types for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_2")),
        doc = "See File Types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2019_1", not(feature = "lt2018_2")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2021_1", not(feature = "lt2019_1")),
        doc = "See File types for a list of Helix server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2024_1", not(feature = "lt2021_1")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2025_2", not(feature = "lt2024_1")),
        doc = "See File types as well as the lbr.autocompress",
        doc = "configurable."
    )]
    #[cfg_attr(
        not(feature = "lt2025_2"),
        doc = "See Base file types and modifiers as well as the",
        doc = "lbr.autocompress configurable."
    )]
    pub fn set_filetype(&mut self, v: impl Into<String>) -> &mut Self {
        self.filetype = Some(v.into());
        self
    }

    /// # Description
    ///
    /// -t filetype
    ///
    /// Adds the file as the specified filetype, overriding any settings in the
    /// typemap table.
    #[cfg_attr(
        feature = "lt2014_2",
        doc = "Please see the File Types chapter for a list of Perforce",
        doc = "file types."
    )]
    #[cfg_attr(
        all(feature = "lt2015_1", not(feature = "lt2014_2")),
        doc = "Please see the “File Types” chapter for a list of",
        doc = "Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_1", not(feature = "lt2015_1")),
        doc = "See “File Types” for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2017_2", not(feature = "lt2017_1")),
        doc = "See File Types for a list of Perforce file types."
    )]
    #[cfg_attr(
        all(feature = "lt2018_2", not(feature = "lt2017_2")),
        doc = "See File Types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2019_1", not(feature = "lt2018_2")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2021_1", not(feature = "lt2019_1")),
        doc = "See File types for a list of Helix server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2024_1", not(feature = "lt2021_1")),
        doc = "See File types for a list of Helix Server file types."
    )]
    #[cfg_attr(
        all(feature = "lt2025_2", not(feature = "lt2024_1")),
        doc = "See File types as well as the lbr.autocompress",
        doc = "configurable."
    )]
    #[cfg_attr(
        not(feature = "lt2025_2"),
        doc = "See Base file types and modifiers as well as the",
        doc = "lbr.autocompress configurable."
    )]
    pub fn filetype(mut self, v: impl Into<String>) -> Self {
        self.filetype = Some(v.into());
        self
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::cmd::args_of;

    /// Dry-run check of the assembled `p4 add` command line; no process is
    /// spawned.
    #[test]
    fn without_options() {
        let add = Add::new("p4", GlobalOpts::new());

        let command = add.setup_command("p4");

        assert_eq!(command.get_program(), OsStr::new("p4"));
        assert_eq!(args_of(&command), ["add"]);
    }

    #[test]
    fn all_local_options() {
        let mut add = Add::new("p4", GlobalOpts::new());
        add.set_change_list("42")
            .set_downgrade(true)
            .set_force_literal_filenames(true)
            .set_skip_ignore(true)
            .set_preview(true)
            .set_filetype("text");

        assert_eq!(
            args_of(&add.setup_command("p4")),
            ["add", "-c", "42", "-d", "-f", "-I", "-n", "-t", "text"]
        );
    }
}