2 * The backend-independent part of the reference module.
10 #include "refs/refs-internal.h"
13 #include "submodule.h"
16 * List of all available backends
18 static struct ref_storage_be
*refs_backends
= &refs_be_files
;
20 static struct ref_storage_be
*find_ref_storage_backend(const char *name
)
22 struct ref_storage_be
*be
;
23 for (be
= refs_backends
; be
; be
= be
->next
)
24 if (!strcmp(be
->name
, name
))
29 int ref_storage_backend_exists(const char *name
)
31 return find_ref_storage_backend(name
) != NULL
;
35 * How to handle various characters in refnames:
36 * 0: An acceptable character for refs
38 * 2: ., look for a preceding . to reject .. in refs
39 * 3: {, look for a preceding @ to reject @{ in refs
40 * 4: A bad character: ASCII control characters, and
41 * ":", "?", "[", "\", "^", "~", SP, or TAB
42 * 5: *, reject unless REFNAME_REFSPEC_PATTERN is set
44 static unsigned char refname_disposition
[256] = {
45 1, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
46 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4,
47 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 2, 1,
48 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 4,
49 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
50 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 4, 0,
51 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
52 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 4, 4
56 * Try to read one refname component from the front of refname.
57 * Return the length of the component found, or -1 if the component is
58 * not legal. It is legal if it is something reasonable to have under
59 * ".git/refs/"; We do not like it if:
61 * - any path component of it begins with ".", or
62 * - it has double dots "..", or
63 * - it has ASCII control characters, or
64 * - it has ":", "?", "[", "\", "^", "~", SP, or TAB anywhere, or
65 * - it has "*" anywhere unless REFNAME_REFSPEC_PATTERN is set, or
66 * - it ends with a "/", or
67 * - it ends with ".lock", or
68 * - it contains a "@{" portion
70 static int check_refname_component(const char *refname
, int *flags
)
75 for (cp
= refname
; ; cp
++) {
77 unsigned char disp
= refname_disposition
[ch
];
83 return -1; /* Refname contains "..". */
87 return -1; /* Refname contains "@{". */
92 if (!(*flags
& REFNAME_REFSPEC_PATTERN
))
93 return -1; /* refspec can't be a pattern */
96 * Unset the pattern flag so that we only accept
97 * a single asterisk for one side of refspec.
99 *flags
&= ~ REFNAME_REFSPEC_PATTERN
;
106 return 0; /* Component has zero length. */
107 if (refname
[0] == '.')
108 return -1; /* Component starts with '.'. */
109 if (cp
- refname
>= LOCK_SUFFIX_LEN
&&
110 !memcmp(cp
- LOCK_SUFFIX_LEN
, LOCK_SUFFIX
, LOCK_SUFFIX_LEN
))
111 return -1; /* Refname ends with ".lock". */
115 int check_refname_format(const char *refname
, int flags
)
117 int component_len
, component_count
= 0;
119 if (!strcmp(refname
, "@"))
120 /* Refname is a single character '@'. */
124 /* We are at the start of a path component. */
125 component_len
= check_refname_component(refname
, &flags
);
126 if (component_len
<= 0)
130 if (refname
[component_len
] == '\0')
132 /* Skip to next component. */
133 refname
+= component_len
+ 1;
136 if (refname
[component_len
- 1] == '.')
137 return -1; /* Refname ends with '.'. */
138 if (!(flags
& REFNAME_ALLOW_ONELEVEL
) && component_count
< 2)
139 return -1; /* Refname has only one component. */
143 int refname_is_safe(const char *refname
)
147 if (skip_prefix(refname
, "refs/", &rest
)) {
150 size_t restlen
= strlen(rest
);
152 /* rest must not be empty, or start or end with "/" */
153 if (!restlen
|| *rest
== '/' || rest
[restlen
- 1] == '/')
157 * Does the refname try to escape refs/?
158 * For example: refs/foo/../bar is safe but refs/foo/../../bar
161 buf
= xmallocz(restlen
);
162 result
= !normalize_path_copy(buf
, rest
) && !strcmp(buf
, rest
);
168 if (!isupper(*refname
) && *refname
!= '_')
175 char *refs_resolve_refdup(struct ref_store
*refs
,
176 const char *refname
, int resolve_flags
,
177 unsigned char *sha1
, int *flags
)
181 result
= refs_resolve_ref_unsafe(refs
, refname
, resolve_flags
,
183 return xstrdup_or_null(result
);
186 char *resolve_refdup(const char *refname
, int resolve_flags
,
187 unsigned char *sha1
, int *flags
)
189 return refs_resolve_refdup(get_main_ref_store(),
190 refname
, resolve_flags
,
194 /* The argument to filter_refs */
201 int refs_read_ref_full(struct ref_store
*refs
, const char *refname
,
202 int resolve_flags
, unsigned char *sha1
, int *flags
)
204 if (refs_resolve_ref_unsafe(refs
, refname
, resolve_flags
, sha1
, flags
))
209 int read_ref_full(const char *refname
, int resolve_flags
, unsigned char *sha1
, int *flags
)
211 return refs_read_ref_full(get_main_ref_store(), refname
,
212 resolve_flags
, sha1
, flags
);
215 int read_ref(const char *refname
, unsigned char *sha1
)
217 return read_ref_full(refname
, RESOLVE_REF_READING
, sha1
, NULL
);
220 int ref_exists(const char *refname
)
222 unsigned char sha1
[20];
223 return !!resolve_ref_unsafe(refname
, RESOLVE_REF_READING
, sha1
, NULL
);
226 static int filter_refs(const char *refname
, const struct object_id
*oid
,
227 int flags
, void *data
)
229 struct ref_filter
*filter
= (struct ref_filter
*)data
;
231 if (wildmatch(filter
->pattern
, refname
, 0, NULL
))
233 return filter
->fn(refname
, oid
, flags
, filter
->cb_data
);
236 enum peel_status
peel_object(const unsigned char *name
, unsigned char *sha1
)
238 struct object
*o
= lookup_unknown_object(name
);
240 if (o
->type
== OBJ_NONE
) {
241 int type
= sha1_object_info(name
, NULL
);
242 if (type
< 0 || !object_as_type(o
, type
, 0))
246 if (o
->type
!= OBJ_TAG
)
249 o
= deref_tag_noverify(o
);
253 hashcpy(sha1
, o
->oid
.hash
);
257 struct warn_if_dangling_data
{
260 const struct string_list
*refnames
;
264 static int warn_if_dangling_symref(const char *refname
, const struct object_id
*oid
,
265 int flags
, void *cb_data
)
267 struct warn_if_dangling_data
*d
= cb_data
;
268 const char *resolves_to
;
269 struct object_id junk
;
271 if (!(flags
& REF_ISSYMREF
))
274 resolves_to
= resolve_ref_unsafe(refname
, 0, junk
.hash
, NULL
);
277 ? strcmp(resolves_to
, d
->refname
)
278 : !string_list_has_string(d
->refnames
, resolves_to
))) {
282 fprintf(d
->fp
, d
->msg_fmt
, refname
);
287 void warn_dangling_symref(FILE *fp
, const char *msg_fmt
, const char *refname
)
289 struct warn_if_dangling_data data
;
292 data
.refname
= refname
;
293 data
.refnames
= NULL
;
294 data
.msg_fmt
= msg_fmt
;
295 for_each_rawref(warn_if_dangling_symref
, &data
);
298 void warn_dangling_symrefs(FILE *fp
, const char *msg_fmt
, const struct string_list
*refnames
)
300 struct warn_if_dangling_data data
;
304 data
.refnames
= refnames
;
305 data
.msg_fmt
= msg_fmt
;
306 for_each_rawref(warn_if_dangling_symref
, &data
);
309 int refs_for_each_tag_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
311 return refs_for_each_ref_in(refs
, "refs/tags/", fn
, cb_data
);
314 int for_each_tag_ref(each_ref_fn fn
, void *cb_data
)
316 return refs_for_each_tag_ref(get_main_ref_store(), fn
, cb_data
);
319 int for_each_tag_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
321 return refs_for_each_tag_ref(get_submodule_ref_store(submodule
),
325 int refs_for_each_branch_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
327 return refs_for_each_ref_in(refs
, "refs/heads/", fn
, cb_data
);
330 int for_each_branch_ref(each_ref_fn fn
, void *cb_data
)
332 return refs_for_each_branch_ref(get_main_ref_store(), fn
, cb_data
);
335 int for_each_branch_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
337 return refs_for_each_branch_ref(get_submodule_ref_store(submodule
),
341 int refs_for_each_remote_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
343 return refs_for_each_ref_in(refs
, "refs/remotes/", fn
, cb_data
);
346 int for_each_remote_ref(each_ref_fn fn
, void *cb_data
)
348 return refs_for_each_remote_ref(get_main_ref_store(), fn
, cb_data
);
351 int for_each_remote_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
353 return refs_for_each_remote_ref(get_submodule_ref_store(submodule
),
357 int head_ref_namespaced(each_ref_fn fn
, void *cb_data
)
359 struct strbuf buf
= STRBUF_INIT
;
361 struct object_id oid
;
364 strbuf_addf(&buf
, "%sHEAD", get_git_namespace());
365 if (!read_ref_full(buf
.buf
, RESOLVE_REF_READING
, oid
.hash
, &flag
))
366 ret
= fn(buf
.buf
, &oid
, flag
, cb_data
);
367 strbuf_release(&buf
);
372 int for_each_glob_ref_in(each_ref_fn fn
, const char *pattern
,
373 const char *prefix
, void *cb_data
)
375 struct strbuf real_pattern
= STRBUF_INIT
;
376 struct ref_filter filter
;
379 if (!prefix
&& !starts_with(pattern
, "refs/"))
380 strbuf_addstr(&real_pattern
, "refs/");
382 strbuf_addstr(&real_pattern
, prefix
);
383 strbuf_addstr(&real_pattern
, pattern
);
385 if (!has_glob_specials(pattern
)) {
386 /* Append implied '/' '*' if not present. */
387 strbuf_complete(&real_pattern
, '/');
388 /* No need to check for '*', there is none. */
389 strbuf_addch(&real_pattern
, '*');
392 filter
.pattern
= real_pattern
.buf
;
394 filter
.cb_data
= cb_data
;
395 ret
= for_each_ref(filter_refs
, &filter
);
397 strbuf_release(&real_pattern
);
401 int for_each_glob_ref(each_ref_fn fn
, const char *pattern
, void *cb_data
)
403 return for_each_glob_ref_in(fn
, pattern
, NULL
, cb_data
);
406 const char *prettify_refname(const char *name
)
409 starts_with(name
, "refs/heads/") ? 11 :
410 starts_with(name
, "refs/tags/") ? 10 :
411 starts_with(name
, "refs/remotes/") ? 13 :
415 static const char *ref_rev_parse_rules
[] = {
421 "refs/remotes/%.*s/HEAD",
425 int refname_match(const char *abbrev_name
, const char *full_name
)
428 const int abbrev_name_len
= strlen(abbrev_name
);
430 for (p
= ref_rev_parse_rules
; *p
; p
++) {
431 if (!strcmp(full_name
, mkpath(*p
, abbrev_name_len
, abbrev_name
))) {
440 * *string and *len will only be substituted, and *string returned (for
441 * later free()ing) if the string passed in is a magic short-hand form
444 static char *substitute_branch_name(const char **string
, int *len
)
446 struct strbuf buf
= STRBUF_INIT
;
447 int ret
= interpret_branch_name(*string
, *len
, &buf
, 0);
451 *string
= strbuf_detach(&buf
, &size
);
453 return (char *)*string
;
459 int dwim_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
461 char *last_branch
= substitute_branch_name(&str
, &len
);
462 int refs_found
= expand_ref(str
, len
, sha1
, ref
);
467 int expand_ref(const char *str
, int len
, unsigned char *sha1
, char **ref
)
473 for (p
= ref_rev_parse_rules
; *p
; p
++) {
474 char fullref
[PATH_MAX
];
475 unsigned char sha1_from_ref
[20];
476 unsigned char *this_result
;
479 this_result
= refs_found
? sha1_from_ref
: sha1
;
480 mksnpath(fullref
, sizeof(fullref
), *p
, len
, str
);
481 r
= resolve_ref_unsafe(fullref
, RESOLVE_REF_READING
,
486 if (!warn_ambiguous_refs
)
488 } else if ((flag
& REF_ISSYMREF
) && strcmp(fullref
, "HEAD")) {
489 warning("ignoring dangling symref %s.", fullref
);
490 } else if ((flag
& REF_ISBROKEN
) && strchr(fullref
, '/')) {
491 warning("ignoring broken ref %s.", fullref
);
497 int dwim_log(const char *str
, int len
, unsigned char *sha1
, char **log
)
499 char *last_branch
= substitute_branch_name(&str
, &len
);
504 for (p
= ref_rev_parse_rules
; *p
; p
++) {
505 unsigned char hash
[20];
507 const char *ref
, *it
;
509 mksnpath(path
, sizeof(path
), *p
, len
, str
);
510 ref
= resolve_ref_unsafe(path
, RESOLVE_REF_READING
,
514 if (reflog_exists(path
))
516 else if (strcmp(ref
, path
) && reflog_exists(ref
))
524 if (!warn_ambiguous_refs
)
531 static int is_per_worktree_ref(const char *refname
)
533 return !strcmp(refname
, "HEAD") ||
534 starts_with(refname
, "refs/bisect/");
537 static int is_pseudoref_syntax(const char *refname
)
541 for (c
= refname
; *c
; c
++) {
542 if (!isupper(*c
) && *c
!= '-' && *c
!= '_')
549 enum ref_type
ref_type(const char *refname
)
551 if (is_per_worktree_ref(refname
))
552 return REF_TYPE_PER_WORKTREE
;
553 if (is_pseudoref_syntax(refname
))
554 return REF_TYPE_PSEUDOREF
;
555 return REF_TYPE_NORMAL
;
558 static int write_pseudoref(const char *pseudoref
, const unsigned char *sha1
,
559 const unsigned char *old_sha1
, struct strbuf
*err
)
561 const char *filename
;
563 static struct lock_file lock
;
564 struct strbuf buf
= STRBUF_INIT
;
567 strbuf_addf(&buf
, "%s\n", sha1_to_hex(sha1
));
569 filename
= git_path("%s", pseudoref
);
570 fd
= hold_lock_file_for_update(&lock
, filename
, LOCK_DIE_ON_ERROR
);
572 strbuf_addf(err
, "could not open '%s' for writing: %s",
573 filename
, strerror(errno
));
578 unsigned char actual_old_sha1
[20];
580 if (read_ref(pseudoref
, actual_old_sha1
))
581 die("could not read ref '%s'", pseudoref
);
582 if (hashcmp(actual_old_sha1
, old_sha1
)) {
583 strbuf_addf(err
, "unexpected sha1 when writing '%s'", pseudoref
);
584 rollback_lock_file(&lock
);
589 if (write_in_full(fd
, buf
.buf
, buf
.len
) != buf
.len
) {
590 strbuf_addf(err
, "could not write to '%s'", filename
);
591 rollback_lock_file(&lock
);
595 commit_lock_file(&lock
);
598 strbuf_release(&buf
);
602 static int delete_pseudoref(const char *pseudoref
, const unsigned char *old_sha1
)
604 static struct lock_file lock
;
605 const char *filename
;
607 filename
= git_path("%s", pseudoref
);
609 if (old_sha1
&& !is_null_sha1(old_sha1
)) {
611 unsigned char actual_old_sha1
[20];
613 fd
= hold_lock_file_for_update(&lock
, filename
,
616 die_errno(_("Could not open '%s' for writing"), filename
);
617 if (read_ref(pseudoref
, actual_old_sha1
))
618 die("could not read ref '%s'", pseudoref
);
619 if (hashcmp(actual_old_sha1
, old_sha1
)) {
620 warning("Unexpected sha1 when deleting %s", pseudoref
);
621 rollback_lock_file(&lock
);
626 rollback_lock_file(&lock
);
634 int refs_delete_ref(struct ref_store
*refs
, const char *msg
,
636 const unsigned char *old_sha1
,
639 struct ref_transaction
*transaction
;
640 struct strbuf err
= STRBUF_INIT
;
642 if (ref_type(refname
) == REF_TYPE_PSEUDOREF
) {
643 assert(refs
== get_main_ref_store());
644 return delete_pseudoref(refname
, old_sha1
);
647 transaction
= ref_store_transaction_begin(refs
, &err
);
649 ref_transaction_delete(transaction
, refname
, old_sha1
,
651 ref_transaction_commit(transaction
, &err
)) {
652 error("%s", err
.buf
);
653 ref_transaction_free(transaction
);
654 strbuf_release(&err
);
657 ref_transaction_free(transaction
);
658 strbuf_release(&err
);
662 int delete_ref(const char *msg
, const char *refname
,
663 const unsigned char *old_sha1
, unsigned int flags
)
665 return refs_delete_ref(get_main_ref_store(), msg
, refname
,
669 int copy_reflog_msg(char *buf
, const char *msg
)
676 while ((c
= *msg
++)) {
677 if (wasspace
&& isspace(c
))
679 wasspace
= isspace(c
);
684 while (buf
< cp
&& isspace(cp
[-1]))
690 int should_autocreate_reflog(const char *refname
)
692 switch (log_all_ref_updates
) {
693 case LOG_REFS_ALWAYS
:
695 case LOG_REFS_NORMAL
:
696 return starts_with(refname
, "refs/heads/") ||
697 starts_with(refname
, "refs/remotes/") ||
698 starts_with(refname
, "refs/notes/") ||
699 !strcmp(refname
, "HEAD");
705 int is_branch(const char *refname
)
707 return !strcmp(refname
, "HEAD") || starts_with(refname
, "refs/heads/");
710 struct read_ref_at_cb
{
712 unsigned long at_time
;
718 unsigned char osha1
[20];
719 unsigned char nsha1
[20];
723 unsigned long *cutoff_time
;
728 static int read_ref_at_ent(struct object_id
*ooid
, struct object_id
*noid
,
729 const char *email
, unsigned long timestamp
, int tz
,
730 const char *message
, void *cb_data
)
732 struct read_ref_at_cb
*cb
= cb_data
;
736 cb
->date
= timestamp
;
738 if (timestamp
<= cb
->at_time
|| cb
->cnt
== 0) {
740 *cb
->msg
= xstrdup(message
);
742 *cb
->cutoff_time
= timestamp
;
746 *cb
->cutoff_cnt
= cb
->reccnt
- 1;
748 * we have not yet updated cb->[n|o]sha1 so they still
749 * hold the values for the previous record.
751 if (!is_null_sha1(cb
->osha1
)) {
752 hashcpy(cb
->sha1
, noid
->hash
);
753 if (hashcmp(cb
->osha1
, noid
->hash
))
754 warning("Log for ref %s has gap after %s.",
755 cb
->refname
, show_date(cb
->date
, cb
->tz
, DATE_MODE(RFC2822
)));
757 else if (cb
->date
== cb
->at_time
)
758 hashcpy(cb
->sha1
, noid
->hash
);
759 else if (hashcmp(noid
->hash
, cb
->sha1
))
760 warning("Log for ref %s unexpectedly ended on %s.",
761 cb
->refname
, show_date(cb
->date
, cb
->tz
,
762 DATE_MODE(RFC2822
)));
763 hashcpy(cb
->osha1
, ooid
->hash
);
764 hashcpy(cb
->nsha1
, noid
->hash
);
768 hashcpy(cb
->osha1
, ooid
->hash
);
769 hashcpy(cb
->nsha1
, noid
->hash
);
775 static int read_ref_at_ent_oldest(struct object_id
*ooid
, struct object_id
*noid
,
776 const char *email
, unsigned long timestamp
,
777 int tz
, const char *message
, void *cb_data
)
779 struct read_ref_at_cb
*cb
= cb_data
;
782 *cb
->msg
= xstrdup(message
);
784 *cb
->cutoff_time
= timestamp
;
788 *cb
->cutoff_cnt
= cb
->reccnt
;
789 hashcpy(cb
->sha1
, ooid
->hash
);
790 if (is_null_sha1(cb
->sha1
))
791 hashcpy(cb
->sha1
, noid
->hash
);
792 /* We just want the first entry */
796 int read_ref_at(const char *refname
, unsigned int flags
, unsigned long at_time
, int cnt
,
797 unsigned char *sha1
, char **msg
,
798 unsigned long *cutoff_time
, int *cutoff_tz
, int *cutoff_cnt
)
800 struct read_ref_at_cb cb
;
802 memset(&cb
, 0, sizeof(cb
));
803 cb
.refname
= refname
;
804 cb
.at_time
= at_time
;
807 cb
.cutoff_time
= cutoff_time
;
808 cb
.cutoff_tz
= cutoff_tz
;
809 cb
.cutoff_cnt
= cutoff_cnt
;
812 for_each_reflog_ent_reverse(refname
, read_ref_at_ent
, &cb
);
815 if (flags
& GET_SHA1_QUIETLY
)
818 die("Log for %s is empty.", refname
);
823 for_each_reflog_ent(refname
, read_ref_at_ent_oldest
, &cb
);
828 struct ref_transaction
*ref_store_transaction_begin(struct ref_store
*refs
,
831 struct ref_transaction
*tr
;
834 tr
= xcalloc(1, sizeof(struct ref_transaction
));
835 tr
->ref_store
= refs
;
839 struct ref_transaction
*ref_transaction_begin(struct strbuf
*err
)
841 return ref_store_transaction_begin(get_main_ref_store(), err
);
844 void ref_transaction_free(struct ref_transaction
*transaction
)
851 for (i
= 0; i
< transaction
->nr
; i
++) {
852 free(transaction
->updates
[i
]->msg
);
853 free(transaction
->updates
[i
]);
855 free(transaction
->updates
);
859 struct ref_update
*ref_transaction_add_update(
860 struct ref_transaction
*transaction
,
861 const char *refname
, unsigned int flags
,
862 const unsigned char *new_sha1
,
863 const unsigned char *old_sha1
,
866 struct ref_update
*update
;
868 if (transaction
->state
!= REF_TRANSACTION_OPEN
)
869 die("BUG: update called for transaction that is not open");
871 if ((flags
& REF_ISPRUNING
) && !(flags
& REF_NODEREF
))
872 die("BUG: REF_ISPRUNING set without REF_NODEREF");
874 FLEX_ALLOC_STR(update
, refname
, refname
);
875 ALLOC_GROW(transaction
->updates
, transaction
->nr
+ 1, transaction
->alloc
);
876 transaction
->updates
[transaction
->nr
++] = update
;
878 update
->flags
= flags
;
880 if (flags
& REF_HAVE_NEW
)
881 hashcpy(update
->new_sha1
, new_sha1
);
882 if (flags
& REF_HAVE_OLD
)
883 hashcpy(update
->old_sha1
, old_sha1
);
884 update
->msg
= xstrdup_or_null(msg
);
888 int ref_transaction_update(struct ref_transaction
*transaction
,
890 const unsigned char *new_sha1
,
891 const unsigned char *old_sha1
,
892 unsigned int flags
, const char *msg
,
897 if ((new_sha1
&& !is_null_sha1(new_sha1
)) ?
898 check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
) :
899 !refname_is_safe(refname
)) {
900 strbuf_addf(err
, "refusing to update ref with bad name '%s'",
905 flags
|= (new_sha1
? REF_HAVE_NEW
: 0) | (old_sha1
? REF_HAVE_OLD
: 0);
907 ref_transaction_add_update(transaction
, refname
, flags
,
908 new_sha1
, old_sha1
, msg
);
912 int ref_transaction_create(struct ref_transaction
*transaction
,
914 const unsigned char *new_sha1
,
915 unsigned int flags
, const char *msg
,
918 if (!new_sha1
|| is_null_sha1(new_sha1
))
919 die("BUG: create called without valid new_sha1");
920 return ref_transaction_update(transaction
, refname
, new_sha1
,
921 null_sha1
, flags
, msg
, err
);
924 int ref_transaction_delete(struct ref_transaction
*transaction
,
926 const unsigned char *old_sha1
,
927 unsigned int flags
, const char *msg
,
930 if (old_sha1
&& is_null_sha1(old_sha1
))
931 die("BUG: delete called with old_sha1 set to zeros");
932 return ref_transaction_update(transaction
, refname
,
937 int ref_transaction_verify(struct ref_transaction
*transaction
,
939 const unsigned char *old_sha1
,
944 die("BUG: verify called with old_sha1 set to NULL");
945 return ref_transaction_update(transaction
, refname
,
950 int update_ref_oid(const char *msg
, const char *refname
,
951 const struct object_id
*new_oid
, const struct object_id
*old_oid
,
952 unsigned int flags
, enum action_on_err onerr
)
954 return update_ref(msg
, refname
, new_oid
? new_oid
->hash
: NULL
,
955 old_oid
? old_oid
->hash
: NULL
, flags
, onerr
);
958 int refs_update_ref(struct ref_store
*refs
, const char *msg
,
959 const char *refname
, const unsigned char *new_sha1
,
960 const unsigned char *old_sha1
, unsigned int flags
,
961 enum action_on_err onerr
)
963 struct ref_transaction
*t
= NULL
;
964 struct strbuf err
= STRBUF_INIT
;
967 if (ref_type(refname
) == REF_TYPE_PSEUDOREF
) {
968 assert(refs
== get_main_ref_store());
969 ret
= write_pseudoref(refname
, new_sha1
, old_sha1
, &err
);
971 t
= ref_store_transaction_begin(refs
, &err
);
973 ref_transaction_update(t
, refname
, new_sha1
, old_sha1
,
975 ref_transaction_commit(t
, &err
)) {
977 ref_transaction_free(t
);
981 const char *str
= "update_ref failed for ref '%s': %s";
984 case UPDATE_REFS_MSG_ON_ERR
:
985 error(str
, refname
, err
.buf
);
987 case UPDATE_REFS_DIE_ON_ERR
:
988 die(str
, refname
, err
.buf
);
990 case UPDATE_REFS_QUIET_ON_ERR
:
993 strbuf_release(&err
);
996 strbuf_release(&err
);
998 ref_transaction_free(t
);
1002 int update_ref(const char *msg
, const char *refname
,
1003 const unsigned char *new_sha1
,
1004 const unsigned char *old_sha1
,
1005 unsigned int flags
, enum action_on_err onerr
)
1007 return refs_update_ref(get_main_ref_store(), msg
, refname
, new_sha1
,
1008 old_sha1
, flags
, onerr
);
1011 char *shorten_unambiguous_ref(const char *refname
, int strict
)
1014 static char **scanf_fmts
;
1015 static int nr_rules
;
1020 * Pre-generate scanf formats from ref_rev_parse_rules[].
1021 * Generate a format suitable for scanf from a
1022 * ref_rev_parse_rules rule by interpolating "%s" at the
1023 * location of the "%.*s".
1025 size_t total_len
= 0;
1028 /* the rule list is NULL terminated, count them first */
1029 for (nr_rules
= 0; ref_rev_parse_rules
[nr_rules
]; nr_rules
++)
1030 /* -2 for strlen("%.*s") - strlen("%s"); +1 for NUL */
1031 total_len
+= strlen(ref_rev_parse_rules
[nr_rules
]) - 2 + 1;
1033 scanf_fmts
= xmalloc(st_add(st_mult(sizeof(char *), nr_rules
), total_len
));
1036 for (i
= 0; i
< nr_rules
; i
++) {
1037 assert(offset
< total_len
);
1038 scanf_fmts
[i
] = (char *)&scanf_fmts
[nr_rules
] + offset
;
1039 offset
+= snprintf(scanf_fmts
[i
], total_len
- offset
,
1040 ref_rev_parse_rules
[i
], 2, "%s") + 1;
1044 /* bail out if there are no rules */
1046 return xstrdup(refname
);
1048 /* buffer for scanf result, at most refname must fit */
1049 short_name
= xstrdup(refname
);
1051 /* skip first rule, it will always match */
1052 for (i
= nr_rules
- 1; i
> 0 ; --i
) {
1054 int rules_to_fail
= i
;
1057 if (1 != sscanf(refname
, scanf_fmts
[i
], short_name
))
1060 short_name_len
= strlen(short_name
);
1063 * in strict mode, all (except the matched one) rules
1064 * must fail to resolve to a valid non-ambiguous ref
1067 rules_to_fail
= nr_rules
;
1070 * check if the short name resolves to a valid ref,
1071 * but use only rules prior to the matched one
1073 for (j
= 0; j
< rules_to_fail
; j
++) {
1074 const char *rule
= ref_rev_parse_rules
[j
];
1075 char refname
[PATH_MAX
];
1077 /* skip matched rule */
1082 * the short name is ambiguous, if it resolves
1083 * (with this previous rule) to a valid ref
1084 * read_ref() returns 0 on success
1086 mksnpath(refname
, sizeof(refname
),
1087 rule
, short_name_len
, short_name
);
1088 if (ref_exists(refname
))
1093 * short name is non-ambiguous if all previous rules
1094 * haven't resolved to a valid ref
1096 if (j
== rules_to_fail
)
1101 return xstrdup(refname
);
1104 static struct string_list
*hide_refs
;
1106 int parse_hide_refs_config(const char *var
, const char *value
, const char *section
)
1109 if (!strcmp("transfer.hiderefs", var
) ||
1110 (!parse_config_key(var
, section
, NULL
, NULL
, &key
) &&
1111 !strcmp(key
, "hiderefs"))) {
1116 return config_error_nonbool(var
);
1117 ref
= xstrdup(value
);
1119 while (len
&& ref
[len
- 1] == '/')
1122 hide_refs
= xcalloc(1, sizeof(*hide_refs
));
1123 hide_refs
->strdup_strings
= 1;
1125 string_list_append(hide_refs
, ref
);
1130 int ref_is_hidden(const char *refname
, const char *refname_full
)
1136 for (i
= hide_refs
->nr
- 1; i
>= 0; i
--) {
1137 const char *match
= hide_refs
->items
[i
].string
;
1138 const char *subject
;
1142 if (*match
== '!') {
1147 if (*match
== '^') {
1148 subject
= refname_full
;
1154 /* refname can be NULL when namespaces are used. */
1155 if (!subject
|| !starts_with(subject
, match
))
1157 len
= strlen(match
);
1158 if (!subject
[len
] || subject
[len
] == '/')
1164 const char *find_descendant_ref(const char *dirname
,
1165 const struct string_list
*extras
,
1166 const struct string_list
*skip
)
1174 * Look at the place where dirname would be inserted into
1175 * extras. If there is an entry at that position that starts
1176 * with dirname (remember, dirname includes the trailing
1177 * slash) and is not in skip, then we have a conflict.
1179 for (pos
= string_list_find_insert_index(extras
, dirname
, 0);
1180 pos
< extras
->nr
; pos
++) {
1181 const char *extra_refname
= extras
->items
[pos
].string
;
1183 if (!starts_with(extra_refname
, dirname
))
1186 if (!skip
|| !string_list_has_string(skip
, extra_refname
))
1187 return extra_refname
;
1192 int refs_rename_ref_available(struct ref_store
*refs
,
1193 const char *old_refname
,
1194 const char *new_refname
)
1196 struct string_list skip
= STRING_LIST_INIT_NODUP
;
1197 struct strbuf err
= STRBUF_INIT
;
1200 string_list_insert(&skip
, old_refname
);
1201 ok
= !refs_verify_refname_available(refs
, new_refname
,
1204 error("%s", err
.buf
);
1206 string_list_clear(&skip
, 0);
1207 strbuf_release(&err
);
1211 int head_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1213 struct object_id oid
;
1217 if (resolve_gitlink_ref(submodule
, "HEAD", oid
.hash
) == 0)
1218 return fn("HEAD", &oid
, 0, cb_data
);
1223 if (!read_ref_full("HEAD", RESOLVE_REF_READING
, oid
.hash
, &flag
))
1224 return fn("HEAD", &oid
, flag
, cb_data
);
1229 int head_ref(each_ref_fn fn
, void *cb_data
)
1231 return head_ref_submodule(NULL
, fn
, cb_data
);
1234 struct ref_iterator
*refs_ref_iterator_begin(
1235 struct ref_store
*refs
,
1236 const char *prefix
, int trim
, int flags
)
1238 struct ref_iterator
*iter
;
1240 iter
= refs
->be
->iterator_begin(refs
, prefix
, flags
);
1241 iter
= prefix_ref_iterator_begin(iter
, prefix
, trim
);
1247 * Call fn for each reference in the specified submodule for which the
1248 * refname begins with prefix. If trim is non-zero, then trim that
1249 * many characters off the beginning of each refname before passing
1250 * the refname to fn. flags can be DO_FOR_EACH_INCLUDE_BROKEN to
1251 * include broken references in the iteration. If fn ever returns a
1252 * non-zero value, stop the iteration and return that value;
1253 * otherwise, return 0.
1255 static int do_for_each_ref(struct ref_store
*refs
, const char *prefix
,
1256 each_ref_fn fn
, int trim
, int flags
, void *cb_data
)
1258 struct ref_iterator
*iter
;
1263 iter
= refs_ref_iterator_begin(refs
, prefix
, trim
, flags
);
1265 return do_for_each_ref_iterator(iter
, fn
, cb_data
);
1268 int refs_for_each_ref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
1270 return do_for_each_ref(refs
, "", fn
, 0, 0, cb_data
);
1273 int for_each_ref(each_ref_fn fn
, void *cb_data
)
1275 return refs_for_each_ref(get_main_ref_store(), fn
, cb_data
);
1278 int for_each_ref_submodule(const char *submodule
, each_ref_fn fn
, void *cb_data
)
1280 return refs_for_each_ref(get_submodule_ref_store(submodule
), fn
, cb_data
);
1283 int refs_for_each_ref_in(struct ref_store
*refs
, const char *prefix
,
1284 each_ref_fn fn
, void *cb_data
)
1286 return do_for_each_ref(refs
, prefix
, fn
, strlen(prefix
), 0, cb_data
);
1289 int for_each_ref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
)
1291 return refs_for_each_ref_in(get_main_ref_store(), prefix
, fn
, cb_data
);
1294 int for_each_fullref_in(const char *prefix
, each_ref_fn fn
, void *cb_data
, unsigned int broken
)
1296 unsigned int flag
= 0;
1299 flag
= DO_FOR_EACH_INCLUDE_BROKEN
;
1300 return do_for_each_ref(get_main_ref_store(),
1301 prefix
, fn
, 0, flag
, cb_data
);
1304 int for_each_ref_in_submodule(const char *submodule
, const char *prefix
,
1305 each_ref_fn fn
, void *cb_data
)
1307 return refs_for_each_ref_in(get_submodule_ref_store(submodule
),
1308 prefix
, fn
, cb_data
);
1311 int for_each_replace_ref(each_ref_fn fn
, void *cb_data
)
1313 return do_for_each_ref(get_main_ref_store(),
1314 git_replace_ref_base
, fn
,
1315 strlen(git_replace_ref_base
),
1319 int for_each_namespaced_ref(each_ref_fn fn
, void *cb_data
)
1321 struct strbuf buf
= STRBUF_INIT
;
1323 strbuf_addf(&buf
, "%srefs/", get_git_namespace());
1324 ret
= do_for_each_ref(get_main_ref_store(),
1325 buf
.buf
, fn
, 0, 0, cb_data
);
1326 strbuf_release(&buf
);
1330 int refs_for_each_rawref(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
1332 return do_for_each_ref(refs
, "", fn
, 0,
1333 DO_FOR_EACH_INCLUDE_BROKEN
, cb_data
);
1336 int for_each_rawref(each_ref_fn fn
, void *cb_data
)
1338 return refs_for_each_rawref(get_main_ref_store(), fn
, cb_data
);
1341 int refs_read_raw_ref(struct ref_store
*ref_store
,
1342 const char *refname
, unsigned char *sha1
,
1343 struct strbuf
*referent
, unsigned int *type
)
1345 return ref_store
->be
->read_raw_ref(ref_store
, refname
, sha1
, referent
, type
);
1348 /* This function needs to return a meaningful errno on failure */
1349 const char *refs_resolve_ref_unsafe(struct ref_store
*refs
,
1350 const char *refname
,
1352 unsigned char *sha1
, int *flags
)
1354 static struct strbuf sb_refname
= STRBUF_INIT
;
1359 flags
= &unused_flags
;
1363 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
)) {
1364 if (!(resolve_flags
& RESOLVE_REF_ALLOW_BAD_NAME
) ||
1365 !refname_is_safe(refname
)) {
1371 * dwim_ref() uses REF_ISBROKEN to distinguish between
1372 * missing refs and refs that were present but invalid,
1373 * to complain about the latter to stderr.
1375 * We don't know whether the ref exists, so don't set
1378 *flags
|= REF_BAD_NAME
;
1381 for (symref_count
= 0; symref_count
< SYMREF_MAXDEPTH
; symref_count
++) {
1382 unsigned int read_flags
= 0;
1384 if (refs_read_raw_ref(refs
, refname
,
1385 sha1
, &sb_refname
, &read_flags
)) {
1386 *flags
|= read_flags
;
1387 if (errno
!= ENOENT
|| (resolve_flags
& RESOLVE_REF_READING
))
1390 if (*flags
& REF_BAD_NAME
)
1391 *flags
|= REF_ISBROKEN
;
1395 *flags
|= read_flags
;
1397 if (!(read_flags
& REF_ISSYMREF
)) {
1398 if (*flags
& REF_BAD_NAME
) {
1400 *flags
|= REF_ISBROKEN
;
1405 refname
= sb_refname
.buf
;
1406 if (resolve_flags
& RESOLVE_REF_NO_RECURSE
) {
1410 if (check_refname_format(refname
, REFNAME_ALLOW_ONELEVEL
)) {
1411 if (!(resolve_flags
& RESOLVE_REF_ALLOW_BAD_NAME
) ||
1412 !refname_is_safe(refname
)) {
1417 *flags
|= REF_ISBROKEN
| REF_BAD_NAME
;
1425 /* backend functions */
1426 int refs_init_db(struct strbuf
*err
)
1428 struct ref_store
*refs
= get_main_ref_store();
1430 return refs
->be
->init_db(refs
, err
);
1433 const char *resolve_ref_unsafe(const char *refname
, int resolve_flags
,
1434 unsigned char *sha1
, int *flags
)
1436 return refs_resolve_ref_unsafe(get_main_ref_store(), refname
,
1437 resolve_flags
, sha1
, flags
);
1440 int resolve_gitlink_ref(const char *submodule
, const char *refname
,
1441 unsigned char *sha1
)
1443 size_t len
= strlen(submodule
);
1444 struct ref_store
*refs
;
1447 while (len
&& submodule
[len
- 1] == '/')
1453 if (submodule
[len
]) {
1454 /* We need to strip off one or more trailing slashes */
1455 char *stripped
= xmemdupz(submodule
, len
);
1457 refs
= get_submodule_ref_store(stripped
);
1460 refs
= get_submodule_ref_store(submodule
);
1466 if (!refs_resolve_ref_unsafe(refs
, refname
, 0, sha1
, &flags
) ||
1472 struct submodule_hash_entry
1474 struct hashmap_entry ent
; /* must be the first member! */
1476 struct ref_store
*refs
;
1478 /* NUL-terminated name of submodule: */
1479 char submodule
[FLEX_ARRAY
];
1482 static int submodule_hash_cmp(const void *entry
, const void *entry_or_key
,
1483 const void *keydata
)
1485 const struct submodule_hash_entry
*e1
= entry
, *e2
= entry_or_key
;
1486 const char *submodule
= keydata
? keydata
: e2
->submodule
;
1488 return strcmp(e1
->submodule
, submodule
);
1491 static struct submodule_hash_entry
*alloc_submodule_hash_entry(
1492 const char *submodule
, struct ref_store
*refs
)
1494 struct submodule_hash_entry
*entry
;
1496 FLEX_ALLOC_STR(entry
, submodule
, submodule
);
1497 hashmap_entry_init(entry
, strhash(submodule
));
1502 /* A pointer to the ref_store for the main repository: */
1503 static struct ref_store
*main_ref_store
;
1505 /* A hashmap of ref_stores, stored by submodule name: */
1506 static struct hashmap submodule_ref_stores
;
1509 * Return the ref_store instance for the specified submodule. If that
1510 * ref_store hasn't been initialized yet, return NULL.
1512 static struct ref_store
*lookup_submodule_ref_store(const char *submodule
)
1514 struct submodule_hash_entry
*entry
;
1516 if (!submodule_ref_stores
.tablesize
)
1517 /* It's initialized on demand in register_ref_store(). */
1520 entry
= hashmap_get_from_hash(&submodule_ref_stores
,
1521 strhash(submodule
), submodule
);
1522 return entry
? entry
->refs
: NULL
;
1526 * Create, record, and return a ref_store instance for the specified
1529 static struct ref_store
*ref_store_init(const char *gitdir
,
1532 const char *be_name
= "files";
1533 struct ref_storage_be
*be
= find_ref_storage_backend(be_name
);
1534 struct ref_store
*refs
;
1537 die("BUG: reference backend %s is unknown", be_name
);
1539 refs
= be
->init(gitdir
, flags
);
1543 struct ref_store
*get_main_ref_store(void)
1546 return main_ref_store
;
1548 main_ref_store
= ref_store_init(get_git_dir(),
1553 return main_ref_store
;
1557 * Register the specified ref_store to be the one that should be used
1558 * for submodule. It is a fatal error to call this function twice for
1559 * the same submodule.
1561 static void register_submodule_ref_store(struct ref_store
*refs
,
1562 const char *submodule
)
1564 if (!submodule_ref_stores
.tablesize
)
1565 hashmap_init(&submodule_ref_stores
, submodule_hash_cmp
, 0);
1567 if (hashmap_put(&submodule_ref_stores
,
1568 alloc_submodule_hash_entry(submodule
, refs
)))
1569 die("BUG: ref_store for submodule '%s' initialized twice",
1573 struct ref_store
*get_submodule_ref_store(const char *submodule
)
1575 struct strbuf submodule_sb
= STRBUF_INIT
;
1576 struct ref_store
*refs
;
1579 if (!submodule
|| !*submodule
) {
1581 * FIXME: This case is ideally not allowed. But that
1582 * can't happen until we clean up all the callers.
1584 return get_main_ref_store();
1587 refs
= lookup_submodule_ref_store(submodule
);
1591 strbuf_addstr(&submodule_sb
, submodule
);
1592 ret
= is_nonbare_repository_dir(&submodule_sb
);
1593 strbuf_release(&submodule_sb
);
1597 ret
= submodule_to_gitdir(&submodule_sb
, submodule
);
1599 strbuf_release(&submodule_sb
);
1603 /* assume that add_submodule_odb() has been called */
1604 refs
= ref_store_init(submodule_sb
.buf
,
1605 REF_STORE_READ
| REF_STORE_ODB
);
1606 register_submodule_ref_store(refs
, submodule
);
1608 strbuf_release(&submodule_sb
);
1612 void base_ref_store_init(struct ref_store
*refs
,
1613 const struct ref_storage_be
*be
)
1618 /* backend functions */
1619 int refs_pack_refs(struct ref_store
*refs
, unsigned int flags
)
1621 return refs
->be
->pack_refs(refs
, flags
);
1624 int refs_peel_ref(struct ref_store
*refs
, const char *refname
,
1625 unsigned char *sha1
)
1627 return refs
->be
->peel_ref(refs
, refname
, sha1
);
1630 int peel_ref(const char *refname
, unsigned char *sha1
)
1632 return refs_peel_ref(get_main_ref_store(), refname
, sha1
);
1635 int refs_create_symref(struct ref_store
*refs
,
1636 const char *ref_target
,
1637 const char *refs_heads_master
,
1640 return refs
->be
->create_symref(refs
, ref_target
,
1645 int create_symref(const char *ref_target
, const char *refs_heads_master
,
1648 return refs_create_symref(get_main_ref_store(), ref_target
,
1649 refs_heads_master
, logmsg
);
1652 int ref_transaction_commit(struct ref_transaction
*transaction
,
1655 struct ref_store
*refs
= transaction
->ref_store
;
1657 return refs
->be
->transaction_commit(refs
, transaction
, err
);
1660 int refs_verify_refname_available(struct ref_store
*refs
,
1661 const char *refname
,
1662 const struct string_list
*extras
,
1663 const struct string_list
*skip
,
1667 const char *extra_refname
;
1668 struct strbuf dirname
= STRBUF_INIT
;
1669 struct strbuf referent
= STRBUF_INIT
;
1670 struct object_id oid
;
1672 struct ref_iterator
*iter
;
1677 * For the sake of comments in this function, suppose that
1678 * refname is "refs/foo/bar".
1683 strbuf_grow(&dirname
, strlen(refname
) + 1);
1684 for (slash
= strchr(refname
, '/'); slash
; slash
= strchr(slash
+ 1, '/')) {
1685 /* Expand dirname to the new prefix, not including the trailing slash: */
1686 strbuf_add(&dirname
, refname
+ dirname
.len
, slash
- refname
- dirname
.len
);
1689 * We are still at a leading dir of the refname (e.g.,
1690 * "refs/foo"; if there is a reference with that name,
1691 * it is a conflict, *unless* it is in skip.
1693 if (skip
&& string_list_has_string(skip
, dirname
.buf
))
1696 if (!refs_read_raw_ref(refs
, dirname
.buf
, oid
.hash
, &referent
, &type
)) {
1697 strbuf_addf(err
, "'%s' exists; cannot create '%s'",
1698 dirname
.buf
, refname
);
1702 if (extras
&& string_list_has_string(extras
, dirname
.buf
)) {
1703 strbuf_addf(err
, "cannot process '%s' and '%s' at the same time",
1704 refname
, dirname
.buf
);
1710 * We are at the leaf of our refname (e.g., "refs/foo/bar").
1711 * There is no point in searching for a reference with that
1712 * name, because a refname isn't considered to conflict with
1713 * itself. But we still need to check for references whose
1714 * names are in the "refs/foo/bar/" namespace, because they
1717 strbuf_addstr(&dirname
, refname
+ dirname
.len
);
1718 strbuf_addch(&dirname
, '/');
1720 iter
= refs_ref_iterator_begin(refs
, dirname
.buf
, 0,
1721 DO_FOR_EACH_INCLUDE_BROKEN
);
1722 while ((ok
= ref_iterator_advance(iter
)) == ITER_OK
) {
1724 string_list_has_string(skip
, iter
->refname
))
1727 strbuf_addf(err
, "'%s' exists; cannot create '%s'",
1728 iter
->refname
, refname
);
1729 ref_iterator_abort(iter
);
1733 if (ok
!= ITER_DONE
)
1734 die("BUG: error while iterating over references");
1736 extra_refname
= find_descendant_ref(dirname
.buf
, extras
, skip
);
1738 strbuf_addf(err
, "cannot process '%s' and '%s' at the same time",
1739 refname
, extra_refname
);
1744 strbuf_release(&referent
);
1745 strbuf_release(&dirname
);
1749 int refs_for_each_reflog(struct ref_store
*refs
, each_ref_fn fn
, void *cb_data
)
1751 struct ref_iterator
*iter
;
1753 iter
= refs
->be
->reflog_iterator_begin(refs
);
1755 return do_for_each_ref_iterator(iter
, fn
, cb_data
);
1758 int for_each_reflog(each_ref_fn fn
, void *cb_data
)
1760 return refs_for_each_reflog(get_main_ref_store(), fn
, cb_data
);
1763 int refs_for_each_reflog_ent_reverse(struct ref_store
*refs
,
1764 const char *refname
,
1765 each_reflog_ent_fn fn
,
1768 return refs
->be
->for_each_reflog_ent_reverse(refs
, refname
,
1772 int for_each_reflog_ent_reverse(const char *refname
, each_reflog_ent_fn fn
,
1775 return refs_for_each_reflog_ent_reverse(get_main_ref_store(),
1776 refname
, fn
, cb_data
);
1779 int refs_for_each_reflog_ent(struct ref_store
*refs
, const char *refname
,
1780 each_reflog_ent_fn fn
, void *cb_data
)
1782 return refs
->be
->for_each_reflog_ent(refs
, refname
, fn
, cb_data
);
1785 int for_each_reflog_ent(const char *refname
, each_reflog_ent_fn fn
,
1788 return refs_for_each_reflog_ent(get_main_ref_store(), refname
,
1792 int refs_reflog_exists(struct ref_store
*refs
, const char *refname
)
1794 return refs
->be
->reflog_exists(refs
, refname
);
1797 int reflog_exists(const char *refname
)
1799 return refs_reflog_exists(get_main_ref_store(), refname
);
1802 int refs_create_reflog(struct ref_store
*refs
, const char *refname
,
1803 int force_create
, struct strbuf
*err
)
1805 return refs
->be
->create_reflog(refs
, refname
, force_create
, err
);
1808 int safe_create_reflog(const char *refname
, int force_create
,
1811 return refs_create_reflog(get_main_ref_store(), refname
,
1815 int refs_delete_reflog(struct ref_store
*refs
, const char *refname
)
1817 return refs
->be
->delete_reflog(refs
, refname
);
1820 int delete_reflog(const char *refname
)
1822 return refs_delete_reflog(get_main_ref_store(), refname
);
1825 int refs_reflog_expire(struct ref_store
*refs
,
1826 const char *refname
, const unsigned char *sha1
,
1828 reflog_expiry_prepare_fn prepare_fn
,
1829 reflog_expiry_should_prune_fn should_prune_fn
,
1830 reflog_expiry_cleanup_fn cleanup_fn
,
1831 void *policy_cb_data
)
1833 return refs
->be
->reflog_expire(refs
, refname
, sha1
, flags
,
1834 prepare_fn
, should_prune_fn
,
1835 cleanup_fn
, policy_cb_data
);
1838 int reflog_expire(const char *refname
, const unsigned char *sha1
,
1840 reflog_expiry_prepare_fn prepare_fn
,
1841 reflog_expiry_should_prune_fn should_prune_fn
,
1842 reflog_expiry_cleanup_fn cleanup_fn
,
1843 void *policy_cb_data
)
1845 return refs_reflog_expire(get_main_ref_store(),
1846 refname
, sha1
, flags
,
1847 prepare_fn
, should_prune_fn
,
1848 cleanup_fn
, policy_cb_data
);
1851 int initial_ref_transaction_commit(struct ref_transaction
*transaction
,
1854 struct ref_store
*refs
= transaction
->ref_store
;
1856 return refs
->be
->initial_transaction_commit(refs
, transaction
, err
);
1859 int refs_delete_refs(struct ref_store
*refs
, struct string_list
*refnames
,
1862 return refs
->be
->delete_refs(refs
, refnames
, flags
);
1865 int delete_refs(struct string_list
*refnames
, unsigned int flags
)
1867 return refs_delete_refs(get_main_ref_store(), refnames
, flags
);
1870 int refs_rename_ref(struct ref_store
*refs
, const char *oldref
,
1871 const char *newref
, const char *logmsg
)
1873 return refs
->be
->rename_ref(refs
, oldref
, newref
, logmsg
);
1876 int rename_ref(const char *oldref
, const char *newref
, const char *logmsg
)
1878 return refs_rename_ref(get_main_ref_store(), oldref
, newref
, logmsg
);