2007-09-11 05:02:45 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "walker.h"
|
|
|
|
|
|
|
|
int cmd_http_fetch(int argc, const char **argv, const char *prefix)
|
|
|
|
{
|
|
|
|
struct walker *walker;
|
|
|
|
int commits_on_stdin = 0;
|
|
|
|
int commits;
|
|
|
|
const char **write_ref = NULL;
|
|
|
|
char **commit_id;
|
|
|
|
const char *url;
|
2008-01-19 16:22:50 +01:00
|
|
|
char *rewritten_url = NULL;
|
2007-09-11 05:02:45 +02:00
|
|
|
int arg = 1;
|
|
|
|
int rc = 0;
|
|
|
|
int get_tree = 0;
|
|
|
|
int get_history = 0;
|
|
|
|
int get_all = 0;
|
|
|
|
int get_verbosely = 0;
|
|
|
|
int get_recover = 0;
|
|
|
|
|
2008-05-14 19:46:53 +02:00
|
|
|
git_config(git_default_config, NULL);
|
2007-09-11 05:02:45 +02:00
|
|
|
|
|
|
|
while (arg < argc && argv[arg][0] == '-') {
|
|
|
|
if (argv[arg][1] == 't') {
|
|
|
|
get_tree = 1;
|
|
|
|
} else if (argv[arg][1] == 'c') {
|
|
|
|
get_history = 1;
|
|
|
|
} else if (argv[arg][1] == 'a') {
|
|
|
|
get_all = 1;
|
|
|
|
get_tree = 1;
|
|
|
|
get_history = 1;
|
|
|
|
} else if (argv[arg][1] == 'v') {
|
|
|
|
get_verbosely = 1;
|
|
|
|
} else if (argv[arg][1] == 'w') {
|
|
|
|
write_ref = &argv[arg + 1];
|
|
|
|
arg++;
|
|
|
|
} else if (!strcmp(argv[arg], "--recover")) {
|
|
|
|
get_recover = 1;
|
|
|
|
} else if (!strcmp(argv[arg], "--stdin")) {
|
|
|
|
commits_on_stdin = 1;
|
|
|
|
}
|
|
|
|
arg++;
|
|
|
|
}
|
|
|
|
if (argc < arg + 2 - commits_on_stdin) {
|
2008-09-09 12:28:30 +02:00
|
|
|
usage("git http-fetch [-c] [-t] [-a] [-v] [--recover] [-w ref] [--stdin] commit-id url");
|
2007-09-11 05:02:45 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (commits_on_stdin) {
|
|
|
|
commits = walker_targets_stdin(&commit_id, &write_ref);
|
|
|
|
} else {
|
|
|
|
commit_id = (char **) &argv[arg++];
|
|
|
|
commits = 1;
|
|
|
|
}
|
|
|
|
url = argv[arg];
|
2008-01-19 16:22:50 +01:00
|
|
|
if (url && url[strlen(url)-1] != '/') {
|
2008-09-09 20:57:10 +02:00
|
|
|
rewritten_url = xmalloc(strlen(url)+2);
|
2008-01-19 16:22:50 +01:00
|
|
|
strcpy(rewritten_url, url);
|
|
|
|
strcat(rewritten_url, "/");
|
|
|
|
url = rewritten_url;
|
|
|
|
}
|
2007-09-11 05:02:45 +02:00
|
|
|
|
2008-02-27 21:35:50 +01:00
|
|
|
walker = get_http_walker(url, NULL);
|
2007-09-11 05:02:45 +02:00
|
|
|
walker->get_tree = get_tree;
|
|
|
|
walker->get_history = get_history;
|
|
|
|
walker->get_all = get_all;
|
|
|
|
walker->get_verbosely = get_verbosely;
|
|
|
|
walker->get_recover = get_recover;
|
|
|
|
|
|
|
|
rc = walker_fetch(walker, commits, commit_id, write_ref, url);
|
|
|
|
|
|
|
|
if (commits_on_stdin)
|
|
|
|
walker_targets_free(commits, commit_id, write_ref);
|
|
|
|
|
|
|
|
if (walker->corrupt_object_found) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"Some loose object were found to be corrupt, but they might be just\n"
|
|
|
|
"a false '404 Not Found' error message sent with incorrect HTTP\n"
|
2008-09-09 12:28:30 +02:00
|
|
|
"status code. Suggest running 'git fsck'.\n");
|
2007-09-11 05:02:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
walker_free(walker);
|
|
|
|
|
Avoid unnecessary "if-before-free" tests.
This change removes all obvious useless if-before-free tests.
E.g., it replaces code like this:
if (some_expression)
free (some_expression);
with the now-equivalent:
free (some_expression);
It is equivalent not just because POSIX has required free(NULL)
to work for a long time, but simply because it has worked for
so long that no reasonable porting target fails the test.
Here's some evidence from nearly 1.5 years ago:
http://www.winehq.org/pipermail/wine-patches/2006-October/031544.html
FYI, the change below was prepared by running the following:
git ls-files -z | xargs -0 \
perl -0x3b -pi -e \
's/\bif\s*\(\s*(\S+?)(?:\s*!=\s*NULL)?\s*\)\s+(free\s*\(\s*\1\s*\))/$2/s'
Note however, that it doesn't handle brace-enclosed blocks like
"if (x) { free (x); }". But that's ok, since there were none like
that in git sources.
Beware: if you do use the above snippet, note that it can
produce syntactically invalid C code. That happens when the
affected "if"-statement has a matching "else".
E.g., it would transform this
if (x)
free (x);
else
foo ();
into this:
free (x);
else
foo ();
There were none of those here, either.
If you're interested in automating detection of the useless
tests, you might like the useless-if-before-free script in gnulib:
[it *does* detect brace-enclosed free statements, and has a --name=S
option to make it detect free-like functions with different names]
http://git.sv.gnu.org/gitweb/?p=gnulib.git;a=blob;f=build-aux/useless-if-before-free
Addendum:
Remove one more (in imap-send.c), spotted by Jean-Luc Herren <jlh@gmx.ch>.
Signed-off-by: Jim Meyering <meyering@redhat.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-01-31 18:26:32 +01:00
|
|
|
free(rewritten_url);
|
2008-01-19 16:22:50 +01:00
|
|
|
|
2007-09-11 05:02:45 +02:00
|
|
|
return rc;
|
|
|
|
}
|