blob: 2006cc5cd5cc4d381189f5cf7bdd09fcdd66b9ca [file] [log] [blame]
Peter Hagervallbaffc0e2007-07-15 01:14:45 +02001#include "builtin.h"
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +01002#include "cache.h"
Johannes Schindelin30415d52007-09-10 23:03:15 -04003#include "bundle.h"
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +01004
5/*
6 * Basic handler for bundle files to connect repositories via sneakernet.
7 * Invocation must include action.
8 * This function can create a bundle or provide information on an existing
Heikki Orsila34baebc2008-08-30 14:12:53 +03009 * bundle supporting "fetch", "pull", and "ls-remote".
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010010 */
11
Thiago Farina1f986c42009-09-17 13:20:53 -040012static const char builtin_bundle_usage[] =
13 "git bundle create <file> <git-rev-list args>\n"
14 " or: git bundle verify <file>\n"
15 " or: git bundle list-heads <file> [refname...]\n"
16 " or: git bundle unbundle <file> [refname...]";
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010017
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010018int cmd_bundle(int argc, const char **argv, const char *prefix)
19{
20 struct bundle_header header;
SZEDER Gáboraf05d672008-03-25 22:06:26 +010021 int nongit;
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010022 const char *cmd, *bundle_file;
23 int bundle_fd = -1;
24 char buffer[PATH_MAX];
25
26 if (argc < 3)
Thiago Farina1f986c42009-09-17 13:20:53 -040027 usage(builtin_bundle_usage);
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010028
29 cmd = argv[1];
30 bundle_file = argv[2];
31 argc -= 2;
32 argv += 2;
33
34 prefix = setup_git_directory_gently(&nongit);
35 if (prefix && bundle_file[0] != '/') {
36 snprintf(buffer, sizeof(buffer), "%s/%s", prefix, bundle_file);
37 bundle_file = buffer;
38 }
39
40 memset(&header, 0, sizeof(header));
Johannes Schindelin30415d52007-09-10 23:03:15 -040041 if (strcmp(cmd, "create") && (bundle_fd =
42 read_bundle_header(bundle_file, &header)) < 0)
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010043 return 1;
44
45 if (!strcmp(cmd, "verify")) {
46 close(bundle_fd);
Junio C Hamano80e25ce2007-03-05 16:17:27 -080047 if (verify_bundle(&header, 1))
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010048 return 1;
49 fprintf(stderr, "%s is okay\n", bundle_file);
50 return 0;
51 }
52 if (!strcmp(cmd, "list-heads")) {
53 close(bundle_fd);
Johannes Schindelin30415d52007-09-10 23:03:15 -040054 return !!list_bundle_refs(&header, argc, argv);
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010055 }
56 if (!strcmp(cmd, "create")) {
57 if (nongit)
58 die("Need a repository to create a bundle.");
59 return !!create_bundle(&header, bundle_file, argc, argv);
60 } else if (!strcmp(cmd, "unbundle")) {
61 if (nongit)
62 die("Need a repository to unbundle.");
Johannes Schindelin30415d52007-09-10 23:03:15 -040063 return !!unbundle(&header, bundle_fd) ||
64 list_bundle_refs(&header, argc, argv);
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010065 } else
Thiago Farina1f986c42009-09-17 13:20:53 -040066 usage(builtin_bundle_usage);
Johannes Schindelin2e0afaf2007-02-22 01:59:14 +010067}