send-email: fix garbage removal after address
[git.git] / pack-objects.c
blob9558d13834e2842d32fa4015f2e3c00538d52dcd
1 #include "cache.h"
2 #include "object.h"
3 #include "pack.h"
4 #include "pack-objects.h"
6 static uint32_t locate_object_entry_hash(struct packing_data *pdata,
7 const unsigned char *sha1,
8 int *found)
10 uint32_t i, mask = (pdata->index_size - 1);
12 i = sha1hash(sha1) & mask;
14 while (pdata->index[i] > 0) {
15 uint32_t pos = pdata->index[i] - 1;
17 if (!hashcmp(sha1, pdata->objects[pos].idx.oid.hash)) {
18 *found = 1;
19 return i;
22 i = (i + 1) & mask;
25 *found = 0;
26 return i;
29 static inline uint32_t closest_pow2(uint32_t v)
31 v = v - 1;
32 v |= v >> 1;
33 v |= v >> 2;
34 v |= v >> 4;
35 v |= v >> 8;
36 v |= v >> 16;
37 return v + 1;
40 static void rehash_objects(struct packing_data *pdata)
42 uint32_t i;
43 struct object_entry *entry;
45 pdata->index_size = closest_pow2(pdata->nr_objects * 3);
46 if (pdata->index_size < 1024)
47 pdata->index_size = 1024;
49 free(pdata->index);
50 pdata->index = xcalloc(pdata->index_size, sizeof(*pdata->index));
52 entry = pdata->objects;
54 for (i = 0; i < pdata->nr_objects; i++) {
55 int found;
56 uint32_t ix = locate_object_entry_hash(pdata,
57 entry->idx.oid.hash,
58 &found);
60 if (found)
61 die("BUG: Duplicate object in hash");
63 pdata->index[ix] = i + 1;
64 entry++;
68 struct object_entry *packlist_find(struct packing_data *pdata,
69 const unsigned char *sha1,
70 uint32_t *index_pos)
72 uint32_t i;
73 int found;
75 if (!pdata->index_size)
76 return NULL;
78 i = locate_object_entry_hash(pdata, sha1, &found);
80 if (index_pos)
81 *index_pos = i;
83 if (!found)
84 return NULL;
86 return &pdata->objects[pdata->index[i] - 1];
89 struct object_entry *packlist_alloc(struct packing_data *pdata,
90 const unsigned char *sha1,
91 uint32_t index_pos)
93 struct object_entry *new_entry;
95 if (pdata->nr_objects >= pdata->nr_alloc) {
96 pdata->nr_alloc = (pdata->nr_alloc + 1024) * 3 / 2;
97 REALLOC_ARRAY(pdata->objects, pdata->nr_alloc);
100 new_entry = pdata->objects + pdata->nr_objects++;
102 memset(new_entry, 0, sizeof(*new_entry));
103 hashcpy(new_entry->idx.oid.hash, sha1);
105 if (pdata->index_size * 3 <= pdata->nr_objects * 4)
106 rehash_objects(pdata);
107 else
108 pdata->index[index_pos] = pdata->nr_objects;
110 return new_entry;