3 #include "parse-options.h"
8 * Basic handler for bundle files to connect repositories via sneakernet.
9 * Invocation must include action.
10 * This function can create a bundle or provide information on an existing
11 * bundle supporting "fetch", "pull", and "ls-remote".
14 #define BUILTIN_BUNDLE_CREATE_USAGE \
15 N_("git bundle create [-q | --quiet | --progress | --all-progress] [--all-progress-implied]\n" \
16 " [--version=<version>] <file> <git-rev-list-args>")
17 #define BUILTIN_BUNDLE_VERIFY_USAGE \
18 N_("git bundle verify [-q | --quiet] <file>")
19 #define BUILTIN_BUNDLE_LIST_HEADS_USAGE \
20 N_("git bundle list-heads <file> [<refname>...]")
21 #define BUILTIN_BUNDLE_UNBUNDLE_USAGE \
22 N_("git bundle unbundle [--progress] <file> [<refname>...]")
24 static char const * const builtin_bundle_usage
[] = {
25 BUILTIN_BUNDLE_CREATE_USAGE
,
26 BUILTIN_BUNDLE_VERIFY_USAGE
,
27 BUILTIN_BUNDLE_LIST_HEADS_USAGE
,
28 BUILTIN_BUNDLE_UNBUNDLE_USAGE
,
32 static const char * const builtin_bundle_create_usage
[] = {
33 BUILTIN_BUNDLE_CREATE_USAGE
,
37 static const char * const builtin_bundle_verify_usage
[] = {
38 BUILTIN_BUNDLE_VERIFY_USAGE
,
42 static const char * const builtin_bundle_list_heads_usage
[] = {
43 BUILTIN_BUNDLE_LIST_HEADS_USAGE
,
47 static const char * const builtin_bundle_unbundle_usage
[] = {
48 BUILTIN_BUNDLE_UNBUNDLE_USAGE
,
52 static int parse_options_cmd_bundle(int argc
,
55 const char * const usagestr
[],
56 const struct option options
[],
58 argc
= parse_options(argc
, argv
, NULL
, options
, usagestr
,
59 PARSE_OPT_STOP_AT_NON_OPTION
);
61 usage_msg_opt(_("need a <file> argument"), usagestr
, options
);
62 *bundle_file
= prefix_filename(prefix
, argv
[0]);
66 static int cmd_bundle_create(int argc
, const char **argv
, const char *prefix
) {
67 int all_progress_implied
= 0;
68 int progress
= isatty(STDERR_FILENO
);
69 struct strvec pack_opts
;
72 struct option options
[] = {
73 OPT_SET_INT('q', "quiet", &progress
,
74 N_("do not show progress meter"), 0),
75 OPT_SET_INT(0, "progress", &progress
,
76 N_("show progress meter"), 1),
77 OPT_SET_INT(0, "all-progress", &progress
,
78 N_("show progress meter during object writing phase"), 2),
79 OPT_BOOL(0, "all-progress-implied",
80 &all_progress_implied
,
81 N_("similar to --all-progress when progress meter is shown")),
82 OPT_INTEGER(0, "version", &version
,
83 N_("specify bundle format version")),
88 argc
= parse_options_cmd_bundle(argc
, argv
, prefix
,
89 builtin_bundle_create_usage
, options
, &bundle_file
);
90 /* bundle internals use argv[1] as further parameters */
92 strvec_init(&pack_opts
);
94 strvec_push(&pack_opts
, "--quiet");
95 else if (progress
== 1)
96 strvec_push(&pack_opts
, "--progress");
97 else if (progress
== 2)
98 strvec_push(&pack_opts
, "--all-progress");
99 if (progress
&& all_progress_implied
)
100 strvec_push(&pack_opts
, "--all-progress-implied");
102 if (!startup_info
->have_repository
)
103 die(_("Need a repository to create a bundle."));
104 ret
= !!create_bundle(the_repository
, bundle_file
, argc
, argv
, &pack_opts
, version
);
105 strvec_clear(&pack_opts
);
110 static int cmd_bundle_verify(int argc
, const char **argv
, const char *prefix
) {
111 struct bundle_header header
= BUNDLE_HEADER_INIT
;
115 struct option options
[] = {
116 OPT_BOOL('q', "quiet", &quiet
,
117 N_("do not show bundle details")),
122 argc
= parse_options_cmd_bundle(argc
, argv
, prefix
,
123 builtin_bundle_verify_usage
, options
, &bundle_file
);
124 /* bundle internals use argv[1] as further parameters */
126 if ((bundle_fd
= read_bundle_header(bundle_file
, &header
)) < 0) {
131 if (verify_bundle(the_repository
, &header
,
132 quiet
? VERIFY_BUNDLE_QUIET
: VERIFY_BUNDLE_VERBOSE
)) {
137 fprintf(stderr
, _("%s is okay\n"), bundle_file
);
141 bundle_header_release(&header
);
145 static int cmd_bundle_list_heads(int argc
, const char **argv
, const char *prefix
) {
146 struct bundle_header header
= BUNDLE_HEADER_INIT
;
149 struct option options
[] = {
154 argc
= parse_options_cmd_bundle(argc
, argv
, prefix
,
155 builtin_bundle_list_heads_usage
, options
, &bundle_file
);
156 /* bundle internals use argv[1] as further parameters */
158 if ((bundle_fd
= read_bundle_header(bundle_file
, &header
)) < 0) {
163 ret
= !!list_bundle_refs(&header
, argc
, argv
);
166 bundle_header_release(&header
);
170 static int cmd_bundle_unbundle(int argc
, const char **argv
, const char *prefix
) {
171 struct bundle_header header
= BUNDLE_HEADER_INIT
;
174 int progress
= isatty(2);
176 struct option options
[] = {
177 OPT_BOOL(0, "progress", &progress
,
178 N_("show progress meter")),
182 struct strvec extra_index_pack_args
= STRVEC_INIT
;
184 argc
= parse_options_cmd_bundle(argc
, argv
, prefix
,
185 builtin_bundle_unbundle_usage
, options
, &bundle_file
);
186 /* bundle internals use argv[1] as further parameters */
188 if ((bundle_fd
= read_bundle_header(bundle_file
, &header
)) < 0) {
192 if (!startup_info
->have_repository
)
193 die(_("Need a repository to unbundle."));
195 strvec_pushl(&extra_index_pack_args
, "-v", "--progress-title",
196 _("Unbundling objects"), NULL
);
197 ret
= !!unbundle(the_repository
, &header
, bundle_fd
,
198 &extra_index_pack_args
, 0) ||
199 list_bundle_refs(&header
, argc
, argv
);
200 bundle_header_release(&header
);
206 int cmd_bundle(int argc
, const char **argv
, const char *prefix
)
208 parse_opt_subcommand_fn
*fn
= NULL
;
209 struct option options
[] = {
210 OPT_SUBCOMMAND("create", &fn
, cmd_bundle_create
),
211 OPT_SUBCOMMAND("verify", &fn
, cmd_bundle_verify
),
212 OPT_SUBCOMMAND("list-heads", &fn
, cmd_bundle_list_heads
),
213 OPT_SUBCOMMAND("unbundle", &fn
, cmd_bundle_unbundle
),
217 argc
= parse_options(argc
, argv
, prefix
, options
, builtin_bundle_usage
,
220 packet_trace_identity("bundle");
222 return !!fn(argc
, argv
, prefix
);