David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 1 | #include "cache.h" |
| 2 | |
| 3 | int main(int argc, char **argv) |
| 4 | { |
Johannes Sixt | f42302b | 2009-02-07 16:08:30 +0100 | [diff] [blame] | 5 | if (argc == 3 && !strcmp(argv[1], "normalize_path_copy")) { |
Johannes Schindelin | b8469ad | 2009-01-28 00:07:36 +0100 | [diff] [blame] | 6 | char *buf = xmalloc(PATH_MAX + 1); |
Johannes Sixt | f42302b | 2009-02-07 16:08:30 +0100 | [diff] [blame] | 7 | int rv = normalize_path_copy(buf, argv[2]); |
| 8 | if (rv) |
| 9 | buf = "++failed++"; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 10 | puts(buf); |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 11 | return 0; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 12 | } |
| 13 | |
David Reiss | d553e73 | 2008-05-19 23:49:00 -0700 | [diff] [blame] | 14 | if (argc >= 2 && !strcmp(argv[1], "make_absolute_path")) { |
| 15 | while (argc > 2) { |
| 16 | puts(make_absolute_path(argv[2])); |
| 17 | argc--; |
| 18 | argv++; |
| 19 | } |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 20 | return 0; |
David Reiss | d553e73 | 2008-05-19 23:49:00 -0700 | [diff] [blame] | 21 | } |
| 22 | |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 23 | if (argc == 4 && !strcmp(argv[1], "longest_ancestor_length")) { |
| 24 | int len = longest_ancestor_length(argv[2], argv[3]); |
| 25 | printf("%d\n", len); |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 26 | return 0; |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 27 | } |
| 28 | |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 29 | if (argc == 4 && !strcmp(argv[1], "strip_path_suffix")) { |
| 30 | char *prefix = strip_path_suffix(argv[2], argv[3]); |
| 31 | printf("%s\n", prefix ? prefix : "(null)"); |
| 32 | return 0; |
| 33 | } |
| 34 | |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 35 | fprintf(stderr, "%s: unknown function name: %s\n", argv[0], |
| 36 | argv[1] ? argv[1] : "(there was none)"); |
| 37 | return 1; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 38 | } |