2005-06-29 11:51:27 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "pack.h"
|
|
|
|
|
2006-08-10 17:02:32 +02:00
|
|
|
static int verify_one_pack(const char *path, int verbose)
|
2005-06-29 11:51:27 +02:00
|
|
|
{
|
2006-08-10 17:02:32 +02:00
|
|
|
char arg[PATH_MAX];
|
|
|
|
int len;
|
2005-07-01 02:15:39 +02:00
|
|
|
struct packed_git *g;
|
2006-08-10 17:02:32 +02:00
|
|
|
|
|
|
|
len = strlcpy(arg, path, PATH_MAX);
|
|
|
|
if (len >= PATH_MAX)
|
|
|
|
return error("name too long: %s", path);
|
|
|
|
|
2005-07-01 02:15:39 +02:00
|
|
|
while (1) {
|
|
|
|
/* Should name foo.idx, but foo.pack may be named;
|
|
|
|
* convert it to foo.idx
|
|
|
|
*/
|
2006-08-10 17:02:30 +02:00
|
|
|
if (has_extension(arg, len, ".pack")) {
|
2005-07-01 02:15:39 +02:00
|
|
|
strcpy(arg + len - 5, ".idx");
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
/* Should name foo.idx now */
|
2005-10-14 00:38:28 +02:00
|
|
|
if ((g = add_packed_git(arg, len, 1)))
|
2005-07-01 02:15:39 +02:00
|
|
|
break;
|
|
|
|
/* No? did you name just foo? */
|
|
|
|
strcpy(arg + len, ".idx");
|
|
|
|
len += 4;
|
2005-10-14 00:38:28 +02:00
|
|
|
if ((g = add_packed_git(arg, len, 1)))
|
2005-07-01 02:15:39 +02:00
|
|
|
break;
|
|
|
|
return error("packfile %s not found.", arg);
|
|
|
|
}
|
|
|
|
return verify_pack(g, verbose);
|
2005-06-29 11:51:27 +02:00
|
|
|
}
|
|
|
|
|
2005-07-29 11:01:26 +02:00
|
|
|
static const char verify_pack_usage[] = "git-verify-pack [-v] <pack>...";
|
2005-07-01 02:15:39 +02:00
|
|
|
|
2005-06-29 11:51:27 +02:00
|
|
|
int main(int ac, char **av)
|
|
|
|
{
|
|
|
|
int errs = 0;
|
2005-07-01 02:15:39 +02:00
|
|
|
int verbose = 0;
|
|
|
|
int no_more_options = 0;
|
2006-08-10 17:02:31 +02:00
|
|
|
int nothing_done = 1;
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
while (1 < ac) {
|
2005-07-01 02:15:39 +02:00
|
|
|
if (!no_more_options && av[1][0] == '-') {
|
|
|
|
if (!strcmp("-v", av[1]))
|
|
|
|
verbose = 1;
|
|
|
|
else if (!strcmp("--", av[1]))
|
|
|
|
no_more_options = 1;
|
|
|
|
else
|
|
|
|
usage(verify_pack_usage);
|
|
|
|
}
|
|
|
|
else {
|
2006-08-10 17:02:32 +02:00
|
|
|
if (verify_one_pack(av[1], verbose))
|
2005-07-01 02:15:39 +02:00
|
|
|
errs++;
|
2006-08-10 17:02:31 +02:00
|
|
|
nothing_done = 0;
|
2005-07-01 02:15:39 +02:00
|
|
|
}
|
2005-06-29 11:51:27 +02:00
|
|
|
ac--; av++;
|
|
|
|
}
|
2006-08-10 17:02:31 +02:00
|
|
|
|
|
|
|
if (nothing_done)
|
|
|
|
usage(verify_pack_usage);
|
|
|
|
|
2005-06-29 11:51:27 +02:00
|
|
|
return !!errs;
|
|
|
|
}
|