blob: aee521b66c25e1330af3167a5f13cd93577d25ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include "fitz.h"
#include "except.h"
void fz_context_fin(fz_context *ctx)
{
assert(ctx != NULL);
/* Other finalisation calls go here (in reverse order) */
fz_except_fin(ctx);
/* Free the context itself */
ctx->alloc->free(ctx->alloc->opaque, ctx);
/* We do NOT free the allocator! */
}
fz_obj *fz_resolve_indirect_null(fz_obj *ref)
{
return ref;
}
fz_context *fz_context_init(fz_alloc_context *alloc)
{
fz_context *ctx;
fz_error error;
assert(alloc != NULL);
ctx = alloc->calloc(alloc->opaque, 1, sizeof(fz_context));
if (ctx == NULL)
return NULL;
ctx->alloc = alloc;
error = fz_except_init(ctx);
if (error != fz_okay)
goto cleanup;
ctx->fz_resolve_indirect = fz_resolve_indirect_null;
/* New initialisation calls for context entries go here */
return ctx;
cleanup:
fz_context_fin(ctx);
fz_error_handle(error, "fz_context_init failed");
return NULL;
}
fz_context *fz_context_clone(fz_context *ctx)
{
fz_context *clone;
fz_error error;
clone = ctx->alloc->calloc(ctx->alloc->opaque, 1, sizeof(*clone));
if (clone == NULL)
return NULL;
clone->alloc = ctx->alloc;
error = fz_except_init(ctx);
if (error != fz_okay)
goto cleanup;
/* Other initialisations go here; either a copy (probably refcounted)
* or a new initialisation. */
return clone;
cleanup:
fz_context_fin(ctx);
fz_error_handle(error, "fz_context_clone failed");
return NULL;
}
|