]>
Commit | Line | Data |
---|---|---|
ae299be0 DR |
1 | #include "cache.h" |
2 | ||
3 | int main(int argc, char **argv) | |
4 | { | |
f42302b4 | 5 | if (argc == 3 && !strcmp(argv[1], "normalize_path_copy")) { |
b8469ad0 | 6 | char *buf = xmalloc(PATH_MAX + 1); |
f42302b4 JS |
7 | int rv = normalize_path_copy(buf, argv[2]); |
8 | if (rv) | |
9 | buf = "++failed++"; | |
ae299be0 | 10 | puts(buf); |
2cd85c40 | 11 | return 0; |
ae299be0 DR |
12 | } |
13 | ||
e2a57aac | 14 | if (argc >= 2 && !strcmp(argv[1], "real_path")) { |
d553e737 | 15 | while (argc > 2) { |
e2a57aac | 16 | puts(real_path(argv[2])); |
d553e737 DR |
17 | argc--; |
18 | argv++; | |
19 | } | |
2cd85c40 | 20 | return 0; |
d553e737 DR |
21 | } |
22 | ||
87a246e1 MH |
23 | if (argc >= 2 && !strcmp(argv[1], "absolute_path")) { |
24 | while (argc > 2) { | |
25 | puts(absolute_path(argv[2])); | |
26 | argc--; | |
27 | argv++; | |
28 | } | |
29 | return 0; | |
30 | } | |
31 | ||
0454dd93 DR |
32 | if (argc == 4 && !strcmp(argv[1], "longest_ancestor_length")) { |
33 | int len = longest_ancestor_length(argv[2], argv[3]); | |
34 | printf("%d\n", len); | |
2cd85c40 | 35 | return 0; |
0454dd93 DR |
36 | } |
37 | ||
9e813723 MH |
38 | if (argc >= 4 && !strcmp(argv[1], "prefix_path")) { |
39 | char *prefix = argv[2]; | |
40 | int prefix_len = strlen(prefix); | |
41 | int nongit_ok; | |
42 | setup_git_directory_gently(&nongit_ok); | |
43 | while (argc > 3) { | |
44 | puts(prefix_path(prefix, prefix_len, argv[3])); | |
45 | argc--; | |
46 | argv++; | |
47 | } | |
48 | return 0; | |
49 | } | |
50 | ||
4fcc86b0 JS |
51 | if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) { |
52 | char *prefix = strip_path_suffix(argv[2], argv[3]); | |
53 | printf("%s\n", prefix ? prefix : "(null)"); | |
54 | return 0; | |
55 | } | |
56 | ||
2cd85c40 JS |
57 | fprintf(stderr, "%s: unknown function name: %s\n", argv[0], |
58 | argv[1] ? argv[1] : "(there was none)"); | |
59 | return 1; | |
ae299be0 | 60 | } |