Blame


1 54be8251 2018-06-04 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 984e8a45 2018-11-05 stsp #include <sys/tree.h>
19 54be8251 2018-06-04 stsp
20 54be8251 2018-06-04 stsp #include <stdlib.h>
21 54be8251 2018-06-04 stsp #include <string.h>
22 54be8251 2018-06-04 stsp #include <sha1.h>
23 54be8251 2018-06-04 stsp #include <stdio.h>
24 54be8251 2018-06-04 stsp #include <zlib.h>
25 c6f420bf 2018-06-04 stsp #include <limits.h>
26 788c352e 2018-06-16 stsp #include <time.h>
27 54be8251 2018-06-04 stsp
28 54be8251 2018-06-04 stsp #include "got_object.h"
29 54be8251 2018-06-04 stsp #include "got_error.h"
30 54be8251 2018-06-04 stsp
31 54be8251 2018-06-04 stsp #include "got_lib_delta.h"
32 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
33 54be8251 2018-06-04 stsp #include "got_lib_object.h"
34 54be8251 2018-06-04 stsp #include "got_lib_object_idset.h"
35 54be8251 2018-06-04 stsp
36 54be8251 2018-06-04 stsp struct got_object_idset_element {
37 e336e3d6 2018-11-05 stsp RB_ENTRY(got_object_idset_element) entry;
38 54be8251 2018-06-04 stsp struct got_object_id id;
39 54be8251 2018-06-04 stsp void *data; /* API user data */
40 54be8251 2018-06-04 stsp };
41 54be8251 2018-06-04 stsp
42 e336e3d6 2018-11-05 stsp RB_HEAD(got_object_idset_tree, got_object_idset_element);
43 984e8a45 2018-11-05 stsp
44 984e8a45 2018-11-05 stsp static int
45 984e8a45 2018-11-05 stsp cmp_elements(const struct got_object_idset_element *e1,
46 984e8a45 2018-11-05 stsp const struct got_object_idset_element *e2)
47 984e8a45 2018-11-05 stsp {
48 984e8a45 2018-11-05 stsp return got_object_id_cmp(&e1->id, &e2->id);
49 984e8a45 2018-11-05 stsp }
50 984e8a45 2018-11-05 stsp
51 e336e3d6 2018-11-05 stsp RB_PROTOTYPE(got_object_idset_tree, got_object_idset_element, entry,
52 984e8a45 2018-11-05 stsp cmp_elements);
53 984e8a45 2018-11-05 stsp
54 54be8251 2018-06-04 stsp struct got_object_idset {
55 984e8a45 2018-11-05 stsp struct got_object_idset_tree entries;
56 2bd394ff 2018-06-22 stsp int totelem;
57 069f84d5 2018-06-11 stsp #define GOT_OBJECT_IDSET_MAX_ELEM INT_MAX
58 54be8251 2018-06-04 stsp };
59 54be8251 2018-06-04 stsp
60 54be8251 2018-06-04 stsp struct got_object_idset *
61 60f2eee1 2018-07-08 stsp got_object_idset_alloc(void)
62 54be8251 2018-06-04 stsp {
63 54be8251 2018-06-04 stsp struct got_object_idset *set;
64 54be8251 2018-06-04 stsp
65 984e8a45 2018-11-05 stsp set = malloc(sizeof(*set));
66 54be8251 2018-06-04 stsp if (set == NULL)
67 54be8251 2018-06-04 stsp return NULL;
68 54be8251 2018-06-04 stsp
69 e336e3d6 2018-11-05 stsp RB_INIT(&set->entries);
70 984e8a45 2018-11-05 stsp set->totelem = 0;
71 54be8251 2018-06-04 stsp
72 54be8251 2018-06-04 stsp return set;
73 54be8251 2018-06-04 stsp }
74 54be8251 2018-06-04 stsp
75 54be8251 2018-06-04 stsp void
76 54be8251 2018-06-04 stsp got_object_idset_free(struct got_object_idset *set)
77 54be8251 2018-06-04 stsp {
78 54be8251 2018-06-04 stsp struct got_object_idset_element *entry;
79 54be8251 2018-06-04 stsp
80 e336e3d6 2018-11-05 stsp while ((entry = RB_MIN(got_object_idset_tree, &set->entries))) {
81 e336e3d6 2018-11-05 stsp RB_REMOVE(got_object_idset_tree, &set->entries, entry);
82 984e8a45 2018-11-05 stsp /* User data should be freed by caller. */
83 984e8a45 2018-11-05 stsp free(entry);
84 54be8251 2018-06-04 stsp }
85 984e8a45 2018-11-05 stsp
86 54be8251 2018-06-04 stsp free(set);
87 54be8251 2018-06-04 stsp }
88 54be8251 2018-06-04 stsp
89 54be8251 2018-06-04 stsp const struct got_error *
90 b36429ab 2018-11-05 stsp got_object_idset_add(struct got_object_idset *set, struct got_object_id *id,
91 b36429ab 2018-11-05 stsp void *data)
92 54be8251 2018-06-04 stsp {
93 b36429ab 2018-11-05 stsp struct got_object_idset_element *new;
94 54be8251 2018-06-04 stsp
95 2bd394ff 2018-06-22 stsp if (set->totelem >= GOT_OBJECT_IDSET_MAX_ELEM)
96 c6f420bf 2018-06-04 stsp return got_error(GOT_ERR_NO_SPACE);
97 c6f420bf 2018-06-04 stsp
98 294f39b0 2018-11-05 stsp new = malloc(sizeof(*new));
99 54be8251 2018-06-04 stsp if (new == NULL)
100 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
101 54be8251 2018-06-04 stsp
102 54be8251 2018-06-04 stsp memcpy(&new->id, id, sizeof(new->id));
103 54be8251 2018-06-04 stsp new->data = data;
104 54be8251 2018-06-04 stsp
105 e336e3d6 2018-11-05 stsp RB_INSERT(got_object_idset_tree, &set->entries, new);
106 b36429ab 2018-11-05 stsp set->totelem++;
107 b36429ab 2018-11-05 stsp return NULL;
108 54be8251 2018-06-04 stsp }
109 54be8251 2018-06-04 stsp
110 984e8a45 2018-11-05 stsp static struct got_object_idset_element *
111 984e8a45 2018-11-05 stsp find_element(struct got_object_idset *set, struct got_object_id *id)
112 54be8251 2018-06-04 stsp {
113 60f2eee1 2018-07-08 stsp struct got_object_idset_element *entry;
114 54be8251 2018-06-04 stsp
115 e336e3d6 2018-11-05 stsp entry = RB_ROOT(&set->entries);
116 984e8a45 2018-11-05 stsp while (entry) {
117 984e8a45 2018-11-05 stsp int cmp = got_object_id_cmp(id, &entry->id);
118 984e8a45 2018-11-05 stsp if (cmp < 0)
119 e336e3d6 2018-11-05 stsp entry = RB_LEFT(entry, entry);
120 984e8a45 2018-11-05 stsp else if (cmp > 0)
121 e336e3d6 2018-11-05 stsp entry = RB_RIGHT(entry, entry);
122 984e8a45 2018-11-05 stsp else
123 984e8a45 2018-11-05 stsp break;
124 54be8251 2018-06-04 stsp }
125 54be8251 2018-06-04 stsp
126 984e8a45 2018-11-05 stsp return entry;
127 54be8251 2018-06-04 stsp }
128 54be8251 2018-06-04 stsp
129 984e8a45 2018-11-05 stsp void *
130 984e8a45 2018-11-05 stsp got_object_idset_get(struct got_object_idset *set, struct got_object_id *id)
131 984e8a45 2018-11-05 stsp {
132 984e8a45 2018-11-05 stsp struct got_object_idset_element *entry = find_element(set, id);
133 984e8a45 2018-11-05 stsp return entry ? entry->data : NULL;
134 984e8a45 2018-11-05 stsp }
135 984e8a45 2018-11-05 stsp
136 54be8251 2018-06-04 stsp const struct got_error *
137 e7c810ea 2018-06-22 stsp got_object_idset_remove(void **data, struct got_object_idset *set,
138 54be8251 2018-06-04 stsp struct got_object_id *id)
139 54be8251 2018-06-04 stsp {
140 984e8a45 2018-11-05 stsp struct got_object_idset_element *entry;
141 54be8251 2018-06-04 stsp
142 441e144c 2018-06-22 stsp if (data)
143 441e144c 2018-06-22 stsp *data = NULL;
144 441e144c 2018-06-22 stsp
145 984e8a45 2018-11-05 stsp if (set->totelem == 0)
146 c6f420bf 2018-06-04 stsp return got_error(GOT_ERR_NO_OBJ);
147 c6f420bf 2018-06-04 stsp
148 f054b67a 2018-11-05 stsp if (id == NULL)
149 e336e3d6 2018-11-05 stsp entry = RB_ROOT(&set->entries);
150 f054b67a 2018-11-05 stsp else
151 f054b67a 2018-11-05 stsp entry = find_element(set, id);
152 984e8a45 2018-11-05 stsp if (entry == NULL)
153 ded8fbb8 2020-04-19 stsp return got_error_no_obj(id);
154 54be8251 2018-06-04 stsp
155 e336e3d6 2018-11-05 stsp RB_REMOVE(got_object_idset_tree, &set->entries, entry);
156 984e8a45 2018-11-05 stsp if (data)
157 984e8a45 2018-11-05 stsp *data = entry->data;
158 984e8a45 2018-11-05 stsp free(entry);
159 984e8a45 2018-11-05 stsp set->totelem--;
160 984e8a45 2018-11-05 stsp return NULL;
161 54be8251 2018-06-04 stsp }
162 54be8251 2018-06-04 stsp
163 54be8251 2018-06-04 stsp int
164 54be8251 2018-06-04 stsp got_object_idset_contains(struct got_object_idset *set,
165 54be8251 2018-06-04 stsp struct got_object_id *id)
166 54be8251 2018-06-04 stsp {
167 984e8a45 2018-11-05 stsp struct got_object_idset_element *entry = find_element(set, id);
168 984e8a45 2018-11-05 stsp return entry ? 1 : 0;
169 54be8251 2018-06-04 stsp }
170 54be8251 2018-06-04 stsp
171 cb103d04 2018-11-07 stsp const struct got_error *
172 cb103d04 2018-11-07 stsp got_object_idset_for_each(struct got_object_idset *set,
173 cb103d04 2018-11-07 stsp const struct got_error *(*cb)(struct got_object_id *, void *, void *),
174 cb103d04 2018-11-07 stsp void *arg)
175 54be8251 2018-06-04 stsp {
176 cb103d04 2018-11-07 stsp const struct got_error *err;
177 9489f1f7 2018-11-11 stsp struct got_object_idset_element *entry, *tmp;
178 54be8251 2018-06-04 stsp
179 9489f1f7 2018-11-11 stsp RB_FOREACH_SAFE(entry, got_object_idset_tree, &set->entries, tmp) {
180 cb103d04 2018-11-07 stsp err = (*cb)(&entry->id, entry->data, arg);
181 cb103d04 2018-11-07 stsp if (err)
182 cb103d04 2018-11-07 stsp return err;
183 cb103d04 2018-11-07 stsp }
184 cb103d04 2018-11-07 stsp return NULL;
185 54be8251 2018-06-04 stsp }
186 c6f420bf 2018-06-04 stsp
187 069f84d5 2018-06-11 stsp int
188 c6f420bf 2018-06-04 stsp got_object_idset_num_elements(struct got_object_idset *set)
189 c6f420bf 2018-06-04 stsp {
190 2bd394ff 2018-06-22 stsp return set->totelem;
191 c6f420bf 2018-06-04 stsp }
192 984e8a45 2018-11-05 stsp
193 e336e3d6 2018-11-05 stsp RB_GENERATE(got_object_idset_tree, got_object_idset_element, entry,
194 984e8a45 2018-11-05 stsp cmp_elements);