8 #include "string-list.h"
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 *
21 * The root node is a statically allocated struct int_node.
28 * Leaf nodes come in two variants, note entries and subtree entries,
29 * distinguished by the LSb of the leaf node pointer (see above).
30 * As a note entry, the key is the SHA1 of the referenced object, and the
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
33 * referenced object, using the last byte of the key to store the length of
34 * the prefix. The value is the SHA1 of the tree object containing the notes
38 unsigned char key_sha1
[20];
39 unsigned char val_sha1
[20];
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().
51 struct non_note
*next
; /* grounded (last->next == NULL) */
54 unsigned char sha1
[20];
57 #define PTR_TYPE_NULL 0
58 #define PTR_TYPE_INTERNAL 1
59 #define PTR_TYPE_NOTE 2
60 #define PTR_TYPE_SUBTREE 3
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)))
66 #define GET_NIBBLE(n, sha1) (((sha1[(n) >> 1]) >> ((~(n) & 0x01) << 2)) & 0x0f)
68 #define SUBTREE_SHA1_PREFIXCMP(key_sha1, subtree_sha1) \
69 (memcmp(key_sha1, subtree_sha1, subtree_sha1[19]))
71 struct notes_tree default_notes_tree
;
73 static struct string_list display_notes_refs
;
74 static struct notes_tree
**display_notes_trees
;
76 static void load_subtree(struct notes_tree
*t
, struct leaf_node
*subtree
,
77 struct int_node
*node
, unsigned int n
);
80 * Search the tree until the appropriate location for the given key is found:
81 * 1. Start at the root node, with n = 0
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
86 * - If a matching subtree entry, unpack that subtree entry (and remove it);
87 * restart search at the current level.
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.
94 static void **note_tree_search(struct notes_tree
*t
, struct int_node
**tree
,
95 unsigned char *n
, const unsigned char *key_sha1
)
99 void *p
= (*tree
)->a
[0];
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
;
106 load_subtree(t
, l
, *tree
, *n
);
108 return note_tree_search(t
, tree
, n
, key_sha1
);
112 i
= GET_NIBBLE(*n
, key_sha1
);
114 switch (GET_PTR_TYPE(p
)) {
115 case PTR_TYPE_INTERNAL
:
116 *tree
= CLR_PTR_TYPE(p
);
118 return note_tree_search(t
, tree
, n
, key_sha1
);
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 */
123 (*tree
)->a
[i
] = NULL
;
124 load_subtree(t
, l
, *tree
, *n
);
126 return note_tree_search(t
, tree
, n
, key_sha1
);
130 return &((*tree
)->a
[i
]);
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.
139 static struct leaf_node
*note_tree_find(struct notes_tree
*t
,
140 struct int_node
*tree
, unsigned char n
,
141 const unsigned char *key_sha1
)
143 void **p
= note_tree_search(t
, &tree
, &n
, key_sha1
);
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
))
153 * To insert a leaf_node:
154 * Search to the tree location appropriate for the given leaf_node's key:
155 * - If location is unused (NULL), store the tweaked pointer directly there
156 * - If location holds a note entry that matches the note-to-be-inserted, then
157 * combine the two notes (by calling the given combine_notes function).
158 * - If location holds a note entry that matches the subtree-to-be-inserted,
159 * then unpack the subtree-to-be-inserted into the location.
160 * - If location holds a matching subtree entry, unpack the subtree at that
161 * location, and restart the insert operation from that level.
162 * - Else, create a new int_node, holding both the node-at-location and the
163 * node-to-be-inserted, and store the new int_node into the location.
165 static void note_tree_insert(struct notes_tree
*t
, struct int_node
*tree
,
166 unsigned char n
, struct leaf_node
*entry
, unsigned char type
,
167 combine_notes_fn combine_notes
)
169 struct int_node
*new_node
;
171 void **p
= note_tree_search(t
, &tree
, &n
, entry
->key_sha1
);
173 assert(GET_PTR_TYPE(entry
) == 0); /* no type bits set */
174 l
= (struct leaf_node
*) CLR_PTR_TYPE(*p
);
175 switch (GET_PTR_TYPE(*p
)) {
178 *p
= SET_PTR_TYPE(entry
, type
);
183 if (!hashcmp(l
->key_sha1
, entry
->key_sha1
)) {
184 /* skip concatenation if l == entry */
185 if (!hashcmp(l
->val_sha1
, entry
->val_sha1
))
188 if (combine_notes(l
->val_sha1
, entry
->val_sha1
))
189 die("failed to combine notes %s and %s"
191 sha1_to_hex(l
->val_sha1
),
192 sha1_to_hex(entry
->val_sha1
),
193 sha1_to_hex(l
->key_sha1
));
198 case PTR_TYPE_SUBTREE
:
199 if (!SUBTREE_SHA1_PREFIXCMP(l
->key_sha1
,
202 load_subtree(t
, entry
, tree
, n
);
209 case PTR_TYPE_SUBTREE
:
210 if (!SUBTREE_SHA1_PREFIXCMP(entry
->key_sha1
, l
->key_sha1
)) {
211 /* unpack 'l' and restart insert */
213 load_subtree(t
, l
, tree
, n
);
215 note_tree_insert(t
, tree
, n
, entry
, type
,
222 /* non-matching leaf_node */
223 assert(GET_PTR_TYPE(*p
) == PTR_TYPE_NOTE
||
224 GET_PTR_TYPE(*p
) == PTR_TYPE_SUBTREE
);
225 new_node
= (struct int_node
*) xcalloc(sizeof(struct int_node
), 1);
226 note_tree_insert(t
, new_node
, n
+ 1, l
, GET_PTR_TYPE(*p
),
228 *p
= SET_PTR_TYPE(new_node
, PTR_TYPE_INTERNAL
);
229 note_tree_insert(t
, new_node
, n
+ 1, entry
, type
, combine_notes
);
233 * How to consolidate an int_node:
234 * If there are > 1 non-NULL entries, give up and return non-zero.
235 * Otherwise replace the int_node at the given index in the given parent node
236 * with the only entry (or a NULL entry if no entries) from the given tree,
239 static int note_tree_consolidate(struct int_node
*tree
,
240 struct int_node
*parent
, unsigned char index
)
245 assert(tree
&& parent
);
246 assert(CLR_PTR_TYPE(parent
->a
[index
]) == tree
);
248 for (i
= 0; i
< 16; i
++) {
249 if (GET_PTR_TYPE(tree
->a
[i
]) != PTR_TYPE_NULL
) {
250 if (p
) /* more than one entry */
256 /* replace tree with p in parent[index] */
257 parent
->a
[index
] = p
;
263 * To remove a leaf_node:
264 * Search to the tree location appropriate for the given leaf_node's key:
265 * - If location does not hold a matching entry, abort and do nothing.
266 * - Replace the matching leaf_node with a NULL entry (and free the leaf_node).
267 * - Consolidate int_nodes repeatedly, while walking up the tree towards root.
269 static void note_tree_remove(struct notes_tree
*t
, struct int_node
*tree
,
270 unsigned char n
, struct leaf_node
*entry
)
273 struct int_node
*parent_stack
[20];
275 void **p
= note_tree_search(t
, &tree
, &n
, entry
->key_sha1
);
277 assert(GET_PTR_TYPE(entry
) == 0); /* no type bits set */
278 if (GET_PTR_TYPE(*p
) != PTR_TYPE_NOTE
)
279 return; /* type mismatch, nothing to remove */
280 l
= (struct leaf_node
*) CLR_PTR_TYPE(*p
);
281 if (hashcmp(l
->key_sha1
, entry
->key_sha1
))
282 return; /* key mismatch, nothing to remove */
284 /* we have found a matching entry */
286 *p
= SET_PTR_TYPE(NULL
, PTR_TYPE_NULL
);
288 /* consolidate this tree level, and parent levels, if possible */
290 return; /* cannot consolidate top level */
291 /* first, build stack of ancestors between root and current node */
292 parent_stack
[0] = t
->root
;
293 for (i
= 0; i
< n
; i
++) {
294 j
= GET_NIBBLE(i
, entry
->key_sha1
);
295 parent_stack
[i
+ 1] = CLR_PTR_TYPE(parent_stack
[i
]->a
[j
]);
297 assert(i
== n
&& parent_stack
[i
] == tree
);
298 /* next, unwind stack until note_tree_consolidate() is done */
300 !note_tree_consolidate(parent_stack
[i
], parent_stack
[i
- 1],
301 GET_NIBBLE(i
- 1, entry
->key_sha1
)))
305 /* Free the entire notes data contained in the given tree */
306 static void note_tree_free(struct int_node
*tree
)
309 for (i
= 0; i
< 16; i
++) {
310 void *p
= tree
->a
[i
];
311 switch (GET_PTR_TYPE(p
)) {
312 case PTR_TYPE_INTERNAL
:
313 note_tree_free(CLR_PTR_TYPE(p
));
316 case PTR_TYPE_SUBTREE
:
317 free(CLR_PTR_TYPE(p
));
323 * Convert a partial SHA1 hex string to the corresponding partial SHA1 value.
324 * - hex - Partial SHA1 segment in ASCII hex format
325 * - hex_len - Length of above segment. Must be multiple of 2 between 0 and 40
326 * - sha1 - Partial SHA1 value is written here
327 * - sha1_len - Max #bytes to store in sha1, Must be >= hex_len / 2, and < 20
328 * Returns -1 on error (invalid arguments or invalid SHA1 (not in hex format)).
329 * Otherwise, returns number of bytes written to sha1 (i.e. hex_len / 2).
330 * Pads sha1 with NULs up to sha1_len (not included in returned length).
332 static int get_sha1_hex_segment(const char *hex
, unsigned int hex_len
,
333 unsigned char *sha1
, unsigned int sha1_len
)
335 unsigned int i
, len
= hex_len
>> 1;
336 if (hex_len
% 2 != 0 || len
> sha1_len
)
338 for (i
= 0; i
< len
; i
++) {
339 unsigned int val
= (hexval(hex
[0]) << 4) | hexval(hex
[1]);
345 for (; i
< sha1_len
; i
++)
350 static int non_note_cmp(const struct non_note
*a
, const struct non_note
*b
)
352 return strcmp(a
->path
, b
->path
);
355 static void add_non_note(struct notes_tree
*t
, const char *path
,
356 unsigned int mode
, const unsigned char *sha1
)
358 struct non_note
*p
= t
->prev_non_note
, *n
;
359 n
= (struct non_note
*) xmalloc(sizeof(struct non_note
));
361 n
->path
= xstrdup(path
);
363 hashcpy(n
->sha1
, sha1
);
364 t
->prev_non_note
= n
;
366 if (!t
->first_non_note
) {
367 t
->first_non_note
= n
;
371 if (non_note_cmp(p
, n
) < 0)
373 else if (non_note_cmp(t
->first_non_note
, n
) <= 0)
374 p
= t
->first_non_note
;
376 /* n sorts before t->first_non_note */
377 n
->next
= t
->first_non_note
;
378 t
->first_non_note
= n
;
382 /* n sorts equal or after p */
383 while (p
->next
&& non_note_cmp(p
->next
, n
) <= 0)
386 if (non_note_cmp(p
, n
) == 0) { /* n ~= p; overwrite p with n */
387 assert(strcmp(p
->path
, n
->path
) == 0);
389 hashcpy(p
->sha1
, n
->sha1
);
391 t
->prev_non_note
= p
;
395 /* n sorts between p and p->next */
400 static void load_subtree(struct notes_tree
*t
, struct leaf_node
*subtree
,
401 struct int_node
*node
, unsigned int n
)
403 unsigned char object_sha1
[20];
404 unsigned int prefix_len
;
406 struct tree_desc desc
;
407 struct name_entry entry
;
412 buf
= fill_tree_descriptor(&desc
, subtree
->val_sha1
);
414 die("Could not read %s for notes-index",
415 sha1_to_hex(subtree
->val_sha1
));
417 prefix_len
= subtree
->key_sha1
[19];
418 assert(prefix_len
* 2 >= n
);
419 memcpy(object_sha1
, subtree
->key_sha1
, prefix_len
);
420 while (tree_entry(&desc
, &entry
)) {
421 path_len
= strlen(entry
.path
);
422 len
= get_sha1_hex_segment(entry
.path
, path_len
,
423 object_sha1
+ prefix_len
, 20 - prefix_len
);
425 goto handle_non_note
; /* entry.path is not a SHA1 */
429 * If object SHA1 is complete (len == 20), assume note object
430 * If object SHA1 is incomplete (len < 20), and current
431 * component consists of 2 hex chars, assume note subtree
434 type
= PTR_TYPE_NOTE
;
435 l
= (struct leaf_node
*)
436 xcalloc(sizeof(struct leaf_node
), 1);
437 hashcpy(l
->key_sha1
, object_sha1
);
438 hashcpy(l
->val_sha1
, entry
.sha1
);
440 if (!S_ISDIR(entry
.mode
) || path_len
!= 2)
441 goto handle_non_note
; /* not subtree */
442 l
->key_sha1
[19] = (unsigned char) len
;
443 type
= PTR_TYPE_SUBTREE
;
445 note_tree_insert(t
, node
, n
, l
, type
,
446 combine_notes_concatenate
);
452 * Determine full path for this non-note entry:
453 * The filename is already found in entry.path, but the
454 * directory part of the path must be deduced from the subtree
455 * containing this entry. We assume here that the overall notes
456 * tree follows a strict byte-based progressive fanout
457 * structure (i.e. using 2/38, 2/2/36, etc. fanouts, and not
458 * e.g. 4/36 fanout). This means that if a non-note is found at
459 * path "dead/beef", the following code will register it as
460 * being found on "de/ad/beef".
461 * On the other hand, if you use such non-obvious non-note
462 * paths in the middle of a notes tree, you deserve what's
463 * coming to you ;). Note that for non-notes that are not
464 * SHA1-like at the top level, there will be no problems.
466 * To conclude, it is strongly advised to make sure non-notes
467 * have at least one non-hex character in the top-level path
471 char non_note_path
[PATH_MAX
];
472 char *p
= non_note_path
;
473 const char *q
= sha1_to_hex(subtree
->key_sha1
);
475 for (i
= 0; i
< prefix_len
; i
++) {
480 strcpy(p
, entry
.path
);
481 add_non_note(t
, non_note_path
, entry
.mode
, entry
.sha1
);
488 * Determine optimal on-disk fanout for this part of the notes tree
490 * Given a (sub)tree and the level in the internal tree structure, determine
491 * whether or not the given existing fanout should be expanded for this
494 * Values of the 'fanout' variable:
495 * - 0: No fanout (all notes are stored directly in the root notes tree)
498 * - 3: 2/2/2/34 fanout
501 static unsigned char determine_fanout(struct int_node
*tree
, unsigned char n
,
502 unsigned char fanout
)
505 * The following is a simple heuristic that works well in practice:
506 * For each even-numbered 16-tree level (remember that each on-disk
507 * fanout level corresponds to _two_ 16-tree levels), peek at all 16
508 * entries at that tree level. If all of them are either int_nodes or
509 * subtree entries, then there are likely plenty of notes below this
510 * level, so we return an incremented fanout.
513 if ((n
% 2) || (n
> 2 * fanout
))
515 for (i
= 0; i
< 16; i
++) {
516 switch (GET_PTR_TYPE(tree
->a
[i
])) {
517 case PTR_TYPE_SUBTREE
:
518 case PTR_TYPE_INTERNAL
:
527 static void construct_path_with_fanout(const unsigned char *sha1
,
528 unsigned char fanout
, char *path
)
530 unsigned int i
= 0, j
= 0;
531 const char *hex_sha1
= sha1_to_hex(sha1
);
534 path
[i
++] = hex_sha1
[j
++];
535 path
[i
++] = hex_sha1
[j
++];
539 strcpy(path
+ i
, hex_sha1
+ j
);
542 static int for_each_note_helper(struct notes_tree
*t
, struct int_node
*tree
,
543 unsigned char n
, unsigned char fanout
, int flags
,
544 each_note_fn fn
, void *cb_data
)
550 static char path
[40 + 19 + 1]; /* hex SHA1 + 19 * '/' + NUL */
552 fanout
= determine_fanout(tree
, n
, fanout
);
553 for (i
= 0; i
< 16; i
++) {
556 switch (GET_PTR_TYPE(p
)) {
557 case PTR_TYPE_INTERNAL
:
558 /* recurse into int_node */
559 ret
= for_each_note_helper(t
, CLR_PTR_TYPE(p
), n
+ 1,
560 fanout
, flags
, fn
, cb_data
);
562 case PTR_TYPE_SUBTREE
:
563 l
= (struct leaf_node
*) CLR_PTR_TYPE(p
);
565 * Subtree entries in the note tree represent parts of
566 * the note tree that have not yet been explored. There
567 * is a direct relationship between subtree entries at
568 * level 'n' in the tree, and the 'fanout' variable:
569 * Subtree entries at level 'n <= 2 * fanout' should be
570 * preserved, since they correspond exactly to a fanout
571 * directory in the on-disk structure. However, subtree
572 * entries at level 'n > 2 * fanout' should NOT be
573 * preserved, but rather consolidated into the above
574 * notes tree level. We achieve this by unconditionally
575 * unpacking subtree entries that exist below the
576 * threshold level at 'n = 2 * fanout'.
578 if (n
<= 2 * fanout
&&
579 flags
& FOR_EACH_NOTE_YIELD_SUBTREES
) {
580 /* invoke callback with subtree */
581 unsigned int path_len
=
582 l
->key_sha1
[19] * 2 + fanout
;
583 assert(path_len
< 40 + 19);
584 construct_path_with_fanout(l
->key_sha1
, fanout
,
586 /* Create trailing slash, if needed */
587 if (path
[path_len
- 1] != '/')
588 path
[path_len
++] = '/';
589 path
[path_len
] = '\0';
590 ret
= fn(l
->key_sha1
, l
->val_sha1
, path
,
593 if (n
> fanout
* 2 ||
594 !(flags
& FOR_EACH_NOTE_DONT_UNPACK_SUBTREES
)) {
595 /* unpack subtree and resume traversal */
597 load_subtree(t
, l
, tree
, n
);
603 l
= (struct leaf_node
*) CLR_PTR_TYPE(p
);
604 construct_path_with_fanout(l
->key_sha1
, fanout
, path
);
605 ret
= fn(l
->key_sha1
, l
->val_sha1
, path
, cb_data
);
614 struct tree_write_stack
{
615 struct tree_write_stack
*next
;
617 char path
[2]; /* path to subtree in next, if any */
620 static inline int matches_tree_write_stack(struct tree_write_stack
*tws
,
621 const char *full_path
)
623 return full_path
[0] == tws
->path
[0] &&
624 full_path
[1] == tws
->path
[1] &&
628 static void write_tree_entry(struct strbuf
*buf
, unsigned int mode
,
629 const char *path
, unsigned int path_len
, const
632 strbuf_addf(buf
, "%o %.*s%c", mode
, path_len
, path
, '\0');
633 strbuf_add(buf
, sha1
, 20);
636 static void tree_write_stack_init_subtree(struct tree_write_stack
*tws
,
639 struct tree_write_stack
*n
;
641 assert(tws
->path
[0] == '\0' && tws
->path
[1] == '\0');
642 n
= (struct tree_write_stack
*)
643 xmalloc(sizeof(struct tree_write_stack
));
645 strbuf_init(&n
->buf
, 256 * (32 + 40)); /* assume 256 entries per tree */
646 n
->path
[0] = n
->path
[1] = '\0';
648 tws
->path
[0] = path
[0];
649 tws
->path
[1] = path
[1];
652 static int tree_write_stack_finish_subtree(struct tree_write_stack
*tws
)
655 struct tree_write_stack
*n
= tws
->next
;
658 ret
= tree_write_stack_finish_subtree(n
);
661 ret
= write_sha1_file(n
->buf
.buf
, n
->buf
.len
, tree_type
, s
);
664 strbuf_release(&n
->buf
);
667 write_tree_entry(&tws
->buf
, 040000, tws
->path
, 2, s
);
668 tws
->path
[0] = tws
->path
[1] = '\0';
673 static int write_each_note_helper(struct tree_write_stack
*tws
,
674 const char *path
, unsigned int mode
,
675 const unsigned char *sha1
)
677 size_t path_len
= strlen(path
);
681 /* Determine common part of tree write stack */
682 while (tws
&& 3 * n
< path_len
&&
683 matches_tree_write_stack(tws
, path
+ 3 * n
)) {
688 /* tws point to last matching tree_write_stack entry */
689 ret
= tree_write_stack_finish_subtree(tws
);
693 /* Start subtrees needed to satisfy path */
694 while (3 * n
+ 2 < path_len
&& path
[3 * n
+ 2] == '/') {
695 tree_write_stack_init_subtree(tws
, path
+ 3 * n
);
700 /* There should be no more directory components in the given path */
701 assert(memchr(path
+ 3 * n
, '/', path_len
- (3 * n
)) == NULL
);
703 /* Finally add given entry to the current tree object */
704 write_tree_entry(&tws
->buf
, mode
, path
+ 3 * n
, path_len
- (3 * n
),
710 struct write_each_note_data
{
711 struct tree_write_stack
*root
;
712 struct non_note
*next_non_note
;
715 static int write_each_non_note_until(const char *note_path
,
716 struct write_each_note_data
*d
)
718 struct non_note
*n
= d
->next_non_note
;
720 while (n
&& (!note_path
|| (cmp
= strcmp(n
->path
, note_path
)) <= 0)) {
721 if (note_path
&& cmp
== 0)
722 ; /* do nothing, prefer note to non-note */
724 ret
= write_each_note_helper(d
->root
, n
->path
, n
->mode
,
731 d
->next_non_note
= n
;
735 static int write_each_note(const unsigned char *object_sha1
,
736 const unsigned char *note_sha1
, char *note_path
,
739 struct write_each_note_data
*d
=
740 (struct write_each_note_data
*) cb_data
;
741 size_t note_path_len
= strlen(note_path
);
742 unsigned int mode
= 0100644;
744 if (note_path
[note_path_len
- 1] == '/') {
747 note_path
[note_path_len
] = '\0';
750 assert(note_path_len
<= 40 + 19);
752 /* Weave non-note entries into note entries */
753 return write_each_non_note_until(note_path
, d
) ||
754 write_each_note_helper(d
->root
, note_path
, mode
, note_sha1
);
757 struct note_delete_list
{
758 struct note_delete_list
*next
;
759 const unsigned char *sha1
;
762 static int prune_notes_helper(const unsigned char *object_sha1
,
763 const unsigned char *note_sha1
, char *note_path
,
766 struct note_delete_list
**l
= (struct note_delete_list
**) cb_data
;
767 struct note_delete_list
*n
;
769 if (has_sha1_file(object_sha1
))
770 return 0; /* nothing to do for this note */
772 /* failed to find object => prune this note */
773 n
= (struct note_delete_list
*) xmalloc(sizeof(*n
));
775 n
->sha1
= object_sha1
;
780 int combine_notes_concatenate(unsigned char *cur_sha1
,
781 const unsigned char *new_sha1
)
783 char *cur_msg
= NULL
, *new_msg
= NULL
, *buf
;
784 unsigned long cur_len
, new_len
, buf_len
;
785 enum object_type cur_type
, new_type
;
788 /* read in both note blob objects */
789 if (!is_null_sha1(new_sha1
))
790 new_msg
= read_sha1_file(new_sha1
, &new_type
, &new_len
);
791 if (!new_msg
|| !new_len
|| new_type
!= OBJ_BLOB
) {
795 if (!is_null_sha1(cur_sha1
))
796 cur_msg
= read_sha1_file(cur_sha1
, &cur_type
, &cur_len
);
797 if (!cur_msg
|| !cur_len
|| cur_type
!= OBJ_BLOB
) {
800 hashcpy(cur_sha1
, new_sha1
);
804 /* we will separate the notes by a newline anyway */
805 if (cur_msg
[cur_len
- 1] == '\n')
808 /* concatenate cur_msg and new_msg into buf */
809 buf_len
= cur_len
+ 1 + new_len
;
810 buf
= (char *) xmalloc(buf_len
);
811 memcpy(buf
, cur_msg
, cur_len
);
813 memcpy(buf
+ cur_len
+ 1, new_msg
, new_len
);
817 /* create a new blob object from buf */
818 ret
= write_sha1_file(buf
, buf_len
, blob_type
, cur_sha1
);
823 int combine_notes_overwrite(unsigned char *cur_sha1
,
824 const unsigned char *new_sha1
)
826 hashcpy(cur_sha1
, new_sha1
);
830 int combine_notes_ignore(unsigned char *cur_sha1
,
831 const unsigned char *new_sha1
)
836 static int string_list_add_one_ref(const char *path
, const unsigned char *sha1
,
839 struct string_list
*refs
= cb
;
840 if (!unsorted_string_list_has_string(refs
, path
))
841 string_list_append(path
, refs
);
845 void string_list_add_refs_by_glob(struct string_list
*list
, const char *glob
)
847 if (has_glob_specials(glob
)) {
848 for_each_glob_ref(string_list_add_one_ref
, glob
, list
);
850 unsigned char sha1
[20];
851 if (get_sha1(glob
, sha1
))
852 warning("notes ref %s is invalid", glob
);
853 if (!unsorted_string_list_has_string(list
, glob
))
854 string_list_append(glob
, list
);
858 void string_list_add_refs_from_colon_sep(struct string_list
*list
,
861 struct strbuf globbuf
= STRBUF_INIT
;
862 struct strbuf
**split
;
865 strbuf_addstr(&globbuf
, globs
);
866 split
= strbuf_split(&globbuf
, ':');
868 for (i
= 0; split
[i
]; i
++) {
871 if (split
[i
]->buf
[split
[i
]->len
-1] == ':')
872 strbuf_setlen(split
[i
], split
[i
]->len
-1);
873 string_list_add_refs_by_glob(list
, split
[i
]->buf
);
876 strbuf_list_free(split
);
877 strbuf_release(&globbuf
);
880 static int string_list_add_refs_from_list(struct string_list_item
*item
,
883 struct string_list
*list
= cb
;
884 string_list_add_refs_by_glob(list
, item
->string
);
888 static int notes_display_config(const char *k
, const char *v
, void *cb
)
892 if (*load_refs
&& !strcmp(k
, "notes.displayref")) {
894 config_error_nonbool(k
);
895 string_list_add_refs_by_glob(&display_notes_refs
, v
);
901 static const char *default_notes_ref(void)
903 const char *notes_ref
= NULL
;
905 notes_ref
= getenv(GIT_NOTES_REF_ENVIRONMENT
);
907 notes_ref
= notes_ref_name
; /* value of core.notesRef config */
909 notes_ref
= GIT_NOTES_DEFAULT_REF
;
913 void init_notes(struct notes_tree
*t
, const char *notes_ref
,
914 combine_notes_fn combine_notes
, int flags
)
916 unsigned char sha1
[20], object_sha1
[20];
918 struct leaf_node root_tree
;
921 t
= &default_notes_tree
;
922 assert(!t
->initialized
);
925 notes_ref
= default_notes_ref();
928 combine_notes
= combine_notes_concatenate
;
930 t
->root
= (struct int_node
*) xcalloc(sizeof(struct int_node
), 1);
931 t
->first_non_note
= NULL
;
932 t
->prev_non_note
= NULL
;
933 t
->ref
= notes_ref
? xstrdup(notes_ref
) : NULL
;
934 t
->combine_notes
= combine_notes
;
938 if (flags
& NOTES_INIT_EMPTY
|| !notes_ref
||
939 read_ref(notes_ref
, object_sha1
))
941 if (get_tree_entry(object_sha1
, "", sha1
, &mode
))
942 die("Failed to read notes tree referenced by %s (%s)",
943 notes_ref
, object_sha1
);
945 hashclr(root_tree
.key_sha1
);
946 hashcpy(root_tree
.val_sha1
, sha1
);
947 load_subtree(t
, &root_tree
, t
->root
, 0);
950 struct load_notes_cb_data
{
952 struct notes_tree
**trees
;
955 static int load_one_display_note_ref(struct string_list_item
*item
,
958 struct load_notes_cb_data
*c
= cb_data
;
959 struct notes_tree
*t
= xcalloc(1, sizeof(struct notes_tree
));
960 init_notes(t
, item
->string
, combine_notes_ignore
, 0);
961 c
->trees
[c
->counter
++] = t
;
965 struct notes_tree
**load_notes_trees(struct string_list
*refs
)
967 struct notes_tree
**trees
;
968 struct load_notes_cb_data cb_data
;
969 trees
= xmalloc((refs
->nr
+1) * sizeof(struct notes_tree
*));
971 cb_data
.trees
= trees
;
972 for_each_string_list(load_one_display_note_ref
, refs
, &cb_data
);
973 trees
[cb_data
.counter
] = NULL
;
977 void init_display_notes(struct display_notes_opt
*opt
)
979 char *display_ref_env
;
980 int load_config_refs
= 0;
981 display_notes_refs
.strdup_strings
= 1;
983 assert(!display_notes_trees
);
985 if (!opt
|| !opt
->suppress_default_notes
) {
986 string_list_append(default_notes_ref(), &display_notes_refs
);
987 display_ref_env
= getenv(GIT_NOTES_DISPLAY_REF_ENVIRONMENT
);
988 if (display_ref_env
) {
989 string_list_add_refs_from_colon_sep(&display_notes_refs
,
991 load_config_refs
= 0;
993 load_config_refs
= 1;
996 git_config(notes_display_config
, &load_config_refs
);
998 if (opt
&& opt
->extra_notes_refs
)
999 for_each_string_list(string_list_add_refs_from_list
,
1000 opt
->extra_notes_refs
,
1001 &display_notes_refs
);
1003 display_notes_trees
= load_notes_trees(&display_notes_refs
);
1004 string_list_clear(&display_notes_refs
, 0);
1007 void add_note(struct notes_tree
*t
, const unsigned char *object_sha1
,
1008 const unsigned char *note_sha1
, combine_notes_fn combine_notes
)
1010 struct leaf_node
*l
;
1013 t
= &default_notes_tree
;
1014 assert(t
->initialized
);
1017 combine_notes
= t
->combine_notes
;
1018 l
= (struct leaf_node
*) xmalloc(sizeof(struct leaf_node
));
1019 hashcpy(l
->key_sha1
, object_sha1
);
1020 hashcpy(l
->val_sha1
, note_sha1
);
1021 note_tree_insert(t
, t
->root
, 0, l
, PTR_TYPE_NOTE
, combine_notes
);
1024 void remove_note(struct notes_tree
*t
, const unsigned char *object_sha1
)
1029 t
= &default_notes_tree
;
1030 assert(t
->initialized
);
1032 hashcpy(l
.key_sha1
, object_sha1
);
1033 hashclr(l
.val_sha1
);
1034 note_tree_remove(t
, t
->root
, 0, &l
);
1037 const unsigned char *get_note(struct notes_tree
*t
,
1038 const unsigned char *object_sha1
)
1040 struct leaf_node
*found
;
1043 t
= &default_notes_tree
;
1044 assert(t
->initialized
);
1045 found
= note_tree_find(t
, t
->root
, 0, object_sha1
);
1046 return found
? found
->val_sha1
: NULL
;
1049 int for_each_note(struct notes_tree
*t
, int flags
, each_note_fn fn
,
1053 t
= &default_notes_tree
;
1054 assert(t
->initialized
);
1055 return for_each_note_helper(t
, t
->root
, 0, 0, flags
, fn
, cb_data
);
1058 int write_notes_tree(struct notes_tree
*t
, unsigned char *result
)
1060 struct tree_write_stack root
;
1061 struct write_each_note_data cb_data
;
1065 t
= &default_notes_tree
;
1066 assert(t
->initialized
);
1068 /* Prepare for traversal of current notes tree */
1069 root
.next
= NULL
; /* last forward entry in list is grounded */
1070 strbuf_init(&root
.buf
, 256 * (32 + 40)); /* assume 256 entries */
1071 root
.path
[0] = root
.path
[1] = '\0';
1072 cb_data
.root
= &root
;
1073 cb_data
.next_non_note
= t
->first_non_note
;
1075 /* Write tree objects representing current notes tree */
1076 ret
= for_each_note(t
, FOR_EACH_NOTE_DONT_UNPACK_SUBTREES
|
1077 FOR_EACH_NOTE_YIELD_SUBTREES
,
1078 write_each_note
, &cb_data
) ||
1079 write_each_non_note_until(NULL
, &cb_data
) ||
1080 tree_write_stack_finish_subtree(&root
) ||
1081 write_sha1_file(root
.buf
.buf
, root
.buf
.len
, tree_type
, result
);
1082 strbuf_release(&root
.buf
);
1086 void prune_notes(struct notes_tree
*t
)
1088 struct note_delete_list
*l
= NULL
;
1091 t
= &default_notes_tree
;
1092 assert(t
->initialized
);
1094 for_each_note(t
, 0, prune_notes_helper
, &l
);
1097 remove_note(t
, l
->sha1
);
1102 void free_notes(struct notes_tree
*t
)
1105 t
= &default_notes_tree
;
1107 note_tree_free(t
->root
);
1109 while (t
->first_non_note
) {
1110 t
->prev_non_note
= t
->first_non_note
->next
;
1111 free(t
->first_non_note
->path
);
1112 free(t
->first_non_note
);
1113 t
->first_non_note
= t
->prev_non_note
;
1116 memset(t
, 0, sizeof(struct notes_tree
));
1119 void format_note(struct notes_tree
*t
, const unsigned char *object_sha1
,
1120 struct strbuf
*sb
, const char *output_encoding
, int flags
)
1122 static const char utf8
[] = "utf-8";
1123 const unsigned char *sha1
;
1125 unsigned long linelen
, msglen
;
1126 enum object_type type
;
1129 t
= &default_notes_tree
;
1130 if (!t
->initialized
)
1131 init_notes(t
, NULL
, NULL
, 0);
1133 sha1
= get_note(t
, object_sha1
);
1137 if (!(msg
= read_sha1_file(sha1
, &type
, &msglen
)) || !msglen
||
1143 if (output_encoding
&& *output_encoding
&&
1144 strcmp(utf8
, output_encoding
)) {
1145 char *reencoded
= reencode_string(msg
, output_encoding
, utf8
);
1149 msglen
= strlen(msg
);
1153 /* we will end the annotation by a newline anyway */
1154 if (msglen
&& msg
[msglen
- 1] == '\n')
1157 if (flags
& NOTES_SHOW_HEADER
) {
1158 const char *ref
= t
->ref
;
1159 if (!ref
|| !strcmp(ref
, GIT_NOTES_DEFAULT_REF
)) {
1160 strbuf_addstr(sb
, "\nNotes:\n");
1162 if (!prefixcmp(ref
, "refs/"))
1164 if (!prefixcmp(ref
, "notes/"))
1166 strbuf_addf(sb
, "\nNotes (%s):\n", ref
);
1170 for (msg_p
= msg
; msg_p
< msg
+ msglen
; msg_p
+= linelen
+ 1) {
1171 linelen
= strchrnul(msg_p
, '\n') - msg_p
;
1173 if (flags
& NOTES_INDENT
)
1174 strbuf_addstr(sb
, " ");
1175 strbuf_add(sb
, msg_p
, linelen
);
1176 strbuf_addch(sb
, '\n');
1182 void format_display_notes(const unsigned char *object_sha1
,
1183 struct strbuf
*sb
, const char *output_encoding
, int flags
)
1186 assert(display_notes_trees
);
1187 for (i
= 0; display_notes_trees
[i
]; i
++)
1188 format_note(display_notes_trees
[i
], object_sha1
, sb
,
1189 output_encoding
, flags
);
1192 int copy_note(struct notes_tree
*t
,
1193 const unsigned char *from_obj
, const unsigned char *to_obj
,
1194 int force
, combine_notes_fn combine_fn
)
1196 const unsigned char *note
= get_note(t
, from_obj
);
1197 const unsigned char *existing_note
= get_note(t
, to_obj
);
1199 if (!force
&& existing_note
)
1203 add_note(t
, to_obj
, note
, combine_fn
);
1204 else if (existing_note
)
1205 add_note(t
, to_obj
, null_sha1
, combine_fn
);