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
use std::{
    ffi::OsStr,
    path::PathBuf,
    process::{Child, Command, Stdio},
};

use super::{ExclusiveOption, SubCommand, Unselected};

use crate::global::GlobalOpts;
use crate::spawn::ParameterizedSpawn;

/// Full description output of `p4 filelog` (`-l`): list long output, with
/// the full text of each changelist description.
///
/// Entered with [`FileLog::full_description`].
#[derive(Debug, Clone, Copy, Default)]
pub struct FullDescription;

impl ExclusiveOption for FullDescription {
    fn inject_args(&self, command: &mut Command) {
        command.arg("-l");
    }
}

/// Truncated description output of `p4 filelog` (`-L`): list long output,
/// with the full text of each changelist description truncated at 250
/// characters.
///
/// Entered with [`FileLog::truncated_description`].
#[derive(Debug, Clone, Copy, Default)]
pub struct TruncatedDescription;

impl ExclusiveOption for TruncatedDescription {
    fn inject_args(&self, command: &mut Command) {
        command.arg("-L");
    }
}

/// Content history mode of `p4 filelog` (`-h`): display file content
/// history instead of file name history.
///
/// This is the only state in which the `-p` option
/// ([`skip_promoted_tasks`](FileLog::get_skip_promoted_tasks)) is
/// meaningful. Entered with [`FileLog::content_history`].
#[derive(Debug, Clone, Copy, Default)]
pub struct DisplayContentHistory {
    skip_promoted_tasks: bool,
}

impl ExclusiveOption for DisplayContentHistory {
    fn inject_args(&self, command: &mut Command) {
        command.arg("-h");

        if self.skip_promoted_tasks {
            command.arg("-p");
        }
    }
}

///
/// Print detailed information about the revisions of files.
///
/// The `L` type parameter tracks the changelist description output at
/// compile time: [`Self::full_description`] transitions to the
/// [`FullDescription`] state and [`Self::truncated_description`]
/// transitions to the [`TruncatedDescription`] state. The `H` type
/// parameter tracks whether file content history is displayed:
/// [`Self::content_history`] transitions to the [`DisplayContentHistory`]
/// state.
#[derive(Debug, Clone, Default)]
pub struct FileLog<L = Unselected, H = Unselected> {
    bin: PathBuf,

    global_opts: GlobalOpts,

    changelist: Option<String>,

    content_history: H,

    follow_branches: bool,

    long_output: L,

    limit: Option<u64>,

    ignore_non_contributory: bool,

    include_time: bool,
}

impl FileLog<Unselected, Unselected> {
    /// Creates a new `p4 filelog` command.
    ///
    /// `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,
            changelist: None,
            content_history: Unselected,
            follow_branches: false,
            long_output: Unselected,
            limit: None,
            ignore_non_contributory: false,
            include_time: false,
        }
    }
}

impl<H: ExclusiveOption> FileLog<Unselected, H> {
    /// # Description
    ///
    /// -l
    ///
    /// List long output, with the full text of each changelist description.
    ///
    /// Transitions this command to the [`FullDescription`] state.
    pub fn full_description(self) -> FileLog<FullDescription, H> {
        FileLog {
            bin: self.bin,
            global_opts: self.global_opts,
            changelist: self.changelist,
            content_history: self.content_history,
            follow_branches: self.follow_branches,
            long_output: FullDescription,
            limit: self.limit,
            ignore_non_contributory: self.ignore_non_contributory,
            include_time: self.include_time,
        }
    }

    /// # Description
    ///
    /// -L
    ///
    /// List long output, with the full text of each changelist description
    /// truncated at 250 characters.
    ///
    /// Transitions this command to the [`TruncatedDescription`] state.
    pub fn truncated_description(self) -> FileLog<TruncatedDescription, H> {
        FileLog {
            bin: self.bin,
            global_opts: self.global_opts,
            changelist: self.changelist,
            content_history: self.content_history,
            follow_branches: self.follow_branches,
            long_output: TruncatedDescription,
            limit: self.limit,
            ignore_non_contributory: self.ignore_non_contributory,
            include_time: self.include_time,
        }
    }
}

