]> git.proxmox.com Git - libgit2.git/blame - src/tree.c
New upstream version 0.28.4+dfsg.1
[libgit2.git] / src / tree.c
CommitLineData
225fe215 1/*
359fc2d2 2 * Copyright (C) the libgit2 contributors. All rights reserved.
225fe215 3 *
bb742ede
VM
4 * This file is part of libgit2, distributed under the GNU GPL v2 with
5 * a Linking Exception. For full terms see the included COPYING file.
225fe215
VM
6 */
7
225fe215 8#include "tree.h"
eae0bfdc
PP
9
10#include "commit.h"
44908fe7
VM
11#include "git2/repository.h"
12#include "git2/object.h"
f240acce 13#include "fileops.h"
114f5a6c
RB
14#include "tree-cache.h"
15#include "index.h"
225fe215 16
c8f5ff8f 17#define DEFAULT_TREE_SIZE 16
9de27ad0 18#define MAX_FILEMODE_BYTES 6
c8f5ff8f 19
aadad405 20#define TREE_ENTRY_CHECK_NAMELEN(n) \
ac3d33df 21 if (n > UINT16_MAX) { git_error_set(GIT_ERROR_INVALID, "tree entry path too long"); }
aadad405 22
a7dbac0b 23static bool valid_filemode(const int filemode)
8e9bfa4c 24{
a7dbac0b 25 return (filemode == GIT_FILEMODE_TREE
26 || filemode == GIT_FILEMODE_BLOB
a7dbac0b 27 || filemode == GIT_FILEMODE_BLOB_EXECUTABLE
28 || filemode == GIT_FILEMODE_LINK
29 || filemode == GIT_FILEMODE_COMMIT);
0ad6efa1
VM
30}
31
f1c75b94
CMN
32GIT_INLINE(git_filemode_t) normalize_filemode(git_filemode_t filemode)
33{
34 /* Tree bits set, but it's not a commit */
f240acce 35 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_TREE)
f1c75b94
CMN
36 return GIT_FILEMODE_TREE;
37
f240acce 38 /* If any of the x bits are set */
a7fcc44d 39 if (GIT_PERMS_IS_EXEC(filemode))
f1c75b94
CMN
40 return GIT_FILEMODE_BLOB_EXECUTABLE;
41
42 /* 16XXXX means commit */
f240acce 43 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_COMMIT)
f1c75b94
CMN
44 return GIT_FILEMODE_COMMIT;
45
c8fb2e15 46 /* 12XXXX means symlink */
f240acce 47 if (GIT_MODE_TYPE(filemode) == GIT_FILEMODE_LINK)
f1c75b94
CMN
48 return GIT_FILEMODE_LINK;
49
50 /* Otherwise, return a blob */
51 return GIT_FILEMODE_BLOB;
52}
53
dce7b1a4 54static int valid_entry_name(git_repository *repo, const char *filename)
28c1451a 55{
cfeef7ce 56 return *filename != '\0' &&
4b3ec53c 57 git_path_isvalid(repo, filename, 0,
dce7b1a4 58 GIT_PATH_REJECT_TRAVERSAL | GIT_PATH_REJECT_DOT_GIT | GIT_PATH_REJECT_SLASH);
28c1451a
VM
59}
60
0c468633 61static int entry_sort_cmp(const void *a, const void *b)
28c1451a 62{
0c468633
RB
63 const git_tree_entry *e1 = (const git_tree_entry *)a;
64 const git_tree_entry *e2 = (const git_tree_entry *)b;
65
1744fafe 66 return git_path_cmp(
98527b5b 67 e1->filename, e1->filename_len, git_tree_entry__is_tree(e1),
0c468633
RB
68 e2->filename, e2->filename_len, git_tree_entry__is_tree(e2),
69 git__strncmp);
98527b5b
RB
70}
71
0c468633 72int git_tree_entry_cmp(const git_tree_entry *e1, const git_tree_entry *e2)
98527b5b 73{
0c468633 74 return entry_sort_cmp(e1, e2);
98527b5b
RB
75}
76
ed970748 77/**
4ed9e939
CMN
78 * Allocate a new self-contained entry, with enough space after it to
79 * store the filename and the id.
ed970748 80 */
4ed9e939 81static git_tree_entry *alloc_entry(const char *filename, size_t filename_len, const git_oid *id)
ed970748
CMN
82{
83 git_tree_entry *entry = NULL;
2580077f 84 size_t tree_len;
ed970748 85
aadad405 86 TREE_ENTRY_CHECK_NAMELEN(filename_len);
95ae3520 87
4ed9e939
CMN
88 if (GIT_ADD_SIZET_OVERFLOW(&tree_len, sizeof(git_tree_entry), filename_len) ||
89 GIT_ADD_SIZET_OVERFLOW(&tree_len, tree_len, 1) ||
90 GIT_ADD_SIZET_OVERFLOW(&tree_len, tree_len, GIT_OID_RAWSZ))
95ae3520
CMN
91 return NULL;
92
4ed9e939 93 entry = git__calloc(1, tree_len);
95ae3520 94 if (!entry)
ed970748
CMN
95 return NULL;
96
4ed9e939 97 {
60a194aa
CMN
98 char *filename_ptr;
99 void *id_ptr;
100
101 filename_ptr = ((char *) entry) + sizeof(git_tree_entry);
102 memcpy(filename_ptr, filename, filename_len);
103 entry->filename = filename_ptr;
104
105 id_ptr = filename_ptr + filename_len + 1;
106 git_oid_cpy(id_ptr, id);
107 entry->oid = id_ptr;
108 }
109
aadad405 110 entry->filename_len = (uint16_t)filename_len;
ed970748
CMN
111
112 return entry;
113}
114
761aa2aa
VM
115struct tree_key_search {
116 const char *filename;
ee42bb0e 117 uint16_t filename_len;
761aa2aa
VM
118};
119
28c1451a 120static int homing_search_cmp(const void *key, const void *array_member)
2a884588 121{
0cbbdc26
KS
122 const struct tree_key_search *ksearch = key;
123 const git_tree_entry *entry = array_member;
2a884588 124
aadad405
ET
125 const uint16_t len1 = ksearch->filename_len;
126 const uint16_t len2 = entry->filename_len;
e6629d83 127
28c1451a
VM
128 return memcmp(
129 ksearch->filename,
130 entry->filename,
131 len1 < len2 ? len1 : len2
132 );
9de27ad0
SJ
133}
134
28c1451a
VM
135/*
136 * Search for an entry in a given tree.
137 *
138 * Note that this search is performed in two steps because
139 * of the way tree entries are sorted internally in git:
140 *
141 * Entries in a tree are not sorted alphabetically; two entries
142 * with the same root prefix will have different positions
143 * depending on whether they are folders (subtrees) or normal files.
144 *
145 * Consequently, it is not possible to find an entry on the tree
146 * with a binary search if you don't know whether the filename
147 * you're looking for is a folder or a normal file.
148 *
149 * To work around this, we first perform a homing binary search
150 * on the tree, using the minimal length root prefix of our filename.
151 * Once the comparisons for this homing search start becoming
152 * ambiguous because of folder vs file sorting, we look linearly
153 * around the area for our target file.
154 */
16248ee2 155static int tree_key_search(
e2e4bae9
ET
156 size_t *at_pos,
157 const git_tree *tree,
158 const char *filename,
159 size_t filename_len)
2a884588 160{
28c1451a
VM
161 struct tree_key_search ksearch;
162 const git_tree_entry *entry;
11d9f6b3 163 size_t homing, i;
2a884588 164
aadad405
ET
165 TREE_ENTRY_CHECK_NAMELEN(filename_len);
166
28c1451a 167 ksearch.filename = filename;
aadad405 168 ksearch.filename_len = (uint16_t)filename_len;
e6629d83 169
28c1451a
VM
170 /* Initial homing search; find an entry on the tree with
171 * the same prefix as the filename we're looking for */
e2e4bae9
ET
172
173 if (git_array_search(&homing,
174 tree->entries, &homing_search_cmp, &ksearch) < 0)
b60d95c7 175 return GIT_ENOTFOUND; /* just a signal error; not passed back to user */
28c1451a
VM
176
177 /* We found a common prefix. Look forward as long as
178 * there are entries that share the common prefix */
e2e4bae9
ET
179 for (i = homing; i < tree->entries.size; ++i) {
180 entry = git_array_get(tree->entries, i);
28c1451a 181
181bbf14 182 if (homing_search_cmp(&ksearch, entry) < 0)
28c1451a
VM
183 break;
184
0e2fcca8 185 if (entry->filename_len == filename_len &&
11d9f6b3
PK
186 memcmp(filename, entry->filename, filename_len) == 0) {
187 if (at_pos)
188 *at_pos = i;
189
190 return 0;
191 }
8cf2de07 192 }
e6629d83 193
28c1451a
VM
194 /* If we haven't found our filename yet, look backwards
195 * too as long as we have entries with the same prefix */
11d9f6b3
PK
196 if (homing > 0) {
197 i = homing - 1;
e6629d83 198
11d9f6b3 199 do {
e2e4bae9 200 entry = git_array_get(tree->entries, i);
e6629d83 201
11d9f6b3
PK
202 if (homing_search_cmp(&ksearch, entry) > 0)
203 break;
204
205 if (entry->filename_len == filename_len &&
206 memcmp(filename, entry->filename, filename_len) == 0) {
207 if (at_pos)
208 *at_pos = i;
209
210 return 0;
211 }
212 } while (i-- > 0);
28c1451a
VM
213 }
214
215 /* The filename doesn't exist at all */
904b67e6 216 return GIT_ENOTFOUND;
e6629d83
VM
217}
218
0e2fcca8
VM
219void git_tree_entry_free(git_tree_entry *entry)
220{
4ed9e939 221 if (entry == NULL)
1c3edb30 222 return;
223
0e2fcca8
VM
224 git__free(entry);
225}
226
529f342a 227int git_tree_entry_dup(git_tree_entry **dest, const git_tree_entry *source)
0e2fcca8 228{
4ed9e939
CMN
229 git_tree_entry *cpy;
230
529f342a 231 assert(source);
0e2fcca8 232
4ed9e939
CMN
233 cpy = alloc_entry(source->filename, source->filename_len, source->oid);
234 if (cpy == NULL)
60a194aa 235 return -1;
9487585d 236
4ed9e939
CMN
237 cpy->attr = source->attr;
238
239 *dest = cpy;
529f342a 240 return 0;
0e2fcca8
VM
241}
242
116bbdf0 243void git_tree__free(void *_tree)
225fe215 244{
116bbdf0 245 git_tree *tree = _tree;
003c2690 246
60a194aa 247 git_odb_object_free(tree->odb_obj);
e2e4bae9 248 git_array_clear(tree->entries);
3286c408 249 git__free(tree);
225fe215
VM
250}
251
9d7ac675 252git_filemode_t git_tree_entry_filemode(const git_tree_entry *entry)
003c2690 253{
13f670a5
CMN
254 return normalize_filemode(entry->attr);
255}
256
257git_filemode_t git_tree_entry_filemode_raw(const git_tree_entry *entry)
258{
259 return entry->attr;
003c2690
VM
260}
261
0ad6efa1 262const char *git_tree_entry_name(const git_tree_entry *entry)
003c2690 263{
c4b5bedc 264 assert(entry);
2a884588
VM
265 return entry->filename;
266}
003c2690 267
0ad6efa1 268const git_oid *git_tree_entry_id(const git_tree_entry *entry)
2a884588 269{
c4b5bedc 270 assert(entry);
60a194aa 271 return entry->oid;
003c2690
VM
272}
273
ac3d33df 274git_object_t git_tree_entry_type(const git_tree_entry *entry)
ff9a4c13
RG
275{
276 assert(entry);
277
278 if (S_ISGITLINK(entry->attr))
ac3d33df 279 return GIT_OBJECT_COMMIT;
ff9a4c13 280 else if (S_ISDIR(entry->attr))
ac3d33df 281 return GIT_OBJECT_TREE;
ff9a4c13 282 else
ac3d33df 283 return GIT_OBJECT_BLOB;
ff9a4c13
RG
284}
285
9d0011fd
VM
286int git_tree_entry_to_object(
287 git_object **object_out,
288 git_repository *repo,
289 const git_tree_entry *entry)
003c2690 290{
1795f879 291 assert(entry && object_out);
ac3d33df 292 return git_object_lookup(object_out, repo, entry->oid, GIT_OBJECT_ANY);
122c3405
VM
293}
294
16248ee2 295static const git_tree_entry *entry_fromname(
58206c9a 296 const git_tree *tree, const char *name, size_t name_len)
2a884588 297{
11d9f6b3
PK
298 size_t idx;
299
e2e4bae9 300 if (tree_key_search(&idx, tree, name, name_len) < 0)
c4034e63
VM
301 return NULL;
302
e2e4bae9 303 return git_array_get(tree->entries, idx);
2a884588
VM
304}
305
16248ee2 306const git_tree_entry *git_tree_entry_byname(
58206c9a 307 const git_tree *tree, const char *filename)
0e2fcca8
VM
308{
309 assert(tree && filename);
aadad405 310
0e2fcca8
VM
311 return entry_fromname(tree, filename, strlen(filename));
312}
313
16248ee2 314const git_tree_entry *git_tree_entry_byindex(
58206c9a 315 const git_tree *tree, size_t idx)
003c2690 316{
c4b5bedc 317 assert(tree);
e2e4bae9 318 return git_array_get(tree->entries, idx);
003c2690
VM
319}
320
f000ee4e
CMN
321const git_tree_entry *git_tree_entry_byid(
322 const git_tree *tree, const git_oid *id)
2031760c 323{
16248ee2
RB
324 size_t i;
325 const git_tree_entry *e;
2031760c
RB
326
327 assert(tree);
328
e2e4bae9 329 git_array_foreach(tree->entries, i, e) {
60a194aa 330 if (memcmp(&e->oid->id, &id->id, sizeof(id->id)) == 0)
2031760c
RB
331 return e;
332 }
333
334 return NULL;
335}
336
e120123e 337size_t git_tree_entrycount(const git_tree *tree)
003c2690 338{
c4b5bedc 339 assert(tree);
e2e4bae9 340 return tree->entries.size;
003c2690
VM
341}
342
5fb98206
JW
343unsigned int git_treebuilder_entrycount(git_treebuilder *bld)
344{
345 assert(bld);
fcc60066
CMN
346
347 return git_strmap_num_entries(bld->map);
5fb98206
JW
348}
349
cfeef7ce 350static int tree_error(const char *str, const char *path)
d8603ed9 351{
cfeef7ce 352 if (path)
ac3d33df 353 git_error_set(GIT_ERROR_TREE, "%s - %s", str, path);
cfeef7ce 354 else
ac3d33df 355 git_error_set(GIT_ERROR_TREE, "%s", str);
3aa351ea
CMN
356 return -1;
357}
2a884588 358
ac3d33df 359static int parse_mode(uint16_t *mode_out, const char *buffer, size_t buffer_len, const char **buffer_out)
0174f21b 360{
ac3d33df
JK
361 int32_t mode;
362 int error;
0174f21b 363
ac3d33df 364 if (!buffer_len || git__isspace(*buffer))
0174f21b
CMN
365 return -1;
366
ac3d33df
JK
367 if ((error = git__strntol32(&mode, buffer, buffer_len, buffer_out, 8)) < 0)
368 return error;
369
370 if (mode < 0 || mode > UINT16_MAX)
371 return -1;
372
373 *mode_out = mode;
0174f21b
CMN
374
375 return 0;
376}
377
ac3d33df 378int git_tree__parse_raw(void *_tree, const char *data, size_t size)
3aa351ea 379{
116bbdf0 380 git_tree *tree = _tree;
60a194aa
CMN
381 const char *buffer;
382 const char *buffer_end;
383
ac3d33df
JK
384 buffer = data;
385 buffer_end = buffer + size;
78606263 386
ac3d33df 387 tree->odb_obj = NULL;
e2e4bae9 388 git_array_init_to_size(tree->entries, DEFAULT_TREE_SIZE);
ac3d33df 389 GIT_ERROR_CHECK_ARRAY(tree->entries);
e4def81a 390
003c2690
VM
391 while (buffer < buffer_end) {
392 git_tree_entry *entry;
2580077f
CMN
393 size_t filename_len;
394 const char *nul;
ac3d33df 395 uint16_t attr;
d8603ed9 396
ac3d33df 397 if (parse_mode(&attr, buffer, buffer_end - buffer, &buffer) < 0 || !buffer)
eae0bfdc 398 return tree_error("failed to parse tree: can't parse filemode", NULL);
8e9bfa4c 399
ac3d33df
JK
400 if (buffer >= buffer_end || (*buffer++) != ' ')
401 return tree_error("failed to parse tree: missing space after filemode", NULL);
402
2580077f 403 if ((nul = memchr(buffer, 0, buffer_end - buffer)) == NULL)
eae0bfdc 404 return tree_error("failed to parse tree: object is corrupted", NULL);
58519018 405
ac3d33df 406 if ((filename_len = nul - buffer) == 0 || filename_len > UINT16_MAX)
eae0bfdc 407 return tree_error("failed to parse tree: can't parse filename", NULL);
4974e3a5
PS
408
409 if ((buffer_end - (nul + 1)) < GIT_OID_RAWSZ)
eae0bfdc 410 return tree_error("failed to parse tree: can't parse OID", NULL);
4974e3a5 411
e2e4bae9 412 /* Allocate the entry */
0e2fcca8 413 {
e2e4bae9 414 entry = git_array_alloc(tree->entries);
ac3d33df 415 GIT_ERROR_CHECK_ALLOC(entry);
0e2fcca8 416
0e2fcca8 417 entry->attr = attr;
ac3d33df 418 entry->filename_len = (uint16_t)filename_len;
4ed9e939
CMN
419 entry->filename = buffer;
420 entry->oid = (git_oid *) ((char *) buffer + filename_len + 1);
0e2fcca8 421 }
d8603ed9 422
2580077f 423 buffer += filename_len + 1;
d8603ed9 424 buffer += GIT_OID_RAWSZ;
d8603ed9
VM
425 }
426
3aa351ea 427 return 0;
d8603ed9 428}
58519018 429
ac3d33df
JK
430int git_tree__parse(void *_tree, git_odb_object *odb_obj)
431{
432 git_tree *tree = _tree;
433
434 if ((git_tree__parse_raw(tree,
435 git_odb_object_data(odb_obj),
436 git_odb_object_size(odb_obj))) < 0)
437 return -1;
438
439 if (git_odb_object_dup(&tree->odb_obj, odb_obj) < 0)
440 return -1;
441
442 return 0;
443}
444
a8122b5d 445static size_t find_next_dir(const char *dirname, git_index *index, size_t start)
8255c69b 446{
a8122b5d 447 size_t dirlen, i, entries = git_index_entrycount(index);
8255c69b
CMN
448
449 dirlen = strlen(dirname);
450 for (i = start; i < entries; ++i) {
f45d51ff 451 const git_index_entry *entry = git_index_get_byindex(index, i);
8255c69b
CMN
452 if (strlen(entry->path) < dirlen ||
453 memcmp(entry->path, dirname, dirlen) ||
454 (dirlen > 0 && entry->path[dirlen] != '/')) {
455 break;
456 }
457 }
458
459 return i;
460}
461
ac3d33df
JK
462static git_object_t otype_from_mode(git_filemode_t filemode)
463{
464 switch (filemode) {
465 case GIT_FILEMODE_TREE:
466 return GIT_OBJECT_TREE;
467 case GIT_FILEMODE_COMMIT:
468 return GIT_OBJECT_COMMIT;
469 default:
470 return GIT_OBJECT_BLOB;
471 }
472}
473
474static int check_entry(git_repository *repo, const char *filename, const git_oid *id, git_filemode_t filemode)
475{
476 if (!valid_filemode(filemode))
477 return tree_error("failed to insert entry: invalid filemode for file", filename);
478
479 if (!valid_entry_name(repo, filename))
480 return tree_error("failed to insert entry: invalid name for a tree entry", filename);
481
482 if (git_oid_iszero(id))
483 return tree_error("failed to insert entry: invalid null OID", filename);
484
485 if (filemode != GIT_FILEMODE_COMMIT &&
486 !git_object__is_valid(repo, id, otype_from_mode(filemode)))
487 return tree_error("failed to insert entry: invalid object specified", filename);
488
489 return 0;
490}
491
0e2fcca8
VM
492static int append_entry(
493 git_treebuilder *bld,
494 const char *filename,
495 const git_oid *id,
6c7cee42
RD
496 git_filemode_t filemode,
497 bool validate)
9ef9e8c3
VM
498{
499 git_tree_entry *entry;
4d3f1f97 500 int error = 0;
9ef9e8c3 501
ac3d33df
JK
502 if (validate && ((error = check_entry(bld->repo, filename, id, filemode)) < 0))
503 return error;
0d778b1a 504
4ed9e939 505 entry = alloc_entry(filename, strlen(filename), id);
ac3d33df 506 GIT_ERROR_CHECK_ALLOC(entry);
9ef9e8c3 507
a7dbac0b 508 entry->attr = (uint16_t)filemode;
9ef9e8c3 509
73028af8 510 git_strmap_insert(bld->map, entry->filename, entry, &error);
4d3f1f97 511 if (error < 0) {
966fb207 512 git_tree_entry_free(entry);
ac3d33df 513 git_error_set(GIT_ERROR_TREE, "failed to append entry %s to the tree builder", filename);
3aa351ea 514 return -1;
e2237179 515 }
9ef9e8c3 516
3aa351ea 517 return 0;
9ef9e8c3
VM
518}
519
9462c471
VM
520static int write_tree(
521 git_oid *oid,
522 git_repository *repo,
523 git_index *index,
524 const char *dirname,
87aaefe2
MT
525 size_t start,
526 git_buf *shared_buf)
47d8ec56 527{
4a619797 528 git_treebuilder *bld = NULL;
a8122b5d 529 size_t i, entries = git_index_entrycount(index);
4a619797
CMN
530 int error;
531 size_t dirname_len = strlen(dirname);
8255c69b
CMN
532 const git_tree_cache *cache;
533
534 cache = git_tree_cache_get(index->tree, dirname);
c2f8b215 535 if (cache != NULL && cache->entry_count >= 0){
8255c69b 536 git_oid_cpy(oid, &cache->oid);
a8122b5d 537 return (int)find_next_dir(dirname, index, start);
8255c69b 538 }
29e1789b 539
208a2c8a 540 if ((error = git_treebuilder_new(&bld, repo, NULL)) < 0 || bld == NULL)
3aa351ea 541 return -1;
932d1baf 542
4a619797
CMN
543 /*
544 * This loop is unfortunate, but necessary. The index doesn't have
545 * any directores, so we need to handle that manually, and we
546 * need to keep track of the current position.
547 */
548 for (i = start; i < entries; ++i) {
f45d51ff 549 const git_index_entry *entry = git_index_get_byindex(index, i);
16248ee2 550 const char *filename, *next_slash;
4a619797
CMN
551
552 /*
553 * If we've left our (sub)tree, exit the loop and return. The
554 * first check is an early out (and security for the
555 * third). The second check is a simple prefix comparison. The
556 * third check catches situations where there is a directory
557 * win32/sys and a file win32mmap.c. Without it, the following
558 * code believes there is a file win32/mmap.c
559 */
560 if (strlen(entry->path) < dirname_len ||
561 memcmp(entry->path, dirname, dirname_len) ||
562 (dirname_len > 0 && entry->path[dirname_len] != '/')) {
47d8ec56 563 break;
4a619797 564 }
932d1baf 565
4a619797
CMN
566 filename = entry->path + dirname_len;
567 if (*filename == '/')
568 filename++;
569 next_slash = strchr(filename, '/');
570 if (next_slash) {
571 git_oid sub_oid;
572 int written;
573 char *subdir, *last_comp;
574
575 subdir = git__strndup(entry->path, next_slash - entry->path);
ac3d33df 576 GIT_ERROR_CHECK_ALLOC(subdir);
29e1789b 577
4a619797 578 /* Write out the subtree */
87aaefe2 579 written = write_tree(&sub_oid, repo, index, subdir, i, shared_buf);
4a619797 580 if (written < 0) {
cfeef7ce 581 git__free(subdir);
3aa351ea 582 goto on_error;
4a619797
CMN
583 } else {
584 i = written - 1; /* -1 because of the loop increment */
29e1789b 585 }
932d1baf 586
4a619797
CMN
587 /*
588 * We need to figure out what we want toinsert
589 * into this tree. If we're traversing
590 * deps/zlib/, then we only want to write
591 * 'zlib' into the tree.
592 */
593 last_comp = strrchr(subdir, '/');
594 if (last_comp) {
595 last_comp++; /* Get rid of the '/' */
596 } else {
597 last_comp = subdir;
598 }
cfeef7ce 599
6c7cee42 600 error = append_entry(bld, last_comp, &sub_oid, S_IFDIR, true);
3286c408 601 git__free(subdir);
cfeef7ce 602 if (error < 0)
3aa351ea 603 goto on_error;
4a619797 604 } else {
6c7cee42 605 error = append_entry(bld, filename, &entry->id, entry->mode, true);
cfeef7ce 606 if (error < 0)
3aa351ea 607 goto on_error;
47d8ec56 608 }
29e1789b 609 }
932d1baf 610
87aaefe2 611 if (git_treebuilder_write_with_buffer(oid, bld, shared_buf) < 0)
3aa351ea 612 goto on_error;
29e1789b 613
4a619797 614 git_treebuilder_free(bld);
a8122b5d 615 return (int)i;
4a619797 616
3aa351ea
CMN
617on_error:
618 git_treebuilder_free(bld);
619 return -1;
29e1789b
VM
620}
621
16248ee2
RB
622int git_tree__write_index(
623 git_oid *oid, git_index *index, git_repository *repo)
29e1789b 624{
3aa351ea 625 int ret;
7465e873 626 git_tree *tree;
87aaefe2 627 git_buf shared_buf = GIT_BUF_INIT;
3f0d0c85 628 bool old_ignore_case = false;
29e1789b 629
276ea401 630 assert(oid && index && repo);
47d8ec56 631
f92bcaea 632 if (git_index_has_conflicts(index)) {
ac3d33df 633 git_error_set(GIT_ERROR_INDEX,
909d5494 634 "cannot create a tree from a not fully merged index.");
f92bcaea 635 return GIT_EUNMERGED;
636 }
637
c2f8b215 638 if (index->tree != NULL && index->tree->entry_count >= 0) {
8255c69b 639 git_oid_cpy(oid, &index->tree->oid);
3aa351ea 640 return 0;
8255c69b
CMN
641 }
642
3f0d0c85 643 /* The tree cache didn't help us; we'll have to write
cb53669e 644 * out a tree. If the index is ignore_case, we must
3f0d0c85
PK
645 * make it case-sensitive for the duration of the tree-write
646 * operation. */
647
648 if (index->ignore_case) {
649 old_ignore_case = true;
cb53669e 650 git_index__set_ignore_case(index, false);
3f0d0c85
PK
651 }
652
87aaefe2 653 ret = write_tree(oid, repo, index, "", 0, &shared_buf);
ac3d33df 654 git_buf_dispose(&shared_buf);
3f0d0c85
PK
655
656 if (old_ignore_case)
cb53669e 657 git_index__set_ignore_case(index, true);
3f0d0c85 658
7465e873
CMN
659 index->tree = NULL;
660
661 if (ret < 0)
662 return ret;
663
664 git_pool_clear(&index->tree_pool);
665
666 if ((ret = git_tree_lookup(&tree, repo, oid)) < 0)
667 return ret;
668
669 /* Read the tree cache into the index */
670 ret = git_tree_cache_read_tree(&index->tree, tree, &index->tree_pool);
671 git_tree_free(tree);
672
673 return ret;
47d8ec56 674}
0ad6efa1 675
208a2c8a 676int git_treebuilder_new(
dce7b1a4
ET
677 git_treebuilder **builder_p,
678 git_repository *repo,
679 const git_tree *source)
0ad6efa1
VM
680{
681 git_treebuilder *bld;
4d3f1f97 682 size_t i;
0ad6efa1 683
dce7b1a4 684 assert(builder_p && repo);
0ad6efa1
VM
685
686 bld = git__calloc(1, sizeof(git_treebuilder));
ac3d33df 687 GIT_ERROR_CHECK_ALLOC(bld);
0ad6efa1 688
dce7b1a4
ET
689 bld->repo = repo;
690
4d3f1f97 691 if (git_strmap_alloc(&bld->map) < 0) {
966fb207 692 git__free(bld);
4d3f1f97
CMN
693 return -1;
694 }
0ad6efa1 695
0ad6efa1 696 if (source != NULL) {
e2237179 697 git_tree_entry *entry_src;
0ad6efa1 698
e2e4bae9 699 git_array_foreach(source->entries, i, entry_src) {
66439b0b 700 if (append_entry(
701 bld, entry_src->filename,
60a194aa 702 entry_src->oid,
6c7cee42
RD
703 entry_src->attr,
704 false) < 0)
3aa351ea 705 goto on_error;
0ad6efa1
VM
706 }
707 }
708
709 *builder_p = bld;
3aa351ea
CMN
710 return 0;
711
712on_error:
713 git_treebuilder_free(bld);
714 return -1;
0ad6efa1
VM
715}
716
0e2fcca8
VM
717int git_treebuilder_insert(
718 const git_tree_entry **entry_out,
719 git_treebuilder *bld,
720 const char *filename,
721 const git_oid *id,
a7dbac0b 722 git_filemode_t filemode)
0ad6efa1
VM
723{
724 git_tree_entry *entry;
4d3f1f97 725 int error;
ac3d33df 726 size_t pos;
0ad6efa1
VM
727
728 assert(bld && id && filename);
729
ac3d33df
JK
730 if ((error = check_entry(bld->repo, filename, id, filemode)) < 0)
731 return error;
2bbc7d3e 732
978fbb4c
CMN
733 pos = git_strmap_lookup_index(bld->map, filename);
734 if (git_strmap_valid_index(bld->map, pos)) {
735 entry = git_strmap_value_at(bld->map, pos);
4ed9e939 736 git_oid_cpy((git_oid *) entry->oid, id);
978fbb4c 737 } else {
4ed9e939 738 entry = alloc_entry(filename, strlen(filename), id);
ac3d33df 739 GIT_ERROR_CHECK_ALLOC(entry);
93ab370b 740
73028af8 741 git_strmap_insert(bld->map, entry->filename, entry, &error);
0ad6efa1 742
978fbb4c
CMN
743 if (error < 0) {
744 git_tree_entry_free(entry);
ac3d33df 745 git_error_set(GIT_ERROR_TREE, "failed to insert %s", filename);
978fbb4c
CMN
746 return -1;
747 }
4d3f1f97
CMN
748 }
749
11d9f6b3
PK
750 entry->attr = filemode;
751
752 if (entry_out)
0ad6efa1
VM
753 *entry_out = entry;
754
3aa351ea 755 return 0;
0ad6efa1
VM
756}
757
0cbbdc26 758static git_tree_entry *treebuilder_get(git_treebuilder *bld, const char *filename)
0ad6efa1 759{
4d3f1f97 760 git_tree_entry *entry = NULL;
ac3d33df 761 size_t pos;
0ad6efa1
VM
762
763 assert(bld && filename);
764
4d3f1f97
CMN
765 pos = git_strmap_lookup_index(bld->map, filename);
766 if (git_strmap_valid_index(bld->map, pos))
767 entry = git_strmap_value_at(bld->map, pos);
0ad6efa1
VM
768
769 return entry;
770}
771
0cbbdc26
KS
772const git_tree_entry *git_treebuilder_get(git_treebuilder *bld, const char *filename)
773{
774 return treebuilder_get(bld, filename);
775}
776
0ad6efa1
VM
777int git_treebuilder_remove(git_treebuilder *bld, const char *filename)
778{
4d3f1f97 779 git_tree_entry *entry = treebuilder_get(bld, filename);
0ad6efa1 780
4d3f1f97 781 if (entry == NULL)
eae0bfdc 782 return tree_error("failed to remove entry: file isn't in the tree", filename);
0ad6efa1 783
4d3f1f97 784 git_strmap_delete(bld->map, filename);
978fbb4c 785 git_tree_entry_free(entry);
4d3f1f97 786
3aa351ea 787 return 0;
0ad6efa1
VM
788}
789
dce7b1a4 790int git_treebuilder_write(git_oid *oid, git_treebuilder *bld)
87aaefe2
MT
791{
792 int error;
793 git_buf buffer = GIT_BUF_INIT;
794
795 error = git_treebuilder_write_with_buffer(oid, bld, &buffer);
796
ac3d33df 797 git_buf_dispose(&buffer);
87aaefe2
MT
798 return error;
799}
800
801int git_treebuilder_write_with_buffer(git_oid *oid, git_treebuilder *bld, git_buf *tree)
0ad6efa1 802{
e2237179 803 int error = 0;
fcc60066 804 size_t i, entrycount;
9462c471 805 git_odb *odb;
4d3f1f97 806 git_tree_entry *entry;
4f9327fa 807 git_vector entries = GIT_VECTOR_INIT;
0ad6efa1
VM
808
809 assert(bld);
87aaefe2
MT
810 assert(tree);
811
812 git_buf_clear(tree);
0ad6efa1 813
fcc60066 814 entrycount = git_strmap_num_entries(bld->map);
4f9327fa
PS
815 if ((error = git_vector_init(&entries, entrycount, entry_sort_cmp)) < 0)
816 goto out;
0ad6efa1 817
87aaefe2 818 if (tree->asize == 0 &&
4f9327fa
PS
819 (error = git_buf_grow(tree, entrycount * 72)) < 0)
820 goto out;
87aaefe2 821
4d3f1f97 822 git_strmap_foreach_value(bld->map, entry, {
4f9327fa
PS
823 if ((error = git_vector_insert(&entries, entry)) < 0)
824 goto out;
4d3f1f97 825 });
afeecf4f 826
4d3f1f97
CMN
827 git_vector_sort(&entries);
828
4d3f1f97 829 for (i = 0; i < entries.length && !error; ++i) {
8d1e71f5 830 entry = git_vector_get(&entries, i);
0ad6efa1 831
87aaefe2
MT
832 git_buf_printf(tree, "%o ", entry->attr);
833 git_buf_put(tree, entry->filename, entry->filename_len + 1);
834 git_buf_put(tree, (char *)entry->oid->id, GIT_OID_RAWSZ);
0ad6efa1 835
06abbb7f 836 if (git_buf_oom(tree)) {
e2237179 837 error = -1;
06abbb7f
PS
838 goto out;
839 }
e2237179 840 }
9462c471 841
06abbb7f 842 if ((error = git_repository_odb__weakptr(&odb, bld->repo)) == 0)
ac3d33df 843 error = git_odb_write(oid, odb, tree->ptr, tree->size, GIT_OBJECT_TREE);
0ad6efa1 844
4f9327fa 845out:
f5c874a4
CMN
846 git_vector_free(&entries);
847
e2237179 848 return error;
0ad6efa1
VM
849}
850
978fbb4c 851void git_treebuilder_filter(
e120123e
RB
852 git_treebuilder *bld,
853 git_treebuilder_filter_cb filter,
854 void *payload)
0ad6efa1 855{
4d3f1f97 856 const char *filename;
e2237179 857 git_tree_entry *entry;
0ad6efa1
VM
858
859 assert(bld && filter);
860
4d3f1f97
CMN
861 git_strmap_foreach(bld->map, filename, entry, {
862 if (filter(entry, payload)) {
4d3f1f97 863 git_strmap_delete(bld->map, filename);
978fbb4c 864 git_tree_entry_free(entry);
4d3f1f97
CMN
865 }
866 });
0ad6efa1
VM
867}
868
869void git_treebuilder_clear(git_treebuilder *bld)
870{
e2237179
RB
871 git_tree_entry *e;
872
0ad6efa1
VM
873 assert(bld);
874
4d3f1f97 875 git_strmap_foreach_value(bld->map, e, git_tree_entry_free(e));
978fbb4c 876 git_strmap_clear(bld->map);
0ad6efa1
VM
877}
878
879void git_treebuilder_free(git_treebuilder *bld)
880{
b0b3b4e3 881 if (bld == NULL)
882 return;
883
0ad6efa1 884 git_treebuilder_clear(bld);
4d3f1f97 885 git_strmap_free(bld->map);
3286c408 886 git__free(bld);
0ad6efa1
VM
887}
888
0e2fcca8
VM
889static size_t subpath_len(const char *path)
890{
891 const char *slash_pos = strchr(path, '/');
892 if (slash_pos == NULL)
893 return strlen(path);
894
895 return slash_pos - path;
896}
897
898int git_tree_entry_bypath(
899 git_tree_entry **entry_out,
58206c9a 900 const git_tree *root,
0e2fcca8 901 const char *path)
3fa735ca 902{
e172cf08 903 int error = 0;
3fa735ca 904 git_tree *subtree;
0e2fcca8
VM
905 const git_tree_entry *entry;
906 size_t filename_len;
3fa735ca 907
0e2fcca8
VM
908 /* Find how long is the current path component (i.e.
909 * the filename between two slashes */
910 filename_len = subpath_len(path);
3fa735ca 911
0e2fcca8 912 if (filename_len == 0) {
ac3d33df 913 git_error_set(GIT_ERROR_TREE, "invalid tree path given");
0e2fcca8 914 return GIT_ENOTFOUND;
3aa351ea 915 }
3fa735ca 916
0e2fcca8 917 entry = entry_fromname(root, path, filename_len);
3fa735ca 918
3aa351ea 919 if (entry == NULL) {
ac3d33df 920 git_error_set(GIT_ERROR_TREE,
901434b0 921 "the path '%.*s' does not exist in the given tree", (int) filename_len, path);
904b67e6 922 return GIT_ENOTFOUND;
3aa351ea 923 }
0ad6efa1 924
0e2fcca8 925 switch (path[filename_len]) {
2031760c 926 case '/':
0e2fcca8
VM
927 /* If there are more components in the path...
928 * then this entry *must* be a tree */
929 if (!git_tree_entry__is_tree(entry)) {
ac3d33df 930 git_error_set(GIT_ERROR_TREE,
901434b0 931 "the path '%.*s' exists but is not a tree", (int) filename_len, path);
dc1f4b32 932 return GIT_ENOTFOUND;
0e2fcca8
VM
933 }
934
eae0bfdc 935 /* If there's only a slash left in the path, we
0e2fcca8
VM
936 * return the current entry; otherwise, we keep
937 * walking down the path */
938 if (path[filename_len + 1] != '\0')
939 break;
eae0bfdc 940 /* fall through */
0e2fcca8
VM
941 case '\0':
942 /* If there are no more components in the path, return
943 * this entry */
529f342a 944 return git_tree_entry_dup(entry_out, entry);
0e2fcca8 945 }
9432af36 946
60a194aa 947 if (git_tree_lookup(&subtree, root->object.repo, entry->oid) < 0)
0e2fcca8 948 return -1;
3fa735ca 949
0e2fcca8
VM
950 error = git_tree_entry_bypath(
951 entry_out,
9432af36 952 subtree,
0e2fcca8 953 path + filename_len + 1
9432af36 954 );
3fa735ca 955
45e79e37 956 git_tree_free(subtree);
3fa735ca 957 return error;
958}
959
c6f42953 960static int tree_walk(
f45d51ff 961 const git_tree *tree,
9432af36 962 git_treewalk_cb callback,
97769280 963 git_buf *path,
c6f42953
MS
964 void *payload,
965 bool preorder)
da37654d 966{
e172cf08 967 int error = 0;
16248ee2 968 size_t i;
e2237179 969 const git_tree_entry *entry;
da37654d 970
e2e4bae9 971 git_array_foreach(tree->entries, i, entry) {
a6bf1687 972 if (preorder) {
26c1cb91
RB
973 error = callback(path->ptr, entry, payload);
974 if (error < 0) { /* negative value stops iteration */
ac3d33df 975 git_error_set_after_callback_function(error, "git_tree_walk");
26c1cb91
RB
976 break;
977 }
978 if (error > 0) { /* positive value skips this entry */
4e01e302 979 error = 0;
a6bf1687 980 continue;
4e01e302 981 }
a6bf1687 982 }
da37654d 983
9d0011fd 984 if (git_tree_entry__is_tree(entry)) {
da37654d 985 git_tree *subtree;
fa6420f7 986 size_t path_len = git_buf_len(path);
da37654d 987
60a194aa 988 error = git_tree_lookup(&subtree, tree->object.repo, entry->oid);
25e0b157 989 if (error < 0)
97769280 990 break;
da37654d 991
97769280
RB
992 /* append the next entry to the path */
993 git_buf_puts(path, entry->filename);
994 git_buf_putc(path, '/');
da37654d 995
cb8a7961 996 if (git_buf_oom(path))
25e0b157
RB
997 error = -1;
998 else
999 error = tree_walk(subtree, callback, path, payload, preorder);
da37654d 1000
d7fc2eb2 1001 git_tree_free(subtree);
2031760c
RB
1002 if (error != 0)
1003 break;
da37654d 1004
97769280 1005 git_buf_truncate(path, path_len);
da37654d 1006 }
c6f42953 1007
25e0b157 1008 if (!preorder) {
26c1cb91
RB
1009 error = callback(path->ptr, entry, payload);
1010 if (error < 0) { /* negative value stops iteration */
ac3d33df 1011 git_error_set_after_callback_function(error, "git_tree_walk");
26c1cb91
RB
1012 break;
1013 }
25e0b157
RB
1014 error = 0;
1015 }
da37654d
VM
1016 }
1017
2031760c 1018 return error;
da37654d
VM
1019}
1020
e120123e 1021int git_tree_walk(
f45d51ff 1022 const git_tree *tree,
e120123e
RB
1023 git_treewalk_mode mode,
1024 git_treewalk_cb callback,
1025 void *payload)
da37654d 1026{
e172cf08 1027 int error = 0;
97769280 1028 git_buf root_path = GIT_BUF_INIT;
da37654d 1029
e2237179 1030 if (mode != GIT_TREEWALK_POST && mode != GIT_TREEWALK_PRE) {
ac3d33df 1031 git_error_set(GIT_ERROR_INVALID, "invalid walking mode for tree walk");
e120123e 1032 return -1;
da37654d 1033 }
97769280 1034
e2237179
RB
1035 error = tree_walk(
1036 tree, callback, &root_path, payload, (mode == GIT_TREEWALK_PRE));
1037
ac3d33df 1038 git_buf_dispose(&root_path);
97769280
RB
1039
1040 return error;
da37654d 1041}
a1fdea28 1042
9464f9eb
CMN
1043static int compare_entries(const void *_a, const void *_b)
1044{
1045 const git_tree_update *a = (git_tree_update *) _a;
1046 const git_tree_update *b = (git_tree_update *) _b;
1047
1048 return strcmp(a->path, b->path);
1049}
1050
1051static int on_dup_entry(void **old, void *new)
1052{
1053 GIT_UNUSED(old); GIT_UNUSED(new);
1054
ac3d33df 1055 git_error_set(GIT_ERROR_TREE, "duplicate entries given for update");
9464f9eb
CMN
1056 return -1;
1057}
1058
1059/*
1060 * We keep the previous tree and the new one at each level of the
1061 * stack. When we leave a level we're done with that tree and we can
1062 * write it out to the odb.
1063 */
1064typedef struct {
1065 git_treebuilder *bld;
1066 git_tree *tree;
1067 char *name;
1068} tree_stack_entry;
1069
1070/** Count how many slashes (i.e. path components) there are in this string */
1071GIT_INLINE(size_t) count_slashes(const char *path)
1072{
1073 size_t count = 0;
1074 const char *slash;
1075
1076 while ((slash = strchr(path, '/')) != NULL) {
1077 count++;
1078 path = slash + 1;
1079 }
1080
1081 return count;
1082}
1083
1084static bool next_component(git_buf *out, const char *in)
1085{
1086 const char *slash = strchr(in, '/');
1087
1088 git_buf_clear(out);
1089
1090 if (slash)
1091 git_buf_put(out, in, slash - in);
1092
1093 return !!slash;
1094}
1095
1096static int create_popped_tree(tree_stack_entry *current, tree_stack_entry *popped, git_buf *component)
1097{
1098 int error;
1099 git_oid new_tree;
1100
1101 git_tree_free(popped->tree);
a2cb4713
CMN
1102
1103 /* If the tree would be empty, remove it from the one higher up */
1104 if (git_treebuilder_entrycount(popped->bld) == 0) {
1105 git_treebuilder_free(popped->bld);
1106 error = git_treebuilder_remove(current->bld, popped->name);
1107 git__free(popped->name);
1108 return error;
1109 }
1110
9464f9eb
CMN
1111 error = git_treebuilder_write(&new_tree, popped->bld);
1112 git_treebuilder_free(popped->bld);
1113
1114 if (error < 0) {
1115 git__free(popped->name);
1116 return error;
1117 }
1118
1119 /* We've written out the tree, now we have to put the new value into its parent */
1120 git_buf_clear(component);
1121 git_buf_puts(component, popped->name);
1122 git__free(popped->name);
1123
ac3d33df 1124 GIT_ERROR_CHECK_ALLOC(component->ptr);
9464f9eb
CMN
1125
1126 /* Error out if this would create a D/F conflict in this update */
1127 if (current->tree) {
1128 const git_tree_entry *to_replace;
1129 to_replace = git_tree_entry_byname(current->tree, component->ptr);
ac3d33df
JK
1130 if (to_replace && git_tree_entry_type(to_replace) != GIT_OBJECT_TREE) {
1131 git_error_set(GIT_ERROR_TREE, "D/F conflict when updating tree");
9464f9eb
CMN
1132 return -1;
1133 }
1134 }
1135
1136 return git_treebuilder_insert(NULL, current->bld, component->ptr, &new_tree, GIT_FILEMODE_TREE);
1137}
1138
1139int git_tree_create_updated(git_oid *out, git_repository *repo, git_tree *baseline, size_t nupdates, const git_tree_update *updates)
1140{
1141 git_array_t(tree_stack_entry) stack = GIT_ARRAY_INIT;
1142 tree_stack_entry *root_elem;
1143 git_vector entries;
1144 int error;
1145 size_t i;
1146 git_buf component = GIT_BUF_INIT;
1147
1148 if ((error = git_vector_init(&entries, nupdates, compare_entries)) < 0)
1149 return error;
1150
1151 /* Sort the entries for treversal */
1152 for (i = 0 ; i < nupdates; i++) {
1153 if ((error = git_vector_insert_sorted(&entries, (void *) &updates[i], on_dup_entry)) < 0)
1154 goto cleanup;
1155 }
1156
1157 root_elem = git_array_alloc(stack);
ac3d33df 1158 GIT_ERROR_CHECK_ALLOC(root_elem);
9464f9eb
CMN
1159 memset(root_elem, 0, sizeof(*root_elem));
1160
1161 if (baseline && (error = git_tree_dup(&root_elem->tree, baseline)) < 0)
1162 goto cleanup;
1163
1164 if ((error = git_treebuilder_new(&root_elem->bld, repo, root_elem->tree)) < 0)
1165 goto cleanup;
1166
1167 for (i = 0; i < nupdates; i++) {
b85929c5
CMN
1168 const git_tree_update *last_update = i == 0 ? NULL : git_vector_get(&entries, i-1);
1169 const git_tree_update *update = git_vector_get(&entries, i);
9464f9eb
CMN
1170 size_t common_prefix = 0, steps_up, j;
1171 const char *path;
1172
1173 /* Figure out how much we need to change from the previous tree */
1174 if (last_update)
1175 common_prefix = git_path_common_dirlen(last_update->path, update->path);
1176
1177 /*
1178 * The entries are sorted, so when we find we're no
1179 * longer in the same directory, we need to abandon
1180 * the old tree (steps up) and dive down to the next
1181 * one.
1182 */
1183 steps_up = last_update == NULL ? 0 : count_slashes(&last_update->path[common_prefix]);
1184
1185 for (j = 0; j < steps_up; j++) {
1186 tree_stack_entry *current, *popped = git_array_pop(stack);
1187 assert(popped);
1188
1189 current = git_array_last(stack);
1190 assert(current);
1191
1192 if ((error = create_popped_tree(current, popped, &component)) < 0)
1193 goto cleanup;
1194 }
1195
1196 /* Now that we've created the trees we popped from the stack, let's go back down */
1197 path = &update->path[common_prefix];
1198 while (next_component(&component, path)) {
1199 tree_stack_entry *last, *new_entry;
1200 const git_tree_entry *entry;
1201
1202 last = git_array_last(stack);
1203 entry = last->tree ? git_tree_entry_byname(last->tree, component.ptr) : NULL;
89776585
CMN
1204 if (!entry)
1205 entry = treebuilder_get(last->bld, component.ptr);
1206
ac3d33df
JK
1207 if (entry && git_tree_entry_type(entry) != GIT_OBJECT_TREE) {
1208 git_error_set(GIT_ERROR_TREE, "D/F conflict when updating tree");
9464f9eb
CMN
1209 error = -1;
1210 goto cleanup;
1211 }
1212
1213 new_entry = git_array_alloc(stack);
ac3d33df 1214 GIT_ERROR_CHECK_ALLOC(new_entry);
9464f9eb
CMN
1215 memset(new_entry, 0, sizeof(*new_entry));
1216
1217 new_entry->tree = NULL;
1218 if (entry && (error = git_tree_lookup(&new_entry->tree, repo, git_tree_entry_id(entry))) < 0)
1219 goto cleanup;
1220
1221 if ((error = git_treebuilder_new(&new_entry->bld, repo, new_entry->tree)) < 0)
1222 goto cleanup;
1223
1224 new_entry->name = git__strdup(component.ptr);
ac3d33df 1225 GIT_ERROR_CHECK_ALLOC(new_entry->name);
9464f9eb
CMN
1226
1227 /* Get to the start of the next component */
1228 path += component.size + 1;
1229 }
1230
1231 /* After all that, we're finally at the place where we want to perform the update */
1232 switch (update->action) {
1233 case GIT_TREE_UPDATE_UPSERT:
1234 {
1235 /* Make sure we're replacing something of the same type */
1236 tree_stack_entry *last = git_array_last(stack);
53412305 1237 char *basename = git_path_basename(update->path);
9464f9eb
CMN
1238 const git_tree_entry *e = git_treebuilder_get(last->bld, basename);
1239 if (e && git_tree_entry_type(e) != git_object__type_from_filemode(update->filemode)) {
53412305 1240 git__free(basename);
ac3d33df 1241 git_error_set(GIT_ERROR_TREE, "cannot replace '%s' with '%s' at '%s'",
9464f9eb
CMN
1242 git_object_type2string(git_tree_entry_type(e)),
1243 git_object_type2string(git_object__type_from_filemode(update->filemode)),
1244 update->path);
53412305
CMN
1245 error = -1;
1246 goto cleanup;
9464f9eb
CMN
1247 }
1248
1249 error = git_treebuilder_insert(NULL, last->bld, basename, &update->id, update->filemode);
53412305 1250 git__free(basename);
9464f9eb
CMN
1251 break;
1252 }
1253 case GIT_TREE_UPDATE_REMOVE:
53412305
CMN
1254 {
1255 char *basename = git_path_basename(update->path);
1256 error = git_treebuilder_remove(git_array_last(stack)->bld, basename);
1257 git__free(basename);
9464f9eb 1258 break;
53412305 1259 }
9464f9eb 1260 default:
ac3d33df 1261 git_error_set(GIT_ERROR_TREE, "unknown action for update");
9464f9eb
CMN
1262 error = -1;
1263 goto cleanup;
1264 }
1265
1266 if (error < 0)
1267 goto cleanup;
1268 }
1269
1270 /* We're done, go up the stack again and write out the tree */
1271 {
1272 tree_stack_entry *current = NULL, *popped = NULL;
1273 while ((popped = git_array_pop(stack)) != NULL) {
1274 current = git_array_last(stack);
1275 /* We've reached the top, current is the root tree */
1276 if (!current)
1277 break;
1278
1279 if ((error = create_popped_tree(current, popped, &component)) < 0)
1280 goto cleanup;
1281 }
1282
1283 /* Write out the root tree */
1284 git__free(popped->name);
1285 git_tree_free(popped->tree);
1286
1287 error = git_treebuilder_write(out, popped->bld);
1288 git_treebuilder_free(popped->bld);
1289 if (error < 0)
1290 goto cleanup;
1291 }
1292
1293cleanup:
1294 {
1295 tree_stack_entry *e;
1296 while ((e = git_array_pop(stack)) != NULL) {
1297 git_treebuilder_free(e->bld);
1298 git_tree_free(e->tree);
1299 git__free(e->name);
1300 }
1301 }
1302
ac3d33df 1303 git_buf_dispose(&component);
9464f9eb
CMN
1304 git_array_clear(stack);
1305 git_vector_free(&entries);
1306 return error;
1307}