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
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
|
/******************************************************************************
__ ____ __
/ / ___ ____ _/ __/_____________ _/ /__
/ / / _ \/ __ `/ /_/ ___/ ___/ __ `/ / _ \
/ /___/ __/ /_/ / __(__ ) /__/ /_/ / / __/
/_____/\___/\__,_/_/ /____/\___/\__,_/_/\___/
(C)opyright 2026, Leafscale, LLC - https://www.leafscale.com
Project: repoman
Filename: src/cli.reef
Authors: Chris Tusa <chris.tusa@leafscale.com>
License: <see LICENSE file included with this source code>
Description: Subcommand implementations (cmd_new, cmd_sync, cmd_list, cmd_remove, cmd_shell, cmd_status, cmd_profile)
******************************************************************************/
module cli
import core.str
import core.result as rg
import core.error as error
import core.convert as convert
import time.time as time
import io.console as console
import io.file as iofile
import sys.flag as flag
import sys.env as env
import sys.args as args
import sys.process as p
import config
import incus
import profile
import setup
import sync
import paths
import log
export
fn cmd_new(argv: [string]): int
fn cmd_profile(argv: [string]): int
fn cmd_setup(argv: [string]): int
fn cmd_sync(argv: [string]): int
fn cmd_list(argv: [string]): int
fn cmd_status(argv: [string]): int
fn cmd_remove(argv: [string]): int
fn cmd_rename(argv: [string]): int
fn cmd_shell(argv: [string]): int
fn dispatch(argv: [string]): int
end export
// argv passed in is the slice past argv[1] (i.e., excludes program + subcommand).
fn cmd_new(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman new")
flag.description(parser, "Create a new container + repo bind")
let _r1 = flag.string_flag(parser, "repo", '\0', "", "repo dirname (defaults to <name>)")
let _r2 = flag.string_flag(parser, "image", '\0', "", "container image (overrides default)")
let _v = flag.bool_flag(parser, "verbose", 'v', false, "show subprocess output (incus probes)")
let _q = flag.bool_flag(parser, "quiet", 'q', false, "force quiet mode even if config sets verbose")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() != 1
console.printErr("repoman: error: 'new' takes exactly one positional argument: <name>")
return 2
end if
let name: string = positionals[0]
let repo_flag: string = flag.get_string(parser, "repo")
let image_flag: string = flag.get_string(parser, "image")
if not incus.validate_name(name)
console.printErr("repoman: error: invalid container name: " + name)
console.printErr("hint: lowercase alphanumeric + hyphens, <=63 chars, no leading hyphen")
return 1
end if
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let cfg_path: string = config.registry_path(home)
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 3
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
// Open per-invocation log file. Failures degrade to stderr-only with a
// warning; logging is best-effort, never blocks the operation.
let _ol: bool = log.open_log(reg.defaults.logdir, name, "new")
// Resolve verbose mode: --quiet wins, then --verbose, then registry default.
let cli_verbose: bool = flag.get_bool(parser, "verbose")
let cli_quiet: bool = flag.get_bool(parser, "quiet")
mut verbose: bool = reg.output == "verbose"
if cli_verbose
verbose = true
end if
if cli_quiet
verbose = false
end if
// Reject duplicate name
let pn: int = reg.projects.length()
mut i: int = 0
while i < pn
if reg.projects[i].name == name
log.write("repoman: error: project '" + name + "' already in registry")
log.write("hint: incus delete --project " + reg.defaults.incus_project + " " + name + " ; then remove from " + cfg_path)
return 4
end if
i = i + 1
end while
// Resolve repo path
mut repo: string = repo_flag
if str.length(repo) == 0
repo = name
end if
let repos_root: string = paths.expand_home(reg.defaults.repos_root)
let repo_path: string = paths.join(repos_root, repo)
if not paths.is_dir(repo_path)
log.write("repoman: error: no repo at " + repo_path)
return 3
end if
// Read override (optional)
let override_path: string = paths.join(home, ".config/repoman/repos.d/" + name + ".toml")
mut override: config.Override = config.Override {
image: "", profiles: new [string](0), has_profiles: false,
mounts: new [config.Mount](0),
env_keys: new [string](0), env_values: new [string](0)
}
if iofile.fileExists(override_path)
let ov_read = iofile.readFile(override_path)
if rg.is_err(ov_read)
log.write("repoman: error: cannot read override " + override_path + ": " + error.error_message(rg.unwrap_err(ov_read)))
return 3
end if
let ov_r = config.parse_override(rg.unwrap_ok(ov_read))
if rg.is_err(ov_r)
log.write("repoman: error: bad override " + override_path + ": " + rg.unwrap_err(ov_r))
return 3
end if
override = rg.unwrap_ok(ov_r)
end if
let eff: config.EffectiveConfig = config.merge_with_defaults(name, repo, image_flag, override, reg.defaults)
// Pre-launch profile validation: every name in eff.profiles must either be
// the magic incus 'default' profile, or installed in the 'default' project.
// (Repoman-managed profiles all live in 'default' per the v0.4 architecture.)
let pn2: int = eff.profiles.length()
mut pi: int = 0
while pi < pn2
let pname: string = eff.profiles[pi]
if pname != "default"
let exists_r = incus.profile_exists("default", pname)
if rg.is_ok(exists_r) and not rg.unwrap_ok(exists_r)
log.write("repoman: error: container references profile '" + pname + "' but it's not installed in incus.")
log.write("hint: repoman profile install " + pname)
log.write("hint: repoman profile install --all (to install the vendor library)")
return 4
end if
end if
pi = pi + 1
end while
// Ensure incus project
log.write("==> incus project ensure " + reg.defaults.incus_project)
let pe = incus.project_ensure(reg.defaults.incus_project, verbose)
if rg.is_err(pe)
log.write("repoman: error: " + rg.unwrap_err(pe))
return 1
end if
// Reject if container exists already
let ce = incus.container_exists(reg.defaults.incus_project, name, verbose)
if rg.is_err(ce)
log.write("repoman: error: " + rg.unwrap_err(ce))
return 1
end if
if rg.unwrap_ok(ce)
log.write("repoman: error: container '" + name + "' already exists in project '" + reg.defaults.incus_project + "'")
log.write("hint: incus delete --project " + reg.defaults.incus_project + " " + name)
return 4
end if
// Launch
log.write("==> incus launch " + eff.image + " " + name)
let lr = incus.launch(reg.defaults.incus_project, name, eff.image, eff.profiles)
if rg.is_err(lr)
log.write("repoman: error: " + rg.unwrap_err(lr))
return 1
end if
// Mounts: device names "repo" for the auto bind, "mount-1", "mount-2", ...
let mn: int = eff.mounts.length()
mut k: int = 0
while k < mn
let m: config.Mount = eff.mounts[k]
mut dev_name: string = "repo"
if k > 0
dev_name = "mount-" + convert.to_string(k)
end if
log.write("==> incus device add " + name + " " + dev_name + " " + m.source + ":" + m.path + " shift=true")
let dr = incus.device_add_disk_opts(reg.defaults.incus_project, name, dev_name, m.source, m.path, ["shift=true"])
if rg.is_err(dr)
log.write("repoman: error: " + rg.unwrap_err(dr))
log.write("hint: incus delete --project " + reg.defaults.incus_project + " " + name)
return 1
end if
k = k + 1
end while
// Env
let en: int = eff.env_keys.length()
mut e: int = 0
while e < en
let er = incus.set_env_var(reg.defaults.incus_project, name, eff.env_keys[e], eff.env_values[e])
if rg.is_err(er)
log.write("repoman: error: " + rg.unwrap_err(er))
return 1
end if
e = e + 1
end while
// Restart so binds + env take effect
log.write("==> incus restart " + name)
let rr = incus.restart(reg.defaults.incus_project, name)
if rg.is_err(rr)
log.write("repoman: error: " + rg.unwrap_err(rr))
return 1
end if
// Build new project entry and write registry
let now: string = time.time_format_iso(time.time_now())
let new_p: config.Project = config.Project {
name: name,
repo: repo,
image: eff.image,
profiles: eff.profiles,
created: now,
last_sync: "",
backup: true
}
let reg2_r = config.add_project(reg, new_p)
if rg.is_err(reg2_r)
log.write("repoman: error: " + rg.unwrap_err(reg2_r))
return 1
end if
let saved = config.save(rg.unwrap_ok(reg2_r), cfg_path)
if rg.is_err(saved)
log.write("repoman: error: " + rg.unwrap_err(saved))
return 1
end if
// Ready hint — recommend the repoman subcommands now that they exist.
log.write("==> ready")
log.write("")
log.write(" shell in: repoman shell " + name)
log.write(" run claude: incus exec --project " + reg.defaults.incus_project + " " + name + " -- claude")
return 0
end cmd_new
fn cmd_sync(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman sync")
flag.description(parser, "rsync local repos → NFS backup")
let _f1 = flag.bool_flag(parser, "no-delete", '\0', false, "additive only — no deletions on the destination")
let _f2 = flag.bool_flag(parser, "dry-run", '\0', false, "preview changes without writing")
let _v = flag.bool_flag(parser, "verbose", 'v', false, "show subprocess output (NFS probes)")
let _q = flag.bool_flag(parser, "quiet", 'q', false, "force quiet mode even if config sets verbose")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() > 1
console.printErr("repoman: error: 'sync' takes at most one positional argument: [name]")
return 2
end if
let no_delete: bool = flag.get_bool(parser, "no-delete")
let dry_run: bool = flag.get_bool(parser, "dry-run")
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 3
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
let cfg_path: string = config.registry_path(home)
// Open per-invocation log file. Single-project sync uses the project
// name; whole-tree sync uses "all".
mut log_label: string = "all"
if positionals.length() == 1
log_label = positionals[0]
end if
let _ol: bool = log.open_log(reg.defaults.logdir, log_label, "sync")
// Resolve verbose mode: --quiet wins, then --verbose, then registry default.
let cli_verbose: bool = flag.get_bool(parser, "verbose")
let cli_quiet: bool = flag.get_bool(parser, "quiet")
mut verbose: bool = reg.output == "verbose"
if cli_verbose
verbose = true
end if
if cli_quiet
verbose = false
end if
let backup_root: string = paths.expand_home(reg.defaults.backup_root)
let repos_root: string = paths.expand_home(reg.defaults.repos_root)
// ensure_nfs_mounted
let mr = sync.ensure_nfs_mounted(backup_root, verbose)
if rg.is_err(mr)
log.write("repoman: error: " + rg.unwrap_err(mr))
return 3
end if
// Resolve target
mut src: string = ""
mut dst: string = ""
mut excluded: [string] = new [string](0)
mut single_target: string = ""
if positionals.length() == 1
let name: string = positionals[0]
// Find in registry
let pn: int = reg.projects.length()
mut found: int = -1
mut i: int = 0
while i < pn
if reg.projects[i].name == name
found = i
end if
i = i + 1
end while
if found < 0
log.write("repoman: error: '" + name + "' not in registry")
log.write("hint: repoman new " + name)
return 1
end if
let proj: config.Project = reg.projects[found]
if not proj.backup
log.write("repoman: error: '" + name + "' has backup = false; refusing single-target sync")
return 1
end if
src = paths.join(repos_root, proj.repo) + "/"
dst = paths.join(backup_root, proj.repo) + "/"
single_target = name
else
// whole tree
src = repos_root + "/"
dst = backup_root + "/"
// Build excludes for backup=false projects
let pn: int = reg.projects.length()
mut buf: [string] = new [string](pn)
mut count: int = 0
mut i: int = 0
while i < pn
if not reg.projects[i].backup
buf[count] = reg.projects[i].repo
count = count + 1
end if
i = i + 1
end while
mut tight: [string] = new [string](count)
mut j: int = 0
while j < count
tight[j] = buf[j]
j = j + 1
end while
excluded = tight
end if
// Build args + log + run
let is_tty: bool = false // v0.1: assume non-TTY (cron-friendly defaults).
let rsync_args: [string] = sync.build_rsync_args(src, dst, dry_run, no_delete, is_tty, excluded)
mut tags: string = ""
if dry_run
tags = tags + "(dry-run) "
end if
if no_delete
tags = tags + "(additive) "
end if
log.write("==> rsync " + tags + src + " → " + dst)
let exit_code: int = sync.run_rsync(rsync_args)
if exit_code < 0
log.write("repoman: error: failed to spawn rsync")
return 1
end if
if exit_code != 0
return exit_code
end if
// Success: update last_sync. Skip in dry-run mode (nothing changed).
if not dry_run
let now: string = time.time_format_iso(time.time_now())
if str.length(single_target) > 0
let upd = config.update_last_sync(reg, single_target, now)
if rg.is_ok(upd)
let _s1 = config.save(rg.unwrap_ok(upd), cfg_path)
end if
else
mut cur: config.Registry = reg
let pn: int = cur.projects.length()
mut i: int = 0
while i < pn
if cur.projects[i].backup
let upd = config.update_last_sync(cur, cur.projects[i].name, now)
if rg.is_ok(upd)
cur = rg.unwrap_ok(upd)
end if
end if
i = i + 1
end while
let _s2 = config.save(cur, cfg_path)
end if
end if
return 0
end cmd_sync
fn cmd_list(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman list")
flag.description(parser, "List registered projects")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() > 0
console.printErr("repoman: error: 'list' takes no positional arguments")
return 2
end if
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 1
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
let n: int = reg.projects.length()
if n == 0
println("no projects registered")
return 0
end if
// Header
println(
str.pad_right("NAME", 12, ' ')
+ str.pad_right("REPO", 18, ' ')
+ str.pad_right("IMAGE", 33, ' ')
+ str.pad_right("CREATED", 21, ' ')
+ str.pad_right("LAST_SYNC", 21, ' ')
+ "BACKUP"
)
mut i: int = 0
while i < n
let p: config.Project = reg.projects[i]
mut backup_str: string = "no"
if p.backup
backup_str = "yes"
end if
println(
str.pad_right(p.name, 12, ' ')
+ str.pad_right(p.repo, 18, ' ')
+ str.pad_right(p.image, 33, ' ')
+ str.pad_right(p.created, 21, ' ')
+ str.pad_right(p.last_sync, 21, ' ')
+ backup_str
)
i = i + 1
end while
return 0
end cmd_list
fn cmd_status(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman status")
flag.description(parser, "Show registered projects' state")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() > 1
console.printErr("repoman: error: 'status' takes at most one positional argument: [name]")
return 2
end if
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 1
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
if positionals.length() == 1
return cmd_status_one(reg, positionals[0])
end if
return cmd_status_all(reg)
end cmd_status
// Detailed view for a single project.
fn cmd_status_one(reg: config.Registry, name: string): int
let pn: int = reg.projects.length()
mut found: int = -1
mut i: int = 0
while i < pn
if reg.projects[i].name == name
found = i
end if
i = i + 1
end while
if found < 0
console.printErr("repoman: error: '" + name + "' not in registry")
return 1
end if
let proj: config.Project = reg.projects[found]
let state_r = incus.container_state(reg.defaults.incus_project, name)
mut state: string = "?"
if rg.is_ok(state_r)
state = rg.unwrap_ok(state_r)
end if
println("name: " + proj.name)
println("repo: " + proj.repo)
println("image: " + proj.image)
println("created: " + proj.created)
println("last_sync: " + proj.last_sync)
mut backup_str: string = "no"
if proj.backup
backup_str = "yes"
end if
println("backup: " + backup_str)
println("state: " + state)
return 0
end cmd_status_one
// Whole-tree table.
fn cmd_status_all(reg: config.Registry): int
let n: int = reg.projects.length()
if n == 0
println("no projects registered")
return 0
end if
println(
str.pad_right("NAME", 12, ' ')
+ str.pad_right("STATE", 10, ' ')
+ str.pad_right("CREATED", 21, ' ')
+ str.pad_right("LAST_SYNC", 21, ' ')
+ "BACKUP"
)
mut i: int = 0
while i < n
let p: config.Project = reg.projects[i]
let state_r = incus.container_state(reg.defaults.incus_project, p.name)
mut state: string = "?"
if rg.is_ok(state_r)
state = rg.unwrap_ok(state_r)
end if
mut backup_str: string = "no"
if p.backup
backup_str = "yes"
end if
println(
str.pad_right(p.name, 12, ' ')
+ str.pad_right(state, 10, ' ')
+ str.pad_right(p.created, 21, ' ')
+ str.pad_right(p.last_sync, 21, ' ')
+ backup_str
)
i = i + 1
end while
return 0
end cmd_status_all
fn cmd_remove(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman remove")
flag.description(parser, "Remove a project: delete its container and registry entry")
let _y = flag.bool_flag(parser, "yes", 'y', false, "skip the confirmation prompt")
let _k = flag.bool_flag(parser, "keep-incus", '\0', false, "leave the incus container; only remove from registry")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() != 1
console.printErr("repoman: error: 'remove' takes exactly one positional argument: <name>")
return 2
end if
let name: string = positionals[0]
let keep_incus: bool = flag.get_bool(parser, "keep-incus")
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let cfg_path: string = config.registry_path(home)
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 3
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
// Confirm name is actually in registry before prompting or doing anything destructive.
let pn: int = reg.projects.length()
mut found: int = -1
mut i: int = 0
while i < pn
if reg.projects[i].name == name
found = i
end if
i = i + 1
end while
if found < 0
console.printErr("repoman: error: '" + name + "' not in registry")
return 1
end if
// Confirmation: --yes skips the prompt; otherwise spell out exactly what
// gets removed so the user isn't left wondering whether their source is at risk.
let auto_confirmed: bool = flag.get_bool(parser, "yes")
if not auto_confirmed
let repo_path: string = reg.projects[found].repo
println("This will remove:")
if keep_incus
println(" - registry entry for '" + name + "' in " + cfg_path)
println(" (incus container kept: --keep-incus)")
else
println(" - incus container '" + name + "' (project 'repoman')")
println(" - registry entry for '" + name + "' in " + cfg_path)
end if
println("Your source repository at " + repo_path + " on the host will NOT be touched.")
let proceed: bool = console.confirm_default_no("continue?")
if not proceed
println("aborted")
return 4
end if
end if
// Open log AFTER the user has confirmed.
let _ol: bool = log.open_log(reg.defaults.logdir, name, "remove")
// Step 1: delete the incus container (unless --keep-incus).
if not keep_incus
log.write("==> incus delete --force " + name)
let dr = incus.delete_container(reg.defaults.incus_project, name)
if rg.is_err(dr)
log.write("repoman: error: " + rg.unwrap_err(dr))
log.write("hint: pass --keep-incus to remove from registry only, or fix the incus error and retry")
return 1
end if
end if
// Step 2: remove from registry. If this fails after a successful incus
// delete, the container is gone but the registry still has the entry —
// surface that explicitly so the user knows to clean up manually.
let reg2_r = config.remove_project(reg, name)
if rg.is_err(reg2_r)
log.write("repoman: error: " + rg.unwrap_err(reg2_r))
if not keep_incus
log.write("warning: incus container '" + name + "' was deleted but the registry still has its entry; remove manually from " + cfg_path)
end if
return 1
end if
let saved = config.save(rg.unwrap_ok(reg2_r), cfg_path)
if rg.is_err(saved)
log.write("repoman: error: " + rg.unwrap_err(saved))
if not keep_incus
log.write("warning: incus container '" + name + "' was deleted but the registry write failed; remove manually from " + cfg_path)
end if
return 1
end if
log.write("==> removed '" + name + "'")
return 0
end cmd_remove
fn cmd_shell(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman shell")
flag.description(parser, "Open a login shell inside a project's container")
let _c = flag.string_flag(parser, "cwd", '\0', "", "override the working directory inside the container")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() != 1
console.printErr("repoman: error: 'shell' takes exactly one positional argument: <name>")
return 2
end if
let name: string = positionals[0]
let cwd_flag: string = flag.get_string(parser, "cwd")
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 3
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
// Look up the project to resolve the default cwd.
let pn: int = reg.projects.length()
mut found: int = -1
mut i: int = 0
while i < pn
if reg.projects[i].name == name
found = i
end if
i = i + 1
end while
if found < 0
console.printErr("repoman: error: '" + name + "' not in registry")
return 1
end if
let proj: config.Project = reg.projects[found]
// Resolve cwd: --cwd flag, or <repos_root>/<repo>.
mut cwd: string = cwd_flag
if str.length(cwd) == 0
let repos_root: string = paths.expand_home(reg.defaults.repos_root)
cwd = paths.join(repos_root, proj.repo)
end if
// Resolve UID by shelling to `id -u`.
let uid_r = incus.host_uid()
if rg.is_err(uid_r)
console.printErr("repoman: error: " + rg.unwrap_err(uid_r))
return 1
end if
let uid: string = rg.unwrap_ok(uid_r)
// Build incus exec argv. Note: process_run_exec auto-prepends "incus" as
// argv[0], so the args list passed in does NOT include the program name.
let inc_args: [string] = [
"exec",
"--project", reg.defaults.incus_project,
"--user", uid,
"--cwd", cwd,
"--env", "HOME=" + home,
name,
"--", "bash", "-l"
]
// Replace our process (no zombie repoman waiting on the shell).
let _x: int = p.process_run_exec("incus", inc_args)
// Only reached if exec failed.
console.printErr("repoman: error: failed to exec incus")
return 1
end cmd_shell
fn cmd_setup(argv: [string]): int
return setup.cmd_setup(argv)
end cmd_setup
fn cmd_profile(argv: [string]): int
if argv.length() == 0
console.printErr("repoman: error: 'profile' requires a subcommand: list | install | diff | remove | show")
return 2
end if
let verb: string = argv[0]
// Slice argv[1..] for the verb's own parser
let n: int = argv.length()
mut rest: [string] = new [string](n - 1)
mut i: int = 0
while i < n - 1
rest[i] = argv[i + 1]
i = i + 1
end while
if verb == "list"
return cmd_profile_list(rest)
end if
if verb == "install"
return cmd_profile_install(rest)
end if
if verb == "diff"
return cmd_profile_diff(rest)
end if
if verb == "remove"
return cmd_profile_remove(rest)
end if
if verb == "show"
return cmd_profile_show(rest)
end if
console.printErr("repoman: error: unknown profile subcommand: " + verb)
return 2
end cmd_profile
fn build_host_facts(): profile.HostFacts
let home: string = env.get_env_or("HOME", "")
let user: string = env.get_env_or("USER", "")
let reg_r = config.load_or_init(home)
mut lan_ip: string = ""
if rg.is_ok(reg_r)
lan_ip = rg.unwrap_ok(reg_r).host.lan_ip
end if
return profile.HostFacts {
lan_ip: lan_ip,
user: user,
home: home
}
end build_host_facts
fn cmd_profile_list(argv: [string]): int
let home: string = env.get_env_or("HOME", "")
let entries = profile.list_all(home)
println("NAME SOURCE INSTALLED")
let n: int = entries.length()
mut i: int = 0
while i < n
let e = entries[i]
mut inst: string = "no"
if e.installed
inst = "yes"
end if
println(e.name + " " + e.source + " " + inst)
i = i + 1
end while
return 0
end cmd_profile_list
fn cmd_profile_install(argv: [string]): int
let host = build_host_facts()
let home: string = host.home
if argv.length() == 0
console.printErr("repoman: error: 'profile install' requires <name> or --all")
return 2
end if
if argv[0] == "--all"
let entries = profile.list_all(home)
let n: int = entries.length()
mut i: int = 0
mut errs: int = 0
while i < n
let e = entries[i]
println("==> install " + e.name + " (source: " + e.source + ")")
let r = profile.install(e.name, home, host)
if rg.is_err(r)
console.printErr(" error: " + rg.unwrap_err(r))
errs = errs + 1
end if
i = i + 1
end while
if errs > 0
return 1
end if
return 0
end if
let name: string = argv[0]
let r = profile.install(name, home, host)
if rg.is_err(r)
console.printErr("repoman: error: " + rg.unwrap_err(r))
return 1
end if
println("==> installed " + name)
return 0
end cmd_profile_install
fn cmd_profile_diff(argv: [string]): int
if argv.length() == 0
console.printErr("repoman: error: 'profile diff' requires <name>")
return 2
end if
let host = build_host_facts()
let r = profile.diff(argv[0], host.home, host)
if rg.is_err(r)
console.printErr("repoman: error: " + rg.unwrap_err(r))
return 3
end if
println(rg.unwrap_ok(r))
return 0
end cmd_profile_diff
fn cmd_profile_remove(argv: [string]): int
if argv.length() == 0
console.printErr("repoman: error: 'profile remove' requires <name>")
return 2
end if
let r = profile.remove_profile(argv[0])
if rg.is_err(r)
console.printErr("repoman: error: " + rg.unwrap_err(r))
return 1
end if
println("==> removed " + argv[0] + " from incus")
return 0
end cmd_profile_remove
fn cmd_profile_show(argv: [string]): int
if argv.length() == 0
console.printErr("repoman: error: 'profile show' requires <name>")
return 2
end if
let host = build_host_facts()
let r = profile.show(argv[0], host.home, host)
if rg.is_err(r)
console.printErr("repoman: error: " + rg.unwrap_err(r))
return 3
end if
println(rg.unwrap_ok(r))
return 0
end cmd_profile_show
fn version_string(): string
return "repoman 0.7.1"
end version_string
// Build the Claude history slug directory for a repo path: the absolute
// container-internal cwd with '/' replaced by '-' (e.g. /home/u/repos/x ->
// -home-u-repos-x), under ~/.claude/projects/.
fn claude_slug_dir(home: string, repo_path: string): string
let slug: string = str.replace(repo_path, "/", "-")
return paths.join(home, ".claude/projects/" + slug)
end claude_slug_dir
fn cmd_rename(argv: [string]): int
let parser: flag.FlagParser = flag.flag_parser_from(argv)
flag.application(parser, "repoman rename")
flag.description(parser, "Rename a project across container, registry, and repo dir")
let _y = flag.bool_flag(parser, "yes", 'y', false, "skip confirmation prompt")
let _mh = flag.bool_flag(parser, "migrate-claude-history", '\0', false, "also move the Claude history slug dir")
if not flag.parse(parser)
console.printErr("repoman: error: " + flag.error(parser))
return 2
end if
let positionals: [string] = flag.positional_args(parser)
if positionals.length() != 2
console.printErr("repoman: error: 'rename' takes exactly two arguments: <old> <new>")
return 2
end if
let old: string = positionals[0]
let new_name: string = positionals[1]
let do_history: bool = flag.get_bool(parser, "migrate-claude-history")
if old == new_name
console.printErr("repoman: error: <old> and <new> are the same: " + old)
return 2
end if
if not incus.validate_name(new_name)
console.printErr("repoman: error: invalid new name: " + new_name)
console.printErr("hint: lowercase alphanumeric + hyphens, <=63 chars, no leading hyphen")
return 1
end if
let home: string = env.get_env_or("HOME", "")
if str.length(home) == 0
console.printErr("repoman: error: HOME is not set")
return 3
end if
let cfg_path: string = config.registry_path(home)
let reg_r = config.load_or_init(home)
if rg.is_err(reg_r)
console.printErr("repoman: error: " + rg.unwrap_err(reg_r))
return 3
end if
let reg: config.Registry = rg.unwrap_ok(reg_r)
// Resolve the target project. Idempotent: accept either the old name
// (normal) or the new name (registry layer already renamed on a re-run).
let pn: int = reg.projects.length()
mut old_idx: int = -1
mut new_idx: int = -1
mut i: int = 0
while i < pn
if reg.projects[i].name == old
old_idx = i
end if
if reg.projects[i].name == new_name
new_idx = i
end if
i = i + 1
end while
if old_idx < 0 and new_idx < 0
console.printErr("repoman: error: no such project: " + old)
return 1
end if
if old_idx >= 0 and new_idx >= 0
console.printErr("repoman: error: both '" + old + "' and '" + new_name + "' exist in the registry; refusing to merge")
return 1
end if
mut base_idx: int = old_idx
if base_idx < 0
base_idx = new_idx
end if
let proj: config.Project = reg.projects[base_idx]
// The directory tier applies only when the repo dirname was coupled to the
// name (repo == old, or == new_name on a resumed run). A decoupled dirname
// is left alone.
let coupled: bool = proj.repo == old or proj.repo == new_name
let repos_root: string = paths.expand_home(reg.defaults.repos_root)
let old_dir: string = paths.join(repos_root, old)
let new_dir: string = paths.join(repos_root, new_name)
let inc_project: string = reg.defaults.incus_project
// Confirmation (case-aware).
let auto_confirmed: bool = flag.get_bool(parser, "yes")
if not auto_confirmed
println("repoman rename " + old + " " + new_name)
println(" will move:")
println(" - incus container " + old + " -> " + new_name)
println(" - registry entry " + old + " -> " + new_name)
if coupled
println(" - repo directory " + old_dir + " -> " + new_dir)
if do_history
println(" - claude history (slug for " + new_dir + ")")
end if
println(" your source is moved intact, never deleted.")
else
println(" repo directory unchanged (" + paths.join(repos_root, proj.repo) + ")")
println(" -- this project's dir name is decoupled from its container name.")
end if
let proceed: bool = console.confirm_default_no("continue?")
if not proceed
println("aborted")
return 4
end if
end if
let _ol: bool = log.open_log(reg.defaults.logdir, new_name, "rename")
// Inspect container run-state for both names. A probe FAILURE (incus
// unreachable) must abort before any mutation — otherwise we'd move the
// repo dir + registry while skipping the container rename, silently
// creating exactly the drift this command exists to fix. A confirmed-empty
// result (Ok "MISSING") is genuine absence and is handled normally.
let so_r = incus.container_state(inc_project, old)
if rg.is_err(so_r)
log.write("repoman: error: cannot query container state for '" + old + "': " + rg.unwrap_err(so_r))
return 1
end if
let state_old: string = rg.unwrap_ok(so_r)
let sn_r = incus.container_state(inc_project, new_name)
if rg.is_err(sn_r)
log.write("repoman: error: cannot query container state for '" + new_name + "': " + rg.unwrap_err(sn_r))
return 1
end if
let state_new: string = rg.unwrap_ok(sn_r)
if state_old != "MISSING" and state_new != "MISSING"
log.write("repoman: error: containers '" + old + "' and '" + new_name + "' both exist; refusing to merge")
return 1
end if
// Step: stop the container before renaming it. Only the OLD-named container
// is ever stopped, and only when it exists and is running — `incus rename`
// requires a stopped container. We never stop the new-named container: if it
// is already running, a prior run completed fully (restart is the last step),
// so there is nothing left to do and no reason to bounce a healthy container;
// if it needs a device repair it was left stopped by the failed run.
if state_old == "RUNNING"
log.write("==> incus stop " + old)
let r = incus.stop(inc_project, old)
if rg.is_err(r)
log.write("repoman: error: " + rg.unwrap_err(r))
return 1
end if
end if
// Step: host repo dir (coupled only).
if coupled
if paths.is_dir(old_dir) and paths.is_dir(new_dir)
log.write("repoman: error: both repo dirs exist: " + old_dir + " and " + new_dir)
log.write("hint: remove or merge one, then re-run 'repoman rename " + old + " " + new_name + "'")
return 1
elif paths.is_dir(old_dir)
log.write("==> mv " + old_dir + " -> " + new_dir)
let mv_r = iofile.rename(old_dir, new_dir)
if rg.is_err(mv_r)
log.write("repoman: error: cannot move repo dir: " + error.error_message(rg.unwrap_err(mv_r)))
log.write("hint: move it manually then re-run 'repoman rename " + old + " " + new_name + "'")
return 1
end if
elif paths.is_dir(new_dir)
log.write("==> repo dir already at " + new_dir + " (skipping)")
else
log.write("repoman: error: repo directory not found: " + old_dir)
return 1
end if
end if
// Step: rename the container.
if state_old != "MISSING"
log.write("==> incus rename " + old + " -> " + new_name)
let rn_r = incus.rename_container(inc_project, old, new_name)
if rg.is_err(rn_r)
log.write("repoman: error: " + rg.unwrap_err(rn_r))
return 1
end if
elif state_new != "MISSING"
log.write("==> container already named " + new_name + " (skipping rename)")
else
log.write("==> no incus container for '" + old + "' (skipping rename)")
end if
// Step: repoint the repo device (coupled only), on the now-new container.
if coupled and (state_old != "MISSING" or state_new != "MISSING")
log.write("==> incus config device set " + new_name + " repo source/path -> " + new_dir)
let ds_r = incus.device_set(inc_project, new_name, "repo", ["source=" + new_dir, "path=" + new_dir])
if rg.is_err(ds_r)
log.write("repoman: error: " + rg.unwrap_err(ds_r))
return 1
end if
end if
// Step: registry (skip if already renamed on a resumed run).
if old_idx >= 0
let reg2_r = config.rename_project(reg, old, new_name)
if rg.is_err(reg2_r)
log.write("repoman: error: " + rg.unwrap_err(reg2_r))
return 1
end if
let saved = config.save(rg.unwrap_ok(reg2_r), cfg_path)
if rg.is_err(saved)
log.write("repoman: error: " + rg.unwrap_err(saved))
return 1
end if
end if
// Step: Claude history slug (coupled + opt-in).
if coupled and do_history
let old_slug: string = claude_slug_dir(home, old_dir)
let new_slug: string = claude_slug_dir(home, new_dir)
if paths.is_dir(old_slug) and paths.is_dir(new_slug)
log.write("repoman: warning: both claude history dirs exist; leaving " + old_slug + " in place")
elif paths.is_dir(old_slug)
log.write("==> mv claude history " + old_slug + " -> " + new_slug)
let hs_r = iofile.rename(old_slug, new_slug)
if rg.is_err(hs_r)
log.write("repoman: warning: could not move claude history: " + error.error_message(rg.unwrap_err(hs_r)))
end if
elif paths.is_dir(new_slug)
log.write("==> claude history already at new slug (skipping)")
else
log.write("==> no claude history dir for old name (skipping)")
end if
end if
// Step: ensure the container ends running. repoman containers are meant to
// be up; this also makes a resumed run bring a stopped container back up
// regardless of where a prior run was interrupted.
let final_state_r = incus.container_state(inc_project, new_name)
mut final_state: string = "MISSING"
if rg.is_ok(final_state_r)
final_state = rg.unwrap_ok(final_state_r)
end if
if final_state != "MISSING" and final_state != "RUNNING"
log.write("==> incus start " + new_name)
let st_r = incus.start(inc_project, new_name)
if rg.is_err(st_r)
log.write("repoman: error: " + rg.unwrap_err(st_r))
return 1
end if
end if
log.write("==> renamed '" + old + "' -> '" + new_name + "'")
return 0
end cmd_rename
proc print_usage()
console.printErr("Usage: repoman <subcommand> [args]")
console.printErr("")
console.printErr("Subcommands")
console.printErr(" setup [--non-interactive]")
console.printErr(" First-time host bootstrap: incus project, registry, host LAN IP detection.")
console.printErr("")
console.printErr(" new <name> [--repo <dirname>] [--image <image>]")
console.printErr(" Launch a container in the 'repoman' Incus project; bind ~/repos/<dirname>.")
console.printErr("")
console.printErr(" profile {list|install|diff|remove|show} [<name>] [--all]")
console.printErr(" Manage Incus profiles from the repoman library.")
console.printErr("")
console.printErr(" sync [name] [--no-delete] [--dry-run]")
console.printErr(" Mirror local repos to NFS backup (rsync --delete by default).")
console.printErr("")
console.printErr(" list")
console.printErr(" Print a table of registered projects.")
console.printErr("")
console.printErr(" status [name]")
console.printErr(" Show project state from registry + live incus query.")
console.printErr("")
console.printErr(" remove <name> [--yes | -y] [--keep-incus]")
console.printErr(" Delete the incus container and registry entry. Prompts for confirmation unless --yes.")
console.printErr("")
console.printErr(" rename <old> <new> [--yes | -y] [--migrate-claude-history]")
console.printErr(" Rename a project: incus container, registry, and (coupled) repo dir. Idempotent.")
console.printErr("")
console.printErr(" shell <name> [--cwd <path>]")
console.printErr(" Open a bash login shell inside the project's container.")
console.printErr("")
console.printErr(" --version | -V")
console.printErr(" --help | -h | help")
end print_usage
fn dispatch(argv: [string]): int
// argv is the full process argv: [program, subcommand, ...]
let n: int = argv.length()
if n < 2
print_usage()
return 0
end if
let sub: string = argv[1]
if sub == "--version" or sub == "-V"
console.printErr(version_string())
return 0
end if
if sub == "--help" or sub == "-h" or sub == "help"
print_usage()
return 0
end if
// Slice argv[2..] for the subcommand parser
mut rest: [string] = new [string](n - 2)
mut i: int = 0
while i < n - 2
rest[i] = argv[i + 2]
i = i + 1
end while
if sub == "list"
return cmd_list(rest)
end if
if sub == "new"
return cmd_new(rest)
end if
if sub == "profile"
return cmd_profile(rest)
end if
if sub == "remove"
return cmd_remove(rest)
end if
if sub == "rename"
return cmd_rename(rest)
end if
if sub == "setup"
return cmd_setup(rest)
end if
if sub == "shell"
return cmd_shell(rest)
end if
if sub == "status"
return cmd_status(rest)
end if
if sub == "sync"
return cmd_sync(rest)
end if
console.printErr("repoman: error: unknown subcommand: " + sub)
console.printErr("hint: try 'repoman --help'")
return 2
end dispatch
end module
|