impl<L: ExclusiveOption> FileLog<L, Unselected> {
    /// # Description
    ///
    /// -h
    ///
    /// Display file content history instead of file name history.
    ///
    /// Transitions this command to the [`DisplayContentHistory`] state,
    /// which unlocks the `-p` option.
    pub fn content_history(self) -> FileLog<L, DisplayContentHistory> {
        FileLog {
            bin: self.bin,
            global_opts: self.global_opts,
            changelist: self.changelist,
            content_history: DisplayContentHistory {
                skip_promoted_tasks: false,
            },
            follow_branches: self.follow_branches,
            long_output: self.long_output,
            limit: self.limit,
            ignore_non_contributory: self.ignore_non_contributory,
            include_time: self.include_time,
        }
    }
}

impl<L: ExclusiveOption, H: ExclusiveOption> ParameterizedSpawn for FileLog<L, H> {
    type Input<'a> = &'a [&'a OsStr];
    type Output<'a> = Child;
    type Error = std::io::Error;

    /// Spawns `p4 filelog` for the given files as a child process with piped
    /// standard output and error streams; use the returned [`Child`] handle
    /// to wait for it or interact with it.
    ///
    /// At least one file or file pattern must be provided.
    fn spawn_with<'a>(&mut self, files: Self::Input<'a>) -> Result<Self::Output<'a>, Self::Error> {
        self.setup_command(&self.bin)
            .args(files)
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
    }
}

impl<L: ExclusiveOption, H: ExclusiveOption> FileLog<L, H> {
    /// # 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 change`
    ///
    /// Display only files submitted at the specified changelist number.
    pub fn get_changelist(&self) -> Option<&String> {
        self.changelist.as_ref()
    }

    /// # Description
    ///
    /// `-c change`
    ///
    /// Display only files submitted at the specified changelist number.
    pub fn set_changelist(&mut self, v: impl Into<String>) -> &mut Self {
        self.changelist = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `-c change`
    ///
    /// Display only files submitted at the specified changelist number.
    pub fn changelist(mut self, v: impl Into<String>) -> Self {
        self.changelist = Some(v.into());
        self
    }

    /// # Description
    ///
    /// `-i`
    ///
    /// Follow file history across branches.
    pub fn get_follow_branches(&self) -> bool {
        self.follow_branches
    }

    /// # Description
    ///
    /// `-i`
    ///
    /// Follow file history across branches.
    pub fn set_follow_branches(&mut self, v: bool) -> &mut Self {
        self.follow_branches = v;
        self
    }

    /// # Description
    ///
    /// `-i`
    ///
    /// Follow file history across branches.
    pub fn follow_branches(mut self, v: bool) -> Self {
        self.follow_branches = v;
        self
    }

    /// # Description
    ///
    /// `-m max`
    ///
    /// List only the first `max` changes per file output.
    pub fn get_limit(&self) -> Option<u64> {
        self.limit
    }

    /// # Description
    ///
    /// `-m max`
    ///
    /// List only the first `max` changes per file output.
    pub fn set_limit(&mut self, v: u64) -> &mut Self {
        self.limit = Some(v);
        self
    }

    /// # Description
    ///
    /// `-m max`
    ///
    /// List only the first `max` changes per file output.
    pub fn limit(mut self, v: u64) -> Self {
        self.limit = Some(v);
        self
    }

    /// # Description
    ///
    /// `-s`
    ///
    /// Display a shortened form of output by ignoring non-contributory
    /// integrations.
    pub fn get_ignore_non_contributory(&self) -> bool {
        self.ignore_non_contributory
    }

    /// # Description
    ///
    /// `-s`
    ///
    /// Display a shortened form of output by ignoring non-contributory
    /// integrations.
    pub fn set_ignore_non_contributory(&mut self, v: bool) -> &mut Self {
        self.ignore_non_contributory = v;
        self
    }

    /// # Description
    ///
    /// `-s`
    ///
    /// Display a shortened form of output by ignoring non-contributory
    /// integrations.
    pub fn ignore_non_contributory(mut self, v: bool) -> Self {
        self.ignore_non_contributory = v;
        self
    }

    /// # Description
    ///
    /// `-t`
    ///
    /// Display the time as well as the date.
    pub fn get_include_time(&self) -> bool {
        self.include_time
    }

    /// # Description
    ///
    /// `-t`
    ///
    /// Display the time as well as the date.
    pub fn set_include_time(&mut self, v: bool) -> &mut Self {
        self.include_time = v;
        self
    }

    /// # Description
    ///
    /// `-t`
    ///
    /// Display the time as well as the date.
    pub fn include_time(mut self, v: bool) -> Self {
        self.include_time = v;
        self
    }
}

impl<L: ExclusiveOption> FileLog<L, DisplayContentHistory> {
    /// # Description
    ///
    /// -p
    ///
    /// When used with the `-h` option, do not follow content of promoted task
    /// streams.
    pub fn get_skip_promoted_tasks(&self) -> bool {
        self.content_history.skip_promoted_tasks
    }

