/* Allocate new context structure, and initialise allocator, and sections * that aren't shared between contexts. */ static fz_context * new_context_phase1(fz_alloc_context *alloc, fz_locks_context *locks) { fz_context *ctx; ctx = alloc->malloc(alloc->user, sizeof(fz_context)); if (!ctx) return NULL; memset(ctx, 0, sizeof *ctx); ctx->alloc = alloc; ctx->locks = locks; ctx->glyph_cache = NULL; ctx->error = Memento_label(fz_malloc_no_throw(ctx, sizeof(fz_error_context)), "fz_error_context"); if (!ctx->error) goto cleanup; ctx->error->top = -1; ctx->error->errcode = FZ_ERROR_NONE; ctx->error->message[0] = 0; ctx->warn = Memento_label(fz_malloc_no_throw(ctx, sizeof(fz_warn_context)), "fz_warn_context"); if (!ctx->warn) goto cleanup; ctx->warn->message[0] = 0; ctx->warn->count = 0; /* New initialisation calls for context entries go here */ fz_try(ctx) { fz_new_aa_context(ctx); fz_new_style_context(ctx); } fz_catch(ctx) { goto cleanup; } return ctx; cleanup: fprintf(stderr, "cannot create context (phase 1)\n"); fz_drop_context(ctx); return NULL; }
fz_context * fz_new_context_imp(const fz_alloc_context *alloc, const fz_locks_context *locks, size_t max_store, const char *version) { fz_context *ctx; if (strcmp(version, FZ_VERSION)) { fprintf(stderr, "cannot create context: incompatible header (%s) and library (%s) versions\n", version, FZ_VERSION); return NULL; } if (!alloc) alloc = &fz_alloc_default; if (!locks) locks = &fz_locks_default; ctx = new_context_phase1(alloc, locks); if (!ctx) return NULL; /* Now initialise sections that are shared */ fz_try(ctx) { fz_new_output_context(ctx); fz_new_store_context(ctx, max_store); fz_new_glyph_cache_context(ctx); fz_new_cmm_context(ctx); fz_new_colorspace_context(ctx); fz_new_font_context(ctx); fz_new_id_context(ctx); fz_new_document_handler_context(ctx); fz_new_style_context(ctx); fz_new_tuning_context(ctx); } fz_catch(ctx) { fprintf(stderr, "cannot create context (phase 2)\n"); fz_drop_context(ctx); return NULL; } return ctx; }