refs: make create_symref() virtual
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
8231527e15
commit
284689ba0f
9
refs.c
9
refs.c
@ -1428,6 +1428,15 @@ int pack_refs(unsigned int flags)
|
|||||||
return refs->be->pack_refs(refs, flags);
|
return refs->be->pack_refs(refs, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int create_symref(const char *ref_target, const char *refs_heads_master,
|
||||||
|
const char *logmsg)
|
||||||
|
{
|
||||||
|
struct ref_store *refs = get_ref_store(NULL);
|
||||||
|
|
||||||
|
return refs->be->create_symref(refs, ref_target, refs_heads_master,
|
||||||
|
logmsg);
|
||||||
|
}
|
||||||
|
|
||||||
int ref_transaction_commit(struct ref_transaction *transaction,
|
int ref_transaction_commit(struct ref_transaction *transaction,
|
||||||
struct strbuf *err)
|
struct strbuf *err)
|
||||||
{
|
{
|
||||||
|
@ -3011,12 +3011,16 @@ static int create_symref_locked(struct ref_lock *lock, const char *refname,
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int create_symref(const char *refname, const char *target, const char *logmsg)
|
static int files_create_symref(struct ref_store *ref_store,
|
||||||
|
const char *refname, const char *target,
|
||||||
|
const char *logmsg)
|
||||||
{
|
{
|
||||||
struct strbuf err = STRBUF_INIT;
|
struct strbuf err = STRBUF_INIT;
|
||||||
struct ref_lock *lock;
|
struct ref_lock *lock;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
files_downcast(ref_store, 0, "create_symref");
|
||||||
|
|
||||||
lock = lock_ref_sha1_basic(refname, NULL, NULL, NULL, REF_NODEREF, NULL,
|
lock = lock_ref_sha1_basic(refname, NULL, NULL, NULL, REF_NODEREF, NULL,
|
||||||
&err);
|
&err);
|
||||||
if (!lock) {
|
if (!lock) {
|
||||||
@ -4023,6 +4027,7 @@ struct ref_storage_be refs_be_files = {
|
|||||||
files_transaction_commit,
|
files_transaction_commit,
|
||||||
|
|
||||||
files_pack_refs,
|
files_pack_refs,
|
||||||
|
files_create_symref,
|
||||||
|
|
||||||
files_read_raw_ref,
|
files_read_raw_ref,
|
||||||
files_verify_refname_available
|
files_verify_refname_available
|
||||||
|
@ -501,6 +501,10 @@ typedef int ref_transaction_commit_fn(struct ref_store *refs,
|
|||||||
struct strbuf *err);
|
struct strbuf *err);
|
||||||
|
|
||||||
typedef int pack_refs_fn(struct ref_store *ref_store, unsigned int flags);
|
typedef int pack_refs_fn(struct ref_store *ref_store, unsigned int flags);
|
||||||
|
typedef int create_symref_fn(struct ref_store *ref_store,
|
||||||
|
const char *ref_target,
|
||||||
|
const char *refs_heads_master,
|
||||||
|
const char *logmsg);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Read a reference from the specified reference store, non-recursively.
|
* Read a reference from the specified reference store, non-recursively.
|
||||||
@ -557,6 +561,7 @@ struct ref_storage_be {
|
|||||||
ref_transaction_commit_fn *transaction_commit;
|
ref_transaction_commit_fn *transaction_commit;
|
||||||
|
|
||||||
pack_refs_fn *pack_refs;
|
pack_refs_fn *pack_refs;
|
||||||
|
create_symref_fn *create_symref;
|
||||||
|
|
||||||
read_raw_ref_fn *read_raw_ref;
|
read_raw_ref_fn *read_raw_ref;
|
||||||
verify_refname_available_fn *verify_refname_available;
|
verify_refname_available_fn *verify_refname_available;
|
||||||
|
Reference in New Issue
Block a user