2 #include "string-list.h"
5 * A "string_list_each_func_t" function that normalizes an entry from
6 * GIT_CEILING_DIRECTORIES. If the path is unusable for some reason,
7 * die with an explanation.
9 static int normalize_ceiling_entry(struct string_list_item
*item
, void *unused
)
11 char *ceil
= item
->string
;
14 die("Empty path is not supported");
15 if (!is_absolute_path(ceil
))
16 die("Path \"%s\" is not absolute", ceil
);
17 if (normalize_path_copy(ceil
, ceil
) < 0)
18 die("Path \"%s\" could not be normalized", ceil
);
22 static void normalize_argv_string(const char **var
, const char *input
)
24 if (!strcmp(input
, "<null>"))
26 else if (!strcmp(input
, "<empty>"))
31 if (*var
&& (**var
== '<' || **var
== '('))
32 die("Bad value: %s\n", input
);
36 const char *from
; /* input: transform from this ... */
37 const char *to
; /* output: ... to this. */
38 const char *alternative
; /* output: ... or this. */
42 * Compatibility wrappers for OpenBSD, whose basename(3) and dirname(3)
43 * have const parameters.
45 static char *posix_basename(char *path
)
47 return basename(path
);
50 static char *posix_dirname(char *path
)
55 static int test_function(struct test_data
*data
, char *(*func
)(char *input
),
62 for (i
= 0; data
[i
].to
; i
++) {
66 xsnprintf(buffer
, sizeof(buffer
), "%s", data
[i
].from
);
69 if (!strcmp(to
, data
[i
].to
))
71 if (!data
[i
].alternative
)
72 error("FAIL: %s(%s) => '%s' != '%s'\n",
73 funcname
, data
[i
].from
, to
, data
[i
].to
);
74 else if (!strcmp(to
, data
[i
].alternative
))
77 error("FAIL: %s(%s) => '%s' != '%s', '%s'\n",
78 funcname
, data
[i
].from
, to
, data
[i
].to
,
85 static struct test_data basename_data
[] = {
86 /* --- POSIX type paths --- */
94 { "////", "/", "//" },
99 { "/usr/lib", "lib" },
100 { "usr/lib", "lib" },
101 { "usr/lib///", "lib" },
103 #if defined(__MINGW32__) || defined(_MSC_VER)
104 /* --- win32 type paths --- */
106 { "\\usr\\", "usr" },
107 { "\\usr\\\\", "usr" },
108 { "\\usr\\lib", "lib" },
109 { "usr\\lib", "lib" },
110 { "usr\\lib\\\\\\", "lib" },
113 { "C:/usr/", "usr" },
114 { "C:/usr//", "usr" },
115 { "C:/usr/lib", "lib" },
116 { "C:usr/lib", "lib" },
117 { "C:usr/lib///", "lib" },
123 { "\\\\", "\\", "/" },
124 { "\\\\\\", "\\", "/" },
129 static struct test_data dirname_data
[] = {
130 /* --- POSIX type paths --- */
137 { "///", "/", "//" },
138 { "////", "/", "//" },
143 { "/usr/lib", "/usr" },
144 { "usr/lib", "usr" },
145 { "usr/lib///", "usr" },
147 #if defined(__MINGW32__) || defined(_MSC_VER)
148 /* --- win32 type paths --- */
153 { "\\usr\\\\", "\\" },
154 { "\\usr\\lib", "\\usr" },
155 { "usr\\lib", "usr" },
156 { "usr\\lib\\\\\\", "usr" },
161 { "C:/usr/", "C:/" },
162 { "C:/usr//", "C:/" },
163 { "C:/usr/lib", "C:/usr" },
164 { "C:usr/lib", "C:usr" },
165 { "C:usr/lib///", "C:usr" },
167 { "\\\\\\\\", "\\" },
168 { "C:", "C:.", "." },
173 int cmd_main(int argc
, const char **argv
)
175 if (argc
== 3 && !strcmp(argv
[1], "normalize_path_copy")) {
176 char *buf
= xmallocz(strlen(argv
[2]));
177 int rv
= normalize_path_copy(buf
, argv
[2]);
184 if (argc
>= 2 && !strcmp(argv
[1], "real_path")) {
186 puts(real_path(argv
[2]));
193 if (argc
>= 2 && !strcmp(argv
[1], "absolute_path")) {
195 puts(absolute_path(argv
[2]));
202 if (argc
== 4 && !strcmp(argv
[1], "longest_ancestor_length")) {
204 struct string_list ceiling_dirs
= STRING_LIST_INIT_DUP
;
205 char *path
= xstrdup(argv
[2]);
208 * We have to normalize the arguments because under
209 * Windows, bash mangles arguments that look like
210 * absolute POSIX paths or colon-separate lists of
211 * absolute POSIX paths into DOS paths (e.g.,
212 * "/foo:/foo/bar" might be converted to
213 * "D:\Src\msysgit\foo;D:\Src\msysgit\foo\bar"),
214 * whereas longest_ancestor_length() requires paths
215 * that use forward slashes.
217 if (normalize_path_copy(path
, path
))
218 die("Path \"%s\" could not be normalized", argv
[2]);
219 string_list_split(&ceiling_dirs
, argv
[3], PATH_SEP
, -1);
220 filter_string_list(&ceiling_dirs
, 0,
221 normalize_ceiling_entry
, NULL
);
222 len
= longest_ancestor_length(path
, &ceiling_dirs
);
223 string_list_clear(&ceiling_dirs
, 0);
229 if (argc
>= 4 && !strcmp(argv
[1], "prefix_path")) {
230 const char *prefix
= argv
[2];
231 int prefix_len
= strlen(prefix
);
233 setup_git_directory_gently(&nongit_ok
);
235 puts(prefix_path(prefix
, prefix_len
, argv
[3]));
242 if (argc
== 4 && !strcmp(argv
[1], "strip_path_suffix")) {
243 char *prefix
= strip_path_suffix(argv
[2], argv
[3]);
244 printf("%s\n", prefix
? prefix
: "(null)");
248 if (argc
== 3 && !strcmp(argv
[1], "print_path")) {
253 if (argc
== 4 && !strcmp(argv
[1], "relative_path")) {
254 struct strbuf sb
= STRBUF_INIT
;
255 const char *in
, *prefix
, *rel
;
256 normalize_argv_string(&in
, argv
[2]);
257 normalize_argv_string(&prefix
, argv
[3]);
258 rel
= relative_path(in
, prefix
, &sb
);
262 puts(strlen(rel
) > 0 ? rel
: "(empty)");
267 if (argc
== 2 && !strcmp(argv
[1], "basename"))
268 return test_function(basename_data
, posix_basename
, argv
[1]);
270 if (argc
== 2 && !strcmp(argv
[1], "dirname"))
271 return test_function(dirname_data
, posix_dirname
, argv
[1]);
273 fprintf(stderr
, "%s: unknown function name: %s\n", argv
[0],
274 argv
[1] ? argv
[1] : "(there was none)");