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
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
|
pub fn Parameters(comptime T: type) type {
const info = @typeInfo(T).@"struct";
var params: [info.fields.len + 2]std.builtin.Type.StructField = undefined;
const name_default_value: ?[]const u8 = null;
params[0] = .{
.name = "name",
.type = ?[]const u8,
.alignment = @alignOf(?[]const u8),
.default_value = @ptrCast(&name_default_value),
.is_comptime = false,
};
const description_default_value: []const u8 = "";
params[1] = .{
.name = "description",
.type = []const u8,
.alignment = @alignOf([]const u8),
.default_value = @ptrCast(&description_default_value),
.is_comptime = false,
};
var used_shorts = std.StaticBitSet(std.math.maxInt(u8) + 1).initEmpty();
// Reserver 'h' and 'v' for `--help` and `--version`
used_shorts.set('h');
used_shorts.set('v');
for (info.fields, params[2..]) |field, *param| {
const FieldType = field.type;
const field_info = @typeInfo(FieldType);
const Command = switch (field_info) {
.@"union" => |un| blk: {
var cmd_fields: [un.fields.len]std.builtin.Type.StructField = undefined;
for (un.fields, &cmd_fields) |un_field, *cmd_field| {
const CmdParam = Parameters(un_field.type);
const cmd_default_value = CmdParam{};
cmd_field.* = .{
.name = un_field.name,
.type = CmdParam,
.alignment = @alignOf(CmdParam),
.default_value = @ptrCast(&cmd_default_value),
.is_comptime = false,
};
}
break :blk @Type(.{ .@"struct" = .{
.layout = .auto,
.fields = &cmd_fields,
.decls = &.{},
.is_tuple = false,
} });
},
else => struct {},
};
const default_short = if (used_shorts.isSet(field.name[0])) null else blk: {
used_shorts.set(field.name[0]);
break :blk field.name[0];
};
const Param = struct {
short: ?u8 = default_short,
long: ?[]const u8 = field.name,
value: []const u8 = blk: {
var res_buf: [field.name.len]u8 = undefined;
for (&res_buf, field.name) |*r, c|
r.* = std.ascii.toUpper(c);
const res = res_buf;
break :blk &res;
},
description: []const u8 = "",
init: Init(FieldType) = defaultInit(FieldType, field.default_value),
deinit: Deinit(FieldType) = defaultDeinit(FieldType),
next: Next(FieldType) = defaultNext(FieldType),
parse: ParseInto(FieldType) = defaultParseInto(FieldType),
command: Command = .{},
required: bool = field.default_value == null,
kind: enum {
flag,
option,
positional,
positionals,
command,
} = switch (@typeInfo(field.type)) {
.@"union" => .command,
.bool => .flag,
else => .option,
},
};
const default_value = Param{};
param.* = .{
.name = field.name,
.type = Param,
.alignment = @alignOf(Param),
.default_value = @ptrCast(&default_value),
.is_comptime = false,
};
}
return @Type(.{ .@"struct" = .{
.layout = .auto,
.fields = ¶ms,
.decls = &.{},
.is_tuple = false,
} });
}
fn Init(comptime T: type) type {
return ?*const fn (std.mem.Allocator) ParseError!T;
}
fn defaultInit(comptime T: type, comptime default_value: ?*const anyopaque) Init(T) {
if (default_value) |v| {
return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return @as(*const T, @alignCast(@ptrCast(v))).*;
}
}.init;
}
if (types.allFieldsHaveDefaults(T)) {
return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return .{};
}
}.init;
}
return switch (@typeInfo(T)) {
.void => return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return {};
}
}.init,
.bool => return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return false;
}
}.init,
.int, .float => return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return 0;
}
}.init,
.optional => return struct {
fn init(_: std.mem.Allocator) ParseError!T {
return null;
}
}.init,
else => null,
};
}
fn Deinit(comptime T: type) type {
return ?*const fn (*T, std.mem.Allocator) void;
}
fn defaultDeinit(comptime T: type) Deinit(T) {
switch (@typeInfo(T)) {
.@"struct", .@"enum", .@"union" => {
if (!@hasDecl(T, "deinit"))
return null;
},
else => return null,
}
return switch (@TypeOf(T.deinit)) {
fn (*const T) void,
fn (*T) void,
fn (T) void,
=> struct {
fn deinit(v: *T, _: std.mem.Allocator) void {
v.deinit();
}
}.deinit,
fn (*const T, std.mem.Allocator) void,
fn (*T, std.mem.Allocator) void,
fn (T, std.mem.Allocator) void,
=> struct {
fn deinit(v: *T, gpa: std.mem.Allocator) void {
v.deinit(gpa);
}
}.deinit,
else => null,
};
}
fn Next(comptime T: type) type {
return ?*const fn (T) ParseError!T;
}
fn defaultNext(comptime T: type) Next(T) {
return switch (@typeInfo(T)) {
.bool => struct {
fn next(_: T) !bool {
return true;
}
}.next,
.int => struct {
fn next(i: T) !T {
return i + 1;
}
}.next,
else => null,
};
}
fn Parse(comptime T: type) type {
return ?*const fn ([]const u8) ParseError!T;
}
fn defaultParse(comptime T: type) Parse(T) {
return switch (@typeInfo(T)) {
.bool => struct {
fn parse(str: []const u8) ParseError!T {
const res = std.meta.stringToEnum(enum { false, true }, str) orelse
return error.ParsingFailed;
return res == .true;
}
}.parse,
.int => struct {
fn parse(str: []const u8) ParseError!T {
return std.fmt.parseInt(T, str, 0) catch
return error.ParsingFailed;
}
}.parse,
.@"enum" => struct {
fn parse(str: []const u8) ParseError!T {
return std.meta.stringToEnum(T, str) orelse
return error.ParsingFailed;
}
}.parse,
else => null,
};
}
fn ParseInto(comptime T: type) type {
return ?*const fn (*T, std.mem.Allocator, []const u8) ParseError!void;
}
fn defaultParseInto(comptime T: type) ParseInto(T) {
if (types.isArrayListUnmanaged(T)) {
const Child = @typeInfo(T.Slice).pointer.child;
const parseChild = defaultParse(Child) orelse return null;
return struct {
fn parseInto(list: *T, allocator: std.mem.Allocator, str: []const u8) ParseError!void {
const ptr = try list.addOne(allocator);
errdefer _ = list.pop();
ptr.* = try parseChild(str);
}
}.parseInto;
} else switch (@typeInfo(T)) {
.optional => |o| {
const parse = defaultParse(o.child) orelse return null;
return struct {
fn parseInto(ptr: *T, allocator: std.mem.Allocator, str: []const u8) ParseError!void {
_ = allocator;
ptr.* = try parse(str);
}
}.parseInto;
},
else => {
const parse = defaultParse(T) orelse return null;
return struct {
fn parseInto(ptr: *T, allocator: std.mem.Allocator, str: []const u8) ParseError!void {
_ = allocator;
ptr.* = try parse(str);
}
}.parseInto;
},
}
}
fn validateParameters(
writer: anytype,
gpa: std.mem.Allocator,
name: []const u8,
comptime T: type,
params: Parameters(T),
) !void {
var res: anyerror!void = {};
var first_command: ?[]const u8 = null;
var first_positionals: ?[]const u8 = null;
const fields = @typeInfo(T).@"struct".fields;
inline for (fields) |field| switch (@field(params, field.name).kind) {
.flag, .option, .positional, .positionals => {
const param = @field(params, field.name);
if (param.init == null) {
try writer.print("error: '{s}.{s}.init' is null\n", .{ name, field.name });
try writer.print("note: could not infer 'init' for type '{s}'\n", .{@typeName(field.type)});
try writer.print("note: or it was set to null by the caller (don't do that)\n\n", .{});
res = error.InvalidParameter;
}
if (param.kind == .flag and param.next == null) {
try writer.print("error: '{s}.{s}.next' is null\n", .{ name, field.name });
try writer.print("note: could not infer 'next' for type '{s}'\n", .{@typeName(field.type)});
try writer.print("note: or it was set to null by the caller (don't do that)\n\n", .{});
res = error.InvalidParameter;
}
if (param.kind != .flag and param.parse == null) {
try writer.print("error: '{s}.{s}.parse' is null\n", .{ name, field.name });
try writer.print("note: could not infer 'parse' for type '{s}'\n", .{@typeName(field.type)});
try writer.print("note: or it was set to null by the caller (don't do that)\n\n", .{});
res = error.InvalidParameter;
}
if (first_command) |command| {
if (param.kind == .positional or param.kind == .positionals) {
try writer.print("error: cannot have positionals after a command\n", .{});
try writer.print("note: '{s}.{s}' is the command\n", .{ name, command });
try writer.print("note: '{s}.{s}' is the positional\n\n", .{ name, field.name });
res = error.InvalidParameter;
}
}
if (first_positionals) |positional| {
if (param.kind == .positional or param.kind == .positionals) {
try writer.print("error: cannot have positionals after a positional taking many values\n", .{});
try writer.print("note: '{s}.{s}' is the positional taking many values\n", .{ name, positional });
try writer.print("note: '{s}.{s}' is the positional after it\n\n", .{ name, field.name });
res = error.InvalidParameter;
}
}
if (param.kind == .positionals and first_positionals == null)
first_positionals = field.name;
},
.command => case: {
if (first_positionals) |positional| {
try writer.print("error: cannot have command after a positional taking many values\n", .{});
try writer.print("note: '{s}.{s}' is the positional\n", .{ name, positional });
try writer.print("note: '{s}.{s}' is the command\n\n", .{ name, field.name });
res = error.InvalidParameter;
}
const param = @field(params, field.name);
const union_info = @typeInfo(field.type);
if (union_info != .@"union" or union_info.@"union".tag_type == null) {
try writer.print(
"error: expected command '{s}.{s}' to be a tagged union, but found '{s}'\n\n",
.{ name, field.name, @typeName(field.type) },
);
res = error.InvalidParameter;
break :case;
}
if (first_command) |command| {
try writer.print("error: only one field can be a command\n", .{});
try writer.print("note: both '{s}.{s}' and '{s}.{s}' are commands\n\n", .{ name, command, name, field.name });
res = error.InvalidParameter;
break :case;
} else {
first_command = field.name;
}
const union_field = union_info.@"union".fields;
inline for (union_field) |cmd_field| {
const cmd_params = @field(param.command, cmd_field.name);
const new_name = try std.fmt.allocPrint(gpa, "{s}.{s}", .{
name,
cmd_field.name,
});
defer gpa.free(new_name);
validateParameters(writer, gpa, new_name, cmd_field.type, cmd_params) catch |err| {
res = err;
};
}
},
};
return res;
}
fn validateParametersComptime(comptime T: type, comptime params: Parameters(T)) void {
comptime {
var error_buf: [1024 * 4]u8 = undefined;
var alloc_buf: [1024 * 4]u8 = undefined;
var error_fbs = std.io.fixedBufferStream(&error_buf);
var fba = std.heap.FixedBufferAllocator.init(&alloc_buf);
validateParameters(error_fbs.writer(), fba.allocator(), "", T, params) catch
@compileError(error_fbs.getWritten());
}
}
fn testValidateParameters(comptime T: type, opt: struct {
params: Parameters(T),
expected: anyerror!void,
expected_err: []const u8,
}) !void {
const gpa = std.testing.allocator;
var err = std.ArrayList(u8).init(gpa);
const err_writer = err.writer();
defer err.deinit();
const actual = validateParameters(err_writer, gpa, "", T, opt.params);
try std.testing.expectEqualStrings(opt.expected_err, err.items);
try std.testing.expectEqualDeep(opt.expected, actual);
}
test validateParameters {
try testValidateParameters(struct { a: *const void }, .{
.params = .{ .a = .{ .kind = .flag } },
.expected = error.InvalidParameter,
.expected_err =
\\error: '.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.a.next' is null
\\note: could not infer 'next' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\
,
});
try testValidateParameters(struct { a: *const void }, .{
.params = .{ .a = .{ .kind = .option } },
.expected = error.InvalidParameter,
.expected_err =
\\error: '.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\
,
});
try testValidateParameters(struct { a: *const void }, .{
.params = .{ .a = .{ .kind = .positional } },
.expected = error.InvalidParameter,
.expected_err =
\\error: '.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\
,
});
try testValidateParameters(struct { a: *const void }, .{
.params = .{ .a = .{ .kind = .positionals } },
.expected = error.InvalidParameter,
.expected_err =
\\error: '.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\
,
});
try testValidateParameters(struct { a: *const void }, .{
.params = .{ .a = .{ .kind = .command } },
.expected = error.InvalidParameter,
.expected_err =
\\error: expected command '.a' to be a tagged union, but found '*const void'
\\
\\
,
});
try testValidateParameters(struct { a: union(enum) {}, b: union(enum) {} }, .{
.params = .{
.a = .{ .kind = .command },
.b = .{ .kind = .command },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: only one field can be a command
\\note: both '.a' and '.b' are commands
\\
\\
,
});
try testValidateParameters(struct { a: union(enum) {}, b: u8 }, .{
.params = .{
.a = .{ .kind = .command },
.b = .{ .kind = .positional },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: cannot have positionals after a command
\\note: '.a' is the command
\\note: '.b' is the positional
\\
\\
,
});
try testValidateParameters(struct { a: union(enum) {}, b: u8 }, .{
.params = .{
.a = .{ .kind = .command },
.b = .{ .kind = .positionals },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: cannot have positionals after a command
\\note: '.a' is the command
\\note: '.b' is the positional
\\
\\
,
});
try testValidateParameters(struct { a: u8, b: union(enum) {} }, .{
.params = .{
.a = .{ .kind = .positionals },
.b = .{ .kind = .command },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: cannot have command after a positional taking many values
\\note: '.a' is the positional
\\note: '.b' is the command
\\
\\
,
});
try testValidateParameters(struct { a: u8, b: u8 }, .{
.params = .{
.a = .{ .kind = .positionals },
.b = .{ .kind = .positional },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: cannot have positionals after a positional taking many values
\\note: '.a' is the positional taking many values
\\note: '.b' is the positional after it
\\
\\
,
});
try testValidateParameters(struct { a: u8, b: u8 }, .{
.params = .{
.a = .{ .kind = .positionals },
.b = .{ .kind = .positionals },
},
.expected = error.InvalidParameter,
.expected_err =
\\error: cannot have positionals after a positional taking many values
\\note: '.a' is the positional taking many values
\\note: '.b' is the positional after it
\\
\\
,
});
try testValidateParameters(struct { a: union(enum) {
a: struct { a: *const void },
b: struct { a: *const void },
c: struct { a: *const void },
d: struct { a: *const void },
e: struct {
a: union(enum) {},
b: union(enum) {},
},
} }, .{
.params = .{ .a = .{ .command = .{
.a = .{ .a = .{ .kind = .flag } },
.b = .{ .a = .{ .kind = .option } },
.c = .{ .a = .{ .kind = .positional } },
.d = .{ .a = .{ .kind = .positionals } },
.e = .{ .a = .{ .kind = .command }, .b = .{ .kind = .command } },
} } },
.expected = error.InvalidParameter,
.expected_err =
\\error: '.a.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.a.a.next' is null
\\note: could not infer 'next' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.b.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.b.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.c.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.c.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.d.a.init' is null
\\note: could not infer 'init' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: '.d.a.parse' is null
\\note: could not infer 'parse' for type '*const void'
\\note: or it was set to null by the caller (don't do that)
\\
\\error: only one field can be a command
\\note: both '.e.a' and '.e.b' are commands
\\
\\
,
});
}
pub const HelpParam = struct {
short: ?u8 = 'h',
long: ?[]const u8 = "help",
command: ?[]const u8 = "help",
description: []const u8 = "Print help",
};
pub const VersionParam = struct {
string: []const u8 = "0.0.0",
short: ?u8 = 'v',
long: ?[]const u8 = "version",
command: ?[]const u8 = "version",
description: []const u8 = "Print version",
};
pub const ExtraParameters = struct {
help: HelpParam = .{},
version: VersionParam = .{},
};
pub const ParseOptions = struct {
gpa: std.mem.Allocator,
extra_params: ExtraParameters = .{},
assignment_separators: []const u8 = "=",
/// The Writer used to write expected output like the help message when `-h` is passed. If
/// `null`, `std.io.getStdOut` will be used
stdout: ?std.io.AnyWriter = null,
/// The Writer used to write errors. `std.io.getStdErr` will be used. If `null`,
/// `std.io.getStdOut` will be used
stderr: ?std.io.AnyWriter = null,
};
pub const ParseError = error{
ParsingInterrupted,
ParsingFailed,
} || std.mem.Allocator.Error;
pub fn parseIter(it: anytype, comptime T: type, opt: ParseOptions) ParseError!T {
const params: Parameters(T) = if (@hasDecl(T, "parameters")) T.parameters else .{};
return parseIterParameters(it, T, params, opt);
}
pub fn parseIterParameters(
it: anytype,
comptime T: type,
comptime params: Parameters(T),
opt: ParseOptions,
) ParseError!T {
validateParametersComptime(T, params);
var parser = try Parser(@TypeOf(it), T, params).init(it, opt);
return parser.parse();
}
fn Parser(comptime Iter: type, comptime T: type, comptime params: Parameters(T)) type {
return struct {
it: Iter,
result: T,
opt: ParseOptions,
has_been_set: HasBeenSet,
current_positional: usize,
stdout_writer: std.fs.File.Writer,
stderr_writer: std.fs.File.Writer,
const Field = std.meta.FieldEnum(T);
const HasBeenSet = std.EnumSet(Field);
const fields = @typeInfo(T).@"struct".fields;
fn init(it: Iter, opt: ParseOptions) ParseError!@This() {
var res = @This(){
.it = it,
.opt = opt,
.result = undefined,
.has_been_set = .{},
.current_positional = 0,
.stdout_writer = std.io.getStdOut().writer(),
.stderr_writer = std.io.getStdErr().writer(),
};
inline for (fields) |field| {
const param = @field(params, field.name);
if (!param.required) {
const initValue = param.init orelse unreachable; // Shouldn't happen (validateParameters)
@field(res.result, field.name) = try initValue(opt.gpa);
res.has_been_set.insert(@field(Field, field.name));
}
}
return res;
}
fn parse(parser: *@This()) ParseError!T {
errdefer {
// If we fail, deinit fields that can be deinited
inline for (fields) |field| continue_field_loop: {
const param = @field(params, field.name);
const deinit = param.deinit orelse break :continue_field_loop;
if (parser.has_been_set.contains(@field(Field, field.name)))
deinit(&@field(parser.result, field.name), parser.opt.gpa);
}
}
while (parser.it.next()) |arg| {
if (std.mem.eql(u8, arg, "--"))
break;
if (std.mem.startsWith(u8, arg, "--")) {
try parser.parseLong(arg[2..]);
} else if (std.mem.startsWith(u8, arg, "-")) {
try parser.parseShorts(arg[1..]);
} else if (try parser.parseCommand(arg)) {
return parser.result;
} else {
try parser.parsePositional(arg);
}
}
while (parser.it.next()) |arg|
try parser.parsePositional(arg);
inline for (fields) |field| {
const param = @field(params, field.name);
_ = param;
if (!parser.has_been_set.contains(@field(Field, field.name))) {
// TODO: Proper error. Required argument not specified
return error.ParsingFailed;
}
}
return parser.result;
}
fn parseLong(parser: *@This(), name: []const u8) ParseError!void {
if (parser.opt.extra_params.help.long) |h|
if (std.mem.eql(u8, name, h))
return parser.printHelp();
if (parser.opt.extra_params.version.long) |v|
if (std.mem.eql(u8, name, v))
return parser.printVersion();
inline for (fields) |field| switch (@field(params, field.name).kind) {
.flag => switch_case: {
const param = @field(params, field.name);
const long_name = param.long orelse break :switch_case;
if (!std.mem.eql(u8, name, long_name))
break :switch_case;
return parser.parseNext(@field(Field, field.name));
},
.option => switch_case: {
const param = @field(params, field.name);
const long_name = param.long orelse break :switch_case;
if (!std.mem.startsWith(u8, name, long_name))
break :switch_case;
const value = if (name.len == long_name.len) blk: {
break :blk parser.it.next() orelse {
// TODO: Report proper error
return error.ParsingFailed;
};
} else if (std.mem.indexOfScalar(u8, parser.opt.assignment_separators, name[long_name.len]) != null) blk: {
break :blk name[long_name.len + 1 ..];
} else {
break :switch_case;
};
return parser.parseValue(@field(Field, field.name), value);
},
.positional, .positionals, .command => {},
};
// TODO: Report proper error
return error.ParsingFailed;
}
fn parseShorts(parser: *@This(), shorts: []const u8) ParseError!void {
var i: usize = 0;
while (i < shorts.len)
i = try parser.parseShort(shorts, i);
}
fn parseShort(parser: *@This(), shorts: []const u8, pos: usize) ParseError!usize {
if (parser.opt.extra_params.help.short) |h|
if (shorts[pos] == h)
return parser.printHelp();
if (parser.opt.extra_params.version.short) |v|
if (shorts[pos] == v)
return parser.printVersion();
inline for (fields) |field| switch (@field(params, field.name).kind) {
.flag => switch_case: {
const param = @field(params, field.name);
const short_name = param.short orelse break :switch_case;
if (shorts[pos] != short_name)
break :switch_case;
try parser.parseNext(@field(Field, field.name));
return pos + 1;
},
.option => switch_case: {
const param = @field(params, field.name);
const short_name = param.short orelse break :switch_case;
if (shorts[pos] != short_name)
break :switch_case;
const value = if (pos + 1 == shorts.len) blk: {
break :blk parser.it.next() orelse {
// TODO: Report proper error
return error.ParsingFailed;
};
} else blk: {
const assignment_separators = parser.opt.assignment_separators;
const has_assignment_separator =
std.mem.indexOfScalar(u8, assignment_separators, shorts[pos + 1]) != null;
break :blk shorts[pos + 1 + @intFromBool(has_assignment_separator) ..];
};
try parser.parseValue(@field(Field, field.name), value);
return shorts.len;
},
.positional, .positionals, .command => {},
};
// TODO: Report proper error
return error.ParsingFailed;
}
fn parseCommand(parser: *@This(), arg: []const u8) ParseError!bool {
if (parser.opt.extra_params.help.command) |h|
if (std.mem.eql(u8, arg, h))
return parser.printHelp();
if (parser.opt.extra_params.version.command) |v|
if (std.mem.eql(u8, arg, v))
return parser.printVersion();
inline for (fields) |field| continue_field_loop: {
const union_field = switch (@typeInfo(field.type)) {
.@"union" => |u| u.fields,
else => continue,
};
const param = @field(params, field.name);
if (param.kind != .command)
break :continue_field_loop;
inline for (union_field) |cmd_field| continue_cmd_field_loop: {
const cmd_params = @field(param.command, cmd_field.name);
if (!std.mem.eql(u8, arg, cmd_params.name orelse cmd_field.name))
break :continue_cmd_field_loop;
const P = Parser(Iter, cmd_field.type, cmd_params);
var cmd_parser = try P.init(parser.it, parser.opt);
const cmd_result = try cmd_parser.parse();
const cmd_union = @unionInit(field.type, cmd_field.name, cmd_result);
@field(parser.result, field.name) = cmd_union;
parser.has_been_set.insert(@field(Field, field.name));
return true;
}
}
return false;
}
fn parsePositional(parser: *@This(), arg: []const u8) ParseError!void {
var i: usize = 0;
inline for (fields) |field| continue_field_loop: {
const param = @field(params, field.name);
const next_positional = switch (param.kind) {
.positional => parser.current_positional + 1,
.positionals => parser.current_positional,
else => break :continue_field_loop,
};
if (parser.current_positional != i) {
i += 1;
break :continue_field_loop;
}
try parser.parseValue(@field(Field, field.name), arg);
parser.current_positional = next_positional;
return;
}
// TODO: Proper error. Too many positionals
return error.ParsingFailed;
}
fn parseNext(parser: *@This(), comptime field: Field) ParseError!void {
const field_name = @tagName(field);
const param = @field(params, field_name);
if (!parser.has_been_set.contains(field)) {
const initValue = param.init orelse unreachable; // Shouldn't happen (validateParameters)
@field(parser.result, field_name) = try initValue(parser.opt.gpa);
}
const next = param.next orelse unreachable; // Shouldn't happen (validateParameters)
const field_ptr = &@field(parser.result, field_name);
field_ptr.* = try next(field_ptr.*);
parser.has_been_set.insert(field);
}
fn parseValue(parser: *@This(), comptime field: Field, value: []const u8) ParseError!void {
const field_name = @tagName(field);
const param = @field(params, field_name);
if (!parser.has_been_set.contains(field)) {
const initValue = param.init orelse unreachable; // Shouldn't happen (validateParameters)
@field(parser.result, field_name) = try initValue(parser.opt.gpa);
}
const parseInto = param.parse orelse unreachable; // Shouldn't happen (validateParameters)
try parseInto(&@field(parser.result, field_name), parser.opt.gpa, value);
parser.has_been_set.insert(field);
}
fn printHelp(parser: *@This()) ParseError {
helpParameters(parser.stdout(), T, params, .{
.extra_params = parser.opt.extra_params,
}) catch {};
return error.ParsingInterrupted;
}
fn printVersion(parser: *@This()) ParseError {
parser.stdout().writeAll(parser.opt.extra_params.version.string) catch {};
return error.ParsingInterrupted;
}
fn stdout(parser: *@This()) std.io.AnyWriter {
return parser.opt.stdout orelse parser.stdout_writer.any();
}
fn stderr(parser: *@This()) std.io.AnyWriter {
return parser.opt.stderr orelse parser.stderr_writer.any();
}
};
}
fn testParseIter(comptime T: type, comptime params: Parameters(T), opt: struct {
args: []const u8,
expected: anyerror!T,
expected_out: []const u8 = "",
expected_err: []const u8 = "",
}) !void {
const gpa = std.testing.allocator;
var it = try std.process.ArgIteratorGeneral(.{}).init(gpa, opt.args);
defer it.deinit();
var out = std.ArrayList(u8).init(gpa);
const out_writer = out.writer();
defer out.deinit();
var err = std.ArrayList(u8).init(gpa);
const err_writer = err.writer();
defer err.deinit();
const actual = parseIterParameters(&it, T, params, .{
.gpa = gpa,
.stdout = out_writer.any(),
.stderr = err_writer.any(),
});
defer blk: {
var v = actual catch break :blk;
if (@hasDecl(T, "deinit"))
v.deinit(gpa);
}
try std.testing.expectEqualDeep(opt.expected, actual);
try std.testing.expectEqualStrings(opt.expected_out, out.items);
try std.testing.expectEqualStrings(opt.expected_err, err.items);
}
test "parseIterParameters" {
const S = struct {
a: bool = false,
b: u8 = 0,
c: enum { a, b, c, d } = .a,
d: std.ArrayListUnmanaged(usize) = .{},
e: ?u8 = null,
fn deinit(s: *@This(), allocator: std.mem.Allocator) void {
s.d.deinit(allocator);
}
};
try testParseIter(S, .{}, .{
.args = "--a",
.expected = .{ .a = true },
});
try testParseIter(S, .{}, .{
.args = "-a",
.expected = .{ .a = true },
});
try testParseIter(S, .{ .b = .{ .kind = .flag } }, .{
.args = "--b",
.expected = .{ .b = 1 },
});
try testParseIter(S, .{ .b = .{ .kind = .flag } }, .{
.args = "-b",
.expected = .{ .b = 1 },
});
try testParseIter(S, .{ .b = .{ .kind = .flag } }, .{
.args = "-bb",
.expected = .{ .b = 2 },
});
try testParseIter(S, .{ .b = .{ .kind = .flag } }, .{
.args = "-aabb",
.expected = .{ .a = true, .b = 2 },
});
try testParseIter(S, .{}, .{
.args = "--b 1",
.expected = .{ .b = 1 },
});
try testParseIter(S, .{}, .{
.args = "--b=2",
.expected = .{ .b = 2 },
});
try testParseIter(S, .{}, .{
.args = "-b 1",
.expected = .{ .b = 1 },
});
try testParseIter(S, .{}, .{
.args = "-b=2",
.expected = .{ .b = 2 },
});
try testParseIter(S, .{}, .{
.args = "-b3",
.expected = .{ .b = 3 },
});
try testParseIter(S, .{}, .{
.args = "-aab4",
.expected = .{ .a = true, .b = 4 },
});
try testParseIter(S, .{}, .{
.args = "--c b",
.expected = .{ .c = .b },
});
try testParseIter(S, .{}, .{
.args = "--c=c",
.expected = .{ .c = .c },
});
try testParseIter(S, .{}, .{
.args = "-c b",
.expected = .{ .c = .b },
});
try testParseIter(S, .{}, .{
.args = "-c=c",
.expected = .{ .c = .c },
});
try testParseIter(S, .{}, .{
.args = "-cd",
.expected = .{ .c = .d },
});
try testParseIter(S, .{ .b = .{ .kind = .flag } }, .{
.args = "-bbcd",
.expected = .{ .b = 2, .c = .d },
});
var expected_items = [_]usize{ 0, 1, 2 };
try testParseIter(S, .{}, .{
.args = "-d 0 -d 1 -d 2",
.expected = .{ .d = .{ .items = &expected_items, .capacity = 8 } },
});
try testParseIter(S, .{}, .{
.args = "-e 2",
.expected = .{ .e = 2 },
});
// Tests that `d` is not leaked when an error occurs
try testParseIter(S, .{}, .{
.args = "-d 0 -d 1 -d 2 -qqqq",
.expected = error.ParsingFailed,
});
}
test "parseIterRequired" {
const S = struct {
a: bool = false,
b: bool,
};
try testParseIter(S, .{}, .{
.args = "",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{}, .{
.args = "-b",
.expected = .{ .b = true },
});
try testParseIter(S, .{ .a = .{ .required = true } }, .{
.args = "",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .a = .{ .required = true } }, .{
.args = "-a",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .a = .{ .required = true } }, .{
.args = "-b",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .a = .{ .required = true } }, .{
.args = "-a -b",
.expected = .{ .a = true, .b = true },
});
}
test "parseIterPositional" {
const S = struct {
a: bool = false,
b: u8 = 0,
c: enum { a, b, c, d } = .a,
};
try testParseIter(S, .{ .a = .{ .kind = .positional } }, .{
.args = "true",
.expected = .{ .a = true },
});
try testParseIter(S, .{ .a = .{ .kind = .positional } }, .{
.args = "false",
.expected = .{ .a = false },
});
try testParseIter(S, .{ .b = .{ .kind = .positional } }, .{
.args = "0",
.expected = .{ .b = 0 },
});
try testParseIter(S, .{ .b = .{ .kind = .positional } }, .{
.args = "2",
.expected = .{ .b = 2 },
});
try testParseIter(S, .{ .c = .{ .kind = .positional } }, .{
.args = "a",
.expected = .{ .c = .a },
});
try testParseIter(S, .{ .c = .{ .kind = .positional } }, .{
.args = "c",
.expected = .{ .c = .c },
});
try testParseIter(S, .{
.a = .{ .kind = .positional },
.b = .{ .kind = .positional },
.c = .{ .kind = .positional },
}, .{
.args = "true 2 d",
.expected = .{ .a = true, .b = 2, .c = .d },
});
try testParseIter(S, .{
.a = .{ .kind = .positional },
.b = .{ .kind = .positional },
.c = .{ .kind = .positional },
}, .{
.args = "false 4 c",
.expected = .{ .a = false, .b = 4, .c = .c },
});
try testParseIter(S, .{ .a = .{ .kind = .positional } }, .{
.args = "false true",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .a = .{ .kind = .positionals } }, .{
.args = "false true",
.expected = .{ .a = true },
});
try testParseIter(S, .{ .b = .{ .kind = .positional } }, .{
.args = "2 3",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .b = .{ .kind = .positionals } }, .{
.args = "2 3",
.expected = .{ .b = 3 },
});
try testParseIter(S, .{ .c = .{ .kind = .positional } }, .{
.args = "c d",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{ .c = .{ .kind = .positionals } }, .{
.args = "c d",
.expected = .{ .c = .d },
});
try testParseIter(S, .{
.a = .{ .kind = .positional },
.b = .{ .kind = .positional },
.c = .{ .kind = .positional },
}, .{
.args = "true 2 d d",
.expected = error.ParsingFailed,
});
try testParseIter(S, .{
.a = .{ .kind = .positional },
.b = .{ .kind = .positional },
.c = .{ .kind = .positionals },
}, .{
.args = "true 2 c d",
.expected = .{ .a = true, .b = 2, .c = .d },
});
}
test "parseIterCommand" {
const S = struct {
a: bool = false,
b: bool = false,
command: union(enum) {
sub1: struct { a: bool = false },
sub2: struct { b: bool = false },
},
};
try testParseIter(S, .{}, .{
.args = "sub1",
.expected = .{ .command = .{ .sub1 = .{} } },
});
try testParseIter(S, .{}, .{
.args = "sub1 --a",
.expected = .{ .command = .{ .sub1 = .{ .a = true } } },
});
try testParseIter(S, .{}, .{
.args = "--a --b sub1 --a",
.expected = .{
.a = true,
.b = true,
.command = .{ .sub1 = .{ .a = true } },
},
});
try testParseIter(S, .{}, .{
.args = "sub2",
.expected = .{ .command = .{ .sub2 = .{} } },
});
try testParseIter(S, .{}, .{
.args = "sub2 --b",
.expected = .{ .command = .{ .sub2 = .{ .b = true } } },
});
try testParseIter(S, .{}, .{
.args = "--a --b sub2 --b",
.expected = .{
.a = true,
.b = true,
.command = .{ .sub2 = .{ .b = true } },
},
});
try testParseIter(S, .{ .command = .{ .command = .{
.sub1 = .{ .name = "bob" },
.sub2 = .{ .name = "kurt" },
} } }, .{
.args = "bob",
.expected = .{ .command = .{ .sub1 = .{} } },
});
try testParseIter(S, .{ .command = .{ .command = .{
.sub1 = .{ .name = "bob" },
.sub2 = .{ .name = "kurt" },
} } }, .{
.args = "kurt",
.expected = .{ .command = .{ .sub2 = .{} } },
});
}
test "parseIterHelp" {
const S = struct {
alice: bool = false,
bob: bool = false,
ben: bool = false,
kurt: usize = 0,
command: union(enum) {
cmd1: struct {
kurt: bool = false,
mark: bool = false,
},
cmd2: struct {
jim: bool = false,
frans: bool = false,
},
},
};
const help_args = [_][]const u8{ "-h", "--help", "help" };
for (help_args) |args| {
try testParseIter(S, .{ .name = "testing-program" }, .{
.args = args,
.expected = error.ParsingInterrupted,
.expected_out =
\\Usage: testing-program [OPTIONS] [COMMAND]
\\
\\Commands:
\\ cmd1
\\ cmd2
\\ help Print help
\\ version Print version
\\
\\Options:
\\ -a, --alice
\\ -b, --bob
\\ --ben
\\ -k, --kurt <KURT>
\\ -h, --help Print help
\\ -v, --version Print version
\\
,
});
try testParseIter(S, .{
.name = "testing-program",
.description = "This is a test",
.alice = .{ .description = "Who is this?" },
.bob = .{ .description = "Bob the builder" },
.ben = .{ .description = "One of the people of all time" },
.kurt = .{ .description = "No fun allowed" },
.command = .{ .command = .{
.cmd1 = .{ .name = "command1", .description = "Command 1" },
.cmd2 = .{ .name = "command2", .description = "Command 2" },
} },
}, .{
.args = args,
.expected = error.ParsingInterrupted,
.expected_out =
\\This is a test
\\
\\Usage: testing-program [OPTIONS] [COMMAND]
\\
\\Commands:
\\ command1 Command 1
\\ command2 Command 2
\\ help Print help
\\ version Print version
\\
\\Options:
\\ -a, --alice Who is this?
\\ -b, --bob Bob the builder
\\ --ben One of the people of all time
\\ -k, --kurt <KURT> No fun allowed
\\ -h, --help Print help
\\ -v, --version Print version
\\
,
});
}
}
pub const HelpOptions = struct {
extra_params: ExtraParameters = .{},
};
const help_long_prefix_len = 4;
const help_value_prefix_len = 3;
const help_description_spacing = 2;
pub fn help(writer: anytype, comptime T: type, opt: HelpOptions) !void {
const params: Parameters(T) = if (@hasDecl(T, "parameters")) T.parameters else .{};
return helpParameters(writer, T, params, opt);
}
pub fn helpParameters(
writer: anytype,
comptime T: type,
params: Parameters(T),
opt: HelpOptions,
) !void {
const fields = @typeInfo(T).@"struct".fields;
var self_exe_path_buf: [std.fs.max_path_bytes]u8 = undefined;
const program_name = params.name orelse blk: {
const self_exe_path = std.fs.selfExePath(&self_exe_path_buf) catch
break :blk "program";
break :blk std.fs.path.basename(self_exe_path);
};
if (params.description.len != 0) {
try writer.writeAll(params.description);
try writer.writeAll("\n\n");
}
try writer.writeAll("Usage: ");
try writer.writeAll(program_name);
try writer.writeAll(" [OPTIONS] [COMMAND]");
var padding: usize = 0;
if (opt.extra_params.help.command) |h|
padding = @max(padding, h.len);
if (opt.extra_params.version.command) |v|
padding = @max(padding, v.len);
inline for (fields) |field| switch (@field(params, field.name).kind) {
.flag, .option, .positional, .positionals => {},
.command => {
const param = @field(params, field.name);
inline for (@typeInfo(@TypeOf(param.command)).@"struct".fields) |cmd_field| {
const cmd_param = @field(param.command, cmd_field.name);
padding = @max(padding, (cmd_param.name orelse cmd_field.name).len);
}
},
};
try writer.writeAll("\n\nCommands:\n");
inline for (fields) |field| switch (@field(params, field.name).kind) {
.flag, .option, .positional, .positionals => {},
.command => {
const param = @field(params, field.name);
inline for (@typeInfo(@TypeOf(param.command)).@"struct".fields) |cmd_field| {
const cmd_param = @field(param.command, cmd_field.name);
try printCommand(writer, padding, .{
.name = cmd_param.name orelse cmd_field.name,
.description = cmd_param.description,
});
}
},
};
if (opt.extra_params.help.command) |h|
try printCommand(writer, padding, .{
.name = h,
.description = opt.extra_params.help.description,
});
if (opt.extra_params.version.command) |v|
try printCommand(writer, padding, .{
.name = v,
.description = opt.extra_params.version.description,
});
padding = 0;
if (opt.extra_params.help.long) |h|
padding = @max(padding, h.len + help_long_prefix_len);
if (opt.extra_params.version.long) |v|
padding = @max(padding, v.len + help_long_prefix_len);
inline for (fields) |field| {
const param = @field(params, field.name);
var pad: usize = 0;
if (param.long) |long|
pad += long.len + help_long_prefix_len;
if (param.kind == .option)
pad += param.value.len + help_value_prefix_len;
padding = @max(padding, pad);
}
try writer.writeAll("\nOptions:\n");
inline for (fields) |field| {
const param = @field(params, field.name);
switch (param.kind) {
.command, .positional, .positionals => {},
.flag => try printParam(writer, padding, .{
.short = param.short,
.long = param.long,
.description = param.description,
}),
.option => try printParam(writer, padding, .{
.short = param.short,
.long = param.long,
.description = param.description,
.value = param.value,
}),
}
}
try printParam(writer, padding, .{
.short = opt.extra_params.help.short,
.long = opt.extra_params.help.long,
.description = opt.extra_params.help.description,
});
try printParam(writer, padding, .{
.short = opt.extra_params.version.short,
.long = opt.extra_params.version.long,
.description = opt.extra_params.version.description,
});
}
fn printCommand(writer: anytype, padding: usize, command: struct {
name: []const u8,
description: []const u8,
}) !void {
try writer.writeByteNTimes(' ', 4);
try writer.writeAll(command.name);
if (command.description.len != 0) {
try writer.writeByteNTimes(' ', padding - command.name.len);
try writer.writeAll(" ");
try writer.writeAll(command.description);
}
try writer.writeAll("\n");
}
fn printParam(writer: anytype, padding: usize, param: struct {
short: ?u8,
long: ?[]const u8,
description: []const u8,
value: ?[]const u8 = null,
}) !void {
if (param.short == null and param.long == null)
return;
try writer.writeByteNTimes(' ', 4);
if (param.short) |short| {
try writer.writeByte('-');
try writer.writeByte(short);
} else {
try writer.writeAll(" ");
}
if (param.long) |long| {
try writer.writeByte(if (param.short) |_| ',' else ' ');
try writer.writeAll(" --");
try writer.writeAll(long);
}
if (param.value) |value| {
try writer.writeAll(" <");
try writer.writeAll(value);
try writer.writeAll(">");
}
if (param.description.len != 0) {
var pad = padding;
if (param.long) |long|
pad -= (long.len + help_long_prefix_len);
if (param.value) |value|
pad -= (value.len + help_value_prefix_len);
try writer.writeByteNTimes(' ', pad + help_description_spacing);
try writer.writeAll(param.description);
}
try writer.writeByte('\n');
}
const types = @import("types.zig");
const std = @import("std");
|