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
//! `git submodule` — initialize, update, or inspect submodules.
use crate::command::{CommandExecutor, CommandOutput, GitCommand};
use crate::error::Result;
use async_trait::async_trait;
use std::path::PathBuf;
/// Actions supported by `git submodule`.
#[derive(Debug, Clone)]
pub enum SubmoduleAction {
/// `git submodule add <url> [<path>]`.
Add {
/// Submodule URL.
url: String,
/// Optional path where the submodule is placed.
path: Option<PathBuf>,
/// `-b <branch>`.
branch: Option<String>,
/// `--force`.
force: bool,
},
/// `git submodule init [<paths>…]`.
Init {
/// Restrict to these paths.
paths: Vec<PathBuf>,
},
/// `git submodule update [<options>] [<paths>…]`.
Update {
/// `--init`.
init: bool,
/// `--recursive`.
recursive: bool,
/// `--remote`.
remote: bool,
/// `--force`.
force: bool,
/// Restrict to these paths.
paths: Vec<PathBuf>,
},
/// `git submodule status [<paths>…]`.
Status {
/// `--cached`.
cached: bool,
/// `--recursive`.
recursive: bool,
/// Restrict to these paths.
paths: Vec<PathBuf>,
},
/// `git submodule foreach <cmd>`.
Foreach {
/// Command to run inside each submodule.
command: String,
/// `--recursive`.
recursive: bool,
},
/// `git submodule deinit <paths>`.
Deinit {
/// `--force`.
force: bool,
/// `--all`.
all: bool,
/// Paths to deinit.
paths: Vec<PathBuf>,
},
/// `git submodule sync [<paths>…]`.
Sync {
/// `--recursive`.
recursive: bool,
/// Restrict to these paths.
paths: Vec<PathBuf>,
},
}
/// Builder for `git submodule`.
#[derive(Debug, Clone)]
pub struct SubmoduleCommand {
/// Shared executor.
pub executor: CommandExecutor,
/// Action.
pub action: SubmoduleAction,
}
impl SubmoduleCommand {
/// `submodule add`.
pub fn add(url: impl Into<String>) -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Add {
url: url.into(),
path: None,
branch: None,
force: false,
},
}
}
/// Set the submodule path (for `add`).
#[must_use]
pub fn path(mut self, p: impl Into<PathBuf>) -> Self {
if let SubmoduleAction::Add { path, .. } = &mut self.action {
*path = Some(p.into());
}
self
}
/// Set `-b` branch (for `add`).
#[must_use]
pub fn branch(mut self, b: impl Into<String>) -> Self {
if let SubmoduleAction::Add { branch, .. } = &mut self.action {
*branch = Some(b.into());
}
self
}
/// Set `--force` (for `add` / `update` / `deinit`).
#[must_use]
pub fn force(mut self) -> Self {
match &mut self.action {
SubmoduleAction::Add { force, .. }
| SubmoduleAction::Update { force, .. }
| SubmoduleAction::Deinit { force, .. } => {
*force = true;
}
_ => {}
}
self
}
/// `submodule init`.
#[must_use]
pub fn init() -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Init { paths: vec![] },
}
}
/// `submodule update`.
#[must_use]
pub fn update() -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Update {
init: false,
recursive: false,
remote: false,
force: false,
paths: vec![],
},
}
}
/// `--init` (for `update`).
#[must_use]
pub fn with_init(mut self) -> Self {
if let SubmoduleAction::Update { init, .. } = &mut self.action {
*init = true;
}
self
}
/// `--recursive` (for `update` / `status` / `foreach` / `sync`).
#[must_use]
pub fn recursive(mut self) -> Self {
match &mut self.action {
SubmoduleAction::Update { recursive, .. }
| SubmoduleAction::Status { recursive, .. }
| SubmoduleAction::Foreach { recursive, .. }
| SubmoduleAction::Sync { recursive, .. } => {
*recursive = true;
}
_ => {}
}
self
}
/// `--remote` (for `update`).
#[must_use]
pub fn remote(mut self) -> Self {
if let SubmoduleAction::Update { remote, .. } = &mut self.action {
*remote = true;
}
self
}
/// Restrict to a given path.
#[must_use]
pub fn restrict_path(mut self, p: impl Into<PathBuf>) -> Self {
let p = p.into();
match &mut self.action {
SubmoduleAction::Init { paths }
| SubmoduleAction::Update { paths, .. }
| SubmoduleAction::Status { paths, .. }
| SubmoduleAction::Deinit { paths, .. }
| SubmoduleAction::Sync { paths, .. } => {
paths.push(p);
}
_ => {}
}
self
}
/// `submodule status`.
#[must_use]
pub fn status() -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Status {
cached: false,
recursive: false,
paths: vec![],
},
}
}
/// `--cached` (for `status`).
#[must_use]
pub fn cached(mut self) -> Self {
if let SubmoduleAction::Status { cached, .. } = &mut self.action {
*cached = true;
}
self
}
/// `submodule foreach`.
pub fn foreach(command: impl Into<String>) -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Foreach {
command: command.into(),
recursive: false,
},
}
}
/// `submodule deinit`.
#[must_use]
pub fn deinit() -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Deinit {
force: false,
all: false,
paths: vec![],
},
}
}
/// `--all` (for `deinit`).
#[must_use]
pub fn all(mut self) -> Self {
if let SubmoduleAction::Deinit { all, .. } = &mut self.action {
*all = true;
}
self
}
/// `submodule sync`.
#[must_use]
pub fn sync() -> Self {
Self {
executor: CommandExecutor::default(),
action: SubmoduleAction::Sync {
recursive: false,
paths: vec![],
},
}
}
}
#[async_trait]
impl GitCommand for SubmoduleCommand {
type Output = CommandOutput;
fn get_executor(&self) -> &CommandExecutor {
&self.executor
}
fn get_executor_mut(&mut self) -> &mut CommandExecutor {
&mut self.executor
}
fn build_command_args(&self) -> Vec<String> {
let mut args = vec!["submodule".to_string()];
match &self.action {
SubmoduleAction::Add {
url,
path,
branch,
force,
} => {
args.push("add".into());
if *force {
args.push("--force".into());
}
if let Some(b) = branch {
args.push("-b".into());
args.push(b.clone());
}
args.push(url.clone());
if let Some(p) = path {
args.push(p.display().to_string());
}
}
SubmoduleAction::Init { paths } => {
args.push("init".into());
if !paths.is_empty() {
args.push("--".into());
args.extend(paths.iter().map(|p| p.display().to_string()));
}
}
SubmoduleAction::Update {
init,
recursive,
remote,
force,
paths,
} => {
args.push("update".into());
if *init {
args.push("--init".into());
}
if *recursive {
args.push("--recursive".into());
}
if *remote {
args.push("--remote".into());
}
if *force {
args.push("--force".into());
}
if !paths.is_empty() {
args.push("--".into());
args.extend(paths.iter().map(|p| p.display().to_string()));
}
}
SubmoduleAction::Status {
cached,
recursive,
paths,
} => {
args.push("status".into());
if *cached {
args.push("--cached".into());
}
if *recursive {
args.push("--recursive".into());
}
if !paths.is_empty() {
args.push("--".into());
args.extend(paths.iter().map(|p| p.display().to_string()));
}
}
SubmoduleAction::Foreach { command, recursive } => {
args.push("foreach".into());
if *recursive {
args.push("--recursive".into());
}
args.push(command.clone());
}
SubmoduleAction::Deinit { force, all, paths } => {
args.push("deinit".into());
if *force {
args.push("--force".into());
}
if *all {
args.push("--all".into());
}
if !paths.is_empty() {
args.push("--".into());
args.extend(paths.iter().map(|p| p.display().to_string()));
}
}
SubmoduleAction::Sync { recursive, paths } => {
args.push("sync".into());
if *recursive {
args.push("--recursive".into());
}
if !paths.is_empty() {
args.push("--".into());
args.extend(paths.iter().map(|p| p.display().to_string()));
}
}
}
args
}
async fn execute(&self) -> Result<CommandOutput> {
self.execute_raw().await
}
}