Merge branch 'en/rebase-x-wo-git-dir-env'
[git/debian.git] / t / helper / test-ref-store.c
blob24dd4bec08c4cd6afc2c33bddfd7c86710141428
1 #include "test-tool.h"
2 #include "cache.h"
3 #include "refs.h"
4 #include "worktree.h"
5 #include "object-store.h"
6 #include "repository.h"
8 struct flag_definition {
9 const char *name;
10 uint64_t mask;
13 #define FLAG_DEF(x) \
14 { \
15 #x, (x) \
18 static unsigned int parse_flags(const char *str, struct flag_definition *defs)
20 struct string_list masks = STRING_LIST_INIT_DUP;
21 int i = 0;
22 unsigned int result = 0;
24 if (!strcmp(str, "0"))
25 return 0;
27 string_list_split(&masks, str, ',', 64);
28 for (; i < masks.nr; i++) {
29 const char *name = masks.items[i].string;
30 struct flag_definition *def = defs;
31 int found = 0;
32 while (def->name) {
33 if (!strcmp(def->name, name)) {
34 result |= def->mask;
35 found = 1;
36 break;
38 def++;
40 if (!found)
41 die("unknown flag \"%s\"", name);
44 string_list_clear(&masks, 0);
45 return result;
48 static struct flag_definition empty_flags[] = { { NULL, 0 } };
50 static const char *notnull(const char *arg, const char *name)
52 if (!arg)
53 die("%s required", name);
54 return arg;
57 static unsigned int arg_flags(const char *arg, const char *name,
58 struct flag_definition *defs)
60 return parse_flags(notnull(arg, name), defs);
63 static const char **get_store(const char **argv, struct ref_store **refs)
65 const char *gitdir;
67 if (!argv[0]) {
68 die("ref store required");
69 } else if (!strcmp(argv[0], "main")) {
70 *refs = get_main_ref_store(the_repository);
71 } else if (skip_prefix(argv[0], "submodule:", &gitdir)) {
72 struct strbuf sb = STRBUF_INIT;
73 int ret;
75 ret = strbuf_git_path_submodule(&sb, gitdir, "objects/");
76 if (ret)
77 die("strbuf_git_path_submodule failed: %d", ret);
78 add_to_alternates_memory(sb.buf);
79 strbuf_release(&sb);
81 *refs = get_submodule_ref_store(gitdir);
82 } else if (skip_prefix(argv[0], "worktree:", &gitdir)) {
83 struct worktree **p, **worktrees = get_worktrees();
85 for (p = worktrees; *p; p++) {
86 struct worktree *wt = *p;
88 if (!wt->id) {
89 /* special case for main worktree */
90 if (!strcmp(gitdir, "main"))
91 break;
92 } else if (!strcmp(gitdir, wt->id))
93 break;
95 if (!*p)
96 die("no such worktree: %s", gitdir);
98 *refs = get_worktree_ref_store(*p);
99 } else
100 die("unknown backend %s", argv[0]);
102 if (!*refs)
103 die("no ref store");
105 /* consume store-specific optional arguments if needed */
107 return argv + 1;
110 static struct flag_definition pack_flags[] = { FLAG_DEF(PACK_REFS_PRUNE),
111 FLAG_DEF(PACK_REFS_ALL),
112 { NULL, 0 } };
114 static int cmd_pack_refs(struct ref_store *refs, const char **argv)
116 unsigned int flags = arg_flags(*argv++, "flags", pack_flags);
118 return refs_pack_refs(refs, flags);
121 static int cmd_create_symref(struct ref_store *refs, const char **argv)
123 const char *refname = notnull(*argv++, "refname");
124 const char *target = notnull(*argv++, "target");
125 const char *logmsg = *argv++;
127 return refs_create_symref(refs, refname, target, logmsg);
130 static struct flag_definition transaction_flags[] = {
131 FLAG_DEF(REF_NO_DEREF),
132 FLAG_DEF(REF_FORCE_CREATE_REFLOG),
133 FLAG_DEF(REF_SKIP_OID_VERIFICATION),
134 FLAG_DEF(REF_SKIP_REFNAME_VERIFICATION),
135 { NULL, 0 }
138 static int cmd_delete_refs(struct ref_store *refs, const char **argv)
140 unsigned int flags = arg_flags(*argv++, "flags", transaction_flags);
141 const char *msg = *argv++;
142 struct string_list refnames = STRING_LIST_INIT_NODUP;
143 int result;
145 while (*argv)
146 string_list_append(&refnames, *argv++);
148 result = refs_delete_refs(refs, msg, &refnames, flags);
149 string_list_clear(&refnames, 0);
150 return result;
153 static int cmd_rename_ref(struct ref_store *refs, const char **argv)
155 const char *oldref = notnull(*argv++, "oldref");
156 const char *newref = notnull(*argv++, "newref");
157 const char *logmsg = *argv++;
159 return refs_rename_ref(refs, oldref, newref, logmsg);
162 static int each_ref(const char *refname, const struct object_id *oid,
163 int flags, void *cb_data)
165 printf("%s %s 0x%x\n", oid_to_hex(oid), refname, flags);
166 return 0;
169 static int cmd_for_each_ref(struct ref_store *refs, const char **argv)
171 const char *prefix = notnull(*argv++, "prefix");
173 return refs_for_each_ref_in(refs, prefix, each_ref, NULL);
176 static int cmd_resolve_ref(struct ref_store *refs, const char **argv)
178 struct object_id oid = *null_oid();
179 const char *refname = notnull(*argv++, "refname");
180 int resolve_flags = arg_flags(*argv++, "resolve-flags", empty_flags);
181 int flags;
182 const char *ref;
183 int ignore_errno;
185 ref = refs_resolve_ref_unsafe(refs, refname, resolve_flags,
186 &oid, &flags, &ignore_errno);
187 printf("%s %s 0x%x\n", oid_to_hex(&oid), ref ? ref : "(null)", flags);
188 return ref ? 0 : 1;
191 static int cmd_verify_ref(struct ref_store *refs, const char **argv)
193 const char *refname = notnull(*argv++, "refname");
194 struct strbuf err = STRBUF_INIT;
195 int ret;
197 ret = refs_verify_refname_available(refs, refname, NULL, NULL, &err);
198 if (err.len)
199 puts(err.buf);
200 return ret;
203 static int cmd_for_each_reflog(struct ref_store *refs, const char **argv)
205 return refs_for_each_reflog(refs, each_ref, NULL);
208 static int each_reflog(struct object_id *old_oid, struct object_id *new_oid,
209 const char *committer, timestamp_t timestamp,
210 int tz, const char *msg, void *cb_data)
212 printf("%s %s %s %" PRItime " %+05d%s%s", oid_to_hex(old_oid),
213 oid_to_hex(new_oid), committer, timestamp, tz,
214 *msg == '\n' ? "" : "\t", msg);
215 return 0;
218 static int cmd_for_each_reflog_ent(struct ref_store *refs, const char **argv)
220 const char *refname = notnull(*argv++, "refname");
222 return refs_for_each_reflog_ent(refs, refname, each_reflog, refs);
225 static int cmd_for_each_reflog_ent_reverse(struct ref_store *refs, const char **argv)
227 const char *refname = notnull(*argv++, "refname");
229 return refs_for_each_reflog_ent_reverse(refs, refname, each_reflog, refs);
232 static int cmd_reflog_exists(struct ref_store *refs, const char **argv)
234 const char *refname = notnull(*argv++, "refname");
236 return !refs_reflog_exists(refs, refname);
239 static int cmd_create_reflog(struct ref_store *refs, const char **argv)
241 const char *refname = notnull(*argv++, "refname");
242 struct strbuf err = STRBUF_INIT;
243 int ret;
245 ret = refs_create_reflog(refs, refname, &err);
246 if (err.len)
247 puts(err.buf);
248 return ret;
251 static int cmd_delete_reflog(struct ref_store *refs, const char **argv)
253 const char *refname = notnull(*argv++, "refname");
255 return refs_delete_reflog(refs, refname);
258 static int cmd_reflog_expire(struct ref_store *refs, const char **argv)
260 die("not supported yet");
263 static int cmd_delete_ref(struct ref_store *refs, const char **argv)
265 const char *msg = notnull(*argv++, "msg");
266 const char *refname = notnull(*argv++, "refname");
267 const char *sha1_buf = notnull(*argv++, "old-sha1");
268 unsigned int flags = arg_flags(*argv++, "flags", transaction_flags);
269 struct object_id old_oid;
271 if (get_oid_hex(sha1_buf, &old_oid))
272 die("not sha-1");
274 return refs_delete_ref(refs, msg, refname, &old_oid, flags);
277 static int cmd_update_ref(struct ref_store *refs, const char **argv)
279 const char *msg = notnull(*argv++, "msg");
280 const char *refname = notnull(*argv++, "refname");
281 const char *new_sha1_buf = notnull(*argv++, "new-sha1");
282 const char *old_sha1_buf = notnull(*argv++, "old-sha1");
283 unsigned int flags = arg_flags(*argv++, "flags", transaction_flags);
284 struct object_id old_oid;
285 struct object_id new_oid;
287 if (get_oid_hex(old_sha1_buf, &old_oid) ||
288 get_oid_hex(new_sha1_buf, &new_oid))
289 die("not sha-1");
291 return refs_update_ref(refs, msg, refname,
292 &new_oid, &old_oid,
293 flags, UPDATE_REFS_DIE_ON_ERR);
296 struct command {
297 const char *name;
298 int (*func)(struct ref_store *refs, const char **argv);
301 static struct command commands[] = {
302 { "pack-refs", cmd_pack_refs },
303 { "create-symref", cmd_create_symref },
304 { "delete-refs", cmd_delete_refs },
305 { "rename-ref", cmd_rename_ref },
306 { "for-each-ref", cmd_for_each_ref },
307 { "resolve-ref", cmd_resolve_ref },
308 { "verify-ref", cmd_verify_ref },
309 { "for-each-reflog", cmd_for_each_reflog },
310 { "for-each-reflog-ent", cmd_for_each_reflog_ent },
311 { "for-each-reflog-ent-reverse", cmd_for_each_reflog_ent_reverse },
312 { "reflog-exists", cmd_reflog_exists },
313 { "create-reflog", cmd_create_reflog },
314 { "delete-reflog", cmd_delete_reflog },
315 { "reflog-expire", cmd_reflog_expire },
317 * backend transaction functions can't be tested separately
319 { "delete-ref", cmd_delete_ref },
320 { "update-ref", cmd_update_ref },
321 { NULL, NULL }
324 int cmd__ref_store(int argc, const char **argv)
326 struct ref_store *refs;
327 const char *func;
328 struct command *cmd;
330 setup_git_directory();
332 argv = get_store(argv + 1, &refs);
334 func = *argv++;
335 if (!func)
336 die("ref function required");
337 for (cmd = commands; cmd->name; cmd++) {
338 if (!strcmp(func, cmd->name))
339 return cmd->func(refs, argv);
341 die("unknown function %s", func);
342 return 0;