]> git.ipfire.org Git - thirdparty/git.git/blame - notes-cache.c
Eleventh batch
[thirdparty/git.git] / notes-cache.c
CommitLineData
a941d5e3
JK
1#include "cache.h"
2#include "notes-cache.h"
cbd53a21 3#include "object-store.h"
21e1ee8f 4#include "repository.h"
a941d5e3
JK
5#include "commit.h"
6#include "refs.h"
7
bd7ad45b
NTND
8static int notes_cache_match_validity(struct repository *r,
9 const char *ref,
10 const char *validity)
a941d5e3 11{
569aa376 12 struct object_id oid;
a941d5e3
JK
13 struct commit *commit;
14 struct pretty_print_context pretty_ctx;
15 struct strbuf msg = STRBUF_INIT;
16 int ret;
17
34c290a6 18 if (read_ref(ref, &oid) < 0)
a941d5e3
JK
19 return 0;
20
bd7ad45b 21 commit = lookup_commit_reference_gently(r, &oid, 1);
a941d5e3
JK
22 if (!commit)
23 return 0;
24
25 memset(&pretty_ctx, 0, sizeof(pretty_ctx));
26 format_commit_message(commit, "%s", &msg, &pretty_ctx);
27 strbuf_trim(&msg);
28
29 ret = !strcmp(msg.buf, validity);
30 strbuf_release(&msg);
31
32 return ret;
33}
34
bd7ad45b
NTND
35void notes_cache_init(struct repository *r, struct notes_cache *c,
36 const char *name, const char *validity)
a941d5e3
JK
37{
38 struct strbuf ref = STRBUF_INIT;
ee76f92f 39 int flags = NOTES_INIT_WRITABLE;
a941d5e3
JK
40
41 memset(c, 0, sizeof(*c));
42 c->validity = xstrdup(validity);
43
44 strbuf_addf(&ref, "refs/notes/%s", name);
bd7ad45b 45 if (!notes_cache_match_validity(r, ref.buf, validity))
ee76f92f 46 flags |= NOTES_INIT_EMPTY;
a941d5e3
JK
47 init_notes(&c->tree, ref.buf, combine_notes_overwrite, flags);
48 strbuf_release(&ref);
49}
50
51int notes_cache_write(struct notes_cache *c)
52{
569aa376 53 struct object_id tree_oid, commit_oid;
a941d5e3 54
ee76f92f
MH
55 if (!c || !c->tree.initialized || !c->tree.update_ref ||
56 !*c->tree.update_ref)
a941d5e3
JK
57 return -1;
58 if (!c->tree.dirty)
59 return 0;
60
bbca96d5 61 if (write_notes_tree(&c->tree, &tree_oid))
a941d5e3 62 return -1;
5078f344
PO
63 if (commit_tree(c->validity, strlen(c->validity), &tree_oid, NULL,
64 &commit_oid, NULL, NULL) < 0)
a941d5e3 65 return -1;
ae077771 66 if (update_ref("update notes cache", c->tree.update_ref, &commit_oid,
ee76f92f 67 NULL, 0, UPDATE_REFS_QUIET_ON_ERR) < 0)
a941d5e3
JK
68 return -1;
69
70 return 0;
71}
72
569aa376 73char *notes_cache_get(struct notes_cache *c, struct object_id *key_oid,
a941d5e3
JK
74 size_t *outsize)
75{
9ef72230 76 const struct object_id *value_oid;
a941d5e3
JK
77 enum object_type type;
78 char *value;
79 unsigned long size;
80
5ee8a954 81 value_oid = get_note(&c->tree, key_oid);
9ef72230 82 if (!value_oid)
a941d5e3 83 return NULL;
b4f5aca4 84 value = read_object_file(value_oid, &type, &size);
a941d5e3
JK
85
86 *outsize = size;
87 return value;
88}
89
569aa376 90int notes_cache_put(struct notes_cache *c, struct object_id *key_oid,
a941d5e3
JK
91 const char *data, size_t size)
92{
569aa376 93 struct object_id value_oid;
a941d5e3 94
a09c985e 95 if (write_object_file(data, size, "blob", &value_oid) < 0)
a941d5e3 96 return -1;
5ee8a954 97 return add_note(&c->tree, key_oid, &value_oid, NULL);
a941d5e3 98}