Blob


1 /*
2 * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include <sys/queue.h>
19 #include <stdlib.h>
20 #include <string.h>
21 #include <sha1.h>
22 #include <stdio.h>
23 #include <zlib.h>
24 #include <limits.h>
26 #include "got_object.h"
27 #include "got_error.h"
29 #include "got_lib_delta.h"
30 #include "got_lib_zbuf.h"
31 #include "got_lib_object.h"
32 #include "got_lib_object_idset.h"
34 #ifndef nitems
35 #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
36 #endif
38 struct got_object_idset_element {
39 TAILQ_ENTRY(got_object_idset_element) entry;
40 struct got_object_id id;
41 void *data; /* API user data */
42 };
44 struct got_object_idset {
45 /*
46 * A set is implemented as a collection of 256 lists.
47 * The value of the first byte of an object ID determines
48 * which of these lists an object ID is stored in.
49 */
50 TAILQ_HEAD(, got_object_idset_element) entries[0xff + 1];
51 unsigned int nelem;
52 #define GOT_OBJECT_IDSET_MAX_ELEM UINT_MAX
53 };
55 struct got_object_idset *
56 got_object_idset_alloc(void)
57 {
58 struct got_object_idset *set;
59 int i;
61 set = calloc(1, sizeof(*set));
62 if (set == NULL)
63 return NULL;
65 for (i = 0; i < nitems(set->entries); i++)
66 TAILQ_INIT(&set->entries[i]);
68 return set;
69 }
71 void
72 got_object_idset_free(struct got_object_idset *set)
73 {
74 struct got_object_idset_element *entry;
75 int i;
77 for (i = 0; i < nitems(set->entries); i++) {
78 while (!TAILQ_EMPTY(&set->entries[i])) {
79 entry = TAILQ_FIRST(&set->entries[i]);
80 TAILQ_REMOVE(&set->entries[i], entry, entry);
81 /* User data should be freed by caller. */
82 free(entry);
83 }
84 }
85 free(set);
86 }
88 const struct got_error *
89 got_object_idset_add(struct got_object_idset *set, struct got_object_id *id,
90 void *data)
91 {
92 struct got_object_idset_element *new, *entry;
93 uint8_t i = id->sha1[0];
95 if (set->nelem >= GOT_OBJECT_IDSET_MAX_ELEM)
96 return got_error(GOT_ERR_NO_SPACE);
98 new = calloc(1, sizeof(*new));
99 if (new == NULL)
100 return got_error_from_errno();
102 memcpy(&new->id, id, sizeof(new->id));
103 new->data = data;
105 if (TAILQ_EMPTY(&set->entries[i])) {
106 TAILQ_INSERT_HEAD(&set->entries[i], new, entry);
107 set->nelem++;
108 return NULL;
111 /*
112 * Keep the list sorted by ID so that iterations of
113 * the set occur in a predictable order.
114 */
115 TAILQ_FOREACH(entry, &set->entries[i], entry) {
116 int cmp = got_object_id_cmp(&new->id, &entry->id);
117 struct got_object_idset_element *next;
119 if (cmp == 0) {
120 free(new);
121 return got_error(GOT_ERR_OBJ_EXISTS);
122 } else if (cmp < 0) {
123 TAILQ_INSERT_BEFORE(entry, new, entry);
124 set->nelem++;
125 return NULL;
128 next = TAILQ_NEXT(entry, entry);
129 if (next == NULL) {
130 TAILQ_INSERT_AFTER(&set->entries[i], entry, new, entry);
131 set->nelem++;
132 return NULL;
133 } else if (got_object_id_cmp(&new->id, &next->id) > 0) {
134 TAILQ_INSERT_BEFORE(next, new, entry);
135 set->nelem++;
136 return NULL;
140 return got_error(GOT_ERR_BAD_OBJ_ID); /* should not get here */
143 void *
144 got_object_idset_get_data(struct got_object_idset *set,
145 struct got_object_id *id)
147 struct got_object_idset_element *entry;
148 uint8_t i = id->sha1[0];
150 TAILQ_FOREACH(entry, &set->entries[i], entry) {
151 if (got_object_id_cmp(&entry->id, id) == 0)
152 return entry->data;
155 return NULL;
158 const struct got_error *
159 got_object_idset_remove(struct got_object_idset *set,
160 struct got_object_id *id)
162 struct got_object_idset_element *entry, *tmp;
163 uint8_t i = id->sha1[0];
165 if (set->nelem == 0)
166 return got_error(GOT_ERR_NO_OBJ);
168 TAILQ_FOREACH_SAFE(entry, &set->entries[i], entry, tmp) {
169 if (got_object_id_cmp(&entry->id, id) == 0) {
170 TAILQ_REMOVE(&set->entries[i], entry, entry);
171 set->nelem--;
172 return NULL;
176 return got_error(GOT_ERR_NO_OBJ);
179 int
180 got_object_idset_contains(struct got_object_idset *set,
181 struct got_object_id *id)
183 struct got_object_idset_element *entry;
184 uint8_t i = id->sha1[0];
186 TAILQ_FOREACH(entry, &set->entries[i], entry) {
187 if (got_object_id_cmp(&entry->id, id) == 0)
188 return 1;
191 return 0;
194 void got_object_idset_for_each(struct got_object_idset *set,
195 void (*cb)(struct got_object_id *, void *))
197 struct got_object_idset_element *entry;
198 int i;
200 for (i = 0; i < nitems(set->entries); i++) {
201 TAILQ_FOREACH(entry, &set->entries[i], entry)
202 cb(&entry->id, entry->data);
206 unsigned int
207 got_object_idset_num_elements(struct got_object_idset *set)
209 return set->nelem;