4 static im_slot_t slot_count;
5 static im_slot_destroy_t *slot_destructors;
6 static i_mutex_t slot_mutex;
11 Create a new Imager context object.
17 im_context_new(void) {
18 im_context_t ctx = malloc(sizeof(im_context_struct));
22 slot_mutex = i_mutex_new();
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;
39 ctx->max_bytes = DEF_BYTES_LIMIT;
41 ctx->slot_alloc = slot_count;
42 ctx->slots = calloc(sizeof(void *), ctx->slot_alloc);
50 #ifdef IMAGER_TRACE_CONTEXT
51 fprintf(stderr, "im_context: created %p\n", ctx);
59 =item im_context_refinc(ctx, where)
60 X<im_context_refinc API>
61 =section Context objects
62 =synopsis im_context_refinc(aIMCTX, "a description");
64 Add a new reference to the context.
70 im_context_refinc(im_context_t ctx, const char *where) {
73 #ifdef IMAGER_TRACE_CONTEXT
74 fprintf(stderr, "im_context:%s: refinc %p (count now %lu)\n", where,
75 ctx, (unsigned long)ctx->refcount);
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");
85 Remove a reference to the context, releasing it if all references have
92 im_context_refdec(im_context_t ctx, const char *where) {
96 im_assert(ctx->refcount > 0);
100 #ifdef IMAGER_TRACE_CONTEXT
101 fprintf(stderr, "im_context:%s: delete %p (count now %lu)\n", where,
102 ctx, (unsigned long)ctx->refcount);
105 if (ctx->refcount != 0)
108 for (slot = 0; slot < ctx->slot_alloc; ++slot) {
109 if (ctx->slots[slot] && slot_destructors[slot])
110 slot_destructors[slot](ctx->slots[slot]);
115 for (i = 0; i < IM_ERROR_COUNT; ++i) {
116 if (ctx->error_stack[i].msg)
117 myfree(ctx->error_stack[i].msg);
121 fclose(ctx->lg_file);
128 =item im_context_clone(ctx)
130 Clone an Imager context object, returning the result.
136 im_context_clone(im_context_t ctx, const char *where) {
137 im_context_t nctx = malloc(sizeof(im_context_struct));
143 nctx->slot_alloc = slot_count;
144 nctx->slots = calloc(sizeof(void *), ctx->slot_alloc);
150 nctx->error_sp = ctx->error_sp;
151 for (i = 0; i < IM_ERROR_COUNT; ++i) {
152 if (ctx->error_stack[i].msg) {
153 size_t sz = ctx->error_alloc[i];
154 nctx->error_alloc[i] = sz;
155 nctx->error_stack[i].msg = mymalloc(sz);
156 memcpy(nctx->error_stack[i].msg, ctx->error_stack[i].msg, sz);
159 nctx->error_alloc[i] = 0;
160 nctx->error_stack[i].msg = NULL;
162 nctx->error_stack[i].code = ctx->error_stack[i].code;
165 nctx->log_level = ctx->log_level;
167 /* disable buffering, this isn't perfect */
168 setvbuf(ctx->lg_file, NULL, _IONBF, 0);
170 /* clone that and disable buffering some more */
171 nctx->lg_file = fdopen(fileno(ctx->lg_file), "a");
173 setvbuf(nctx->lg_file, NULL, _IONBF, 0);
176 nctx->lg_file = NULL;
179 nctx->max_width = ctx->max_width;
180 nctx->max_height = ctx->max_height;
181 nctx->max_bytes = ctx->max_bytes;
185 #ifdef IMAGER_TRACE_CONTEXT
186 fprintf(stderr, "im_context:%s: cloned %p to %p\n", where, ctx, nctx);
193 =item im_context_slot_new(destructor, where)
195 Allocate a new context-local-storage slot.
201 im_context_slot_new(im_slot_destroy_t destructor, const char *where) {
203 im_slot_destroy_t *new_destructors;
205 slot_mutex = i_mutex_new();
207 i_mutex_lock(slot_mutex);
209 new_slot = slot_count++;
210 new_destructors = realloc(slot_destructors, sizeof(void *) * slot_count);
211 if (!new_destructors)
212 i_fatal(1, "Cannot allocate memory for slot destructors");
213 slot_destructors = new_destructors;
215 slot_destructors[new_slot] = destructor;
217 #ifdef IMAGER_TRACE_CONTEXT
218 fprintf(stderr, "im_context: slot %d allocated for %s\n",
219 (int)new_slot, where);
222 i_mutex_unlock(slot_mutex);
228 =item im_context_slot_set(slot, value)
230 Set the value of a slot.
232 Returns true on success.
234 Aborts if the slot supplied is invalid.
236 If reallocation of slot storage fails, returns false.
242 im_context_slot_set(im_context_t ctx, im_slot_t slot, void *value) {
243 if (slot < 0 || slot >= slot_count) {
244 fprintf(stderr, "Invalid slot %d (valid 0 - %d)\n",
245 (int)slot, (int)slot_count-1);
249 if (slot >= ctx->slot_alloc) {
251 size_t new_alloc = slot_count;
252 void **new_slots = realloc(ctx->slots, sizeof(void *) * new_alloc);
257 for (i = ctx->slot_alloc; i < new_alloc; ++i)
260 ctx->slots = new_slots;
261 ctx->slot_alloc = new_alloc;
264 ctx->slots[slot] = value;
266 #ifdef IMAGER_TRACE_CONTEXT
267 fprintf(stderr, "im_context: ctx %p slot %d set to %p\n",
268 ctx, (int)slot, value);
275 =item im_context_slot_get(ctx, slot)
277 Retrieve the value previously stored in the given slot of the context
284 im_context_slot_get(im_context_t ctx, im_slot_t slot) {
285 if (slot < 0 || slot >= slot_count) {
286 fprintf(stderr, "Invalid slot %d (valid 0 - %d)\n",
287 (int)slot, (int)slot_count-1);
291 if (slot >= ctx->slot_alloc)
294 #ifdef IMAGER_TRACE_CONTEXT
295 fprintf(stderr, "im_context: ctx %p slot %d retrieved as %p\n",
296 ctx, (int)slot, ctx->slots[slot]);
299 return ctx->slots[slot];