git-p4: narrow the scope of exceptions caught when parsing an int
[git.git] / fetch-pack.h
blob6afa08b48bb9f7cc2db1b2fb4644c576fd8d8f3e
1 #ifndef FETCH_PACK_H
2 #define FETCH_PACK_H
4 #include "string-list.h"
5 #include "run-command.h"
6 #include "protocol.h"
7 #include "list-objects-filter-options.h"
9 struct oid_array;
11 struct fetch_pack_args {
12 const char *uploadpack;
13 int unpacklimit;
14 int depth;
15 const char *deepen_since;
16 const struct string_list *deepen_not;
17 struct list_objects_filter_options filter_options;
18 unsigned deepen_relative:1;
19 unsigned quiet:1;
20 unsigned keep_pack:1;
21 unsigned lock_pack:1;
22 unsigned use_thin_pack:1;
23 unsigned fetch_all:1;
24 unsigned stdin_refs:1;
25 unsigned diag_url:1;
26 unsigned verbose:1;
27 unsigned no_progress:1;
28 unsigned include_tag:1;
29 unsigned stateless_rpc:1;
30 unsigned check_self_contained_and_connected:1;
31 unsigned self_contained_and_connected:1;
32 unsigned cloning:1;
33 unsigned update_shallow:1;
34 unsigned deepen:1;
35 unsigned from_promisor:1;
38 * If 1, fetch_pack() will also not modify any object flags.
39 * This allows fetch_pack() to safely be called by any function,
40 * regardless of which object flags it uses (if any).
42 unsigned no_dependents:1;
46 * sought represents remote references that should be updated from.
47 * On return, the names that were found on the remote will have been
48 * marked as such.
50 struct ref *fetch_pack(struct fetch_pack_args *args,
51 int fd[], struct child_process *conn,
52 const struct ref *ref,
53 const char *dest,
54 struct ref **sought,
55 int nr_sought,
56 struct oid_array *shallow,
57 char **pack_lockfile,
58 enum protocol_version version);
61 * Print an appropriate error message for each sought ref that wasn't
62 * matched. Return 0 if all sought refs were matched, otherwise 1.
64 int report_unmatched_refs(struct ref **sought, int nr_sought);
66 #endif