]> git.ipfire.org Git - thirdparty/git.git/blame - git.c
Builtin git-ls-tree.
[thirdparty/git.git] / git.c
CommitLineData
8e49d503 1#include <stdio.h>
7dbc2c04
JH
2#include <sys/types.h>
3#include <sys/stat.h>
4#include <dirent.h>
8e49d503
AE
5#include <unistd.h>
6#include <stdlib.h>
7#include <string.h>
8#include <errno.h>
9#include <limits.h>
10#include <stdarg.h>
4050c0df 11#include "git-compat-util.h"
77cb17e9 12#include "exec_cmd.h"
8e49d503 13
70827b15 14#include "builtin.h"
8e49d503
AE
15
16static void prepend_to_path(const char *dir, int len)
17{
18 char *path, *old_path = getenv("PATH");
19 int path_len = len;
20
21 if (!old_path)
7dbc2c04 22 old_path = "/usr/local/bin:/usr/bin:/bin";
8e49d503
AE
23
24 path_len = len + strlen(old_path) + 1;
25
26 path = malloc(path_len + 1);
8e49d503
AE
27
28 memcpy(path, dir, len);
29 path[len] = ':';
30 memcpy(path + len + 1, old_path, path_len - len);
31
32 setenv("PATH", path, 1);
33}
34
70827b15 35const char git_version_string[] = GIT_VERSION;
5b84f4d8 36
9201c707 37static void handle_internal_command(int argc, const char **argv, char **envp)
231af832
LT
38{
39 const char *cmd = argv[0];
40 static struct cmd_struct {
41 const char *cmd;
9201c707 42 int (*fn)(int, const char **, char **);
231af832
LT
43 } commands[] = {
44 { "version", cmd_version },
45 { "help", cmd_help },
70b006b9 46 { "log", cmd_log },
70827b15 47 { "whatchanged", cmd_whatchanged },
ba1d4505 48 { "show", cmd_show },
755225de 49 { "push", cmd_push },
c7432087 50 { "count-objects", cmd_count_objects },
8ab99476 51 { "diff", cmd_diff },
5010cb5f 52 { "grep", cmd_grep },
5fb61b8d 53 { "rev-list", cmd_rev_list },
c3c8835f 54 { "init-db", cmd_init_db },
0864f264 55 { "check-ref-format", cmd_check_ref_format },
aae01bda
PE
56 { "ls-files", cmd_ls_files },
57 { "ls-tree", cmd_ls_tree }
231af832
LT
58 };
59 int i;
60
1cd95087
LT
61 /* Turn "git cmd --help" into "git help cmd" */
62 if (argc > 1 && !strcmp(argv[1], "--help")) {
63 argv[1] = argv[0];
64 argv[0] = cmd = "help";
65 }
66
231af832
LT
67 for (i = 0; i < ARRAY_SIZE(commands); i++) {
68 struct cmd_struct *p = commands+i;
69 if (strcmp(p->cmd, cmd))
70 continue;
71 exit(p->fn(argc, argv, envp));
72 }
73}
74
9201c707 75int main(int argc, const char **argv, char **envp)
8e49d503 76{
9201c707 77 const char *cmd = argv[0];
231af832 78 char *slash = strrchr(cmd, '/');
8e49d503 79 char git_command[PATH_MAX + 1];
231af832
LT
80 const char *exec_path = NULL;
81
82 /*
83 * Take the basename of argv[0] as the command
84 * name, and the dirname as the default exec_path
85 * if it's an absolute path and we don't have
86 * anything better.
87 */
88 if (slash) {
89 *slash++ = 0;
90 if (*cmd == '/')
91 exec_path = cmd;
92 cmd = slash;
93 }
8e49d503 94
231af832
LT
95 /*
96 * "git-xxxx" is the same as "git xxxx", but we obviously:
97 *
98 * - cannot take flags in between the "git" and the "xxxx".
99 * - cannot execute it externally (since it would just do
100 * the same thing over again)
101 *
102 * So we just directly call the internal command handler, and
103 * die if that one cannot handle it.
104 */
105 if (!strncmp(cmd, "git-", 4)) {
106 cmd += 4;
107 argv[0] = cmd;
108 handle_internal_command(argc, argv, envp);
109 die("cannot handle %s internally", cmd);
110 }
8e49d503 111
231af832
LT
112 /* Default command: "help" */
113 cmd = "help";
8e49d503 114
231af832
LT
115 /* Look for flags.. */
116 while (argc > 1) {
117 cmd = *++argv;
118 argc--;
da6bf70e 119
231af832 120 if (strncmp(cmd, "--", 2))
8e49d503
AE
121 break;
122
231af832
LT
123 cmd += 2;
124
125 /*
126 * For legacy reasons, the "version" and "help"
127 * commands can be written with "--" prepended
128 * to make them look like flags.
129 */
130 if (!strcmp(cmd, "help"))
131 break;
132 if (!strcmp(cmd, "version"))
133 break;
8e49d503 134
231af832
LT
135 /*
136 * Check remaining flags (which by now must be
137 * "--exec-path", but maybe we will accept
138 * other arguments some day)
139 */
140 if (!strncmp(cmd, "exec-path", 9)) {
141 cmd += 9;
142 if (*cmd == '=') {
143 git_set_exec_path(cmd + 1);
144 continue;
8e49d503 145 }
231af832 146 puts(git_exec_path());
8e49d503
AE
147 exit(0);
148 }
a87cd02c 149 cmd_usage(0, NULL, NULL);
97fc6c5f 150 }
231af832
LT
151 argv[0] = cmd;
152
153 /*
154 * We search for git commands in the following order:
155 * - git_exec_path()
156 * - the path of the "git" command if we could find it
157 * in $0
158 * - the regular PATH.
159 */
160 if (exec_path)
161 prepend_to_path(exec_path, strlen(exec_path));
77cb17e9
MO
162 exec_path = git_exec_path();
163 prepend_to_path(exec_path, strlen(exec_path));
8e49d503 164
231af832
LT
165 /* See if it's an internal command */
166 handle_internal_command(argc, argv, envp);
167
168 /* .. then try the external ones */
169 execv_git_cmd(argv);
10b15b86
AR
170
171 if (errno == ENOENT)
a87cd02c 172 cmd_usage(0, exec_path, "'%s' is not a git-command", cmd);
10b15b86
AR
173
174 fprintf(stderr, "Failed to run command '%s': %s\n",
175 git_command, strerror(errno));
8e49d503
AE
176
177 return 1;
178}