]> git.ipfire.org Git - thirdparty/git.git/blame - notes.c
Merge git://git.bogomips.org/git-svn
[thirdparty/git.git] / notes.c
CommitLineData
a97a7468 1#include "cache.h"
a97a7468 2#include "notes.h"
73f464b5 3#include "blob.h"
61a7cca0 4#include "tree.h"
a97a7468
JS
5#include "utf8.h"
6#include "strbuf.h"
fd53c9eb 7#include "tree-walk.h"
894a9d33
TR
8#include "string-list.h"
9#include "refs.h"
fd53c9eb 10
23123aec
JH
11/*
12 * Use a non-balancing simple 16-tree structure with struct int_node as
13 * internal nodes, and struct leaf_node as leaf nodes. Each int_node has a
14 * 16-array of pointers to its children.
15 * The bottom 2 bits of each pointer is used to identify the pointer type
16 * - ptr & 3 == 0 - NULL pointer, assert(ptr == NULL)
17 * - ptr & 3 == 1 - pointer to next internal node - cast to struct int_node *
18 * - ptr & 3 == 2 - pointer to note entry - cast to struct leaf_node *
19 * - ptr & 3 == 3 - pointer to subtree entry - cast to struct leaf_node *
20 *
21 * The root node is a statically allocated struct int_node.
22 */
23struct int_node {
24 void *a[16];
fd53c9eb
JS
25};
26
23123aec
JH
27/*
28 * Leaf nodes come in two variants, note entries and subtree entries,
29 * distinguished by the LSb of the leaf node pointer (see above).
a7e7eff6 30 * As a note entry, the key is the SHA1 of the referenced object, and the
23123aec
JH
31 * value is the SHA1 of the note object.
32 * As a subtree entry, the key is the prefix SHA1 (w/trailing NULs) of the
a7e7eff6 33 * referenced object, using the last byte of the key to store the length of
23123aec
JH
34 * the prefix. The value is the SHA1 of the tree object containing the notes
35 * subtree.
36 */
37struct leaf_node {
38 unsigned char key_sha1[20];
39 unsigned char val_sha1[20];
fd53c9eb 40};
a97a7468 41
851c2b37
JH
42/*
43 * A notes tree may contain entries that are not notes, and that do not follow
44 * the naming conventions of notes. There are typically none/few of these, but
45 * we still need to keep track of them. Keep a simple linked list sorted alpha-
46 * betically on the non-note path. The list is populated when parsing tree
47 * objects in load_subtree(), and the non-notes are correctly written back into
48 * the tree objects produced by write_notes_tree().
49 */
50struct non_note {
51 struct non_note *next; /* grounded (last->next == NULL) */
52 char *path;
53 unsigned int mode;
54 unsigned char sha1[20];
55};
56
23123aec
JH
57#define PTR_TYPE_NULL 0
58#define PTR_TYPE_INTERNAL 1
59#define PTR_TYPE_NOTE 2
60#define PTR_TYPE_SUBTREE 3
fd53c9eb 61
23123aec
JH
62#define GET_PTR_TYPE(ptr) ((uintptr_t) (ptr) & 3)
63#define CLR_PTR_TYPE(ptr) ((void *) ((uintptr_t) (ptr) & ~3))
64#define SET_PTR_TYPE(ptr, type) ((void *) ((uintptr_t) (ptr) | (type)))
fd53c9eb 65
1ec666b0 66#define GET_NIBBLE(n, sha1) (((sha1[(n) >> 1]) >> ((~(n) & 0x01) << 2)) & 0x0f)
fd53c9eb 67
23123aec
JH
68#define SUBTREE_SHA1_PREFIXCMP(key_sha1, subtree_sha1) \
69 (memcmp(key_sha1, subtree_sha1, subtree_sha1[19]))
fd53c9eb 70
cd305392 71struct notes_tree default_notes_tree;
23123aec 72
894a9d33
TR
73static struct string_list display_notes_refs;
74static struct notes_tree **display_notes_trees;
75
851c2b37
JH
76static void load_subtree(struct notes_tree *t, struct leaf_node *subtree,
77 struct int_node *node, unsigned int n);
23123aec
JH
78
79/*
ef8db638 80 * Search the tree until the appropriate location for the given key is found:
23123aec 81 * 1. Start at the root node, with n = 0
ef8db638
JH
82 * 2. If a[0] at the current level is a matching subtree entry, unpack that
83 * subtree entry and remove it; restart search at the current level.
84 * 3. Use the nth nibble of the key as an index into a:
85 * - If a[n] is an int_node, recurse from #2 into that node and increment n
23123aec
JH
86 * - If a matching subtree entry, unpack that subtree entry (and remove it);
87 * restart search at the current level.
ef8db638
JH
88 * - Otherwise, we have found one of the following:
89 * - a subtree entry which does not match the key
90 * - a note entry which may or may not match the key
91 * - an unused leaf node (NULL)
92 * In any case, set *tree and *n, and return pointer to the tree location.
23123aec 93 */
851c2b37 94static void **note_tree_search(struct notes_tree *t, struct int_node **tree,
ef8db638 95 unsigned char *n, const unsigned char *key_sha1)
23123aec
JH
96{
97 struct leaf_node *l;
ef8db638
JH
98 unsigned char i;
99 void *p = (*tree)->a[0];
23123aec 100
ef8db638
JH
101 if (GET_PTR_TYPE(p) == PTR_TYPE_SUBTREE) {
102 l = (struct leaf_node *) CLR_PTR_TYPE(p);
103 if (!SUBTREE_SHA1_PREFIXCMP(key_sha1, l->key_sha1)) {
104 /* unpack tree and resume search */
105 (*tree)->a[0] = NULL;
851c2b37 106 load_subtree(t, l, *tree, *n);
ef8db638 107 free(l);
851c2b37 108 return note_tree_search(t, tree, n, key_sha1);
ef8db638
JH
109 }
110 }
111
112 i = GET_NIBBLE(*n, key_sha1);
113 p = (*tree)->a[i];
0ab1faae 114 switch (GET_PTR_TYPE(p)) {
23123aec 115 case PTR_TYPE_INTERNAL:
ef8db638
JH
116 *tree = CLR_PTR_TYPE(p);
117 (*n)++;
851c2b37 118 return note_tree_search(t, tree, n, key_sha1);
23123aec
JH
119 case PTR_TYPE_SUBTREE:
120 l = (struct leaf_node *) CLR_PTR_TYPE(p);
121 if (!SUBTREE_SHA1_PREFIXCMP(key_sha1, l->key_sha1)) {
122 /* unpack tree and resume search */
ef8db638 123 (*tree)->a[i] = NULL;
851c2b37 124 load_subtree(t, l, *tree, *n);
23123aec 125 free(l);
851c2b37 126 return note_tree_search(t, tree, n, key_sha1);
23123aec 127 }
ef8db638 128 /* fall through */
23123aec 129 default:
ef8db638 130 return &((*tree)->a[i]);
fd53c9eb 131 }
ef8db638 132}
23123aec 133
ef8db638
JH
134/*
135 * To find a leaf_node:
136 * Search to the tree location appropriate for the given key:
137 * If a note entry with matching key, return the note entry, else return NULL.
138 */
851c2b37
JH
139static struct leaf_node *note_tree_find(struct notes_tree *t,
140 struct int_node *tree, unsigned char n,
ef8db638
JH
141 const unsigned char *key_sha1)
142{
851c2b37 143 void **p = note_tree_search(t, &tree, &n, key_sha1);
ef8db638
JH
144 if (GET_PTR_TYPE(*p) == PTR_TYPE_NOTE) {
145 struct leaf_node *l = (struct leaf_node *) CLR_PTR_TYPE(*p);
146 if (!hashcmp(key_sha1, l->key_sha1))
147 return l;
23123aec
JH
148 }
149 return NULL;
fd53c9eb
JS
150}
151
1ec666b0
JH
152/*
153 * How to consolidate an int_node:
154 * If there are > 1 non-NULL entries, give up and return non-zero.
155 * Otherwise replace the int_node at the given index in the given parent node
156 * with the only entry (or a NULL entry if no entries) from the given tree,
157 * and return 0.
158 */
159static int note_tree_consolidate(struct int_node *tree,
160 struct int_node *parent, unsigned char index)
161{
162 unsigned int i;
163 void *p = NULL;
164
165 assert(tree && parent);
166 assert(CLR_PTR_TYPE(parent->a[index]) == tree);
167
168 for (i = 0; i < 16; i++) {
169 if (GET_PTR_TYPE(tree->a[i]) != PTR_TYPE_NULL) {
170 if (p) /* more than one entry */
171 return -2;
172 p = tree->a[i];
173 }
174 }
175
176 /* replace tree with p in parent[index] */
177 parent->a[index] = p;
178 free(tree);
179 return 0;
180}
181
182/*
183 * To remove a leaf_node:
184 * Search to the tree location appropriate for the given leaf_node's key:
185 * - If location does not hold a matching entry, abort and do nothing.
1ee1e43d 186 * - Copy the matching entry's value into the given entry.
1ec666b0
JH
187 * - Replace the matching leaf_node with a NULL entry (and free the leaf_node).
188 * - Consolidate int_nodes repeatedly, while walking up the tree towards root.
189 */
1ee1e43d
JH
190static void note_tree_remove(struct notes_tree *t,
191 struct int_node *tree, unsigned char n,
192 struct leaf_node *entry)
1ec666b0
JH
193{
194 struct leaf_node *l;
195 struct int_node *parent_stack[20];
196 unsigned char i, j;
851c2b37 197 void **p = note_tree_search(t, &tree, &n, entry->key_sha1);
1ec666b0
JH
198
199 assert(GET_PTR_TYPE(entry) == 0); /* no type bits set */
200 if (GET_PTR_TYPE(*p) != PTR_TYPE_NOTE)
201 return; /* type mismatch, nothing to remove */
202 l = (struct leaf_node *) CLR_PTR_TYPE(*p);
203 if (hashcmp(l->key_sha1, entry->key_sha1))
204 return; /* key mismatch, nothing to remove */
205
206 /* we have found a matching entry */
1ee1e43d 207 hashcpy(entry->val_sha1, l->val_sha1);
1ec666b0
JH
208 free(l);
209 *p = SET_PTR_TYPE(NULL, PTR_TYPE_NULL);
210
211 /* consolidate this tree level, and parent levels, if possible */
212 if (!n)
213 return; /* cannot consolidate top level */
214 /* first, build stack of ancestors between root and current node */
cd305392 215 parent_stack[0] = t->root;
1ec666b0
JH
216 for (i = 0; i < n; i++) {
217 j = GET_NIBBLE(i, entry->key_sha1);
218 parent_stack[i + 1] = CLR_PTR_TYPE(parent_stack[i]->a[j]);
219 }
220 assert(i == n && parent_stack[i] == tree);
221 /* next, unwind stack until note_tree_consolidate() is done */
222 while (i > 0 &&
223 !note_tree_consolidate(parent_stack[i], parent_stack[i - 1],
224 GET_NIBBLE(i - 1, entry->key_sha1)))
225 i--;
226}
227
23123aec
JH
228/*
229 * To insert a leaf_node:
ef8db638
JH
230 * Search to the tree location appropriate for the given leaf_node's key:
231 * - If location is unused (NULL), store the tweaked pointer directly there
232 * - If location holds a note entry that matches the note-to-be-inserted, then
73f464b5 233 * combine the two notes (by calling the given combine_notes function).
ef8db638
JH
234 * - If location holds a note entry that matches the subtree-to-be-inserted,
235 * then unpack the subtree-to-be-inserted into the location.
236 * - If location holds a matching subtree entry, unpack the subtree at that
237 * location, and restart the insert operation from that level.
238 * - Else, create a new int_node, holding both the node-at-location and the
239 * node-to-be-inserted, and store the new int_node into the location.
23123aec 240 */
180619a5 241static int note_tree_insert(struct notes_tree *t, struct int_node *tree,
851c2b37 242 unsigned char n, struct leaf_node *entry, unsigned char type,
73f464b5 243 combine_notes_fn combine_notes)
fd53c9eb 244{
23123aec 245 struct int_node *new_node;
ef8db638 246 struct leaf_node *l;
851c2b37 247 void **p = note_tree_search(t, &tree, &n, entry->key_sha1);
180619a5 248 int ret = 0;
ef8db638
JH
249
250 assert(GET_PTR_TYPE(entry) == 0); /* no type bits set */
251 l = (struct leaf_node *) CLR_PTR_TYPE(*p);
0ab1faae 252 switch (GET_PTR_TYPE(*p)) {
23123aec 253 case PTR_TYPE_NULL:
ef8db638 254 assert(!*p);
e2656c82
JH
255 if (is_null_sha1(entry->val_sha1))
256 free(entry);
257 else
258 *p = SET_PTR_TYPE(entry, type);
180619a5 259 return 0;
ef8db638
JH
260 case PTR_TYPE_NOTE:
261 switch (type) {
262 case PTR_TYPE_NOTE:
263 if (!hashcmp(l->key_sha1, entry->key_sha1)) {
264 /* skip concatenation if l == entry */
265 if (!hashcmp(l->val_sha1, entry->val_sha1))
180619a5 266 return 0;
ef8db638 267
180619a5
JH
268 ret = combine_notes(l->val_sha1,
269 entry->val_sha1);
270 if (!ret && is_null_sha1(l->val_sha1))
e2656c82 271 note_tree_remove(t, tree, n, entry);
ef8db638 272 free(entry);
180619a5 273 return ret;
ef8db638
JH
274 }
275 break;
276 case PTR_TYPE_SUBTREE:
277 if (!SUBTREE_SHA1_PREFIXCMP(l->key_sha1,
278 entry->key_sha1)) {
279 /* unpack 'entry' */
851c2b37 280 load_subtree(t, entry, tree, n);
ef8db638 281 free(entry);
180619a5 282 return 0;
ef8db638
JH
283 }
284 break;
285 }
286 break;
287 case PTR_TYPE_SUBTREE:
288 if (!SUBTREE_SHA1_PREFIXCMP(entry->key_sha1, l->key_sha1)) {
289 /* unpack 'l' and restart insert */
290 *p = NULL;
851c2b37 291 load_subtree(t, l, tree, n);
ef8db638 292 free(l);
180619a5
JH
293 return note_tree_insert(t, tree, n, entry, type,
294 combine_notes);
23123aec 295 }
ef8db638 296 break;
fd53c9eb 297 }
ef8db638
JH
298
299 /* non-matching leaf_node */
300 assert(GET_PTR_TYPE(*p) == PTR_TYPE_NOTE ||
301 GET_PTR_TYPE(*p) == PTR_TYPE_SUBTREE);
e2656c82
JH
302 if (is_null_sha1(entry->val_sha1)) { /* skip insertion of empty note */
303 free(entry);
180619a5 304 return 0;
e2656c82 305 }
ef8db638 306 new_node = (struct int_node *) xcalloc(sizeof(struct int_node), 1);
180619a5
JH
307 ret = note_tree_insert(t, new_node, n + 1, l, GET_PTR_TYPE(*p),
308 combine_notes);
309 if (ret)
310 return ret;
ef8db638 311 *p = SET_PTR_TYPE(new_node, PTR_TYPE_INTERNAL);
180619a5 312 return note_tree_insert(t, new_node, n + 1, entry, type, combine_notes);
23123aec 313}
fd53c9eb 314
23123aec
JH
315/* Free the entire notes data contained in the given tree */
316static void note_tree_free(struct int_node *tree)
317{
318 unsigned int i;
319 for (i = 0; i < 16; i++) {
320 void *p = tree->a[i];
0ab1faae 321 switch (GET_PTR_TYPE(p)) {
23123aec
JH
322 case PTR_TYPE_INTERNAL:
323 note_tree_free(CLR_PTR_TYPE(p));
324 /* fall through */
325 case PTR_TYPE_NOTE:
326 case PTR_TYPE_SUBTREE:
327 free(CLR_PTR_TYPE(p));
328 }
fd53c9eb 329 }
23123aec 330}
fd53c9eb 331
23123aec
JH
332/*
333 * Convert a partial SHA1 hex string to the corresponding partial SHA1 value.
334 * - hex - Partial SHA1 segment in ASCII hex format
335 * - hex_len - Length of above segment. Must be multiple of 2 between 0 and 40
336 * - sha1 - Partial SHA1 value is written here
337 * - sha1_len - Max #bytes to store in sha1, Must be >= hex_len / 2, and < 20
0ab1faae 338 * Returns -1 on error (invalid arguments or invalid SHA1 (not in hex format)).
23123aec
JH
339 * Otherwise, returns number of bytes written to sha1 (i.e. hex_len / 2).
340 * Pads sha1 with NULs up to sha1_len (not included in returned length).
341 */
342static int get_sha1_hex_segment(const char *hex, unsigned int hex_len,
343 unsigned char *sha1, unsigned int sha1_len)
344{
345 unsigned int i, len = hex_len >> 1;
346 if (hex_len % 2 != 0 || len > sha1_len)
347 return -1;
348 for (i = 0; i < len; i++) {
349 unsigned int val = (hexval(hex[0]) << 4) | hexval(hex[1]);
350 if (val & ~0xff)
351 return -1;
352 *sha1++ = val;
353 hex += 2;
354 }
355 for (; i < sha1_len; i++)
356 *sha1++ = 0;
357 return len;
fd53c9eb
JS
358}
359
851c2b37
JH
360static int non_note_cmp(const struct non_note *a, const struct non_note *b)
361{
362 return strcmp(a->path, b->path);
363}
364
365static void add_non_note(struct notes_tree *t, const char *path,
366 unsigned int mode, const unsigned char *sha1)
367{
368 struct non_note *p = t->prev_non_note, *n;
369 n = (struct non_note *) xmalloc(sizeof(struct non_note));
370 n->next = NULL;
371 n->path = xstrdup(path);
372 n->mode = mode;
373 hashcpy(n->sha1, sha1);
374 t->prev_non_note = n;
375
376 if (!t->first_non_note) {
377 t->first_non_note = n;
378 return;
379 }
380
381 if (non_note_cmp(p, n) < 0)
382 ; /* do nothing */
383 else if (non_note_cmp(t->first_non_note, n) <= 0)
384 p = t->first_non_note;
385 else {
386 /* n sorts before t->first_non_note */
387 n->next = t->first_non_note;
388 t->first_non_note = n;
389 return;
390 }
391
392 /* n sorts equal or after p */
393 while (p->next && non_note_cmp(p->next, n) <= 0)
394 p = p->next;
395
396 if (non_note_cmp(p, n) == 0) { /* n ~= p; overwrite p with n */
397 assert(strcmp(p->path, n->path) == 0);
398 p->mode = n->mode;
399 hashcpy(p->sha1, n->sha1);
400 free(n);
401 t->prev_non_note = p;
402 return;
403 }
404
405 /* n sorts between p and p->next */
406 n->next = p->next;
407 p->next = n;
408}
409
410static void load_subtree(struct notes_tree *t, struct leaf_node *subtree,
411 struct int_node *node, unsigned int n)
fd53c9eb 412{
a7e7eff6 413 unsigned char object_sha1[20];
23123aec 414 unsigned int prefix_len;
23123aec 415 void *buf;
fd53c9eb
JS
416 struct tree_desc desc;
417 struct name_entry entry;
851c2b37
JH
418 int len, path_len;
419 unsigned char type;
420 struct leaf_node *l;
23123aec
JH
421
422 buf = fill_tree_descriptor(&desc, subtree->val_sha1);
423 if (!buf)
424 die("Could not read %s for notes-index",
425 sha1_to_hex(subtree->val_sha1));
426
427 prefix_len = subtree->key_sha1[19];
428 assert(prefix_len * 2 >= n);
a7e7eff6 429 memcpy(object_sha1, subtree->key_sha1, prefix_len);
23123aec 430 while (tree_entry(&desc, &entry)) {
851c2b37
JH
431 path_len = strlen(entry.path);
432 len = get_sha1_hex_segment(entry.path, path_len,
a7e7eff6 433 object_sha1 + prefix_len, 20 - prefix_len);
23123aec 434 if (len < 0)
851c2b37 435 goto handle_non_note; /* entry.path is not a SHA1 */
23123aec
JH
436 len += prefix_len;
437
438 /*
a7e7eff6 439 * If object SHA1 is complete (len == 20), assume note object
851c2b37
JH
440 * If object SHA1 is incomplete (len < 20), and current
441 * component consists of 2 hex chars, assume note subtree
23123aec
JH
442 */
443 if (len <= 20) {
851c2b37
JH
444 type = PTR_TYPE_NOTE;
445 l = (struct leaf_node *)
23123aec 446 xcalloc(sizeof(struct leaf_node), 1);
a7e7eff6 447 hashcpy(l->key_sha1, object_sha1);
23123aec
JH
448 hashcpy(l->val_sha1, entry.sha1);
449 if (len < 20) {
851c2b37
JH
450 if (!S_ISDIR(entry.mode) || path_len != 2)
451 goto handle_non_note; /* not subtree */
23123aec
JH
452 l->key_sha1[19] = (unsigned char) len;
453 type = PTR_TYPE_SUBTREE;
454 }
180619a5
JH
455 if (note_tree_insert(t, node, n, l, type,
456 combine_notes_concatenate))
457 die("Failed to load %s %s into notes tree "
458 "from %s",
459 type == PTR_TYPE_NOTE ? "note" : "subtree",
460 sha1_to_hex(l->key_sha1), t->ref);
23123aec 461 }
851c2b37
JH
462 continue;
463
464handle_non_note:
465 /*
466 * Determine full path for this non-note entry:
467 * The filename is already found in entry.path, but the
468 * directory part of the path must be deduced from the subtree
469 * containing this entry. We assume here that the overall notes
470 * tree follows a strict byte-based progressive fanout
471 * structure (i.e. using 2/38, 2/2/36, etc. fanouts, and not
472 * e.g. 4/36 fanout). This means that if a non-note is found at
473 * path "dead/beef", the following code will register it as
474 * being found on "de/ad/beef".
475 * On the other hand, if you use such non-obvious non-note
476 * paths in the middle of a notes tree, you deserve what's
477 * coming to you ;). Note that for non-notes that are not
478 * SHA1-like at the top level, there will be no problems.
479 *
480 * To conclude, it is strongly advised to make sure non-notes
481 * have at least one non-hex character in the top-level path
482 * component.
483 */
484 {
485 char non_note_path[PATH_MAX];
486 char *p = non_note_path;
487 const char *q = sha1_to_hex(subtree->key_sha1);
488 int i;
489 for (i = 0; i < prefix_len; i++) {
490 *p++ = *q++;
491 *p++ = *q++;
492 *p++ = '/';
493 }
494 strcpy(p, entry.path);
495 add_non_note(t, non_note_path, entry.mode, entry.sha1);
496 }
23123aec
JH
497 }
498 free(buf);
499}
500
73f77b90
JH
501/*
502 * Determine optimal on-disk fanout for this part of the notes tree
503 *
504 * Given a (sub)tree and the level in the internal tree structure, determine
505 * whether or not the given existing fanout should be expanded for this
506 * (sub)tree.
507 *
508 * Values of the 'fanout' variable:
509 * - 0: No fanout (all notes are stored directly in the root notes tree)
510 * - 1: 2/38 fanout
511 * - 2: 2/2/36 fanout
512 * - 3: 2/2/2/34 fanout
513 * etc.
514 */
515static unsigned char determine_fanout(struct int_node *tree, unsigned char n,
516 unsigned char fanout)
517{
518 /*
519 * The following is a simple heuristic that works well in practice:
520 * For each even-numbered 16-tree level (remember that each on-disk
521 * fanout level corresponds to _two_ 16-tree levels), peek at all 16
522 * entries at that tree level. If all of them are either int_nodes or
523 * subtree entries, then there are likely plenty of notes below this
524 * level, so we return an incremented fanout.
525 */
526 unsigned int i;
527 if ((n % 2) || (n > 2 * fanout))
528 return fanout;
529 for (i = 0; i < 16; i++) {
530 switch (GET_PTR_TYPE(tree->a[i])) {
531 case PTR_TYPE_SUBTREE:
532 case PTR_TYPE_INTERNAL:
533 continue;
534 default:
535 return fanout;
536 }
537 }
538 return fanout + 1;
539}
540
541static void construct_path_with_fanout(const unsigned char *sha1,
542 unsigned char fanout, char *path)
543{
544 unsigned int i = 0, j = 0;
545 const char *hex_sha1 = sha1_to_hex(sha1);
546 assert(fanout < 20);
547 while (fanout) {
548 path[i++] = hex_sha1[j++];
549 path[i++] = hex_sha1[j++];
550 path[i++] = '/';
551 fanout--;
552 }
553 strcpy(path + i, hex_sha1 + j);
554}
555
851c2b37
JH
556static int for_each_note_helper(struct notes_tree *t, struct int_node *tree,
557 unsigned char n, unsigned char fanout, int flags,
558 each_note_fn fn, void *cb_data)
73f77b90
JH
559{
560 unsigned int i;
561 void *p;
562 int ret = 0;
563 struct leaf_node *l;
564 static char path[40 + 19 + 1]; /* hex SHA1 + 19 * '/' + NUL */
565
566 fanout = determine_fanout(tree, n, fanout);
567 for (i = 0; i < 16; i++) {
568redo:
569 p = tree->a[i];
570 switch (GET_PTR_TYPE(p)) {
571 case PTR_TYPE_INTERNAL:
572 /* recurse into int_node */
851c2b37 573 ret = for_each_note_helper(t, CLR_PTR_TYPE(p), n + 1,
73f77b90
JH
574 fanout, flags, fn, cb_data);
575 break;
576 case PTR_TYPE_SUBTREE:
577 l = (struct leaf_node *) CLR_PTR_TYPE(p);
578 /*
579 * Subtree entries in the note tree represent parts of
580 * the note tree that have not yet been explored. There
581 * is a direct relationship between subtree entries at
582 * level 'n' in the tree, and the 'fanout' variable:
583 * Subtree entries at level 'n <= 2 * fanout' should be
584 * preserved, since they correspond exactly to a fanout
585 * directory in the on-disk structure. However, subtree
586 * entries at level 'n > 2 * fanout' should NOT be
587 * preserved, but rather consolidated into the above
588 * notes tree level. We achieve this by unconditionally
589 * unpacking subtree entries that exist below the
590 * threshold level at 'n = 2 * fanout'.
591 */
592 if (n <= 2 * fanout &&
593 flags & FOR_EACH_NOTE_YIELD_SUBTREES) {
594 /* invoke callback with subtree */
595 unsigned int path_len =
596 l->key_sha1[19] * 2 + fanout;
597 assert(path_len < 40 + 19);
598 construct_path_with_fanout(l->key_sha1, fanout,
599 path);
600 /* Create trailing slash, if needed */
601 if (path[path_len - 1] != '/')
602 path[path_len++] = '/';
603 path[path_len] = '\0';
604 ret = fn(l->key_sha1, l->val_sha1, path,
605 cb_data);
606 }
607 if (n > fanout * 2 ||
608 !(flags & FOR_EACH_NOTE_DONT_UNPACK_SUBTREES)) {
609 /* unpack subtree and resume traversal */
610 tree->a[i] = NULL;
851c2b37 611 load_subtree(t, l, tree, n);
73f77b90
JH
612 free(l);
613 goto redo;
614 }
615 break;
616 case PTR_TYPE_NOTE:
617 l = (struct leaf_node *) CLR_PTR_TYPE(p);
618 construct_path_with_fanout(l->key_sha1, fanout, path);
619 ret = fn(l->key_sha1, l->val_sha1, path, cb_data);
620 break;
621 }
622 if (ret)
623 return ret;
624 }
625 return 0;
626}
627
61a7cca0
JH
628struct tree_write_stack {
629 struct tree_write_stack *next;
630 struct strbuf buf;
631 char path[2]; /* path to subtree in next, if any */
632};
633
634static inline int matches_tree_write_stack(struct tree_write_stack *tws,
635 const char *full_path)
636{
637 return full_path[0] == tws->path[0] &&
638 full_path[1] == tws->path[1] &&
639 full_path[2] == '/';
640}
641
642static void write_tree_entry(struct strbuf *buf, unsigned int mode,
643 const char *path, unsigned int path_len, const
644 unsigned char *sha1)
645{
c88f0cc7
JH
646 strbuf_addf(buf, "%o %.*s%c", mode, path_len, path, '\0');
647 strbuf_add(buf, sha1, 20);
61a7cca0
JH
648}
649
650static void tree_write_stack_init_subtree(struct tree_write_stack *tws,
651 const char *path)
652{
653 struct tree_write_stack *n;
654 assert(!tws->next);
655 assert(tws->path[0] == '\0' && tws->path[1] == '\0');
656 n = (struct tree_write_stack *)
657 xmalloc(sizeof(struct tree_write_stack));
658 n->next = NULL;
659 strbuf_init(&n->buf, 256 * (32 + 40)); /* assume 256 entries per tree */
660 n->path[0] = n->path[1] = '\0';
661 tws->next = n;
662 tws->path[0] = path[0];
663 tws->path[1] = path[1];
664}
665
666static int tree_write_stack_finish_subtree(struct tree_write_stack *tws)
667{
668 int ret;
669 struct tree_write_stack *n = tws->next;
670 unsigned char s[20];
671 if (n) {
672 ret = tree_write_stack_finish_subtree(n);
673 if (ret)
674 return ret;
675 ret = write_sha1_file(n->buf.buf, n->buf.len, tree_type, s);
676 if (ret)
677 return ret;
678 strbuf_release(&n->buf);
679 free(n);
680 tws->next = NULL;
681 write_tree_entry(&tws->buf, 040000, tws->path, 2, s);
682 tws->path[0] = tws->path[1] = '\0';
683 }
684 return 0;
685}
686
687static int write_each_note_helper(struct tree_write_stack *tws,
688 const char *path, unsigned int mode,
689 const unsigned char *sha1)
690{
691 size_t path_len = strlen(path);
692 unsigned int n = 0;
693 int ret;
694
695 /* Determine common part of tree write stack */
696 while (tws && 3 * n < path_len &&
697 matches_tree_write_stack(tws, path + 3 * n)) {
698 n++;
699 tws = tws->next;
700 }
701
702 /* tws point to last matching tree_write_stack entry */
703 ret = tree_write_stack_finish_subtree(tws);
704 if (ret)
705 return ret;
706
707 /* Start subtrees needed to satisfy path */
708 while (3 * n + 2 < path_len && path[3 * n + 2] == '/') {
709 tree_write_stack_init_subtree(tws, path + 3 * n);
710 n++;
711 tws = tws->next;
712 }
713
714 /* There should be no more directory components in the given path */
715 assert(memchr(path + 3 * n, '/', path_len - (3 * n)) == NULL);
716
717 /* Finally add given entry to the current tree object */
718 write_tree_entry(&tws->buf, mode, path + 3 * n, path_len - (3 * n),
719 sha1);
720
721 return 0;
722}
723
724struct write_each_note_data {
725 struct tree_write_stack *root;
851c2b37 726 struct non_note *next_non_note;
61a7cca0
JH
727};
728
851c2b37
JH
729static int write_each_non_note_until(const char *note_path,
730 struct write_each_note_data *d)
731{
732 struct non_note *n = d->next_non_note;
89fe121d 733 int cmp = 0, ret;
851c2b37
JH
734 while (n && (!note_path || (cmp = strcmp(n->path, note_path)) <= 0)) {
735 if (note_path && cmp == 0)
736 ; /* do nothing, prefer note to non-note */
737 else {
738 ret = write_each_note_helper(d->root, n->path, n->mode,
739 n->sha1);
740 if (ret)
741 return ret;
742 }
743 n = n->next;
744 }
745 d->next_non_note = n;
746 return 0;
747}
748
61a7cca0
JH
749static int write_each_note(const unsigned char *object_sha1,
750 const unsigned char *note_sha1, char *note_path,
751 void *cb_data)
752{
753 struct write_each_note_data *d =
754 (struct write_each_note_data *) cb_data;
755 size_t note_path_len = strlen(note_path);
756 unsigned int mode = 0100644;
757
758 if (note_path[note_path_len - 1] == '/') {
759 /* subtree entry */
760 note_path_len--;
761 note_path[note_path_len] = '\0';
762 mode = 040000;
763 }
764 assert(note_path_len <= 40 + 19);
765
851c2b37
JH
766 /* Weave non-note entries into note entries */
767 return write_each_non_note_until(note_path, d) ||
768 write_each_note_helper(d->root, note_path, mode, note_sha1);
61a7cca0
JH
769}
770
00fbe636
JH
771struct note_delete_list {
772 struct note_delete_list *next;
773 const unsigned char *sha1;
774};
775
776static int prune_notes_helper(const unsigned char *object_sha1,
777 const unsigned char *note_sha1, char *note_path,
778 void *cb_data)
779{
780 struct note_delete_list **l = (struct note_delete_list **) cb_data;
781 struct note_delete_list *n;
782
783 if (has_sha1_file(object_sha1))
784 return 0; /* nothing to do for this note */
785
786 /* failed to find object => prune this note */
787 n = (struct note_delete_list *) xmalloc(sizeof(*n));
788 n->next = *l;
789 n->sha1 = object_sha1;
790 *l = n;
791 return 0;
792}
793
73f464b5
JH
794int combine_notes_concatenate(unsigned char *cur_sha1,
795 const unsigned char *new_sha1)
796{
797 char *cur_msg = NULL, *new_msg = NULL, *buf;
798 unsigned long cur_len, new_len, buf_len;
799 enum object_type cur_type, new_type;
800 int ret;
801
802 /* read in both note blob objects */
803 if (!is_null_sha1(new_sha1))
804 new_msg = read_sha1_file(new_sha1, &new_type, &new_len);
805 if (!new_msg || !new_len || new_type != OBJ_BLOB) {
806 free(new_msg);
807 return 0;
808 }
809 if (!is_null_sha1(cur_sha1))
810 cur_msg = read_sha1_file(cur_sha1, &cur_type, &cur_len);
811 if (!cur_msg || !cur_len || cur_type != OBJ_BLOB) {
812 free(cur_msg);
813 free(new_msg);
814 hashcpy(cur_sha1, new_sha1);
815 return 0;
816 }
817
d4990c4b 818 /* we will separate the notes by two newlines anyway */
73f464b5
JH
819 if (cur_msg[cur_len - 1] == '\n')
820 cur_len--;
821
822 /* concatenate cur_msg and new_msg into buf */
d4990c4b 823 buf_len = cur_len + 2 + new_len;
73f464b5
JH
824 buf = (char *) xmalloc(buf_len);
825 memcpy(buf, cur_msg, cur_len);
826 buf[cur_len] = '\n';
d4990c4b
JH
827 buf[cur_len + 1] = '\n';
828 memcpy(buf + cur_len + 2, new_msg, new_len);
73f464b5
JH
829 free(cur_msg);
830 free(new_msg);
831
832 /* create a new blob object from buf */
833 ret = write_sha1_file(buf, buf_len, blob_type, cur_sha1);
834 free(buf);
835 return ret;
836}
837
838int combine_notes_overwrite(unsigned char *cur_sha1,
839 const unsigned char *new_sha1)
840{
841 hashcpy(cur_sha1, new_sha1);
842 return 0;
843}
844
845int combine_notes_ignore(unsigned char *cur_sha1,
846 const unsigned char *new_sha1)
847{
848 return 0;
849}
850
a6a09095
JH
851static int string_list_add_note_lines(struct string_list *sort_uniq_list,
852 const unsigned char *sha1)
853{
854 char *data;
855 unsigned long len;
856 enum object_type t;
857 struct strbuf buf = STRBUF_INIT;
858 struct strbuf **lines = NULL;
859 int i, list_index;
860
861 if (is_null_sha1(sha1))
862 return 0;
863
864 /* read_sha1_file NUL-terminates */
865 data = read_sha1_file(sha1, &t, &len);
866 if (t != OBJ_BLOB || !data || !len) {
867 free(data);
868 return t != OBJ_BLOB || !data;
869 }
870
871 strbuf_attach(&buf, data, len, len + 1);
872 lines = strbuf_split(&buf, '\n');
873
874 for (i = 0; lines[i]; i++) {
875 if (lines[i]->buf[lines[i]->len - 1] == '\n')
876 strbuf_setlen(lines[i], lines[i]->len - 1);
877 if (!lines[i]->len)
878 continue; /* skip empty lines */
879 list_index = string_list_find_insert_index(sort_uniq_list,
880 lines[i]->buf, 0);
881 if (list_index < 0)
882 continue; /* skip duplicate lines */
883 string_list_insert_at_index(sort_uniq_list, list_index,
884 lines[i]->buf);
885 }
886
887 strbuf_list_free(lines);
888 strbuf_release(&buf);
889 return 0;
890}
891
892static int string_list_join_lines_helper(struct string_list_item *item,
893 void *cb_data)
894{
895 struct strbuf *buf = cb_data;
896 strbuf_addstr(buf, item->string);
897 strbuf_addch(buf, '\n');
898 return 0;
899}
900
901int combine_notes_cat_sort_uniq(unsigned char *cur_sha1,
902 const unsigned char *new_sha1)
903{
904 struct string_list sort_uniq_list = { NULL, 0, 0, 1 };
905 struct strbuf buf = STRBUF_INIT;
906 int ret = 1;
907
908 /* read both note blob objects into unique_lines */
909 if (string_list_add_note_lines(&sort_uniq_list, cur_sha1))
910 goto out;
911 if (string_list_add_note_lines(&sort_uniq_list, new_sha1))
912 goto out;
913
914 /* create a new blob object from sort_uniq_list */
915 if (for_each_string_list(&sort_uniq_list,
916 string_list_join_lines_helper, &buf))
917 goto out;
918
919 ret = write_sha1_file(buf.buf, buf.len, blob_type, cur_sha1);
920
921out:
922 strbuf_release(&buf);
923 string_list_clear(&sort_uniq_list, 0);
924 return ret;
925}
926
894a9d33
TR
927static int string_list_add_one_ref(const char *path, const unsigned char *sha1,
928 int flag, void *cb)
929{
930 struct string_list *refs = cb;
931 if (!unsorted_string_list_has_string(refs, path))
1d2f80fa 932 string_list_append(refs, path);
894a9d33
TR
933 return 0;
934}
935
936void string_list_add_refs_by_glob(struct string_list *list, const char *glob)
937{
938 if (has_glob_specials(glob)) {
939 for_each_glob_ref(string_list_add_one_ref, glob, list);
940 } else {
941 unsigned char sha1[20];
942 if (get_sha1(glob, sha1))
943 warning("notes ref %s is invalid", glob);
944 if (!unsorted_string_list_has_string(list, glob))
1d2f80fa 945 string_list_append(list, glob);
894a9d33
TR
946 }
947}
948
949void string_list_add_refs_from_colon_sep(struct string_list *list,
950 const char *globs)
951{
952 struct strbuf globbuf = STRBUF_INIT;
953 struct strbuf **split;
954 int i;
955
956 strbuf_addstr(&globbuf, globs);
957 split = strbuf_split(&globbuf, ':');
958
959 for (i = 0; split[i]; i++) {
960 if (!split[i]->len)
961 continue;
962 if (split[i]->buf[split[i]->len-1] == ':')
963 strbuf_setlen(split[i], split[i]->len-1);
964 string_list_add_refs_by_glob(list, split[i]->buf);
965 }
966
967 strbuf_list_free(split);
968 strbuf_release(&globbuf);
969}
970
894a9d33
TR
971static int notes_display_config(const char *k, const char *v, void *cb)
972{
973 int *load_refs = cb;
974
975 if (*load_refs && !strcmp(k, "notes.displayref")) {
976 if (!v)
977 config_error_nonbool(k);
978 string_list_add_refs_by_glob(&display_notes_refs, v);
979 }
980
981 return 0;
982}
983
4a9cf1ce 984const char *default_notes_ref(void)
894a9d33
TR
985{
986 const char *notes_ref = NULL;
987 if (!notes_ref)
988 notes_ref = getenv(GIT_NOTES_REF_ENVIRONMENT);
989 if (!notes_ref)
990 notes_ref = notes_ref_name; /* value of core.notesRef config */
991 if (!notes_ref)
992 notes_ref = GIT_NOTES_DEFAULT_REF;
993 return notes_ref;
994}
995
73f464b5
JH
996void init_notes(struct notes_tree *t, const char *notes_ref,
997 combine_notes_fn combine_notes, int flags)
23123aec 998{
a7e7eff6 999 unsigned char sha1[20], object_sha1[20];
23123aec
JH
1000 unsigned mode;
1001 struct leaf_node root_tree;
fd53c9eb 1002
cd305392
JH
1003 if (!t)
1004 t = &default_notes_tree;
1005 assert(!t->initialized);
709f79b0
JH
1006
1007 if (!notes_ref)
894a9d33 1008 notes_ref = default_notes_ref();
709f79b0 1009
73f464b5
JH
1010 if (!combine_notes)
1011 combine_notes = combine_notes_concatenate;
1012
cd305392 1013 t->root = (struct int_node *) xcalloc(sizeof(struct int_node), 1);
851c2b37
JH
1014 t->first_non_note = NULL;
1015 t->prev_non_note = NULL;
cd305392 1016 t->ref = notes_ref ? xstrdup(notes_ref) : NULL;
73f464b5 1017 t->combine_notes = combine_notes;
cd305392 1018 t->initialized = 1;
7f710ea9 1019 t->dirty = 0;
cd305392 1020
709f79b0
JH
1021 if (flags & NOTES_INIT_EMPTY || !notes_ref ||
1022 read_ref(notes_ref, object_sha1))
fd53c9eb 1023 return;
709f79b0
JH
1024 if (get_tree_entry(object_sha1, "", sha1, &mode))
1025 die("Failed to read notes tree referenced by %s (%s)",
327a89dc 1026 notes_ref, sha1_to_hex(object_sha1));
fd53c9eb 1027
23123aec
JH
1028 hashclr(root_tree.key_sha1);
1029 hashcpy(root_tree.val_sha1, sha1);
851c2b37 1030 load_subtree(t, &root_tree, t->root, 0);
fd53c9eb
JS
1031}
1032
894a9d33
TR
1033struct notes_tree **load_notes_trees(struct string_list *refs)
1034{
8a57c6e9
AR
1035 struct string_list_item *item;
1036 int counter = 0;
894a9d33 1037 struct notes_tree **trees;
894a9d33 1038 trees = xmalloc((refs->nr+1) * sizeof(struct notes_tree *));
8a57c6e9
AR
1039 for_each_string_list_item(item, refs) {
1040 struct notes_tree *t = xcalloc(1, sizeof(struct notes_tree));
1041 init_notes(t, item->string, combine_notes_ignore, 0);
1042 trees[counter++] = t;
1043 }
1044 trees[counter] = NULL;
894a9d33
TR
1045 return trees;
1046}
1047
1048void init_display_notes(struct display_notes_opt *opt)
1049{
1050 char *display_ref_env;
1051 int load_config_refs = 0;
1052 display_notes_refs.strdup_strings = 1;
1053
1054 assert(!display_notes_trees);
1055
1056 if (!opt || !opt->suppress_default_notes) {
1d2f80fa 1057 string_list_append(&display_notes_refs, default_notes_ref());
894a9d33
TR
1058 display_ref_env = getenv(GIT_NOTES_DISPLAY_REF_ENVIRONMENT);
1059 if (display_ref_env) {
1060 string_list_add_refs_from_colon_sep(&display_notes_refs,
1061 display_ref_env);
1062 load_config_refs = 0;
1063 } else
1064 load_config_refs = 1;
1065 }
1066
1067 git_config(notes_display_config, &load_config_refs);
1068
8a57c6e9
AR
1069 if (opt && opt->extra_notes_refs) {
1070 struct string_list_item *item;
1071 for_each_string_list_item(item, opt->extra_notes_refs)
1072 string_list_add_refs_by_glob(&display_notes_refs,
1073 item->string);
1074 }
894a9d33
TR
1075
1076 display_notes_trees = load_notes_trees(&display_notes_refs);
1077 string_list_clear(&display_notes_refs, 0);
1078}
1079
180619a5 1080int add_note(struct notes_tree *t, const unsigned char *object_sha1,
73f464b5 1081 const unsigned char *note_sha1, combine_notes_fn combine_notes)
2626b536
JH
1082{
1083 struct leaf_node *l;
1084
cd305392
JH
1085 if (!t)
1086 t = &default_notes_tree;
1087 assert(t->initialized);
7f710ea9 1088 t->dirty = 1;
73f464b5
JH
1089 if (!combine_notes)
1090 combine_notes = t->combine_notes;
2626b536
JH
1091 l = (struct leaf_node *) xmalloc(sizeof(struct leaf_node));
1092 hashcpy(l->key_sha1, object_sha1);
1093 hashcpy(l->val_sha1, note_sha1);
180619a5 1094 return note_tree_insert(t, t->root, 0, l, PTR_TYPE_NOTE, combine_notes);
2626b536
JH
1095}
1096
1ee1e43d 1097int remove_note(struct notes_tree *t, const unsigned char *object_sha1)
1ec666b0
JH
1098{
1099 struct leaf_node l;
1100
cd305392
JH
1101 if (!t)
1102 t = &default_notes_tree;
1103 assert(t->initialized);
1ec666b0
JH
1104 hashcpy(l.key_sha1, object_sha1);
1105 hashclr(l.val_sha1);
a502ab93 1106 note_tree_remove(t, t->root, 0, &l);
1ee1e43d
JH
1107 if (is_null_sha1(l.val_sha1)) // no note was removed
1108 return 1;
1109 t->dirty = 1;
1110 return 0;
1ec666b0
JH
1111}
1112
cd305392
JH
1113const unsigned char *get_note(struct notes_tree *t,
1114 const unsigned char *object_sha1)
fd53c9eb 1115{
9b391f21
JH
1116 struct leaf_node *found;
1117
cd305392
JH
1118 if (!t)
1119 t = &default_notes_tree;
1120 assert(t->initialized);
851c2b37 1121 found = note_tree_find(t, t->root, 0, object_sha1);
9b391f21 1122 return found ? found->val_sha1 : NULL;
fd53c9eb 1123}
a97a7468 1124
cd305392
JH
1125int for_each_note(struct notes_tree *t, int flags, each_note_fn fn,
1126 void *cb_data)
73f77b90 1127{
cd305392
JH
1128 if (!t)
1129 t = &default_notes_tree;
1130 assert(t->initialized);
851c2b37 1131 return for_each_note_helper(t, t->root, 0, 0, flags, fn, cb_data);
73f77b90
JH
1132}
1133
cd305392 1134int write_notes_tree(struct notes_tree *t, unsigned char *result)
61a7cca0
JH
1135{
1136 struct tree_write_stack root;
1137 struct write_each_note_data cb_data;
1138 int ret;
1139
cd305392
JH
1140 if (!t)
1141 t = &default_notes_tree;
1142 assert(t->initialized);
61a7cca0
JH
1143
1144 /* Prepare for traversal of current notes tree */
1145 root.next = NULL; /* last forward entry in list is grounded */
1146 strbuf_init(&root.buf, 256 * (32 + 40)); /* assume 256 entries */
1147 root.path[0] = root.path[1] = '\0';
1148 cb_data.root = &root;
851c2b37 1149 cb_data.next_non_note = t->first_non_note;
61a7cca0
JH
1150
1151 /* Write tree objects representing current notes tree */
cd305392 1152 ret = for_each_note(t, FOR_EACH_NOTE_DONT_UNPACK_SUBTREES |
61a7cca0
JH
1153 FOR_EACH_NOTE_YIELD_SUBTREES,
1154 write_each_note, &cb_data) ||
851c2b37 1155 write_each_non_note_until(NULL, &cb_data) ||
61a7cca0
JH
1156 tree_write_stack_finish_subtree(&root) ||
1157 write_sha1_file(root.buf.buf, root.buf.len, tree_type, result);
1158 strbuf_release(&root.buf);
1159 return ret;
1160}
1161
a9f2adff 1162void prune_notes(struct notes_tree *t, int flags)
00fbe636
JH
1163{
1164 struct note_delete_list *l = NULL;
1165
1166 if (!t)
1167 t = &default_notes_tree;
1168 assert(t->initialized);
1169
1170 for_each_note(t, 0, prune_notes_helper, &l);
1171
1172 while (l) {
a9f2adff
MG
1173 if (flags & NOTES_PRUNE_VERBOSE)
1174 printf("%s\n", sha1_to_hex(l->sha1));
1175 if (!(flags & NOTES_PRUNE_DRYRUN))
1176 remove_note(t, l->sha1);
00fbe636
JH
1177 l = l->next;
1178 }
1179}
1180
cd305392 1181void free_notes(struct notes_tree *t)
27d57564 1182{
cd305392
JH
1183 if (!t)
1184 t = &default_notes_tree;
1185 if (t->root)
1186 note_tree_free(t->root);
1187 free(t->root);
851c2b37
JH
1188 while (t->first_non_note) {
1189 t->prev_non_note = t->first_non_note->next;
1190 free(t->first_non_note->path);
1191 free(t->first_non_note);
1192 t->first_non_note = t->prev_non_note;
1193 }
cd305392
JH
1194 free(t->ref);
1195 memset(t, 0, sizeof(struct notes_tree));
27d57564
JH
1196}
1197
cd305392
JH
1198void format_note(struct notes_tree *t, const unsigned char *object_sha1,
1199 struct strbuf *sb, const char *output_encoding, int flags)
a97a7468
JS
1200{
1201 static const char utf8[] = "utf-8";
9b391f21 1202 const unsigned char *sha1;
a97a7468
JS
1203 char *msg, *msg_p;
1204 unsigned long linelen, msglen;
1205 enum object_type type;
1206
cd305392
JH
1207 if (!t)
1208 t = &default_notes_tree;
1209 if (!t->initialized)
73f464b5 1210 init_notes(t, NULL, NULL, 0);
a97a7468 1211
cd305392 1212 sha1 = get_note(t, object_sha1);
fd53c9eb 1213 if (!sha1)
a97a7468
JS
1214 return;
1215
1216 if (!(msg = read_sha1_file(sha1, &type, &msglen)) || !msglen ||
1217 type != OBJ_BLOB) {
1218 free(msg);
1219 return;
1220 }
1221
1222 if (output_encoding && *output_encoding &&
1223 strcmp(utf8, output_encoding)) {
1224 char *reencoded = reencode_string(msg, output_encoding, utf8);
1225 if (reencoded) {
1226 free(msg);
1227 msg = reencoded;
1228 msglen = strlen(msg);
1229 }
1230 }
1231
1232 /* we will end the annotation by a newline anyway */
1233 if (msglen && msg[msglen - 1] == '\n')
1234 msglen--;
1235
894a9d33
TR
1236 if (flags & NOTES_SHOW_HEADER) {
1237 const char *ref = t->ref;
1238 if (!ref || !strcmp(ref, GIT_NOTES_DEFAULT_REF)) {
1239 strbuf_addstr(sb, "\nNotes:\n");
1240 } else {
1241 if (!prefixcmp(ref, "refs/"))
1242 ref += 5;
1243 if (!prefixcmp(ref, "notes/"))
1244 ref += 6;
1245 strbuf_addf(sb, "\nNotes (%s):\n", ref);
1246 }
1247 }
a97a7468
JS
1248
1249 for (msg_p = msg; msg_p < msg + msglen; msg_p += linelen + 1) {
1250 linelen = strchrnul(msg_p, '\n') - msg_p;
1251
c56fcc89
JH
1252 if (flags & NOTES_INDENT)
1253 strbuf_addstr(sb, " ");
a97a7468
JS
1254 strbuf_add(sb, msg_p, linelen);
1255 strbuf_addch(sb, '\n');
1256 }
1257
1258 free(msg);
1259}
894a9d33
TR
1260
1261void format_display_notes(const unsigned char *object_sha1,
1262 struct strbuf *sb, const char *output_encoding, int flags)
1263{
1264 int i;
1265 assert(display_notes_trees);
1266 for (i = 0; display_notes_trees[i]; i++)
1267 format_note(display_notes_trees[i], object_sha1, sb,
1268 output_encoding, flags);
1269}
160baa0d
TR
1270
1271int copy_note(struct notes_tree *t,
1272 const unsigned char *from_obj, const unsigned char *to_obj,
180619a5 1273 int force, combine_notes_fn combine_notes)
160baa0d
TR
1274{
1275 const unsigned char *note = get_note(t, from_obj);
1276 const unsigned char *existing_note = get_note(t, to_obj);
1277
1278 if (!force && existing_note)
1279 return 1;
1280
1281 if (note)
180619a5 1282 return add_note(t, to_obj, note, combine_notes);
160baa0d 1283 else if (existing_note)
180619a5 1284 return add_note(t, to_obj, null_sha1, combine_notes);
160baa0d
TR
1285
1286 return 0;
1287}