refs: move dwim_ref() to header file
[git] / refs.h
1 #ifndef REFS_H
2 #define REFS_H
3
4 #include "cache.h"
5
6 struct object_id;
7 struct ref_store;
8 struct repository;
9 struct strbuf;
10 struct string_list;
11 struct string_list_item;
12 struct worktree;
13
14 /*
15  * Resolve a reference, recursively following symbolic refererences.
16  *
17  * Return the name of the non-symbolic reference that ultimately pointed
18  * at the resolved object name.  The return value, if not NULL, is a
19  * pointer into either a static buffer or the input ref.
20  *
21  * If oid is non-NULL, store the referred-to object's name in it.
22  *
23  * If the reference cannot be resolved to an object, the behavior
24  * depends on the RESOLVE_REF_READING flag:
25  *
26  * - If RESOLVE_REF_READING is set, return NULL.
27  *
28  * - If RESOLVE_REF_READING is not set, clear oid and return the name of
29  *   the last reference name in the chain, which will either be a non-symbolic
30  *   reference or an undefined reference.  If this is a prelude to
31  *   "writing" to the ref, the return value is the name of the ref
32  *   that will actually be created or changed.
33  *
34  * If the RESOLVE_REF_NO_RECURSE flag is passed, only resolves one
35  * level of symbolic reference.  The value stored in oid for a symbolic
36  * reference will always be null_oid in this case, and the return
37  * value is the reference that the symref refers to directly.
38  *
39  * If flags is non-NULL, set the value that it points to the
40  * combination of REF_ISPACKED (if the reference was found among the
41  * packed references), REF_ISSYMREF (if the initial reference was a
42  * symbolic reference), REF_BAD_NAME (if the reference name is ill
43  * formed --- see RESOLVE_REF_ALLOW_BAD_NAME below), and REF_ISBROKEN
44  * (if the ref is malformed or has a bad name). See refs.h for more detail
45  * on each flag.
46  *
47  * If ref is not a properly-formatted, normalized reference, return
48  * NULL.  If more than MAXDEPTH recursive symbolic lookups are needed,
49  * give up and return NULL.
50  *
51  * RESOLVE_REF_ALLOW_BAD_NAME allows resolving refs even when their
52  * name is invalid according to git-check-ref-format(1).  If the name
53  * is bad then the value stored in oid will be null_oid and the two
54  * flags REF_ISBROKEN and REF_BAD_NAME will be set.
55  *
56  * Even with RESOLVE_REF_ALLOW_BAD_NAME, names that escape the refs/
57  * directory and do not consist of all caps and underscores cannot be
58  * resolved. The function returns NULL for such ref names.
59  * Caps and underscores refers to the special refs, such as HEAD,
60  * FETCH_HEAD and friends, that all live outside of the refs/ directory.
61  */
62 #define RESOLVE_REF_READING 0x01
63 #define RESOLVE_REF_NO_RECURSE 0x02
64 #define RESOLVE_REF_ALLOW_BAD_NAME 0x04
65
66 const char *refs_resolve_ref_unsafe(struct ref_store *refs,
67                                     const char *refname,
68                                     int resolve_flags,
69                                     struct object_id *oid,
70                                     int *flags);
71 const char *resolve_ref_unsafe(const char *refname, int resolve_flags,
72                                struct object_id *oid, int *flags);
73
74 char *refs_resolve_refdup(struct ref_store *refs,
75                           const char *refname, int resolve_flags,
76                           struct object_id *oid, int *flags);
77 char *resolve_refdup(const char *refname, int resolve_flags,
78                      struct object_id *oid, int *flags);
79
80 int refs_read_ref_full(struct ref_store *refs, const char *refname,
81                        int resolve_flags, struct object_id *oid, int *flags);
82 int read_ref_full(const char *refname, int resolve_flags,
83                   struct object_id *oid, int *flags);
84 int read_ref(const char *refname, struct object_id *oid);
85
86 /*
87  * Return 0 if a reference named refname could be created without
88  * conflicting with the name of an existing reference. Otherwise,
89  * return a negative value and write an explanation to err. If extras
90  * is non-NULL, it is a list of additional refnames with which refname
91  * is not allowed to conflict. If skip is non-NULL, ignore potential
92  * conflicts with refs in skip (e.g., because they are scheduled for
93  * deletion in the same operation). Behavior is undefined if the same
94  * name is listed in both extras and skip.
95  *
96  * Two reference names conflict if one of them exactly matches the
97  * leading components of the other; e.g., "foo/bar" conflicts with
98  * both "foo" and with "foo/bar/baz" but not with "foo/bar" or
99  * "foo/barbados".
100  *
101  * extras and skip must be sorted.
102  */
103
104 int refs_verify_refname_available(struct ref_store *refs,
105                                   const char *refname,
106                                   const struct string_list *extras,
107                                   const struct string_list *skip,
108                                   struct strbuf *err);
109
110 int ref_exists(const char *refname);
111
112 int should_autocreate_reflog(const char *refname);
113
114 int is_branch(const char *refname);
115
116 int refs_init_db(struct strbuf *err);
117
118 /*
119  * If refname is a non-symbolic reference that refers to a tag object,
120  * and the tag can be (recursively) dereferenced to a non-tag object,
121  * store the object ID of the referred-to object to oid and return 0.
122  * If any of these conditions are not met, return a non-zero value.
123  * Symbolic references are considered unpeelable, even if they
124  * ultimately resolve to a peelable tag.
125  */
126 int refs_peel_ref(struct ref_store *refs, const char *refname,
127                   struct object_id *oid);
128 int peel_ref(const char *refname, struct object_id *oid);
129
130 /**
131  * Resolve refname in the nested "gitlink" repository in the specified
132  * submodule (which must be non-NULL). If the resolution is
133  * successful, return 0 and set oid to the name of the object;
134  * otherwise, return a non-zero value.
135  */
136 int resolve_gitlink_ref(const char *submodule, const char *refname,
137                         struct object_id *oid);
138
139 /*
140  * Return true iff abbrev_name is a possible abbreviation for
141  * full_name according to the rules defined by ref_rev_parse_rules in
142  * refs.c.
143  */
144 int refname_match(const char *abbrev_name, const char *full_name);
145
146 /*
147  * Given a 'prefix' expand it by the rules in 'ref_rev_parse_rules' and add
148  * the results to 'prefixes'
149  */
150 struct argv_array;
151 void expand_ref_prefix(struct argv_array *prefixes, const char *prefix);
152
153 int expand_ref(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
154 int repo_dwim_ref(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
155 int repo_dwim_log(struct repository *r, const char *str, int len, struct object_id *oid, char **ref);
156 static inline int dwim_ref(const char *str, int len, struct object_id *oid,
157                            char **ref)
158 {
159         return repo_dwim_ref(the_repository, str, len, oid, ref);
160 }
161 int dwim_log(const char *str, int len, struct object_id *oid, char **ref);
162
163 /*
164  * Retrieves the default branch name for newly-initialized repositories.
165  *
166  * The return value of `repo_default_branch_name()` is an allocated string. The
167  * return value of `git_default_branch_name()` is a singleton.
168  */
169 const char *git_default_branch_name(void);
170 char *repo_default_branch_name(struct repository *r);
171
172 /*
173  * A ref_transaction represents a collection of reference updates that
174  * should succeed or fail together.
175  *
176  * Calling sequence
177  * ----------------
178  *
179  * - Allocate and initialize a `struct ref_transaction` by calling
180  *   `ref_transaction_begin()`.
181  *
182  * - Specify the intended ref updates by calling one or more of the
183  *   following functions:
184  *   - `ref_transaction_update()`
185  *   - `ref_transaction_create()`
186  *   - `ref_transaction_delete()`
187  *   - `ref_transaction_verify()`
188  *
189  * - Then either:
190  *
191  *   - Optionally call `ref_transaction_prepare()` to prepare the
192  *     transaction. This locks all references, checks preconditions,
193  *     etc. but doesn't finalize anything. If this step fails, the
194  *     transaction has been closed and can only be freed. If this step
195  *     succeeds, then `ref_transaction_commit()` is almost certain to
196  *     succeed. However, you can still call `ref_transaction_abort()`
197  *     if you decide not to commit the transaction after all.
198  *
199  *   - Call `ref_transaction_commit()` to execute the transaction,
200  *     make the changes permanent, and release all locks. If you
201  *     haven't already called `ref_transaction_prepare()`, then
202  *     `ref_transaction_commit()` calls it for you.
203  *
204  *   Or
205  *
206  *   - Call `initial_ref_transaction_commit()` if the ref database is
207  *     known to be empty and have no other writers (e.g. during
208  *     clone). This is likely to be much faster than
209  *     `ref_transaction_commit()`. `ref_transaction_prepare()` should
210  *     *not* be called before `initial_ref_transaction_commit()`.
211  *
212  * - Then finally, call `ref_transaction_free()` to free the
213  *   `ref_transaction` data structure.
214  *
215  * At any time before calling `ref_transaction_commit()`, you can call
216  * `ref_transaction_abort()` to abort the transaction, rollback any
217  * locks, and free any associated resources (including the
218  * `ref_transaction` data structure).
219  *
220  * Putting it all together, a complete reference update looks like
221  *
222  *         struct ref_transaction *transaction;
223  *         struct strbuf err = STRBUF_INIT;
224  *         int ret = 0;
225  *
226  *         transaction = ref_store_transaction_begin(refs, &err);
227  *         if (!transaction ||
228  *             ref_transaction_update(...) ||
229  *             ref_transaction_create(...) ||
230  *             ...etc... ||
231  *             ref_transaction_commit(transaction, &err)) {
232  *                 error("%s", err.buf);
233  *                 ret = -1;
234  *         }
235  *         ref_transaction_free(transaction);
236  *         strbuf_release(&err);
237  *         return ret;
238  *
239  * Error handling
240  * --------------
241  *
242  * On error, transaction functions append a message about what
243  * went wrong to the 'err' argument.  The message mentions what
244  * ref was being updated (if any) when the error occurred so it
245  * can be passed to 'die' or 'error' as-is.
246  *
247  * The message is appended to err without first clearing err.
248  * err will not be '\n' terminated.
249  *
250  * Caveats
251  * -------
252  *
253  * Note that no locks are taken, and no refs are read, until
254  * `ref_transaction_prepare()` or `ref_transaction_commit()` is
255  * called. So, for example, `ref_transaction_verify()` won't report a
256  * verification failure until the commit is attempted.
257  */
258 struct ref_transaction;
259
260 /*
261  * Bit values set in the flags argument passed to each_ref_fn() and
262  * stored in ref_iterator::flags. Other bits are for internal use
263  * only:
264  */
265
266 /* Reference is a symbolic reference. */
267 #define REF_ISSYMREF 0x01
268
269 /* Reference is a packed reference. */
270 #define REF_ISPACKED 0x02
271
272 /*
273  * Reference cannot be resolved to an object name: dangling symbolic
274  * reference (directly or indirectly), corrupt reference file,
275  * reference exists but name is bad, or symbolic reference refers to
276  * ill-formatted reference name.
277  */
278 #define REF_ISBROKEN 0x04
279
280 /*
281  * Reference name is not well formed.
282  *
283  * See git-check-ref-format(1) for the definition of well formed ref names.
284  */
285 #define REF_BAD_NAME 0x08
286
287 /*
288  * The signature for the callback function for the for_each_*()
289  * functions below.  The memory pointed to by the refname and oid
290  * arguments is only guaranteed to be valid for the duration of a
291  * single callback invocation.
292  */
293 typedef int each_ref_fn(const char *refname,
294                         const struct object_id *oid, int flags, void *cb_data);
295
296 /*
297  * The same as each_ref_fn, but also with a repository argument that
298  * contains the repository associated with the callback.
299  */
300 typedef int each_repo_ref_fn(struct repository *r,
301                              const char *refname,
302                              const struct object_id *oid,
303                              int flags,
304                              void *cb_data);
305
306 /*
307  * The following functions invoke the specified callback function for
308  * each reference indicated.  If the function ever returns a nonzero
309  * value, stop the iteration and return that value.  Please note that
310  * it is not safe to modify references while an iteration is in
311  * progress, unless the same callback function invocation that
312  * modifies the reference also returns a nonzero value to immediately
313  * stop the iteration. Returned references are sorted.
314  */
315 int refs_head_ref(struct ref_store *refs,
316                   each_ref_fn fn, void *cb_data);
317 int refs_for_each_ref(struct ref_store *refs,
318                       each_ref_fn fn, void *cb_data);
319 int refs_for_each_ref_in(struct ref_store *refs, const char *prefix,
320                          each_ref_fn fn, void *cb_data);
321 int refs_for_each_tag_ref(struct ref_store *refs,
322                           each_ref_fn fn, void *cb_data);
323 int refs_for_each_branch_ref(struct ref_store *refs,
324                              each_ref_fn fn, void *cb_data);
325 int refs_for_each_remote_ref(struct ref_store *refs,
326                              each_ref_fn fn, void *cb_data);
327
328 /* just iterates the head ref. */
329 int head_ref(each_ref_fn fn, void *cb_data);
330
331 /* iterates all refs. */
332 int for_each_ref(each_ref_fn fn, void *cb_data);
333
334 /**
335  * iterates all refs which have a defined prefix and strips that prefix from
336  * the passed variable refname.
337  */
338 int for_each_ref_in(const char *prefix, each_ref_fn fn, void *cb_data);
339
340 int refs_for_each_fullref_in(struct ref_store *refs, const char *prefix,
341                              each_ref_fn fn, void *cb_data,
342                              unsigned int broken);
343 int for_each_fullref_in(const char *prefix, each_ref_fn fn, void *cb_data,
344                         unsigned int broken);
345
346 /**
347  * iterate refs from the respective area.
348  */
349 int for_each_tag_ref(each_ref_fn fn, void *cb_data);
350 int for_each_branch_ref(each_ref_fn fn, void *cb_data);
351 int for_each_remote_ref(each_ref_fn fn, void *cb_data);
352 int for_each_replace_ref(struct repository *r, each_repo_ref_fn fn, void *cb_data);
353
354 /* iterates all refs that match the specified glob pattern. */
355 int for_each_glob_ref(each_ref_fn fn, const char *pattern, void *cb_data);
356
357 int for_each_glob_ref_in(each_ref_fn fn, const char *pattern,
358                          const char *prefix, void *cb_data);
359
360 int head_ref_namespaced(each_ref_fn fn, void *cb_data);
361 int for_each_namespaced_ref(each_ref_fn fn, void *cb_data);
362
363 /* can be used to learn about broken ref and symref */
364 int refs_for_each_rawref(struct ref_store *refs, each_ref_fn fn, void *cb_data);
365 int for_each_rawref(each_ref_fn fn, void *cb_data);
366
367 /*
368  * Normalizes partial refs to their fully qualified form.
369  * Will prepend <prefix> to the <pattern> if it doesn't start with 'refs/'.
370  * <prefix> will default to 'refs/' if NULL.
371  *
372  * item.string will be set to the result.
373  * item.util will be set to NULL if <pattern> contains glob characters, or
374  * non-NULL if it doesn't.
375  */
376 void normalize_glob_ref(struct string_list_item *item, const char *prefix,
377                         const char *pattern);
378
379 static inline const char *has_glob_specials(const char *pattern)
380 {
381         return strpbrk(pattern, "?*[");
382 }
383
384 void warn_dangling_symref(FILE *fp, const char *msg_fmt, const char *refname);
385 void warn_dangling_symrefs(FILE *fp, const char *msg_fmt,
386                            const struct string_list *refnames);
387
388 /*
389  * Flags for controlling behaviour of pack_refs()
390  * PACK_REFS_PRUNE: Prune loose refs after packing
391  * PACK_REFS_ALL:   Pack _all_ refs, not just tags and already packed refs
392  */
393 #define PACK_REFS_PRUNE 0x0001
394 #define PACK_REFS_ALL   0x0002
395
396 /*
397  * Write a packed-refs file for the current repository.
398  * flags: Combination of the above PACK_REFS_* flags.
399  */
400 int refs_pack_refs(struct ref_store *refs, unsigned int flags);
401
402 /*
403  * Setup reflog before using. Fill in err and return -1 on failure.
404  */
405 int refs_create_reflog(struct ref_store *refs, const char *refname,
406                        int force_create, struct strbuf *err);
407 int safe_create_reflog(const char *refname, int force_create, struct strbuf *err);
408
409 /** Reads log for the value of ref during at_time. **/
410 int read_ref_at(struct ref_store *refs,
411                 const char *refname, unsigned int flags,
412                 timestamp_t at_time, int cnt,
413                 struct object_id *oid, char **msg,
414                 timestamp_t *cutoff_time, int *cutoff_tz, int *cutoff_cnt);
415
416 /** Check if a particular reflog exists */
417 int refs_reflog_exists(struct ref_store *refs, const char *refname);
418 int reflog_exists(const char *refname);
419
420 /*
421  * Delete the specified reference. If old_oid is non-NULL, then
422  * verify that the current value of the reference is old_oid before
423  * deleting it. If old_oid is NULL, delete the reference if it
424  * exists, regardless of its old value. It is an error for old_oid to
425  * be null_oid. msg and flags are passed through to
426  * ref_transaction_delete().
427  */
428 int refs_delete_ref(struct ref_store *refs, const char *msg,
429                     const char *refname,
430                     const struct object_id *old_oid,
431                     unsigned int flags);
432 int delete_ref(const char *msg, const char *refname,
433                const struct object_id *old_oid, unsigned int flags);
434
435 /*
436  * Delete the specified references. If there are any problems, emit
437  * errors but attempt to keep going (i.e., the deletes are not done in
438  * an all-or-nothing transaction). msg and flags are passed through to
439  * ref_transaction_delete().
440  */
441 int refs_delete_refs(struct ref_store *refs, const char *msg,
442                      struct string_list *refnames, unsigned int flags);
443 int delete_refs(const char *msg, struct string_list *refnames,
444                 unsigned int flags);
445
446 /** Delete a reflog */
447 int refs_delete_reflog(struct ref_store *refs, const char *refname);
448 int delete_reflog(const char *refname);
449
450 /*
451  * Callback to process a reflog entry found by the iteration functions (see
452  * below)
453  */
454 typedef int each_reflog_ent_fn(
455                 struct object_id *old_oid, struct object_id *new_oid,
456                 const char *committer, timestamp_t timestamp,
457                 int tz, const char *msg, void *cb_data);
458
459 /* Iterate over reflog entries in the log for `refname`. */
460
461 /* oldest entry first */
462 int refs_for_each_reflog_ent(struct ref_store *refs, const char *refname,
463                              each_reflog_ent_fn fn, void *cb_data);
464
465 /* youngest entry first */
466 int refs_for_each_reflog_ent_reverse(struct ref_store *refs,
467                                      const char *refname,
468                                      each_reflog_ent_fn fn,
469                                      void *cb_data);
470
471 /*
472  * Iterate over reflog entries in the log for `refname` in the main ref store.
473  */
474
475 /* oldest entry first */
476 int for_each_reflog_ent(const char *refname, each_reflog_ent_fn fn, void *cb_data);
477
478 /* youngest entry first */
479 int for_each_reflog_ent_reverse(const char *refname, each_reflog_ent_fn fn, void *cb_data);
480
481 /*
482  * Calls the specified function for each reflog file until it returns nonzero,
483  * and returns the value. Reflog file order is unspecified.
484  */
485 int refs_for_each_reflog(struct ref_store *refs, each_ref_fn fn, void *cb_data);
486 int for_each_reflog(each_ref_fn fn, void *cb_data);
487
488 #define REFNAME_ALLOW_ONELEVEL 1
489 #define REFNAME_REFSPEC_PATTERN 2
490
491 /*
492  * Return 0 iff refname has the correct format for a refname according
493  * to the rules described in Documentation/git-check-ref-format.txt.
494  * If REFNAME_ALLOW_ONELEVEL is set in flags, then accept one-level
495  * reference names.  If REFNAME_REFSPEC_PATTERN is set in flags, then
496  * allow a single "*" wildcard character in the refspec. No leading or
497  * repeated slashes are accepted.
498  */
499 int check_refname_format(const char *refname, int flags);
500
501 /*
502  * Apply the rules from check_refname_format, but mutate the result until it
503  * is acceptable, and place the result in "out".
504  */
505 void sanitize_refname_component(const char *refname, struct strbuf *out);
506
507 const char *prettify_refname(const char *refname);
508
509 char *refs_shorten_unambiguous_ref(struct ref_store *refs,
510                                    const char *refname, int strict);
511 char *shorten_unambiguous_ref(const char *refname, int strict);
512
513 /** rename ref, return 0 on success **/
514 int refs_rename_ref(struct ref_store *refs, const char *oldref,
515                     const char *newref, const char *logmsg);
516 int rename_ref(const char *oldref, const char *newref,
517                         const char *logmsg);
518
519 /** copy ref, return 0 on success **/
520 int refs_copy_existing_ref(struct ref_store *refs, const char *oldref,
521                     const char *newref, const char *logmsg);
522 int copy_existing_ref(const char *oldref, const char *newref,
523                         const char *logmsg);
524
525 int refs_create_symref(struct ref_store *refs, const char *refname,
526                        const char *target, const char *logmsg);
527 int create_symref(const char *refname, const char *target, const char *logmsg);
528
529 enum action_on_err {
530         UPDATE_REFS_MSG_ON_ERR,
531         UPDATE_REFS_DIE_ON_ERR,
532         UPDATE_REFS_QUIET_ON_ERR
533 };
534
535 /*
536  * Begin a reference transaction.  The reference transaction must
537  * be freed by calling ref_transaction_free().
538  */
539 struct ref_transaction *ref_store_transaction_begin(struct ref_store *refs,
540                                                     struct strbuf *err);
541 struct ref_transaction *ref_transaction_begin(struct strbuf *err);
542
543 /*
544  * Reference transaction updates
545  *
546  * The following four functions add a reference check or update to a
547  * ref_transaction.  They have some common similar parameters:
548  *
549  *     transaction -- a pointer to an open ref_transaction, obtained
550  *         from ref_transaction_begin().
551  *
552  *     refname -- the name of the reference to be affected.
553  *
554  *     new_oid -- the object ID that should be set to be the new value
555  *         of the reference. Some functions allow this parameter to be
556  *         NULL, meaning that the reference is not changed, or
557  *         null_oid, meaning that the reference should be deleted. A
558  *         copy of this value is made in the transaction.
559  *
560  *     old_oid -- the object ID that the reference must have before
561  *         the update. Some functions allow this parameter to be NULL,
562  *         meaning that the old value of the reference is not checked,
563  *         or null_oid, meaning that the reference must not exist
564  *         before the update. A copy of this value is made in the
565  *         transaction.
566  *
567  *     flags -- flags affecting the update, passed to
568  *         update_ref_lock(). Possible flags: REF_NO_DEREF,
569  *         REF_FORCE_CREATE_REFLOG. See those constants for more
570  *         information.
571  *
572  *     msg -- a message describing the change (for the reflog).
573  *
574  *     err -- a strbuf for receiving a description of any error that
575  *         might have occurred.
576  *
577  * The functions make internal copies of refname and msg, so the
578  * caller retains ownership of these parameters.
579  *
580  * The functions return 0 on success and non-zero on failure. A
581  * failure means that the transaction as a whole has failed and needs
582  * to be rolled back.
583  */
584
585 /*
586  * The following flags can be passed to ref_transaction_update() etc.
587  * Internally, they are stored in `ref_update::flags`, along with some
588  * internal flags.
589  */
590
591 /*
592  * Act on the ref directly; i.e., without dereferencing symbolic refs.
593  * If this flag is not specified, then symbolic references are
594  * dereferenced and the update is applied to the referent.
595  */
596 #define REF_NO_DEREF (1 << 0)
597
598 /*
599  * Force the creation of a reflog for this reference, even if it
600  * didn't previously have a reflog.
601  */
602 #define REF_FORCE_CREATE_REFLOG (1 << 1)
603
604 /*
605  * Bitmask of all of the flags that are allowed to be passed in to
606  * ref_transaction_update() and friends:
607  */
608 #define REF_TRANSACTION_UPDATE_ALLOWED_FLAGS \
609         (REF_NO_DEREF | REF_FORCE_CREATE_REFLOG)
610
611 /*
612  * Add a reference update to transaction. `new_oid` is the value that
613  * the reference should have after the update, or `null_oid` if it
614  * should be deleted. If `new_oid` is NULL, then the reference is not
615  * changed at all. `old_oid` is the value that the reference must have
616  * before the update, or `null_oid` if it must not have existed
617  * beforehand. The old value is checked after the lock is taken to
618  * prevent races. If the old value doesn't agree with old_oid, the
619  * whole transaction fails. If old_oid is NULL, then the previous
620  * value is not checked.
621  *
622  * See the above comment "Reference transaction updates" for more
623  * information.
624  */
625 int ref_transaction_update(struct ref_transaction *transaction,
626                            const char *refname,
627                            const struct object_id *new_oid,
628                            const struct object_id *old_oid,
629                            unsigned int flags, const char *msg,
630                            struct strbuf *err);
631
632 /*
633  * Add a reference creation to transaction. new_oid is the value that
634  * the reference should have after the update; it must not be
635  * null_oid. It is verified that the reference does not exist
636  * already.
637  *
638  * See the above comment "Reference transaction updates" for more
639  * information.
640  */
641 int ref_transaction_create(struct ref_transaction *transaction,
642                            const char *refname,
643                            const struct object_id *new_oid,
644                            unsigned int flags, const char *msg,
645                            struct strbuf *err);
646
647 /*
648  * Add a reference deletion to transaction. If old_oid is non-NULL,
649  * then it holds the value that the reference should have had before
650  * the update (which must not be null_oid).
651  *
652  * See the above comment "Reference transaction updates" for more
653  * information.
654  */
655 int ref_transaction_delete(struct ref_transaction *transaction,
656                            const char *refname,
657                            const struct object_id *old_oid,
658                            unsigned int flags, const char *msg,
659                            struct strbuf *err);
660
661 /*
662  * Verify, within a transaction, that refname has the value old_oid,
663  * or, if old_oid is null_oid, then verify that the reference
664  * doesn't exist. old_oid must be non-NULL.
665  *
666  * See the above comment "Reference transaction updates" for more
667  * information.
668  */
669 int ref_transaction_verify(struct ref_transaction *transaction,
670                            const char *refname,
671                            const struct object_id *old_oid,
672                            unsigned int flags,
673                            struct strbuf *err);
674
675 /* Naming conflict (for example, the ref names A and A/B conflict). */
676 #define TRANSACTION_NAME_CONFLICT -1
677 /* All other errors. */
678 #define TRANSACTION_GENERIC_ERROR -2
679
680 /*
681  * Perform the preparatory stages of committing `transaction`. Acquire
682  * any needed locks, check preconditions, etc.; basically, do as much
683  * as possible to ensure that the transaction will be able to go
684  * through, stopping just short of making any irrevocable or
685  * user-visible changes. The updates that this function prepares can
686  * be finished up by calling `ref_transaction_commit()` or rolled back
687  * by calling `ref_transaction_abort()`.
688  *
689  * On success, return 0 and leave the transaction in "prepared" state.
690  * On failure, abort the transaction, write an error message to `err`,
691  * and return one of the `TRANSACTION_*` constants.
692  *
693  * Callers who don't need such fine-grained control over committing
694  * reference transactions should just call `ref_transaction_commit()`.
695  */
696 int ref_transaction_prepare(struct ref_transaction *transaction,
697                             struct strbuf *err);
698
699 /*
700  * Commit all of the changes that have been queued in transaction, as
701  * atomically as possible. On success, return 0 and leave the
702  * transaction in "closed" state. On failure, roll back the
703  * transaction, write an error message to `err`, and return one of the
704  * `TRANSACTION_*` constants
705  */
706 int ref_transaction_commit(struct ref_transaction *transaction,
707                            struct strbuf *err);
708
709 /*
710  * Abort `transaction`, which has been begun and possibly prepared,
711  * but not yet committed.
712  */
713 int ref_transaction_abort(struct ref_transaction *transaction,
714                           struct strbuf *err);
715
716 /*
717  * Like ref_transaction_commit(), but optimized for creating
718  * references when originally initializing a repository (e.g., by "git
719  * clone"). It writes the new references directly to packed-refs
720  * without locking the individual references.
721  *
722  * It is a bug to call this function when there might be other
723  * processes accessing the repository or if there are existing
724  * references that might conflict with the ones being created. All
725  * old_oid values must either be absent or null_oid.
726  */
727 int initial_ref_transaction_commit(struct ref_transaction *transaction,
728                                    struct strbuf *err);
729
730 /*
731  * Free `*transaction` and all associated data.
732  */
733 void ref_transaction_free(struct ref_transaction *transaction);
734
735 /**
736  * Lock, update, and unlock a single reference. This function
737  * basically does a transaction containing a single call to
738  * ref_transaction_update(). The parameters to this function have the
739  * same meaning as the corresponding parameters to
740  * ref_transaction_update(). Handle errors as requested by the `onerr`
741  * argument.
742  */
743 int refs_update_ref(struct ref_store *refs, const char *msg, const char *refname,
744                     const struct object_id *new_oid, const struct object_id *old_oid,
745                     unsigned int flags, enum action_on_err onerr);
746 int update_ref(const char *msg, const char *refname,
747                const struct object_id *new_oid, const struct object_id *old_oid,
748                unsigned int flags, enum action_on_err onerr);
749
750 int parse_hide_refs_config(const char *var, const char *value, const char *);
751
752 /*
753  * Check whether a ref is hidden. If no namespace is set, both the first and
754  * the second parameter point to the full ref name. If a namespace is set and
755  * the ref is inside that namespace, the first parameter is a pointer to the
756  * name of the ref with the namespace prefix removed. If a namespace is set and
757  * the ref is outside that namespace, the first parameter is NULL. The second
758  * parameter always points to the full ref name.
759  */
760 int ref_is_hidden(const char *, const char *);
761
762 enum ref_type {
763         REF_TYPE_PER_WORKTREE,    /* refs inside refs/ but not shared       */
764         REF_TYPE_PSEUDOREF,       /* refs outside refs/ in current worktree */
765         REF_TYPE_MAIN_PSEUDOREF,  /* pseudo refs from the main worktree     */
766         REF_TYPE_OTHER_PSEUDOREF, /* pseudo refs from other worktrees       */
767         REF_TYPE_NORMAL,          /* normal/shared refs inside refs/        */
768 };
769
770 enum ref_type ref_type(const char *refname);
771
772 enum expire_reflog_flags {
773         EXPIRE_REFLOGS_DRY_RUN = 1 << 0,
774         EXPIRE_REFLOGS_UPDATE_REF = 1 << 1,
775         EXPIRE_REFLOGS_VERBOSE = 1 << 2,
776         EXPIRE_REFLOGS_REWRITE = 1 << 3
777 };
778
779 /*
780  * The following interface is used for reflog expiration. The caller
781  * calls reflog_expire(), supplying it with three callback functions,
782  * of the following types. The callback functions define the
783  * expiration policy that is desired.
784  *
785  * reflog_expiry_prepare_fn -- Called once after the reference is
786  *     locked.
787  *
788  * reflog_expiry_should_prune_fn -- Called once for each entry in the
789  *     existing reflog. It should return true iff that entry should be
790  *     pruned.
791  *
792  * reflog_expiry_cleanup_fn -- Called once before the reference is
793  *     unlocked again.
794  */
795 typedef void reflog_expiry_prepare_fn(const char *refname,
796                                       const struct object_id *oid,
797                                       void *cb_data);
798 typedef int reflog_expiry_should_prune_fn(struct object_id *ooid,
799                                           struct object_id *noid,
800                                           const char *email,
801                                           timestamp_t timestamp, int tz,
802                                           const char *message, void *cb_data);
803 typedef void reflog_expiry_cleanup_fn(void *cb_data);
804
805 /*
806  * Expire reflog entries for the specified reference. oid is the old
807  * value of the reference. flags is a combination of the constants in
808  * enum expire_reflog_flags. The three function pointers are described
809  * above. On success, return zero.
810  */
811 int refs_reflog_expire(struct ref_store *refs,
812                        const char *refname,
813                        const struct object_id *oid,
814                        unsigned int flags,
815                        reflog_expiry_prepare_fn prepare_fn,
816                        reflog_expiry_should_prune_fn should_prune_fn,
817                        reflog_expiry_cleanup_fn cleanup_fn,
818                        void *policy_cb_data);
819 int reflog_expire(const char *refname, const struct object_id *oid,
820                   unsigned int flags,
821                   reflog_expiry_prepare_fn prepare_fn,
822                   reflog_expiry_should_prune_fn should_prune_fn,
823                   reflog_expiry_cleanup_fn cleanup_fn,
824                   void *policy_cb_data);
825
826 int ref_storage_backend_exists(const char *name);
827
828 struct ref_store *get_main_ref_store(struct repository *r);
829
830 /**
831  * Submodules
832  * ----------
833  *
834  * If you want to iterate the refs of a submodule you first need to add the
835  * submodules object database. You can do this by a code-snippet like
836  * this:
837  *
838  *      const char *path = "path/to/submodule"
839  *      if (add_submodule_odb(path))
840  *              die("Error submodule '%s' not populated.", path);
841  *
842  * `add_submodule_odb()` will return zero on success. If you
843  * do not do this you will get an error for each ref that it does not point
844  * to a valid object.
845  *
846  * Note: As a side-effect of this you cannot safely assume that all
847  * objects you lookup are available in superproject. All submodule objects
848  * will be available the same way as the superprojects objects.
849  *
850  * Example:
851  * --------
852  *
853  * ----
854  * static int handle_remote_ref(const char *refname,
855  *              const unsigned char *sha1, int flags, void *cb_data)
856  * {
857  *      struct strbuf *output = cb_data;
858  *      strbuf_addf(output, "%s\n", refname);
859  *      return 0;
860  * }
861  *
862  */
863
864 /*
865  * Return the ref_store instance for the specified submodule. For the
866  * main repository, use submodule==NULL; such a call cannot fail. For
867  * a submodule, the submodule must exist and be a nonbare repository,
868  * otherwise return NULL. If the requested reference store has not yet
869  * been initialized, initialize it first.
870  *
871  * For backwards compatibility, submodule=="" is treated the same as
872  * submodule==NULL.
873  */
874 struct ref_store *get_submodule_ref_store(const char *submodule);
875 struct ref_store *get_worktree_ref_store(const struct worktree *wt);
876
877 #endif /* REFS_H */