-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit.c
101 lines (77 loc) · 1.64 KB
/
git.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include <string.h>
#include <stdlib.h>
#include "common.h"
static char *repo_path = NULL;
static struct {
const char *name;
cmd cb;
} cmds[] = {
{"clone", cmd_clone},
{"fetch", cmd_fetch},
{"pack-objects", cmd_pack_objects},
{"push", cmd_push},
{"revwalk", cmd_revwalk},
{NULL, NULL}
};
static const char * usage()
{
return "usage: ./git [--repo <repo>] <cmd> [<args>]";
}
/* taken from git.git */
static int handle_options(const char ***argv, int *argc)
{
const char **orig_argv = *argv;
while (*argc > 0) {
const char *cmd = (*argv)[0];
if (cmd[0] != '-')
break;
if (!strcmp(cmd, "--repo")) {
if (*argc < 2)
die("no path given for --repo %d", 123);
repo_path = malloc(sizeof((*argv)[1]) + 1);
if (!repo_path)
die("out of memory");
strcpy(repo_path, (*argv)[1]);
(*argv)++;
(*argc)--;
} else
die("unknown option %s", cmd);
(*argv)++;
(*argc)--;
}
return (*argv) - orig_argv;
}
int run_cmd(cmd cb, int argc, const char **argv)
{
int error;
git_repository *repo = NULL;
git_threads_init();
error = git_repository_open(&repo, repo_path ? repo_path : ".git");
if (error < 0)
die_giterror();
error = cb(repo, argc, argv);
if (error < 0)
die_giterror();
if (repo_path)
free(repo_path);
if (repo)
git_repository_free(repo);
git_threads_shutdown();
return error;
}
int main(int argc, const char **argv)
{
int i;
if (argc < 2)
die(usage());
argv++;
argc--;
handle_options(&argv, &argc);
if (argc == 0)
die(usage());
for (i=0; cmds[i].name; i++) {
if (!strcmp(argv[0], cmds[i].name))
return run_cmd(cmds[i].cb, --argc, ++argv);
}
die("unknown command %s", argv[0]);
}