4 #include "refs-internal.h"
6 #include "packed-backend.h"
7 #include "../iterator.h"
8 #include "../lockfile.h"
10 struct packed_ref_cache {
11 struct ref_cache *cache;
14 * Count of references to the data structure in this instance,
15 * including the pointer from files_ref_store::packed if any.
16 * The data will not be freed as long as the reference count
19 unsigned int referrers;
21 /* The metadata from when this packed-refs cache was read */
22 struct stat_validity validity;
26 * Increment the reference count of *packed_refs.
28 static void acquire_packed_ref_cache(struct packed_ref_cache *packed_refs)
30 packed_refs->referrers++;
34 * Decrease the reference count of *packed_refs. If it goes to zero,
35 * free *packed_refs and return true; otherwise return false.
37 static int release_packed_ref_cache(struct packed_ref_cache *packed_refs)
39 if (!--packed_refs->referrers) {
40 free_ref_cache(packed_refs->cache);
41 stat_validity_clear(&packed_refs->validity);
50 * A container for `packed-refs`-related data. It is not (yet) a
53 struct packed_ref_store {
54 struct ref_store base;
56 unsigned int store_flags;
58 /* The path of the "packed-refs" file: */
62 * A cache of the values read from the `packed-refs` file, if
63 * it might still be current; otherwise, NULL.
65 struct packed_ref_cache *cache;
68 * Lock used for the "packed-refs" file. Note that this (and
69 * thus the enclosing `packed_ref_store`) must not be freed.
71 struct lock_file lock;
74 * Temporary file used when rewriting new contents to the
75 * "packed-refs" file. Note that this (and thus the enclosing
76 * `packed_ref_store`) must not be freed.
78 struct tempfile tempfile;
81 struct ref_store *packed_ref_store_create(const char *path,
82 unsigned int store_flags)
84 struct packed_ref_store *refs = xcalloc(1, sizeof(*refs));
85 struct ref_store *ref_store = (struct ref_store *)refs;
87 base_ref_store_init(ref_store, &refs_be_packed);
88 refs->store_flags = store_flags;
90 refs->path = xstrdup(path);
95 * Downcast `ref_store` to `packed_ref_store`. Die if `ref_store` is
96 * not a `packed_ref_store`. Also die if `packed_ref_store` doesn't
97 * support at least the flags specified in `required_flags`. `caller`
98 * is used in any necessary error messages.
100 static struct packed_ref_store *packed_downcast(struct ref_store *ref_store,
101 unsigned int required_flags,
104 struct packed_ref_store *refs;
106 if (ref_store->be != &refs_be_packed)
107 die("BUG: ref_store is type \"%s\" not \"packed\" in %s",
108 ref_store->be->name, caller);
110 refs = (struct packed_ref_store *)ref_store;
112 if ((refs->store_flags & required_flags) != required_flags)
113 die("BUG: unallowed operation (%s), requires %x, has %x\n",
114 caller, required_flags, refs->store_flags);
119 static void clear_packed_ref_cache(struct packed_ref_store *refs)
122 struct packed_ref_cache *cache = refs->cache;
125 release_packed_ref_cache(cache);
129 /* The length of a peeled reference line in packed-refs, including EOL: */
130 #define PEELED_LINE_LENGTH 42
133 * Parse one line from a packed-refs file. Write the SHA1 to sha1.
134 * Return a pointer to the refname within the line (null-terminated),
135 * or NULL if there was a problem.
137 static const char *parse_ref_line(struct strbuf *line, struct object_id *oid)
141 if (parse_oid_hex(line->buf, oid, &ref) < 0)
143 if (!isspace(*ref++))
149 if (line->buf[line->len - 1] != '\n')
151 line->buf[--line->len] = 0;
157 * Read from `packed_refs_file` into a newly-allocated
158 * `packed_ref_cache` and return it. The return value will already
159 * have its reference count incremented.
161 * A comment line of the form "# pack-refs with: " may contain zero or
162 * more traits. We interpret the traits as follows:
166 * Probably no references are peeled. But if the file contains a
167 * peeled value for a reference, we will use it.
171 * References under "refs/tags/", if they *can* be peeled, *are*
172 * peeled in this file. References outside of "refs/tags/" are
173 * probably not peeled even if they could have been, but if we find
174 * a peeled value for such a reference we will use it.
178 * All references in the file that can be peeled are peeled.
179 * Inversely (and this is more important), any references in the
180 * file for which no peeled value is recorded is not peelable. This
181 * trait should typically be written alongside "peeled" for
182 * compatibility with older clients, but we do not require it
183 * (i.e., "peeled" is a no-op if "fully-peeled" is set).
185 static struct packed_ref_cache *read_packed_refs(const char *packed_refs_file)
188 struct packed_ref_cache *packed_refs = xcalloc(1, sizeof(*packed_refs));
189 struct ref_entry *last = NULL;
190 struct strbuf line = STRBUF_INIT;
191 enum { PEELED_NONE, PEELED_TAGS, PEELED_FULLY } peeled = PEELED_NONE;
194 acquire_packed_ref_cache(packed_refs);
195 packed_refs->cache = create_ref_cache(NULL, NULL);
196 packed_refs->cache->root->flag &= ~REF_INCOMPLETE;
198 f = fopen(packed_refs_file, "r");
200 if (errno == ENOENT) {
202 * This is OK; it just means that no
203 * "packed-refs" file has been written yet,
204 * which is equivalent to it being empty.
208 die_errno("couldn't read %s", packed_refs_file);
212 stat_validity_update(&packed_refs->validity, fileno(f));
214 dir = get_ref_dir(packed_refs->cache->root);
215 while (strbuf_getwholeline(&line, f, '\n') != EOF) {
216 struct object_id oid;
220 if (!line.len || line.buf[line.len - 1] != '\n')
221 die("unterminated line in %s: %s", packed_refs_file, line.buf);
223 if (skip_prefix(line.buf, "# pack-refs with:", &traits)) {
224 if (strstr(traits, " fully-peeled "))
225 peeled = PEELED_FULLY;
226 else if (strstr(traits, " peeled "))
227 peeled = PEELED_TAGS;
228 /* perhaps other traits later as well */
232 refname = parse_ref_line(&line, &oid);
234 int flag = REF_ISPACKED;
236 if (check_refname_format(refname, REFNAME_ALLOW_ONELEVEL)) {
237 if (!refname_is_safe(refname))
238 die("packed refname is dangerous: %s", refname);
240 flag |= REF_BAD_NAME | REF_ISBROKEN;
242 last = create_ref_entry(refname, &oid, flag);
243 if (peeled == PEELED_FULLY ||
244 (peeled == PEELED_TAGS && starts_with(refname, "refs/tags/")))
245 last->flag |= REF_KNOWS_PEELED;
246 add_ref_entry(dir, last);
248 line.buf[0] == '^' &&
249 line.len == PEELED_LINE_LENGTH &&
250 line.buf[PEELED_LINE_LENGTH - 1] == '\n' &&
251 !get_oid_hex(line.buf + 1, &oid)) {
252 oidcpy(&last->u.value.peeled, &oid);
254 * Regardless of what the file header said,
255 * we definitely know the value of *this*
258 last->flag |= REF_KNOWS_PEELED;
260 strbuf_setlen(&line, line.len - 1);
261 die("unexpected line in %s: %s", packed_refs_file, line.buf);
266 strbuf_release(&line);
272 * Check that the packed refs cache (if any) still reflects the
273 * contents of the file. If not, clear the cache.
275 static void validate_packed_ref_cache(struct packed_ref_store *refs)
278 !stat_validity_check(&refs->cache->validity, refs->path))
279 clear_packed_ref_cache(refs);
283 * Get the packed_ref_cache for the specified packed_ref_store,
284 * creating and populating it if it hasn't been read before or if the
285 * file has been changed (according to its `validity` field) since it
286 * was last read. On the other hand, if we hold the lock, then assume
287 * that the file hasn't been changed out from under us, so skip the
288 * extra `stat()` call in `stat_validity_check()`.
290 static struct packed_ref_cache *get_packed_ref_cache(struct packed_ref_store *refs)
292 if (!is_lock_file_locked(&refs->lock))
293 validate_packed_ref_cache(refs);
296 refs->cache = read_packed_refs(refs->path);
301 static struct ref_dir *get_packed_ref_dir(struct packed_ref_cache *packed_ref_cache)
303 return get_ref_dir(packed_ref_cache->cache->root);
306 static struct ref_dir *get_packed_refs(struct packed_ref_store *refs)
308 return get_packed_ref_dir(get_packed_ref_cache(refs));
312 * Return the ref_entry for the given refname from the packed
313 * references. If it does not exist, return NULL.
315 static struct ref_entry *get_packed_ref(struct packed_ref_store *refs,
318 return find_ref_entry(get_packed_refs(refs), refname);
321 static int packed_read_raw_ref(struct ref_store *ref_store,
322 const char *refname, unsigned char *sha1,
323 struct strbuf *referent, unsigned int *type)
325 struct packed_ref_store *refs =
326 packed_downcast(ref_store, REF_STORE_READ, "read_raw_ref");
328 struct ref_entry *entry;
332 entry = get_packed_ref(refs, refname);
338 hashcpy(sha1, entry->u.value.oid.hash);
339 *type = REF_ISPACKED;
343 static int packed_peel_ref(struct ref_store *ref_store,
344 const char *refname, unsigned char *sha1)
346 struct packed_ref_store *refs =
347 packed_downcast(ref_store, REF_STORE_READ | REF_STORE_ODB,
349 struct ref_entry *r = get_packed_ref(refs, refname);
351 if (!r || peel_entry(r, 0))
354 hashcpy(sha1, r->u.value.peeled.hash);
358 struct packed_ref_iterator {
359 struct ref_iterator base;
361 struct packed_ref_cache *cache;
362 struct ref_iterator *iter0;
366 static int packed_ref_iterator_advance(struct ref_iterator *ref_iterator)
368 struct packed_ref_iterator *iter =
369 (struct packed_ref_iterator *)ref_iterator;
372 while ((ok = ref_iterator_advance(iter->iter0)) == ITER_OK) {
373 if (iter->flags & DO_FOR_EACH_PER_WORKTREE_ONLY &&
374 ref_type(iter->iter0->refname) != REF_TYPE_PER_WORKTREE)
377 if (!(iter->flags & DO_FOR_EACH_INCLUDE_BROKEN) &&
378 !ref_resolves_to_object(iter->iter0->refname,
383 iter->base.refname = iter->iter0->refname;
384 iter->base.oid = iter->iter0->oid;
385 iter->base.flags = iter->iter0->flags;
390 if (ref_iterator_abort(ref_iterator) != ITER_DONE)
396 static int packed_ref_iterator_peel(struct ref_iterator *ref_iterator,
397 struct object_id *peeled)
399 struct packed_ref_iterator *iter =
400 (struct packed_ref_iterator *)ref_iterator;
402 return ref_iterator_peel(iter->iter0, peeled);
405 static int packed_ref_iterator_abort(struct ref_iterator *ref_iterator)
407 struct packed_ref_iterator *iter =
408 (struct packed_ref_iterator *)ref_iterator;
412 ok = ref_iterator_abort(iter->iter0);
414 release_packed_ref_cache(iter->cache);
415 base_ref_iterator_free(ref_iterator);
419 static struct ref_iterator_vtable packed_ref_iterator_vtable = {
420 packed_ref_iterator_advance,
421 packed_ref_iterator_peel,
422 packed_ref_iterator_abort
425 static struct ref_iterator *packed_ref_iterator_begin(
426 struct ref_store *ref_store,
427 const char *prefix, unsigned int flags)
429 struct packed_ref_store *refs;
430 struct packed_ref_iterator *iter;
431 struct ref_iterator *ref_iterator;
432 unsigned int required_flags = REF_STORE_READ;
434 if (!(flags & DO_FOR_EACH_INCLUDE_BROKEN))
435 required_flags |= REF_STORE_ODB;
436 refs = packed_downcast(ref_store, required_flags, "ref_iterator_begin");
438 iter = xcalloc(1, sizeof(*iter));
439 ref_iterator = &iter->base;
440 base_ref_iterator_init(ref_iterator, &packed_ref_iterator_vtable);
443 * Note that get_packed_ref_cache() internally checks whether
444 * the packed-ref cache is up to date with what is on disk,
445 * and re-reads it if not.
448 iter->cache = get_packed_ref_cache(refs);
449 acquire_packed_ref_cache(iter->cache);
450 iter->iter0 = cache_ref_iterator_begin(iter->cache->cache, prefix, 0);
458 * Write an entry to the packed-refs file for the specified refname.
459 * If peeled is non-NULL, write it as the entry's peeled value. On
460 * error, return a nonzero value and leave errno set at the value left
461 * by the failing call to `fprintf()`.
463 static int write_packed_entry(FILE *fh, const char *refname,
464 const unsigned char *sha1,
465 const unsigned char *peeled)
467 if (fprintf(fh, "%s %s\n", sha1_to_hex(sha1), refname) < 0 ||
468 (peeled && fprintf(fh, "^%s\n", sha1_to_hex(peeled)) < 0))
474 int packed_refs_lock(struct ref_store *ref_store, int flags, struct strbuf *err)
476 struct packed_ref_store *refs =
477 packed_downcast(ref_store, REF_STORE_WRITE | REF_STORE_MAIN,
479 static int timeout_configured = 0;
480 static int timeout_value = 1000;
482 if (!timeout_configured) {
483 git_config_get_int("core.packedrefstimeout", &timeout_value);
484 timeout_configured = 1;
488 * Note that we close the lockfile immediately because we
489 * don't write new content to it, but rather to a separate
492 if (hold_lock_file_for_update_timeout(
495 flags, timeout_value) < 0) {
496 unable_to_lock_message(refs->path, errno, err);
500 if (close_lock_file(&refs->lock)) {
501 strbuf_addf(err, "unable to close %s: %s", refs->path, strerror(errno));
506 * Now that we hold the `packed-refs` lock, make sure that our
507 * cache matches the current version of the file. Normally
508 * `get_packed_ref_cache()` does that for us, but that
509 * function assumes that when the file is locked, any existing
510 * cache is still valid. We've just locked the file, but it
511 * might have changed the moment *before* we locked it.
513 validate_packed_ref_cache(refs);
516 * Now make sure that the packed-refs file as it exists in the
517 * locked state is loaded into the cache:
519 get_packed_ref_cache(refs);
523 void packed_refs_unlock(struct ref_store *ref_store)
525 struct packed_ref_store *refs = packed_downcast(
527 REF_STORE_READ | REF_STORE_WRITE,
528 "packed_refs_unlock");
530 if (!is_lock_file_locked(&refs->lock))
531 die("BUG: packed_refs_unlock() called when not locked");
532 rollback_lock_file(&refs->lock);
535 int packed_refs_is_locked(struct ref_store *ref_store)
537 struct packed_ref_store *refs = packed_downcast(
539 REF_STORE_READ | REF_STORE_WRITE,
540 "packed_refs_is_locked");
542 return is_lock_file_locked(&refs->lock);
546 * The packed-refs header line that we write out. Perhaps other
547 * traits will be added later. The trailing space is required.
549 static const char PACKED_REFS_HEADER[] =
550 "# pack-refs with: peeled fully-peeled \n";
552 static int packed_init_db(struct ref_store *ref_store, struct strbuf *err)
559 * Write the packed-refs from the cache to the packed-refs tempfile,
560 * incorporating any changes from `updates`. `updates` must be a
561 * sorted string list whose keys are the refnames and whose util
562 * values are `struct ref_update *`. On error, rollback the tempfile,
563 * write an error message to `err`, and return a nonzero value.
565 * The packfile must be locked before calling this function and will
566 * remain locked when it is done.
568 static int write_with_updates(struct packed_ref_store *refs,
569 struct string_list *updates,
572 struct ref_iterator *iter = NULL;
576 struct strbuf sb = STRBUF_INIT;
577 char *packed_refs_path;
579 if (!is_lock_file_locked(&refs->lock))
580 die("BUG: write_with_updates() called while unlocked");
583 * If packed-refs is a symlink, we want to overwrite the
584 * symlinked-to file, not the symlink itself. Also, put the
585 * staging file next to it:
587 packed_refs_path = get_locked_file_path(&refs->lock);
588 strbuf_addf(&sb, "%s.new", packed_refs_path);
589 free(packed_refs_path);
590 if (create_tempfile(&refs->tempfile, sb.buf) < 0) {
591 strbuf_addf(err, "unable to create file %s: %s",
592 sb.buf, strerror(errno));
598 out = fdopen_tempfile(&refs->tempfile, "w");
600 strbuf_addf(err, "unable to fdopen packed-refs tempfile: %s",
605 if (fprintf(out, "%s", PACKED_REFS_HEADER) < 0)
609 * We iterate in parallel through the current list of refs and
610 * the list of updates, processing an entry from at least one
611 * of the lists each time through the loop. When the current
612 * list of refs is exhausted, set iter to NULL. When the list
613 * of updates is exhausted, leave i set to updates->nr.
615 iter = packed_ref_iterator_begin(&refs->base, "",
616 DO_FOR_EACH_INCLUDE_BROKEN);
617 if ((ok = ref_iterator_advance(iter)) != ITER_OK)
622 while (iter || i < updates->nr) {
623 struct ref_update *update = NULL;
626 if (i >= updates->nr) {
629 update = updates->items[i].util;
634 cmp = strcmp(iter->refname, update->refname);
639 * There is both an old value and an update
640 * for this reference. Check the old value if
643 if ((update->flags & REF_HAVE_OLD)) {
644 if (is_null_oid(&update->old_oid)) {
645 strbuf_addf(err, "cannot update ref '%s': "
646 "reference already exists",
649 } else if (oidcmp(&update->old_oid, iter->oid)) {
650 strbuf_addf(err, "cannot update ref '%s': "
651 "is at %s but expected %s",
653 oid_to_hex(iter->oid),
654 oid_to_hex(&update->old_oid));
659 /* Now figure out what to use for the new value: */
660 if ((update->flags & REF_HAVE_NEW)) {
662 * The update takes precedence. Skip
663 * the iterator over the unneeded
666 if ((ok = ref_iterator_advance(iter)) != ITER_OK)
671 * The update doesn't actually want to
672 * change anything. We're done with it.
677 } else if (cmp > 0) {
679 * There is no old value but there is an
680 * update for this reference. Make sure that
681 * the update didn't expect an existing value:
683 if ((update->flags & REF_HAVE_OLD) &&
684 !is_null_oid(&update->old_oid)) {
685 strbuf_addf(err, "cannot update ref '%s': "
686 "reference is missing but expected %s",
688 oid_to_hex(&update->old_oid));
694 /* Pass the old reference through. */
696 struct object_id peeled;
697 int peel_error = ref_iterator_peel(iter, &peeled);
699 if (write_packed_entry(out, iter->refname,
701 peel_error ? NULL : peeled.hash))
704 if ((ok = ref_iterator_advance(iter)) != ITER_OK)
706 } else if (is_null_oid(&update->new_oid)) {
708 * The update wants to delete the reference,
709 * and the reference either didn't exist or we
710 * have already skipped it. So we're done with
711 * the update (and don't have to write
716 struct object_id peeled;
717 int peel_error = peel_object(update->new_oid.hash,
720 if (write_packed_entry(out, update->refname,
721 update->new_oid.hash,
722 peel_error ? NULL : peeled.hash))
729 if (ok != ITER_DONE) {
730 strbuf_addf(err, "unable to write packed-refs file: "
731 "error iterating over old contents");
735 if (close_tempfile(&refs->tempfile)) {
736 strbuf_addf(err, "error closing file %s: %s",
737 get_tempfile_path(&refs->tempfile),
746 strbuf_addf(err, "error writing to %s: %s",
747 get_tempfile_path(&refs->tempfile), strerror(errno));
751 ref_iterator_abort(iter);
753 delete_tempfile(&refs->tempfile);
757 int is_packed_transaction_needed(struct ref_store *ref_store,
758 struct ref_transaction *transaction)
760 struct packed_ref_store *refs = packed_downcast(
763 "is_packed_transaction_needed");
764 struct strbuf referent = STRBUF_INIT;
768 if (!is_lock_file_locked(&refs->lock))
769 BUG("is_packed_transaction_needed() called while unlocked");
772 * We're only going to bother returning false for the common,
773 * trivial case that references are only being deleted, their
774 * old values are not being checked, and the old `packed-refs`
775 * file doesn't contain any of those reference(s). This gives
776 * false positives for some other cases that could
777 * theoretically be optimized away:
779 * 1. It could be that the old value is being verified without
780 * setting a new value. In this case, we could verify the
781 * old value here and skip the update if it agrees. If it
782 * disagrees, we could either let the update go through
783 * (the actual commit would re-detect and report the
784 * problem), or come up with a way of reporting such an
785 * error to *our* caller.
787 * 2. It could be that a new value is being set, but that it
788 * is identical to the current packed value of the
791 * Neither of these cases will come up in the current code,
792 * because the only caller of this function passes to it a
793 * transaction that only includes `delete` updates with no
794 * `old_id`. Even if that ever changes, false positives only
795 * cause an optimization to be missed; they do not affect
800 * Start with the cheap checks that don't require old
801 * reference values to be read:
803 for (i = 0; i < transaction->nr; i++) {
804 struct ref_update *update = transaction->updates[i];
806 if (update->flags & REF_HAVE_OLD)
807 /* Have to check the old value -> needed. */
810 if ((update->flags & REF_HAVE_NEW) && !is_null_oid(&update->new_oid))
811 /* Have to set a new value -> needed. */
816 * The transaction isn't checking any old values nor is it
817 * setting any nonzero new values, so it still might be able
818 * to be skipped. Now do the more expensive check: the update
819 * is needed if any of the updates is a delete, and the old
820 * `packed-refs` file contains a value for that reference.
823 for (i = 0; i < transaction->nr; i++) {
824 struct ref_update *update = transaction->updates[i];
826 struct object_id oid;
828 if (!(update->flags & REF_HAVE_NEW))
830 * This reference isn't being deleted -> not
835 if (!refs_read_raw_ref(ref_store, update->refname,
836 oid.hash, &referent, &type) ||
839 * We have to actually delete that reference
840 * -> this transaction is needed.
847 strbuf_release(&referent);
851 struct packed_transaction_backend_data {
852 /* True iff the transaction owns the packed-refs lock. */
855 struct string_list updates;
858 static void packed_transaction_cleanup(struct packed_ref_store *refs,
859 struct ref_transaction *transaction)
861 struct packed_transaction_backend_data *data = transaction->backend_data;
864 string_list_clear(&data->updates, 0);
866 if (is_tempfile_active(&refs->tempfile))
867 delete_tempfile(&refs->tempfile);
869 if (data->own_lock && is_lock_file_locked(&refs->lock)) {
870 packed_refs_unlock(&refs->base);
875 transaction->backend_data = NULL;
878 transaction->state = REF_TRANSACTION_CLOSED;
881 static int packed_transaction_prepare(struct ref_store *ref_store,
882 struct ref_transaction *transaction,
885 struct packed_ref_store *refs = packed_downcast(
887 REF_STORE_READ | REF_STORE_WRITE | REF_STORE_ODB,
888 "ref_transaction_prepare");
889 struct packed_transaction_backend_data *data;
891 int ret = TRANSACTION_GENERIC_ERROR;
894 * Note that we *don't* skip transactions with zero updates,
895 * because such a transaction might be executed for the side
896 * effect of ensuring that all of the references are peeled.
897 * If the caller wants to optimize away empty transactions, it
898 * should do so itself.
901 data = xcalloc(1, sizeof(*data));
902 string_list_init(&data->updates, 0);
904 transaction->backend_data = data;
907 * Stick the updates in a string list by refname so that we
910 for (i = 0; i < transaction->nr; i++) {
911 struct ref_update *update = transaction->updates[i];
912 struct string_list_item *item =
913 string_list_append(&data->updates, update->refname);
915 /* Store a pointer to update in item->util: */
918 string_list_sort(&data->updates);
920 if (ref_update_reject_duplicates(&data->updates, err))
923 if (!is_lock_file_locked(&refs->lock)) {
924 if (packed_refs_lock(ref_store, 0, err))
929 if (write_with_updates(refs, &data->updates, err))
932 transaction->state = REF_TRANSACTION_PREPARED;
936 packed_transaction_cleanup(refs, transaction);
940 static int packed_transaction_abort(struct ref_store *ref_store,
941 struct ref_transaction *transaction,
944 struct packed_ref_store *refs = packed_downcast(
946 REF_STORE_READ | REF_STORE_WRITE | REF_STORE_ODB,
947 "ref_transaction_abort");
949 packed_transaction_cleanup(refs, transaction);
953 static int packed_transaction_finish(struct ref_store *ref_store,
954 struct ref_transaction *transaction,
957 struct packed_ref_store *refs = packed_downcast(
959 REF_STORE_READ | REF_STORE_WRITE | REF_STORE_ODB,
960 "ref_transaction_finish");
961 int ret = TRANSACTION_GENERIC_ERROR;
962 char *packed_refs_path;
964 packed_refs_path = get_locked_file_path(&refs->lock);
965 if (rename_tempfile(&refs->tempfile, packed_refs_path)) {
966 strbuf_addf(err, "error replacing %s: %s",
967 refs->path, strerror(errno));
971 clear_packed_ref_cache(refs);
975 free(packed_refs_path);
976 packed_transaction_cleanup(refs, transaction);
980 static int packed_initial_transaction_commit(struct ref_store *ref_store,
981 struct ref_transaction *transaction,
984 return ref_transaction_commit(transaction, err);
987 static int packed_delete_refs(struct ref_store *ref_store, const char *msg,
988 struct string_list *refnames, unsigned int flags)
990 struct packed_ref_store *refs =
991 packed_downcast(ref_store, REF_STORE_WRITE, "delete_refs");
992 struct strbuf err = STRBUF_INIT;
993 struct ref_transaction *transaction;
994 struct string_list_item *item;
997 (void)refs; /* We need the check above, but don't use the variable */
1003 * Since we don't check the references' old_oids, the
1004 * individual updates can't fail, so we can pack all of the
1005 * updates into a single transaction.
1008 transaction = ref_store_transaction_begin(ref_store, &err);
1012 for_each_string_list_item(item, refnames) {
1013 if (ref_transaction_delete(transaction, item->string, NULL,
1014 flags, msg, &err)) {
1015 warning(_("could not delete reference %s: %s"),
1016 item->string, err.buf);
1021 ret = ref_transaction_commit(transaction, &err);
1024 if (refnames->nr == 1)
1025 error(_("could not delete reference %s: %s"),
1026 refnames->items[0].string, err.buf);
1028 error(_("could not delete references: %s"), err.buf);
1031 ref_transaction_free(transaction);
1032 strbuf_release(&err);
1036 static int packed_pack_refs(struct ref_store *ref_store, unsigned int flags)
1039 * Packed refs are already packed. It might be that loose refs
1040 * are packed *into* a packed refs store, but that is done by
1041 * updating the packed references via a transaction.
1046 static int packed_create_symref(struct ref_store *ref_store,
1047 const char *refname, const char *target,
1050 die("BUG: packed reference store does not support symrefs");
1053 static int packed_rename_ref(struct ref_store *ref_store,
1054 const char *oldrefname, const char *newrefname,
1057 die("BUG: packed reference store does not support renaming references");
1060 static struct ref_iterator *packed_reflog_iterator_begin(struct ref_store *ref_store)
1062 return empty_ref_iterator_begin();
1065 static int packed_for_each_reflog_ent(struct ref_store *ref_store,
1066 const char *refname,
1067 each_reflog_ent_fn fn, void *cb_data)
1072 static int packed_for_each_reflog_ent_reverse(struct ref_store *ref_store,
1073 const char *refname,
1074 each_reflog_ent_fn fn,
1080 static int packed_reflog_exists(struct ref_store *ref_store,
1081 const char *refname)
1086 static int packed_create_reflog(struct ref_store *ref_store,
1087 const char *refname, int force_create,
1090 die("BUG: packed reference store does not support reflogs");
1093 static int packed_delete_reflog(struct ref_store *ref_store,
1094 const char *refname)
1099 static int packed_reflog_expire(struct ref_store *ref_store,
1100 const char *refname, const unsigned char *sha1,
1102 reflog_expiry_prepare_fn prepare_fn,
1103 reflog_expiry_should_prune_fn should_prune_fn,
1104 reflog_expiry_cleanup_fn cleanup_fn,
1105 void *policy_cb_data)
1110 struct ref_storage_be refs_be_packed = {
1113 packed_ref_store_create,
1115 packed_transaction_prepare,
1116 packed_transaction_finish,
1117 packed_transaction_abort,
1118 packed_initial_transaction_commit,
1122 packed_create_symref,
1126 packed_ref_iterator_begin,
1127 packed_read_raw_ref,
1129 packed_reflog_iterator_begin,
1130 packed_for_each_reflog_ent,
1131 packed_for_each_reflog_ent_reverse,
1132 packed_reflog_exists,
1133 packed_create_reflog,
1134 packed_delete_reflog,
1135 packed_reflog_expire