[PATCH] git-merge-cache -q doesn't complain about failing merge program
[git/dscho.git] / path.c
blobd217ef0b7f04d7e021770cb50a7c58c14bc7920d
1 /*
2 * I'm tired of doing "vsnprintf()" etc just to open a
3 * file, so here's a "return static buffer with printf"
4 * interface for paths.
6 * It's obviously not thread-safe. Sue me. But it's quite
7 * useful for doing things like
9 * f = open(mkpath("%s/%s.git", base, name), O_RDONLY);
11 * which is what it's designed for.
13 #include "cache.h"
15 static char pathname[PATH_MAX];
16 static char bad_path[] = "/bad-path/";
18 static char *cleanup_path(char *path)
20 /* Clean it up */
21 if (!memcmp(path, "./", 2)) {
22 path += 2;
23 while (*path == '/')
24 path++;
26 return path;
29 char *mkpath(const char *fmt, ...)
31 va_list args;
32 unsigned len;
34 va_start(args, fmt);
35 len = vsnprintf(pathname, PATH_MAX, fmt, args);
36 va_end(args);
37 if (len >= PATH_MAX)
38 return bad_path;
39 return cleanup_path(pathname);
42 char *git_path(const char *fmt, ...)
44 const char *git_dir = gitenv(GIT_DIR_ENVIRONMENT) ? : DEFAULT_GIT_DIR_ENVIRONMENT;
45 va_list args;
46 unsigned len;
48 len = strlen(git_dir);
49 if (len > PATH_MAX-100)
50 return bad_path;
51 memcpy(pathname, git_dir, len);
52 if (len && git_dir[len-1] != '/')
53 pathname[len++] = '/';
54 va_start(args, fmt);
55 len += vsnprintf(pathname + len, PATH_MAX - len, fmt, args);
56 va_end(args);
57 if (len >= PATH_MAX)
58 return bad_path;
59 return cleanup_path(pathname);