1
- use std:: io;
2
1
use std:: path:: PathBuf ;
3
2
4
- use clap:: { Command , Parser , Subcommand , ValueEnum } ;
5
- use clap_complete:: Generator ;
3
+ use clap:: { Parser , Subcommand } ;
4
+ use clap_complete:: Shell ;
6
5
7
6
/// A small dotfile manager.
8
7
#[ derive( Debug , Parser , Default , Clone ) ]
9
8
#[ clap( author, version, about, long_about = None ) ]
10
9
pub struct Options {
11
10
/// Location of the global configuration
12
- #[ arg( short, long, default_value = ".dotter/global.toml" , global = true ) ]
11
+ #[ clap(
12
+ short,
13
+ long,
14
+ value_parser,
15
+ default_value = ".dotter/global.toml" ,
16
+ global = true
17
+ ) ]
13
18
pub global_config : PathBuf ,
14
19
15
20
/// Location of the local configuration
16
- #[ arg( short, long, default_value = ".dotter/local.toml" , global = true ) ]
21
+ #[ clap(
22
+ short,
23
+ long,
24
+ value_parser,
25
+ default_value = ".dotter/local.toml" ,
26
+ global = true
27
+ ) ]
17
28
pub local_config : PathBuf ,
18
29
19
30
/// Location of cache file
20
- #[ arg ( long, default_value = ".dotter/cache.toml" ) ]
31
+ #[ clap ( long, value_parser , default_value = ".dotter/cache.toml" ) ]
21
32
pub cache_file : PathBuf ,
22
33
23
34
/// Directory to cache into.
24
- #[ arg ( long, default_value = ".dotter/cache" ) ]
35
+ #[ clap ( long, value_parser , default_value = ".dotter/cache" ) ]
25
36
pub cache_directory : PathBuf ,
26
37
27
38
/// Location of optional pre-deploy hook
28
- #[ arg ( long, default_value = ".dotter/pre_deploy.sh" ) ]
39
+ #[ clap ( long, value_parser , default_value = ".dotter/pre_deploy.sh" ) ]
29
40
pub pre_deploy : PathBuf ,
30
41
31
42
/// Location of optional post-deploy hook
32
- #[ arg ( long, default_value = ".dotter/post_deploy.sh" ) ]
43
+ #[ clap ( long, value_parser , default_value = ".dotter/post_deploy.sh" ) ]
33
44
pub post_deploy : PathBuf ,
34
45
35
46
/// Location of optional pre-undeploy hook
36
- #[ arg ( long, default_value = ".dotter/pre_undeploy.sh" ) ]
47
+ #[ clap ( long, value_parser , default_value = ".dotter/pre_undeploy.sh" ) ]
37
48
pub pre_undeploy : PathBuf ,
38
49
39
50
/// Location of optional post-undeploy hook
40
- #[ arg ( long, default_value = ".dotter/post_undeploy.sh" ) ]
51
+ #[ clap ( long, value_parser , default_value = ".dotter/post_undeploy.sh" ) ]
41
52
pub post_undeploy : PathBuf ,
42
53
43
54
/// Dry run - don't do anything, only print information.
44
55
/// Implies -v at least once
45
- #[ arg ( short = 'd' , long = "dry-run" , global = true ) ]
56
+ #[ clap ( short = 'd' , long = "dry-run" , global = true ) ]
46
57
pub dry_run : bool ,
47
58
48
59
/// Verbosity level - specify up to 3 times to get more detailed output.
49
60
/// Specifying at least once prints the differences between what was before and after Dotter's run
50
- #[ arg ( short = 'v' , long = "verbose" , action = clap:: ArgAction :: Count , global = true ) ]
61
+ #[ clap ( short = 'v' , long = "verbose" , action = clap:: ArgAction :: Count , global = true ) ]
51
62
pub verbosity : u8 ,
52
63
53
64
/// Quiet - only print errors
54
- #[ arg ( short, long, global = true ) ]
65
+ #[ clap ( short, long, value_parser , global = true ) ]
55
66
pub quiet : bool ,
56
67
57
68
/// Force - instead of skipping, overwrite target files if their content is unexpected.
58
69
/// Overrides --dry-run.
59
- #[ arg ( short, long, global = true ) ]
70
+ #[ clap ( short, long, value_parser , global = true ) ]
60
71
pub force : bool ,
61
72
62
73
/// Assume "yes" instead of prompting when removing empty directories
63
- #[ arg ( short = 'y' , long = "noconfirm" , global = true ) ]
74
+ #[ clap ( short = 'y' , long = "noconfirm" , global = true ) ]
64
75
pub noconfirm : bool ,
65
76
66
77
/// Take standard input as an additional files/variables patch, added after evaluating
67
78
/// `local.toml`. Assumes --noconfirm flag because all of stdin is taken as the patch.
68
- #[ arg ( short, long, global = true ) ]
79
+ #[ clap ( short, long, value_parser , global = true ) ]
69
80
pub patch : bool ,
70
81
71
82
/// Amount of lines that are printed before and after a diff hunk.
72
- #[ arg ( long, default_value = "3" ) ]
83
+ #[ clap ( long, value_parser , default_value = "3" ) ]
73
84
pub diff_context_lines : usize ,
74
85
75
- #[ command ( subcommand) ]
86
+ #[ clap ( subcommand) ]
76
87
pub action : Option < Action > ,
77
88
}
78
89
@@ -96,50 +107,12 @@ pub enum Action {
96
107
97
108
/// Generate shell completions
98
109
GenCompletions {
99
- /// Set the shell for generating completions [values: bash, elvish, fish, powershell , zsh, nushell ]
110
+ /// Set the shell for generating completions [values: bash, elvish, fish, powerShell , zsh]
100
111
#[ clap( long, short) ]
101
112
shell : Shell ,
102
113
} ,
103
114
}
104
115
105
- #[ derive( Debug , Clone , Copy , ValueEnum ) ]
106
- pub enum Shell {
107
- Bash ,
108
- Elvish ,
109
- Fish ,
110
- Powershell ,
111
- Zsh ,
112
- Nushell ,
113
- }
114
-
115
- impl Generator for Shell {
116
- fn file_name ( & self , name : & str ) -> String {
117
- use clap_complete:: Shell :: * ;
118
- use clap_complete_nushell:: Nushell ;
119
- match self {
120
- Self :: Bash => Bash . file_name ( name) ,
121
- Self :: Elvish => Elvish . file_name ( name) ,
122
- Self :: Fish => Fish . file_name ( name) ,
123
- Self :: Powershell => PowerShell . file_name ( name) ,
124
- Self :: Zsh => Zsh . file_name ( name) ,
125
- Self :: Nushell => Nushell . file_name ( name) ,
126
- }
127
- }
128
-
129
- fn generate ( & self , cmd : & Command , buf : & mut dyn io:: Write ) {
130
- use clap_complete:: Shell :: * ;
131
- use clap_complete_nushell:: Nushell ;
132
- match self {
133
- Self :: Bash => Bash . generate ( cmd, buf) ,
134
- Self :: Elvish => Elvish . generate ( cmd, buf) ,
135
- Self :: Fish => Fish . generate ( cmd, buf) ,
136
- Self :: Powershell => PowerShell . generate ( cmd, buf) ,
137
- Self :: Zsh => Zsh . generate ( cmd, buf) ,
138
- Self :: Nushell => Nushell . generate ( cmd, buf) ,
139
- }
140
- }
141
- }
142
-
143
116
pub fn get_options ( ) -> Options {
144
117
let mut opt = Options :: parse ( ) ;
145
118
if opt. dry_run {
0 commit comments