Coverage Report

Created: 2024-09-08 06:23

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