Blame


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