blob: c2a1a5c5048412abaa545862dbd0f3dd93338dc5 [file] [log] [blame]
Rene Scharfe2e3ed672006-08-10 17:02:38 +02001#include "builtin.h"
Junio C Hamanof9253392005-06-29 02:51:27 -07002#include "cache.h"
Brandon Williamsb2141fc2017-06-14 11:07:36 -07003#include "config.h"
Junio C Hamano3de89c92011-06-03 15:32:17 -07004#include "run-command.h"
Stephen Boydc9c3c672009-07-07 22:15:40 -07005#include "parse-options.h"
Nicolas Pitre77d3ece2008-06-24 23:18:17 -04006
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -07007#define VERIFY_PACK_VERBOSE 01
8#define VERIFY_PACK_STAT_ONLY 02
9
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070010static int verify_one_pack(const char *path, unsigned int flags)
Junio C Hamanof9253392005-06-29 02:51:27 -070011{
René Scharfed3180272014-08-19 21:09:35 +020012 struct child_process index_pack = CHILD_PROCESS_INIT;
Junio C Hamano3de89c92011-06-03 15:32:17 -070013 const char *argv[] = {"index-pack", NULL, NULL, NULL };
14 struct strbuf arg = STRBUF_INIT;
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070015 int verbose = flags & VERIFY_PACK_VERBOSE;
16 int stat_only = flags & VERIFY_PACK_STAT_ONLY;
Rene Scharfed0d619c2006-08-10 17:02:35 +020017 int err;
Rene Scharfeae9c86f2006-08-10 17:02:32 +020018
Junio C Hamano3de89c92011-06-03 15:32:17 -070019 if (stat_only)
20 argv[1] = "--verify-stat-only";
21 else if (verbose)
22 argv[1] = "--verify-stat";
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070023 else
Junio C Hamano3de89c92011-06-03 15:32:17 -070024 argv[1] = "--verify";
25
26 /*
27 * In addition to "foo.pack" we accept "foo.idx" and "foo";
28 * normalize these forms to "foo.pack" for "index-pack --verify".
29 */
30 strbuf_addstr(&arg, path);
Jeff Kingd6cd00c2014-06-30 13:02:05 -040031 if (strbuf_strip_suffix(&arg, ".idx") ||
32 !ends_with(arg.buf, ".pack"))
33 strbuf_addstr(&arg, ".pack");
Junio C Hamano3de89c92011-06-03 15:32:17 -070034 argv[2] = arg.buf;
35
Junio C Hamano3de89c92011-06-03 15:32:17 -070036 index_pack.argv = argv;
37 index_pack.git_cmd = 1;
38
39 err = run_command(&index_pack);
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070040
41 if (verbose || stat_only) {
Nicolas Pitre77d3ece2008-06-24 23:18:17 -040042 if (err)
Junio C Hamano3de89c92011-06-03 15:32:17 -070043 printf("%s: bad\n", arg.buf);
Nicolas Pitre77d3ece2008-06-24 23:18:17 -040044 else {
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070045 if (!stat_only)
Junio C Hamano3de89c92011-06-03 15:32:17 -070046 printf("%s: ok\n", arg.buf);
Nicolas Pitre77d3ece2008-06-24 23:18:17 -040047 }
48 }
Junio C Hamano3de89c92011-06-03 15:32:17 -070049 strbuf_release(&arg);
Rene Scharfed0d619c2006-08-10 17:02:35 +020050
51 return err;
Junio C Hamanof9253392005-06-29 02:51:27 -070052}
53
Stephen Boydc9c3c672009-07-07 22:15:40 -070054static const char * const verify_pack_usage[] = {
Alex Henrie9c9b4f22015-01-13 00:44:47 -070055 N_("git verify-pack [-v | --verbose] [-s | --stat-only] <pack>..."),
Stephen Boydc9c3c672009-07-07 22:15:40 -070056 NULL
57};
Junio C Hamanof3bf9222005-06-30 17:15:39 -070058
Rene Scharfe2e3ed672006-08-10 17:02:38 +020059int cmd_verify_pack(int argc, const char **argv, const char *prefix)
Junio C Hamanof9253392005-06-29 02:51:27 -070060{
Rene Scharfe0eaf22f2006-08-10 17:02:37 +020061 int err = 0;
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070062 unsigned int flags = 0;
Stephen Boydc9c3c672009-07-07 22:15:40 -070063 int i;
64 const struct option verify_pack_options[] = {
Nguyễn Thái Ngọc Duy0a245e22012-08-20 19:32:51 +070065 OPT_BIT('v', "verbose", &flags, N_("verbose"),
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070066 VERIFY_PACK_VERBOSE),
Nguyễn Thái Ngọc Duy0a245e22012-08-20 19:32:51 +070067 OPT_BIT('s', "stat-only", &flags, N_("show statistics only"),
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070068 VERIFY_PACK_STAT_ONLY),
Stephen Boydc9c3c672009-07-07 22:15:40 -070069 OPT_END()
70 };
Junio C Hamanof9253392005-06-29 02:51:27 -070071
Johannes Schindelinef90d6d2008-05-14 18:46:53 +010072 git_config(git_default_config, NULL);
Stephen Boydc9c3c672009-07-07 22:15:40 -070073 argc = parse_options(argc, argv, prefix, verify_pack_options,
74 verify_pack_usage, 0);
75 if (argc < 1)
76 usage_with_options(verify_pack_usage, verify_pack_options);
77 for (i = 0; i < argc; i++) {
Junio C Hamano6c4f3ec2009-08-07 15:45:30 -070078 if (verify_one_pack(argv[i], flags))
Stephen Boydc9c3c672009-07-07 22:15:40 -070079 err = 1;
Junio C Hamanof9253392005-06-29 02:51:27 -070080 }
Rene Scharfe6f05b572006-08-10 17:02:31 +020081
Rene Scharfe0eaf22f2006-08-10 17:02:37 +020082 return err;
Junio C Hamanof9253392005-06-29 02:51:27 -070083}