builtin / bundle.con commit Merge branch 'kn/for-each-branch' (415095f)
   1#include "builtin.h"
   2#include "cache.h"
   3#include "bundle.h"
   4
   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
   9 * bundle supporting "fetch", "pull", and "ls-remote".
  10 */
  11
  12static 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>...]";
  17
  18int cmd_bundle(int argc, const char **argv, const char *prefix)
  19{
  20        struct bundle_header header;
  21        const char *cmd, *bundle_file;
  22        int bundle_fd = -1;
  23        char buffer[PATH_MAX];
  24
  25        if (argc < 3)
  26                usage(builtin_bundle_usage);
  27
  28        cmd = argv[1];
  29        bundle_file = argv[2];
  30        argc -= 2;
  31        argv += 2;
  32
  33        if (prefix && bundle_file[0] != '/') {
  34                snprintf(buffer, sizeof(buffer), "%s/%s", prefix, bundle_file);
  35                bundle_file = buffer;
  36        }
  37
  38        memset(&header, 0, sizeof(header));
  39        if (strcmp(cmd, "create") && (bundle_fd =
  40                                read_bundle_header(bundle_file, &header)) < 0)
  41                return 1;
  42
  43        if (!strcmp(cmd, "verify")) {
  44                close(bundle_fd);
  45                if (argc != 1) {
  46                        usage(builtin_bundle_usage);
  47                        return 1;
  48                }
  49                if (verify_bundle(&header, 1))
  50                        return 1;
  51                fprintf(stderr, _("%s is okay\n"), bundle_file);
  52                return 0;
  53        }
  54        if (!strcmp(cmd, "list-heads")) {
  55                close(bundle_fd);
  56                return !!list_bundle_refs(&header, argc, argv);
  57        }
  58        if (!strcmp(cmd, "create")) {
  59                if (argc < 2) {
  60                        usage(builtin_bundle_usage);
  61                        return 1;
  62                }
  63                if (!startup_info->have_repository)
  64                        die(_("Need a repository to create a bundle."));
  65                return !!create_bundle(&header, bundle_file, argc, argv);
  66        } else if (!strcmp(cmd, "unbundle")) {
  67                if (!startup_info->have_repository)
  68                        die(_("Need a repository to unbundle."));
  69                return !!unbundle(&header, bundle_fd, 0) ||
  70                        list_bundle_refs(&header, argc, argv);
  71        } else
  72                usage(builtin_bundle_usage);
  73}