    /// # Description
    ///
    /// -p
    ///
    /// When used with the `-h` option, do not follow content of promoted task
    /// streams.
    pub fn set_skip_promoted_tasks(&mut self, v: bool) -> &mut Self {
        self.content_history.skip_promoted_tasks = v;
        self
    }

    /// # Description
    ///
    /// -p
    ///
    /// When used with the `-h` option, do not follow content of promoted task
    /// streams.
    pub fn skip_promoted_tasks(mut self, v: bool) -> Self {
        self.content_history.skip_promoted_tasks = v;
        self
    }
}

impl<L: ExclusiveOption, H: ExclusiveOption> SubCommand for FileLog<L, H> {
    fn name(&self) -> &str {
        "filelog"
    }

    fn inject_local_args(&self, command: &mut Command) {
        if let Some(changelist) = &self.changelist {
            command.arg("-c").arg(changelist);
        }

        self.content_history.inject_args(command);

        if self.follow_branches {
            command.arg("-i");
        }

        self.long_output.inject_args(command);

        if let Some(max) = self.limit {
            command.arg("-m").arg(max.to_string());
        }

        if self.ignore_non_contributory {
            command.arg("-s");
        }

        if self.include_time {
            command.arg("-t");
        }
    }

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

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

    #[test]
    fn with_files() {
        let filelog = FileLog::new("p4", GlobalOpts::default());
        let mut cmd = filelog.setup_command("p4");
        cmd.arg("//depot/project/...");
        assert_eq!(args_of(&cmd), vec!["filelog", "//depot/project/..."]);
    }

    #[test]
    fn changelist() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).changelist("100");
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-c", "100"]);
    }

    #[test]
    fn content_history() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).content_history();
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-h"]);
    }

    #[test]
    fn follow_branches() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).follow_branches(true);
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-i"]);
    }

    #[test]
    fn full_description() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).full_description();
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-l"]);
    }

    #[test]
    fn truncated_description() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).truncated_description();
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-L"]);
    }

    #[test]
    fn limit() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).limit(5);
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-m", "5"]);
    }

    #[test]
    fn skip_promoted_tasks() {
        let filelog = FileLog::new("p4", GlobalOpts::default())
            .content_history()
            .skip_promoted_tasks(true);
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-h", "-p"]);
    }

    #[test]
    fn skip_promoted_tasks_accessors() {
        let mut filelog = FileLog::new("p4", GlobalOpts::default())
            .full_description()
            .content_history();
        filelog.set_skip_promoted_tasks(true);

        assert!(filelog.get_skip_promoted_tasks());
        assert_eq!(
            args_of(&filelog.setup_command("p4")),
            ["filelog", "-h", "-p", "-l"]
        );
    }

    #[test]
    fn ignore_non_contributory() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).ignore_non_contributory(true);
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-s"]);
    }

    #[test]
    fn include_time() {
        let filelog = FileLog::new("p4", GlobalOpts::default()).include_time(true);
        let cmd = filelog.setup_command("p4");
        assert_eq!(args_of(&cmd), vec!["filelog", "-t"]);
    }

    #[test]
    fn all_options_order() {
        let filelog = FileLog::new("p4", GlobalOpts::default())
            .changelist("100")
            .content_history()
            .follow_branches(true)
            .full_description()
            .limit(5)
            .skip_promoted_tasks(true)
            .ignore_non_contributory(true)
            .include_time(true);
        let cmd = filelog.setup_command("p4");
        assert_eq!(
            args_of(&cmd),
            vec![
                "filelog", "-c", "100", "-h", "-p", "-i", "-l", "-m", "5", "-s", "-t",
            ]
        );
    }
}