2010-04-02 02:07:40 +02:00
|
|
|
#include "cache.h"
|
|
|
|
#include "notes-cache.h"
|
|
|
|
#include "commit.h"
|
|
|
|
#include "refs.h"
|
|
|
|
|
|
|
|
static int notes_cache_match_validity(const char *ref, const char *validity)
|
|
|
|
{
|
2017-05-07 00:09:58 +02:00
|
|
|
struct object_id oid;
|
2010-04-02 02:07:40 +02:00
|
|
|
struct commit *commit;
|
|
|
|
struct pretty_print_context pretty_ctx;
|
|
|
|
struct strbuf msg = STRBUF_INIT;
|
|
|
|
int ret;
|
|
|
|
|
2017-05-07 00:09:58 +02:00
|
|
|
if (read_ref(ref, oid.hash) < 0)
|
2010-04-02 02:07:40 +02:00
|
|
|
return 0;
|
|
|
|
|
Convert lookup_commit* to struct object_id
Convert lookup_commit, lookup_commit_or_die,
lookup_commit_reference, and lookup_commit_reference_gently to take
struct object_id arguments.
Introduce a temporary in parse_object buffer in order to convert this
function. This is required since in order to convert parse_object and
parse_object_buffer, lookup_commit_reference_gently and
lookup_commit_or_die would need to be converted. Not introducing a
temporary would therefore require that lookup_commit_or_die take a
struct object_id *, but lookup_commit would take unsigned char *,
leaving a confusing and hard-to-use interface.
parse_object_buffer will lose this temporary in a later patch.
This commit was created with manual changes to commit.c, commit.h, and
object.c, plus the following semantic patch:
@@
expression E1, E2;
@@
- lookup_commit_reference_gently(E1.hash, E2)
+ lookup_commit_reference_gently(&E1, E2)
@@
expression E1, E2;
@@
- lookup_commit_reference_gently(E1->hash, E2)
+ lookup_commit_reference_gently(E1, E2)
@@
expression E1;
@@
- lookup_commit_reference(E1.hash)
+ lookup_commit_reference(&E1)
@@
expression E1;
@@
- lookup_commit_reference(E1->hash)
+ lookup_commit_reference(E1)
@@
expression E1;
@@
- lookup_commit(E1.hash)
+ lookup_commit(&E1)
@@
expression E1;
@@
- lookup_commit(E1->hash)
+ lookup_commit(E1)
@@
expression E1, E2;
@@
- lookup_commit_or_die(E1.hash, E2)
+ lookup_commit_or_die(&E1, E2)
@@
expression E1, E2;
@@
- lookup_commit_or_die(E1->hash, E2)
+ lookup_commit_or_die(E1, E2)
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2017-05-07 00:10:10 +02:00
|
|
|
commit = lookup_commit_reference_gently(&oid, 1);
|
2010-04-02 02:07:40 +02:00
|
|
|
if (!commit)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
memset(&pretty_ctx, 0, sizeof(pretty_ctx));
|
|
|
|
format_commit_message(commit, "%s", &msg, &pretty_ctx);
|
|
|
|
strbuf_trim(&msg);
|
|
|
|
|
|
|
|
ret = !strcmp(msg.buf, validity);
|
|
|
|
strbuf_release(&msg);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void notes_cache_init(struct notes_cache *c, const char *name,
|
|
|
|
const char *validity)
|
|
|
|
{
|
|
|
|
struct strbuf ref = STRBUF_INIT;
|
2015-10-08 04:54:43 +02:00
|
|
|
int flags = NOTES_INIT_WRITABLE;
|
2010-04-02 02:07:40 +02:00
|
|
|
|
|
|
|
memset(c, 0, sizeof(*c));
|
|
|
|
c->validity = xstrdup(validity);
|
|
|
|
|
|
|
|
strbuf_addf(&ref, "refs/notes/%s", name);
|
|
|
|
if (!notes_cache_match_validity(ref.buf, validity))
|
2015-10-08 04:54:43 +02:00
|
|
|
flags |= NOTES_INIT_EMPTY;
|
2010-04-02 02:07:40 +02:00
|
|
|
init_notes(&c->tree, ref.buf, combine_notes_overwrite, flags);
|
|
|
|
strbuf_release(&ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
int notes_cache_write(struct notes_cache *c)
|
|
|
|
{
|
2017-05-07 00:09:58 +02:00
|
|
|
struct object_id tree_oid, commit_oid;
|
2010-04-02 02:07:40 +02:00
|
|
|
|
2015-10-08 04:54:43 +02:00
|
|
|
if (!c || !c->tree.initialized || !c->tree.update_ref ||
|
|
|
|
!*c->tree.update_ref)
|
2010-04-02 02:07:40 +02:00
|
|
|
return -1;
|
|
|
|
if (!c->tree.dirty)
|
|
|
|
return 0;
|
|
|
|
|
2017-05-07 00:09:58 +02:00
|
|
|
if (write_notes_tree(&c->tree, tree_oid.hash))
|
2010-04-02 02:07:40 +02:00
|
|
|
return -1;
|
2017-05-07 00:09:58 +02:00
|
|
|
if (commit_tree(c->validity, strlen(c->validity), tree_oid.hash, NULL,
|
|
|
|
commit_oid.hash, NULL, NULL) < 0)
|
2010-04-02 02:07:40 +02:00
|
|
|
return -1;
|
2017-05-07 00:09:58 +02:00
|
|
|
if (update_ref("update notes cache", c->tree.update_ref, commit_oid.hash,
|
2015-10-08 04:54:43 +02:00
|
|
|
NULL, 0, UPDATE_REFS_QUIET_ON_ERR) < 0)
|
2010-04-02 02:07:40 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-05-07 00:09:58 +02:00
|
|
|
char *notes_cache_get(struct notes_cache *c, struct object_id *key_oid,
|
2010-04-02 02:07:40 +02:00
|
|
|
size_t *outsize)
|
|
|
|
{
|
2017-05-30 19:30:40 +02:00
|
|
|
const struct object_id *value_oid;
|
2010-04-02 02:07:40 +02:00
|
|
|
enum object_type type;
|
|
|
|
char *value;
|
|
|
|
unsigned long size;
|
|
|
|
|
2017-05-30 19:30:43 +02:00
|
|
|
value_oid = get_note(&c->tree, key_oid);
|
2017-05-30 19:30:40 +02:00
|
|
|
if (!value_oid)
|
2010-04-02 02:07:40 +02:00
|
|
|
return NULL;
|
2017-05-30 19:30:40 +02:00
|
|
|
value = read_sha1_file(value_oid->hash, &type, &size);
|
2010-04-02 02:07:40 +02:00
|
|
|
|
|
|
|
*outsize = size;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2017-05-07 00:09:58 +02:00
|
|
|
int notes_cache_put(struct notes_cache *c, struct object_id *key_oid,
|
2010-04-02 02:07:40 +02:00
|
|
|
const char *data, size_t size)
|
|
|
|
{
|
2017-05-07 00:09:58 +02:00
|
|
|
struct object_id value_oid;
|
2010-04-02 02:07:40 +02:00
|
|
|
|
2017-05-07 00:09:58 +02:00
|
|
|
if (write_sha1_file(data, size, "blob", value_oid.hash) < 0)
|
2010-04-02 02:07:40 +02:00
|
|
|
return -1;
|
2017-05-30 19:30:43 +02:00
|
|
|
return add_note(&c->tree, key_oid, &value_oid, NULL);
|
2010-04-02 02:07:40 +02:00
|
|
|
}
|