blob: ba3ea106708de01fc933e6743ab109bef2697f75 [file] [log] [blame]
Daniel Barkalow30ae7642007-09-10 23:02:45 -04001#include "cache.h"
Jonathan Niederf01d7492009-11-09 09:05:00 -06002#include "exec_cmd.h"
Tay Ray Chuan888692b2010-03-02 18:49:29 +08003#include "http.h"
Daniel Barkalow30ae7642007-09-10 23:02:45 -04004#include "walker.h"
5
Jonathan Nieder616f86d2009-11-09 09:04:59 -06006static const char http_fetch_usage[] = "git http-fetch "
7"[-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin] commit-id url";
8
Linus Torvalds10882612009-08-05 01:01:59 -04009int main(int argc, const char **argv)
Daniel Barkalow30ae7642007-09-10 23:02:45 -040010{
11 struct walker *walker;
12 int commits_on_stdin = 0;
13 int commits;
14 const char **write_ref = NULL;
15 char **commit_id;
Tay Ray Chuan6f5185b2010-11-25 16:21:10 +080016 char *url = NULL;
Daniel Barkalow30ae7642007-09-10 23:02:45 -040017 int arg = 1;
18 int rc = 0;
19 int get_tree = 0;
20 int get_history = 0;
21 int get_all = 0;
22 int get_verbosely = 0;
23 int get_recover = 0;
24
Ævar Arnfjörð Bjarmason5e9637c2011-11-18 00:14:42 +010025 git_setup_gettext();
26
Jonathan Niederf01d7492009-11-09 09:05:00 -060027 git_extract_argv0_path(argv[0]);
Daniel Barkalow30ae7642007-09-10 23:02:45 -040028
29 while (arg < argc && argv[arg][0] == '-') {
30 if (argv[arg][1] == 't') {
31 get_tree = 1;
32 } else if (argv[arg][1] == 'c') {
33 get_history = 1;
34 } else if (argv[arg][1] == 'a') {
35 get_all = 1;
36 get_tree = 1;
37 get_history = 1;
38 } else if (argv[arg][1] == 'v') {
39 get_verbosely = 1;
40 } else if (argv[arg][1] == 'w') {
41 write_ref = &argv[arg + 1];
42 arg++;
Jonathan Nieder616f86d2009-11-09 09:04:59 -060043 } else if (argv[arg][1] == 'h') {
44 usage(http_fetch_usage);
Daniel Barkalow30ae7642007-09-10 23:02:45 -040045 } else if (!strcmp(argv[arg], "--recover")) {
46 get_recover = 1;
47 } else if (!strcmp(argv[arg], "--stdin")) {
48 commits_on_stdin = 1;
49 }
50 arg++;
51 }
Jonathan Nieder616f86d2009-11-09 09:04:59 -060052 if (argc != arg + 2 - commits_on_stdin)
53 usage(http_fetch_usage);
Daniel Barkalow30ae7642007-09-10 23:02:45 -040054 if (commits_on_stdin) {
55 commits = walker_targets_stdin(&commit_id, &write_ref);
56 } else {
57 commit_id = (char **) &argv[arg++];
58 commits = 1;
59 }
Tay Ray Chuan6f5185b2010-11-25 16:21:10 +080060
Ben Waltona6c786f2011-08-23 20:29:51 -040061 if (get_all == 0)
62 warning("http-fetch: use without -a is deprecated.\n"
63 "In a future release, -a will become the default.");
64
Tay Ray Chuan6f5185b2010-11-25 16:21:10 +080065 if (argv[arg])
66 str_end_url_with_slash(argv[arg], &url);
Jonathan Nieder616f86d2009-11-09 09:04:59 -060067
Dan McGee13ee1382011-03-27 20:32:19 -050068 setup_git_directory();
Jonathan Nieder616f86d2009-11-09 09:04:59 -060069
70 git_config(git_default_config, NULL);
71
Jeff Kinga4ddbc32011-12-13 19:11:56 -050072 http_init(NULL, url, 0);
Tay Ray Chuan888692b2010-03-02 18:49:29 +080073 walker = get_http_walker(url);
Daniel Barkalow30ae7642007-09-10 23:02:45 -040074 walker->get_tree = get_tree;
75 walker->get_history = get_history;
76 walker->get_all = get_all;
77 walker->get_verbosely = get_verbosely;
78 walker->get_recover = get_recover;
79
80 rc = walker_fetch(walker, commits, commit_id, write_ref, url);
81
82 if (commits_on_stdin)
83 walker_targets_free(commits, commit_id, write_ref);
84
85 if (walker->corrupt_object_found) {
86 fprintf(stderr,
87"Some loose object were found to be corrupt, but they might be just\n"
88"a false '404 Not Found' error message sent with incorrect HTTP\n"
Heikki Orsila05207a22008-09-09 13:28:30 +030089"status code. Suggest running 'git fsck'.\n");
Daniel Barkalow30ae7642007-09-10 23:02:45 -040090 }
91
92 walker_free(walker);
Tay Ray Chuan888692b2010-03-02 18:49:29 +080093 http_cleanup();
Daniel Barkalow30ae7642007-09-10 23:02:45 -040094
Tay Ray Chuan6f5185b2010-11-25 16:21:10 +080095 free(url);
Grégoire Barbier3057ded2008-01-19 16:22:50 +010096
Daniel Barkalow30ae7642007-09-10 23:02:45 -040097 return rc;
98}