Commit | Line | Data |
---|---|---|
74315ca9 | 1 | #include "imageri.h" |
31a13473 | 2 | #include <stdio.h> |
74315ca9 | 3 | |
d7506bda TC |
4 | static volatile im_slot_t slot_count = 1; |
5 | static im_slot_destroy_t *volatile slot_destructors; | |
6 | static volatile i_mutex_t slot_mutex; | |
fc02e376 | 7 | |
74315ca9 TC |
8 | /* |
9 | =item im_context_new() | |
10 | ||
11 | Create a new Imager context object. | |
12 | ||
13 | =cut | |
14 | */ | |
15 | ||
16 | im_context_t | |
17 | im_context_new(void) { | |
cf8c77ae | 18 | im_context_t ctx = malloc(sizeof(im_context_struct)); |
74315ca9 TC |
19 | int i; |
20 | ||
fc02e376 TC |
21 | if (!slot_mutex) |
22 | slot_mutex = i_mutex_new(); | |
23 | ||
cf8c77ae TC |
24 | if (!ctx) |
25 | return NULL; | |
26 | ||
74315ca9 TC |
27 | ctx->error_sp = IM_ERROR_COUNT-1; |
28 | for (i = 0; i < IM_ERROR_COUNT; ++i) { | |
29 | ctx->error_alloc[i] = 0; | |
30 | ctx->error_stack[i].msg = NULL; | |
31 | ctx->error_stack[i].code = 0; | |
32 | } | |
33 | #ifdef IMAGER_LOG | |
34 | ctx->log_level = 0; | |
35 | ctx->lg_file = NULL; | |
36 | #endif | |
44d86483 TC |
37 | ctx->max_width = 0; |
38 | ctx->max_height = 0; | |
cf8c77ae | 39 | ctx->max_bytes = DEF_BYTES_LIMIT; |
74315ca9 | 40 | |
f4ced639 TC |
41 | ctx->slot_alloc = slot_count; |
42 | ctx->slots = calloc(sizeof(void *), ctx->slot_alloc); | |
fc02e376 TC |
43 | if (!ctx->slots) { |
44 | free(ctx); | |
45 | return NULL; | |
46 | } | |
47 | ||
31a13473 TC |
48 | ctx->refcount = 1; |
49 | ||
50 | #ifdef IMAGER_TRACE_CONTEXT | |
51 | fprintf(stderr, "im_context: created %p\n", ctx); | |
52 | #endif | |
53 | ||
fc02e376 | 54 | |
74315ca9 TC |
55 | return ctx; |
56 | } | |
57 | ||
58 | /* | |
31a13473 | 59 | =item im_context_refinc(ctx, where) |
abffffed TC |
60 | X<im_context_refinc API> |
61 | =section Context objects | |
62 | =synopsis im_context_refinc(aIMCTX, "a description"); | |
31a13473 TC |
63 | |
64 | Add a new reference to the context. | |
65 | ||
66 | =cut | |
67 | */ | |
68 | ||
69 | void | |
70 | im_context_refinc(im_context_t ctx, const char *where) { | |
71 | ++ctx->refcount; | |
72 | ||
73 | #ifdef IMAGER_TRACE_CONTEXT | |
74 | fprintf(stderr, "im_context:%s: refinc %p (count now %lu)\n", where, | |
75 | ctx, (unsigned long)ctx->refcount); | |
76 | #endif | |
77 | } | |
78 | ||
79 | /* | |
abffffed TC |
80 | =item im_context_refdec(ctx, where) |
81 | X<im_context_refdec API> | |
82 | =section Context objects | |
83 | =synopsis im_context_refdec(aIMCTX, "a description"); | |
74315ca9 | 84 | |
abffffed TC |
85 | Remove a reference to the context, releasing it if all references have |
86 | been removed. | |
74315ca9 TC |
87 | |
88 | =cut | |
89 | */ | |
90 | ||
91 | void | |
31a13473 | 92 | im_context_refdec(im_context_t ctx, const char *where) { |
74315ca9 | 93 | int i; |
fc02e376 | 94 | im_slot_t slot; |
74315ca9 | 95 | |
31a13473 TC |
96 | im_assert(ctx->refcount > 0); |
97 | ||
98 | --ctx->refcount; | |
99 | ||
100 | #ifdef IMAGER_TRACE_CONTEXT | |
101 | fprintf(stderr, "im_context:%s: delete %p (count now %lu)\n", where, | |
102 | ctx, (unsigned long)ctx->refcount); | |
103 | #endif | |
104 | ||
105 | if (ctx->refcount != 0) | |
106 | return; | |
107 | ||
d7506bda TC |
108 | /* lock here to avoid slot_destructors from being moved under us */ |
109 | i_mutex_lock(slot_mutex); | |
fc02e376 TC |
110 | for (slot = 0; slot < ctx->slot_alloc; ++slot) { |
111 | if (ctx->slots[slot] && slot_destructors[slot]) | |
112 | slot_destructors[slot](ctx->slots[slot]); | |
113 | } | |
d7506bda | 114 | i_mutex_unlock(slot_mutex); |
fc02e376 TC |
115 | |
116 | free(ctx->slots); | |
117 | ||
74315ca9 TC |
118 | for (i = 0; i < IM_ERROR_COUNT; ++i) { |
119 | if (ctx->error_stack[i].msg) | |
120 | myfree(ctx->error_stack[i].msg); | |
121 | } | |
122 | #ifdef IMAGER_LOG | |
6ee0c41f | 123 | if (ctx->lg_file && ctx->own_log) |
74315ca9 TC |
124 | fclose(ctx->lg_file); |
125 | #endif | |
cf8c77ae TC |
126 | |
127 | free(ctx); | |
74315ca9 TC |
128 | } |
129 | ||
130 | /* | |
131 | =item im_context_clone(ctx) | |
132 | ||
133 | Clone an Imager context object, returning the result. | |
134 | ||
a6c8996f TC |
135 | The error stack is not copied from the original context. |
136 | ||
74315ca9 TC |
137 | =cut |
138 | */ | |
139 | ||
140 | im_context_t | |
31a13473 | 141 | im_context_clone(im_context_t ctx, const char *where) { |
cf8c77ae | 142 | im_context_t nctx = malloc(sizeof(im_context_struct)); |
74315ca9 TC |
143 | int i; |
144 | ||
cf8c77ae TC |
145 | if (!nctx) |
146 | return NULL; | |
147 | ||
d7506bda TC |
148 | nctx->slot_alloc = slot_count; |
149 | nctx->slots = calloc(sizeof(void *), nctx->slot_alloc); | |
fc02e376 TC |
150 | if (!nctx->slots) { |
151 | free(nctx); | |
152 | return NULL; | |
153 | } | |
fc02e376 | 154 | |
a6c8996f | 155 | nctx->error_sp = IM_ERROR_COUNT-1; |
74315ca9 | 156 | for (i = 0; i < IM_ERROR_COUNT; ++i) { |
a6c8996f TC |
157 | nctx->error_alloc[i] = 0; |
158 | nctx->error_stack[i].msg = NULL; | |
74315ca9 TC |
159 | } |
160 | #ifdef IMAGER_LOG | |
161 | nctx->log_level = ctx->log_level; | |
162 | if (ctx->lg_file) { | |
6ee0c41f TC |
163 | if (ctx->own_log) { |
164 | int newfd = dup(fileno(ctx->lg_file)); | |
165 | nctx->own_log = 1; | |
166 | nctx->lg_file = fdopen(newfd, "w"); | |
167 | if (nctx->lg_file) | |
168 | setvbuf(nctx->lg_file, NULL, _IONBF, BUFSIZ); | |
169 | } | |
170 | else { | |
171 | /* stderr */ | |
172 | nctx->lg_file = ctx->lg_file; | |
173 | nctx->own_log = 0; | |
174 | } | |
74315ca9 TC |
175 | } |
176 | else { | |
44d86483 | 177 | nctx->lg_file = NULL; |
74315ca9 TC |
178 | } |
179 | #endif | |
44d86483 TC |
180 | nctx->max_width = ctx->max_width; |
181 | nctx->max_height = ctx->max_height; | |
182 | nctx->max_bytes = ctx->max_bytes; | |
fc02e376 | 183 | |
31a13473 | 184 | nctx->refcount = 1; |
74315ca9 | 185 | |
31a13473 TC |
186 | #ifdef IMAGER_TRACE_CONTEXT |
187 | fprintf(stderr, "im_context:%s: cloned %p to %p\n", where, ctx, nctx); | |
188 | #endif | |
189 | ||
190 | return nctx; | |
74315ca9 | 191 | } |
fc02e376 TC |
192 | |
193 | /* | |
194 | =item im_context_slot_new(destructor) | |
195 | ||
196 | Allocate a new context-local-storage slot. | |
197 | ||
198 | =cut | |
199 | */ | |
200 | ||
201 | im_slot_t | |
202 | im_context_slot_new(im_slot_destroy_t destructor) { | |
203 | im_slot_t new_slot; | |
204 | im_slot_destroy_t *new_destructors; | |
205 | if (!slot_mutex) | |
206 | slot_mutex = i_mutex_new(); | |
207 | ||
208 | i_mutex_lock(slot_mutex); | |
209 | ||
210 | new_slot = slot_count++; | |
211 | new_destructors = realloc(slot_destructors, sizeof(void *) * slot_count); | |
212 | if (!new_destructors) | |
213 | i_fatal(1, "Cannot allocate memory for slot destructors"); | |
214 | slot_destructors = new_destructors; | |
215 | ||
216 | slot_destructors[new_slot] = destructor; | |
217 | ||
218 | i_mutex_unlock(slot_mutex); | |
219 | ||
220 | return new_slot; | |
221 | } | |
222 | ||
223 | /* | |
224 | =item im_context_slot_set(slot, value) | |
225 | ||
226 | Set the value of a slot. | |
227 | ||
228 | Returns true on success. | |
229 | ||
230 | Aborts if the slot supplied is invalid. | |
231 | ||
232 | If reallocation of slot storage fails, returns false. | |
233 | ||
234 | =cut | |
235 | */ | |
236 | ||
237 | int | |
238 | im_context_slot_set(im_context_t ctx, im_slot_t slot, void *value) { | |
239 | if (slot < 0 || slot >= slot_count) { | |
240 | fprintf(stderr, "Invalid slot %d (valid 0 - %d)\n", | |
241 | (int)slot, (int)slot_count-1); | |
242 | abort(); | |
243 | } | |
244 | ||
245 | if (slot >= ctx->slot_alloc) { | |
246 | ssize_t i; | |
247 | size_t new_alloc = slot_count; | |
248 | void **new_slots = realloc(ctx->slots, sizeof(void *) * new_alloc); | |
249 | ||
250 | if (!new_slots) | |
251 | return 0; | |
252 | ||
253 | for (i = ctx->slot_alloc; i < new_alloc; ++i) | |
254 | new_slots[i] = NULL; | |
255 | ||
256 | ctx->slots = new_slots; | |
257 | ctx->slot_alloc = new_alloc; | |
258 | } | |
259 | ||
260 | ctx->slots[slot] = value; | |
261 | ||
262 | return 1; | |
263 | } | |
264 | ||
265 | /* | |
266 | =item im_context_slot_get(ctx, slot) | |
267 | ||
268 | Retrieve the value previously stored in the given slot of the context | |
269 | object. | |
270 | ||
271 | =cut | |
272 | */ | |
273 | ||
274 | void * | |
275 | im_context_slot_get(im_context_t ctx, im_slot_t slot) { | |
276 | if (slot < 0 || slot >= slot_count) { | |
277 | fprintf(stderr, "Invalid slot %d (valid 0 - %d)\n", | |
278 | (int)slot, (int)slot_count-1); | |
279 | abort(); | |
280 | } | |
281 | ||
282 | if (slot >= ctx->slot_alloc) | |
283 | return NULL; | |
284 | ||
285 | return ctx->slots[slot]; | |
286 | } |