summaryrefslogtreecommitdiff
path: root/apps/mupdfclean.c
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-04-25 20:40:29 +0100
committerRobin Watts <robin.watts@artifex.com>2012-04-28 09:44:49 +0100
commit4e3d351910f0927283fdc6911574ffe982ca678b (patch)
tree854e8367ae8906f957c3bb766ae578188e38cd61 /apps/mupdfclean.c
parent463e9b6c69cf9232da5ae9659eaad6e7050b594d (diff)
downloadmupdf-4e3d351910f0927283fdc6911574ffe982ca678b.tar.xz
Move guts of pdfclean into new pdf_write function.
Expose pdf_write function through the document interface.
Diffstat (limited to 'apps/mupdfclean.c')
-rw-r--r--apps/mupdfclean.c656
1 files changed, 13 insertions, 643 deletions
diff --git a/apps/mupdfclean.c b/apps/mupdfclean.c
index 5b95fdae..f2676782 100644
--- a/apps/mupdfclean.c
+++ b/apps/mupdfclean.c
@@ -14,29 +14,13 @@
static FILE *out = NULL;
-enum
-{
- expand_images = 1,
- expand_fonts = 2,
- expand_all = -1
-};
-
-static char *uselist = NULL;
-static int *ofslist = NULL;
-static int *genlist = NULL;
-static int *renumbermap = NULL;
-
-static int dogarbage = 0;
-static int doexpand = 0;
-static int doascii = 0;
-
static pdf_document *xref = NULL;
static fz_context *ctx = NULL;
static void usage(void)
{
fprintf(stderr,
- "usage: pdfclean [options] input.pdf [output.pdf] [pages]\n"
+ "usage: mupdfclean [options] input.pdf [output.pdf] [pages]\n"
"\t-p -\tpassword\n"
"\t-g\tgarbage collect unused objects\n"
"\t-gg\tin addition to -g compact xref table\n"
@@ -50,251 +34,6 @@ static void usage(void)
}
/*
- * Garbage collect objects not reachable from the trailer.
- */
-
-static pdf_obj *sweepref(pdf_obj *obj)
-{
- int num = pdf_to_num(obj);
- int gen = pdf_to_gen(obj);
-
- if (num < 0 || num >= xref->len)
- return NULL;
- if (uselist[num])
- return NULL;
-
- uselist[num] = 1;
-
- /* Bake in /Length in stream objects */
- fz_try(ctx)
- {
- if (pdf_is_stream(xref, num, gen))
- {
- pdf_obj *len = pdf_dict_gets(obj, "Length");
- if (pdf_is_indirect(len))
- {
- uselist[pdf_to_num(len)] = 0;
- len = pdf_resolve_indirect(len);
- pdf_dict_puts(obj, "Length", len);
- }
- }
- }
- fz_catch(ctx)
- {
- /* Leave broken */
- }
-
- return pdf_resolve_indirect(obj);
-}
-
-static void sweepobj(pdf_obj *obj)
-{
- int i;
-
- if (pdf_is_indirect(obj))
- obj = sweepref(obj);
-
- if (pdf_is_dict(obj))
- {
- int n = pdf_dict_len(obj);
- for (i = 0; i < n; i++)
- sweepobj(pdf_dict_get_val(obj, i));
- }
-
- else if (pdf_is_array(obj))
- {
- int n = pdf_array_len(obj);
- for (i = 0; i < n; i++)
- sweepobj(pdf_array_get(obj, i));
- }
-}
-
-/*
- * Scan for and remove duplicate objects (slow)
- */
-
-static void removeduplicateobjs(void)
-{
- int num, other;
-
- for (num = 1; num < xref->len; num++)
- {
- /* Only compare an object to objects preceding it */
- for (other = 1; other < num; other++)
- {
- pdf_obj *a, *b;
-
- if (num == other || !uselist[num] || !uselist[other])
- continue;
-
- /*
- * Comparing stream objects data contents would take too long.
- *
- * pdf_is_stream calls pdf_cache_object and ensures
- * that the xref table has the objects loaded.
- */
- fz_try(ctx)
- {
- if (pdf_is_stream(xref, num, 0) || pdf_is_stream(xref, other, 0))
- continue;
- }
- fz_catch(ctx)
- {
- /* Assume different */
- }
-
- a = xref->table[num].obj;
- b = xref->table[other].obj;
-
- a = pdf_resolve_indirect(a);
- b = pdf_resolve_indirect(b);
-
- if (pdf_objcmp(a, b))
- continue;
-
- /* Keep the lowest numbered object */
- renumbermap[num] = MIN(num, other);
- renumbermap[other] = MIN(num, other);
- uselist[MAX(num, other)] = 0;
-
- /* One duplicate was found, do not look for another */
- break;
- }
- }
-}
-
-/*
- * Renumber objects sequentially so the xref is more compact
- */
-
-static void compactxref(void)
-{
- int num, newnum;
-
- /*
- * Update renumbermap in-place, clustering all used
- * objects together at low object ids. Objects that
- * already should be renumbered will have their new
- * object ids be updated to reflect the compaction.
- */
-
- newnum = 1;
- for (num = 1; num < xref->len; num++)
- {
- if (uselist[num] && renumbermap[num] == num)
- renumbermap[num] = newnum++;
- else if (renumbermap[num] != num)
- renumbermap[num] = renumbermap[renumbermap[num]];
- }
-}
-
-/*
- * Update indirect objects according to renumbering established when
- * removing duplicate objects and compacting the xref.
- */
-
-static void renumberobj(pdf_obj *obj)
-{
- int i;
- fz_context *ctx = xref->ctx;
-
- if (pdf_is_dict(obj))
- {
- int n = pdf_dict_len(obj);
- for (i = 0; i < n; i++)
- {
- pdf_obj *key = pdf_dict_get_key(obj, i);
- pdf_obj *val = pdf_dict_get_val(obj, i);
- if (pdf_is_indirect(val))
- {
- val = pdf_new_indirect(ctx, renumbermap[pdf_to_num(val)], 0, xref);
- fz_dict_put(obj, key, val);
- pdf_drop_obj(val);
- }
- else
- {
- renumberobj(val);
- }
- }
- }
-
- else if (pdf_is_array(obj))
- {
- int n = pdf_array_len(obj);
- for (i = 0; i < n; i++)
- {
- pdf_obj *val = pdf_array_get(obj, i);
- if (pdf_is_indirect(val))
- {
- val = pdf_new_indirect(ctx, renumbermap[pdf_to_num(val)], 0, xref);
- pdf_array_put(obj, i, val);
- pdf_drop_obj(val);
- }
- else
- {
- renumberobj(val);
- }
- }
- }
-}
-
-static void renumberobjs(void)
-{
- pdf_xref_entry *oldxref;
- int newlen;
- int num;
-
- /* Apply renumber map to indirect references in all objects in xref */
- renumberobj(xref->trailer);
- for (num = 0; num < xref->len; num++)
- {
- pdf_obj *obj = xref->table[num].obj;
-
- if (pdf_is_indirect(obj))
- {
- obj = pdf_new_indirect(ctx, renumbermap[pdf_to_num(obj)], 0, xref);
- pdf_update_object(xref, num, 0, obj);
- pdf_drop_obj(obj);
- }
- else
- {
- renumberobj(obj);
- }
- }
-
- /* Create new table for the reordered, compacted xref */
- oldxref = xref->table;
- xref->table = fz_malloc_array(xref->ctx, xref->len, sizeof(pdf_xref_entry));
- xref->table[0] = oldxref[0];
-
- /* Move used objects into the new compacted xref */
- newlen = 0;
- for (num = 1; num < xref->len; num++)
- {
- if (uselist[num])
- {
- if (newlen < renumbermap[num])
- newlen = renumbermap[num];
- xref->table[renumbermap[num]] = oldxref[num];
- }
- else
- {
- if (oldxref[num].obj)
- pdf_drop_obj(oldxref[num].obj);
- }
- }
-
- fz_free(xref->ctx, oldxref);
-
- /* Update the used objects count in compacted xref */
- xref->len = newlen + 1;
-
- /* Update list of used objects to fit with compacted xref */
- for (num = 1; num < xref->len; num++)
- uselist[num] = 1;
-}
-
-/*
* Recreate page tree to only retain specified pages.
*/
@@ -415,330 +154,6 @@ static void retainpages(int argc, char **argv)
}
}
-/*
- * Make sure we have loaded objects from object streams.
- */
-
-static void preloadobjstms(void)
-{
- pdf_obj *obj;
- int num;
-
- for (num = 0; num < xref->len; num++)
- {
- if (xref->table[num].type == 'o')
- {
- obj = pdf_load_object(xref, num, 0);
- pdf_drop_obj(obj);
- }
- }
-}
-
-/*
- * Save streams and objects to the output
- */
-
-static inline int isbinary(int c)
-{
- if (c == '\n' || c == '\r' || c == '\t')
- return 0;
- return c < 32 || c > 127;
-}
-
-static int isbinarystream(fz_buffer *buf)
-{
- int i;
- for (i = 0; i < buf->len; i++)
- if (isbinary(buf->data[i]))
- return 1;
- return 0;
-}
-
-static fz_buffer *hexbuf(unsigned char *p, int n)
-{
- static const char hex[16] = "0123456789abcdef";
- fz_buffer *buf;
- int x = 0;
-
- buf = fz_new_buffer(ctx, n * 2 + (n / 32) + 2);
-
- while (n--)
- {
- buf->data[buf->len++] = hex[*p >> 4];
- buf->data[buf->len++] = hex[*p & 15];
- if (++x == 32)
- {
- buf->data[buf->len++] = '\n';
- x = 0;
- }
- p++;
- }
-
- buf->data[buf->len++] = '>';
- buf->data[buf->len++] = '\n';
-
- return buf;
-}
-
-static void addhexfilter(pdf_obj *dict)
-{
- pdf_obj *f, *dp, *newf, *newdp;
- pdf_obj *ahx, *nullobj;
-
- ahx = fz_new_name(ctx, "ASCIIHexDecode");
- nullobj = pdf_new_null(ctx);
- newf = newdp = NULL;
-
- f = pdf_dict_gets(dict, "Filter");
- dp = pdf_dict_gets(dict, "DecodeParms");
-
- if (pdf_is_name(f))
- {
- newf = pdf_new_array(ctx, 2);
- pdf_array_push(newf, ahx);
- pdf_array_push(newf, f);
- f = newf;
- if (pdf_is_dict(dp))
- {
- newdp = pdf_new_array(ctx, 2);
- pdf_array_push(newdp, nullobj);
- pdf_array_push(newdp, dp);
- dp = newdp;
- }
- }
- else if (pdf_is_array(f))
- {
- pdf_array_insert(f, ahx);
- if (pdf_is_array(dp))
- pdf_array_insert(dp, nullobj);
- }
- else
- f = ahx;
-
- pdf_dict_puts(dict, "Filter", f);
- if (dp)
- pdf_dict_puts(dict, "DecodeParms", dp);
-
- pdf_drop_obj(ahx);
- pdf_drop_obj(nullobj);
- if (newf)
- pdf_drop_obj(newf);
- if (newdp)
- pdf_drop_obj(newdp);
-}
-
-static void copystream(pdf_obj *obj, int num, int gen)
-{
- fz_buffer *buf, *tmp;
- pdf_obj *newlen;
-
- buf = pdf_load_raw_stream(xref, num, gen);
-
- if (doascii && isbinarystream(buf))
- {
- tmp = hexbuf(buf->data, buf->len);
- fz_drop_buffer(ctx, buf);
- buf = tmp;
-
- addhexfilter(obj);
-
- newlen = pdf_new_int(ctx, buf->len);
- pdf_dict_puts(obj, "Length", newlen);
- pdf_drop_obj(newlen);
- }
-
- fprintf(out, "%d %d obj\n", num, gen);
- pdf_fprint_obj(out, obj, doexpand == 0);
- fprintf(out, "stream\n");
- fwrite(buf->data, 1, buf->len, out);
- fprintf(out, "endstream\nendobj\n\n");
-
- fz_drop_buffer(ctx, buf);
-}
-
-static void expandstream(pdf_obj *obj, int num, int gen)
-{
- fz_buffer *buf, *tmp;
- pdf_obj *newlen;
-
- buf = pdf_load_stream(xref, num, gen);
-
- pdf_dict_dels(obj, "Filter");
- pdf_dict_dels(obj, "DecodeParms");
-
- if (doascii && isbinarystream(buf))
- {
- tmp = hexbuf(buf->data, buf->len);
- fz_drop_buffer(ctx, buf);
- buf = tmp;
-
- addhexfilter(obj);
- }
-
- newlen = pdf_new_int(ctx, buf->len);
- pdf_dict_puts(obj, "Length", newlen);
- pdf_drop_obj(newlen);
-
- fprintf(out, "%d %d obj\n", num, gen);
- pdf_fprint_obj(out, obj, doexpand == 0);
- fprintf(out, "stream\n");
- fwrite(buf->data, 1, buf->len, out);
- fprintf(out, "endstream\nendobj\n\n");
-
- fz_drop_buffer(ctx, buf);
-}
-
-static void writeobject(int num, int gen)
-{
- pdf_obj *obj;
- pdf_obj *type;
-
- obj = pdf_load_object(xref, num, gen);
-
- /* skip ObjStm and XRef objects */
- if (pdf_is_dict(obj))
- {
- type = pdf_dict_gets(obj, "Type");
- if (pdf_is_name(type) && !strcmp(pdf_to_name(type), "ObjStm"))
- {
- uselist[num] = 0;
- pdf_drop_obj(obj);
- return;
- }
- if (pdf_is_name(type) && !strcmp(pdf_to_name(type), "XRef"))
- {
- uselist[num] = 0;
- pdf_drop_obj(obj);
- return;
- }
- }
-
- if (!pdf_is_stream(xref, num, gen))
- {
- fprintf(out, "%d %d obj\n", num, gen);
- pdf_fprint_obj(out, obj, doexpand == 0);
- fprintf(out, "endobj\n\n");
- }
- else
- {
- int dontexpand = 0;
- if (doexpand != 0 && doexpand != expand_all)
- {
- pdf_obj *o;
-
- if ((o = pdf_dict_gets(obj, "Type"), !strcmp(pdf_to_name(o), "XObject")) &&
- (o = pdf_dict_gets(obj, "Subtype"), !strcmp(pdf_to_name(o), "Image")))
- dontexpand = !(doexpand & expand_images);
- if (o = pdf_dict_gets(obj, "Type"), !strcmp(pdf_to_name(o), "Font"))
- dontexpand = !(doexpand & expand_fonts);
- if (o = pdf_dict_gets(obj, "Type"), !strcmp(pdf_to_name(o), "FontDescriptor"))
- dontexpand = !(doexpand & expand_fonts);
- if ((o = pdf_dict_gets(obj, "Length1")) != NULL)
- dontexpand = !(doexpand & expand_fonts);
- if ((o = pdf_dict_gets(obj, "Length2")) != NULL)
- dontexpand = !(doexpand & expand_fonts);
- if ((o = pdf_dict_gets(obj, "Length3")) != NULL)
- dontexpand = !(doexpand & expand_fonts);
- if (o = pdf_dict_gets(obj, "Subtype"), !strcmp(pdf_to_name(o), "Type1C"))
- dontexpand = !(doexpand & expand_fonts);
- if (o = pdf_dict_gets(obj, "Subtype"), !strcmp(pdf_to_name(o), "CIDFontType0C"))
- dontexpand = !(doexpand & expand_fonts);
- }
- if (doexpand && !dontexpand && !pdf_is_jpx_image(ctx, obj))
- expandstream(obj, num, gen);
- else
- copystream(obj, num, gen);
- }
-
- pdf_drop_obj(obj);
-}
-
-static void writexref(void)
-{
- pdf_obj *trailer;
- pdf_obj *obj;
- int startxref;
- int num;
-
- startxref = ftell(out);
-
- fprintf(out, "xref\n0 %d\n", xref->len);
- for (num = 0; num < xref->len; num++)
- {
- if (uselist[num])
- fprintf(out, "%010d %05d n \n", ofslist[num], genlist[num]);
- else
- fprintf(out, "%010d %05d f \n", ofslist[num], genlist[num]);
- }
- fprintf(out, "\n");
-
- trailer = pdf_new_dict(ctx, 5);
-
- obj = pdf_new_int(ctx, xref->len);
- pdf_dict_puts(trailer, "Size", obj);
- pdf_drop_obj(obj);
-
- obj = pdf_dict_gets(xref->trailer, "Info");
- if (obj)
- pdf_dict_puts(trailer, "Info", obj);
-
- obj = pdf_dict_gets(xref->trailer, "Root");
- if (obj)
- pdf_dict_puts(trailer, "Root", obj);
-
- obj = pdf_dict_gets(xref->trailer, "ID");
- if (obj)
- pdf_dict_puts(trailer, "ID", obj);
-
- fprintf(out, "trailer\n");
- pdf_fprint_obj(out, trailer, doexpand == 0);
- fprintf(out, "\n");
-
- pdf_drop_obj(trailer);
-
- fprintf(out, "startxref\n%d\n%%%%EOF\n", startxref);
-}
-
-static void writepdf(void)
-{
- int lastfree;
- int num;
-
- for (num = 0; num < xref->len; num++)
- {
- if (xref->table[num].type == 'f')
- genlist[num] = xref->table[num].gen;
- if (xref->table[num].type == 'n')
- genlist[num] = xref->table[num].gen;
- if (xref->table[num].type == 'o')
- genlist[num] = 0;
-
- if (dogarbage && !uselist[num])
- continue;
-
- if (xref->table[num].type == 'n' || xref->table[num].type == 'o')
- {
- uselist[num] = 1;
- ofslist[num] = ftell(out);
- writeobject(num, genlist[num]);
- }
- }
-
- /* Construct linked list of free object slots */
- lastfree = 0;
- for (num = 0; num < xref->len; num++)
- {
- if (!uselist[num])
- {
- genlist[num]++;
- ofslist[lastfree] = num;
- lastfree = num;
- }
- }
-
- writexref();
-}
-
#ifdef MUPDF_COMBINED_EXE
int pdfclean_main(int argc, char **argv)
#else
@@ -748,19 +163,24 @@ int main(int argc, char **argv)
char *infile;
char *outfile = "out.pdf";
char *password = "";
- int c, num;
+ int c;
int subset;
+ fz_write_options opts;
+
+ opts.dogarbage = 0;
+ opts.doexpand = 0;
+ opts.doascii = 0;
while ((c = fz_getopt(argc, argv, "adfgip:")) != -1)
{
switch (c)
{
case 'p': password = fz_optarg; break;
- case 'g': dogarbage ++; break;
- case 'd': doexpand ^= expand_all; break;
- case 'f': doexpand ^= expand_fonts; break;
- case 'i': doexpand ^= expand_images; break;
- case 'a': doascii ++; break;
+ case 'g': opts.dogarbage ++; break;
+ case 'd': opts.doexpand ^= fz_expand_all; break;
+ case 'f': opts.doexpand ^= fz_expand_fonts; break;
+ case 'i': opts.doexpand ^= fz_expand_images; break;
+ case 'a': opts.doascii ++; break;
default: usage(); break;
}
}
@@ -792,61 +212,11 @@ int main(int argc, char **argv)
if (!pdf_authenticate_password(xref, password))
fz_throw(ctx, "cannot authenticate password: %s", infile);
- out = fopen(outfile, "wb");
- if (!out)
- fz_throw(ctx, "cannot open output file '%s'", outfile);
-
- fprintf(out, "%%PDF-%d.%d\n", xref->version / 10, xref->version % 10);
- fprintf(out, "%%\316\274\341\277\246\n\n");
-
- uselist = fz_malloc_array(ctx, xref->len + 1, sizeof(char));
- ofslist = fz_malloc_array(ctx, xref->len + 1, sizeof(int));
- genlist = fz_malloc_array(ctx, xref->len + 1, sizeof(int));
- renumbermap = fz_malloc_array(ctx, xref->len + 1, sizeof(int));
-
- for (num = 0; num < xref->len; num++)
- {
- uselist[num] = 0;
- ofslist[num] = 0;
- genlist[num] = 0;
- renumbermap[num] = num;
- }
-
- /* Make sure any objects hidden in compressed streams have been loaded */
- preloadobjstms();
-
/* Only retain the specified subset of the pages */
if (subset)
retainpages(argc, argv);
- /* Sweep & mark objects from the trailer */
- if (dogarbage >= 1)
- sweepobj(xref->trailer);
-
- /* Coalesce and renumber duplicate objects */
- if (dogarbage >= 3)
- removeduplicateobjs();
-
- /* Compact xref by renumbering and removing unused objects */
- if (dogarbage >= 2)
- compactxref();
-
- /* Make renumbering affect all indirect references and update xref */
- /* Do not renumber objects if encryption is in use, as the object
- * numbers are baked into the streams/strings, and we can't currently
- * cope with moving them. See bug 692627. */
- if (dogarbage >= 2 && !xref->crypt)
- renumberobjs();
-
- writepdf();
-
- if (fclose(out))
- fz_throw(ctx, "cannot close output file '%s'", outfile);
-
- fz_free(xref->ctx, uselist);
- fz_free(xref->ctx, ofslist);
- fz_free(xref->ctx, genlist);
- fz_free(xref->ctx, renumbermap);
+ pdf_write(xref, outfile, &opts);
pdf_close_document(xref);
fz_free_context(ctx);