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 | |
Carlos Martín Nieto | e2a57aa | 2011-03-17 12:26:46 +0100 | [diff] [blame] | 14 | if (argc >= 2 && !strcmp(argv[1], "real_path")) { |
David Reiss | d553e73 | 2008-05-19 23:49:00 -0700 | [diff] [blame] | 15 | while (argc > 2) { |
Carlos Martín Nieto | e2a57aa | 2011-03-17 12:26:46 +0100 | [diff] [blame] | 16 | puts(real_path(argv[2])); |
David Reiss | d553e73 | 2008-05-19 23:49:00 -0700 | [diff] [blame] | 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 | |
Michael Haggerty | 87a246e | 2011-08-04 06:47:47 +0200 | [diff] [blame] | 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 | |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 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); |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 35 | return 0; |
David Reiss | 0454dd9 | 2008-05-19 23:49:26 -0700 | [diff] [blame] | 36 | } |
| 37 | |
Michael Haggerty | 9e81372 | 2011-08-04 06:47:48 +0200 | [diff] [blame] | 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 | |
Johannes Schindelin | 4fcc86b | 2009-02-19 20:10:49 +0100 | [diff] [blame] | 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 | |
Johannes Sixt | 2cd85c4 | 2009-02-07 16:08:27 +0100 | [diff] [blame] | 57 | fprintf(stderr, "%s: unknown function name: %s\n", argv[0], |
| 58 | argv[1] ? argv[1] : "(there was none)"); |
| 59 | return 1; |
David Reiss | ae299be | 2008-05-19 23:48:54 -0700 | [diff] [blame] | 60 | } |