11 #include <sys/ioctl.h>
12 #include "git-compat-util.h"
16 # define PATH_MAX 4096
19 static const char git_usage
[] =
20 "Usage: git [--version] [--exec-path[=GIT_EXEC_PATH]] [--help] COMMAND [ ARGS ]";
22 /* most gui terms set COLUMNS (although some don't export it) */
23 static int term_columns(void)
25 char *col_string
= getenv("COLUMNS");
28 if (col_string
&& (n_cols
= atoi(col_string
)) > 0)
34 if (!ioctl(1, TIOCGWINSZ
, &ws
)) {
46 fprintf(stderr
, "git: out of memory\n");
50 static inline void mput_char(char c
, unsigned int num
)
56 static struct cmdname
{
60 static int cmdname_alloc
, cmdname_cnt
;
62 static void add_cmdname(const char *name
, int len
)
65 if (cmdname_alloc
<= cmdname_cnt
) {
66 cmdname_alloc
= cmdname_alloc
+ 200;
67 cmdname
= realloc(cmdname
, cmdname_alloc
* sizeof(*cmdname
));
71 ent
= malloc(sizeof(*ent
) + len
);
75 memcpy(ent
->name
, name
, len
);
77 cmdname
[cmdname_cnt
++] = ent
;
80 static int cmdname_compare(const void *a_
, const void *b_
)
82 struct cmdname
*a
= *(struct cmdname
**)a_
;
83 struct cmdname
*b
= *(struct cmdname
**)b_
;
84 return strcmp(a
->name
, b
->name
);
87 static void pretty_print_string_list(struct cmdname
**cmdname
, int longest
)
90 int space
= longest
+ 1; /* min 1 SP between words */
91 int max_cols
= term_columns() - 1; /* don't print *on* the edge */
95 cols
= max_cols
/ space
;
96 rows
= (cmdname_cnt
+ cols
- 1) / cols
;
98 qsort(cmdname
, cmdname_cnt
, sizeof(*cmdname
), cmdname_compare
);
100 for (i
= 0; i
< rows
; i
++) {
103 for (j
= 0; j
< cols
; j
++) {
104 int n
= j
* rows
+ i
;
106 if (n
>= cmdname_cnt
)
108 if (j
== cols
-1 || n
+ rows
>= cmdname_cnt
)
110 printf("%-*s", size
, cmdname
[n
]->name
);
116 static void list_commands(const char *exec_path
, const char *pattern
)
118 unsigned int longest
= 0;
121 DIR *dir
= opendir(exec_path
);
125 fprintf(stderr
, "git: '%s': %s\n", exec_path
, strerror(errno
));
129 dirlen
= strlen(exec_path
);
130 if (PATH_MAX
- 20 < dirlen
) {
131 fprintf(stderr
, "git: insanely long exec-path '%s'\n",
136 memcpy(path
, exec_path
, dirlen
);
137 path
[dirlen
++] = '/';
139 while ((de
= readdir(dir
)) != NULL
) {
143 if (strncmp(de
->d_name
, "git-", 4))
145 strcpy(path
+dirlen
, de
->d_name
);
146 if (stat(path
, &st
) || /* stat, not lstat */
147 !S_ISREG(st
.st_mode
) ||
148 !(st
.st_mode
& S_IXUSR
))
151 entlen
= strlen(de
->d_name
);
152 if (4 < entlen
&& !strcmp(de
->d_name
+ entlen
- 4, ".exe"))
155 if (longest
< entlen
)
158 add_cmdname(de
->d_name
+ 4, entlen
-4);
162 printf("git commands available in '%s'\n", exec_path
);
163 printf("----------------------------");
164 mput_char('-', strlen(exec_path
));
166 pretty_print_string_list(cmdname
, longest
- 4);
171 static void cmd_usage(const char *exec_path
, const char *fmt
, ...)
172 __attribute__((__format__(__printf__
, 2, 3), __noreturn__
));
174 static void cmd_usage(const char *exec_path
, const char *fmt
, ...)
191 list_commands(exec_path
, "git-*");
196 static void prepend_to_path(const char *dir
, int len
)
198 char *path
, *old_path
= getenv("PATH");
202 old_path
= "/usr/local/bin:/usr/bin:/bin";
204 path_len
= len
+ strlen(old_path
) + 1;
206 path
= malloc(path_len
+ 1);
208 memcpy(path
, dir
, len
);
210 memcpy(path
+ len
+ 1, old_path
, path_len
- len
);
212 setenv("PATH", path
, 1);
215 static void show_man_page(char *git_cmd
)
219 if (!strncmp(git_cmd
, "git", 3))
222 int page_len
= strlen(git_cmd
) + 4;
224 page
= malloc(page_len
+ 1);
225 strcpy(page
, "git-");
226 strcpy(page
+ 4, git_cmd
);
230 execlp("man", "man", page
, NULL
);
233 static int cmd_version(int argc
, char **argv
, char **envp
)
235 printf("git version %s\n", GIT_VERSION
);
239 static int cmd_help(int argc
, char **argv
, char **envp
)
241 char *help_cmd
= argv
[1];
243 cmd_usage(git_exec_path(), NULL
);
244 show_man_page(help_cmd
);
248 #define ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0]))
250 static void handle_internal_command(int argc
, char **argv
, char **envp
)
252 const char *cmd
= argv
[0];
253 static struct cmd_struct
{
255 int (*fn
)(int, char **, char **);
257 { "version", cmd_version
},
258 { "help", cmd_help
},
262 for (i
= 0; i
< ARRAY_SIZE(commands
); i
++) {
263 struct cmd_struct
*p
= commands
+i
;
264 if (strcmp(p
->cmd
, cmd
))
266 exit(p
->fn(argc
, argv
, envp
));
270 int main(int argc
, char **argv
, char **envp
)
273 char *slash
= strrchr(cmd
, '/');
274 char git_command
[PATH_MAX
+ 1];
275 const char *exec_path
= NULL
;
278 * Take the basename of argv[0] as the command
279 * name, and the dirname as the default exec_path
280 * if it's an absolute path and we don't have
291 * "git-xxxx" is the same as "git xxxx", but we obviously:
293 * - cannot take flags in between the "git" and the "xxxx".
294 * - cannot execute it externally (since it would just do
295 * the same thing over again)
297 * So we just directly call the internal command handler, and
298 * die if that one cannot handle it.
300 if (!strncmp(cmd
, "git-", 4)) {
303 handle_internal_command(argc
, argv
, envp
);
304 die("cannot handle %s internally", cmd
);
307 /* Default command: "help" */
310 /* Look for flags.. */
315 if (strncmp(cmd
, "--", 2))
321 * For legacy reasons, the "version" and "help"
322 * commands can be written with "--" prepended
323 * to make them look like flags.
325 if (!strcmp(cmd
, "help"))
327 if (!strcmp(cmd
, "version"))
331 * Check remaining flags (which by now must be
332 * "--exec-path", but maybe we will accept
333 * other arguments some day)
335 if (!strncmp(cmd
, "exec-path", 9)) {
338 git_set_exec_path(cmd
+ 1);
341 puts(git_exec_path());
344 cmd_usage(NULL
, NULL
);
349 * We search for git commands in the following order:
351 * - the path of the "git" command if we could find it
353 * - the regular PATH.
356 prepend_to_path(exec_path
, strlen(exec_path
));
357 exec_path
= git_exec_path();
358 prepend_to_path(exec_path
, strlen(exec_path
));
360 /* See if it's an internal command */
361 handle_internal_command(argc
, argv
, envp
);
363 /* .. then try the external ones */
367 cmd_usage(exec_path
, "'%s' is not a git-command", cmd
);
369 fprintf(stderr
, "Failed to run command '%s': %s\n",
370 git_command
, strerror(errno
));