]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-pack-refs.c
Use OPT_BIT in builtin-for-each-ref
[thirdparty/git.git] / builtin-pack-refs.c
CommitLineData
baffc0e7 1#include "builtin.h"
e1e22e37
LT
2#include "cache.h"
3#include "refs.h"
cf0adba7
JH
4#include "object.h"
5#include "tag.h"
b2565ae5 6#include "parse-options.h"
96884601
JH
7
8struct ref_to_prune {
9 struct ref_to_prune *next;
10 unsigned char sha1[20];
11 char name[FLEX_ARRAY];
12};
13
99b5a79e
LT
14#define PACK_REFS_PRUNE 0x0001
15#define PACK_REFS_ALL 0x0002
16
96884601 17struct pack_refs_cb_data {
99b5a79e 18 unsigned int flags;
96884601
JH
19 struct ref_to_prune *ref_to_prune;
20 FILE *refs_file;
21};
e1e22e37 22
96884601
JH
23static int do_not_prune(int flags)
24{
25 /* If it is already packed or if it is a symref,
26 * do not prune it.
27 */
28 return (flags & (REF_ISSYMREF|REF_ISPACKED));
29}
30
8da19775
JH
31static int handle_one_ref(const char *path, const unsigned char *sha1,
32 int flags, void *cb_data)
e1e22e37 33{
96884601 34 struct pack_refs_cb_data *cb = cb_data;
cf0adba7 35 int is_tag_ref;
cb5d709f 36
13e4aa90 37 /* Do not pack the symbolic refs */
cf0adba7
JH
38 if ((flags & REF_ISSYMREF))
39 return 0;
cc44c765 40 is_tag_ref = !prefixcmp(path, "refs/tags/");
1b555932
LT
41
42 /* ALWAYS pack refs that were already packed or are tags */
99b5a79e 43 if (!(cb->flags & PACK_REFS_ALL) && !is_tag_ref && !(flags & REF_ISPACKED))
cf0adba7
JH
44 return 0;
45
46 fprintf(cb->refs_file, "%s %s\n", sha1_to_hex(sha1), path);
47 if (is_tag_ref) {
48 struct object *o = parse_object(sha1);
49 if (o->type == OBJ_TAG) {
50 o = deref_tag(o, path, 0);
51 if (o)
f4204ab9
JH
52 fprintf(cb->refs_file, "^%s\n",
53 sha1_to_hex(o->sha1));
cf0adba7
JH
54 }
55 }
56
99b5a79e 57 if ((cb->flags & PACK_REFS_PRUNE) && !do_not_prune(flags)) {
96884601
JH
58 int namelen = strlen(path) + 1;
59 struct ref_to_prune *n = xcalloc(1, sizeof(*n) + namelen);
60 hashcpy(n->sha1, sha1);
61 strcpy(n->name, path);
62 n->next = cb->ref_to_prune;
63 cb->ref_to_prune = n;
64 }
e1e22e37
LT
65 return 0;
66}
67
96884601
JH
68/* make sure nobody touched the ref, and unlink */
69static void prune_ref(struct ref_to_prune *r)
70{
4431fcc4 71 struct ref_lock *lock = lock_ref_sha1(r->name + 5, r->sha1);
96884601
JH
72
73 if (lock) {
6d15987c 74 unlink(git_path("%s", r->name));
96884601
JH
75 unlock_ref(lock);
76 }
77}
78
79static void prune_refs(struct ref_to_prune *r)
80{
81 while (r) {
82 prune_ref(r);
83 r = r->next;
84 }
85}
86
03a18210
JH
87static struct lock_file packed;
88
99b5a79e 89static int pack_refs(unsigned int flags)
e1e22e37 90{
99b5a79e 91 int fd;
96884601
JH
92 struct pack_refs_cb_data cbdata;
93
94 memset(&cbdata, 0, sizeof(cbdata));
99b5a79e
LT
95 cbdata.flags = flags;
96
97 fd = hold_lock_file_for_update(&packed, git_path("packed-refs"), 1);
98 cbdata.refs_file = fdopen(fd, "w");
99 if (!cbdata.refs_file)
100 die("unable to create ref-pack file structure (%s)",
101 strerror(errno));
102
103 /* perhaps other traits later as well */
104 fprintf(cbdata.refs_file, "# pack-refs with: peeled \n");
105
106 for_each_ref(handle_one_ref, &cbdata);
384f122b
JM
107 if (ferror(cbdata.refs_file))
108 die("failed to write ref-pack file");
99b5a79e
LT
109 if (fflush(cbdata.refs_file) || fsync(fd) || fclose(cbdata.refs_file))
110 die("failed to write ref-pack file (%s)", strerror(errno));
111 if (commit_lock_file(&packed) < 0)
112 die("unable to overwrite old ref-pack file (%s)", strerror(errno));
113 if (cbdata.flags & PACK_REFS_PRUNE)
114 prune_refs(cbdata.ref_to_prune);
115 return 0;
116}
96884601 117
b2565ae5
PH
118static char const * const pack_refs_usage[] = {
119 "git-pack-refs [options]",
120 NULL
121};
122
99b5a79e
LT
123int cmd_pack_refs(int argc, const char **argv, const char *prefix)
124{
b2565ae5
PH
125 int all = 0, prune = 1;
126 unsigned int flags = 0;
127 struct option opts[] = {
128 OPT_BOOLEAN(0, "all", &all, "pack everything"),
129 OPT_BOOLEAN(0, "prune", &prune, "prune loose refs (default)"),
130 OPT_END(),
131 };
132
133 if (parse_options(argc, argv, opts, pack_refs_usage, 0))
134 usage_with_options(pack_refs_usage, opts);
135 if (prune)
136 flags |= PACK_REFS_PRUNE;
137 if (all)
138 flags |= PACK_REFS_ALL;
99b5a79e 139 return pack_refs(flags);
e1e22e37 140}