| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- // Copyright (C) 2004-2021 Artifex Software, Inc.
- //
- // This file is part of MuPDF.
- //
- // MuPDF is free software: you can redistribute it and/or modify it under the
- // terms of the GNU Affero General Public License as published by the Free
- // Software Foundation, either version 3 of the License, or (at your option)
- // any later version.
- //
- // MuPDF is distributed in the hope that it will be useful, but WITHOUT ANY
- // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- // FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- // details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
- //
- // Alternative licensing terms are available from the licensor.
- // For commercial licensing, see <https://www.artifex.com/> or contact
- // Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
- // CA 94129, USA, for further information.
- #include "mupdf/fitz.h"
- #include "xps-imp.h"
- #include <stdlib.h>
- #include <math.h>
- /*
- * Parse the document structure / outline parts referenced from fixdoc relationships.
- */
- static fz_outline *
- xps_lookup_last_outline_at_level(fz_context *ctx, xps_document *doc, fz_outline *node, int level, int target_level)
- {
- while (node->next)
- node = node->next;
- if (level == target_level || !node->down)
- return node;
- return xps_lookup_last_outline_at_level(ctx, doc, node->down, level + 1, target_level);
- }
- static fz_outline *
- xps_parse_document_outline(fz_context *ctx, xps_document *doc, fz_xml *root)
- {
- fz_xml *node;
- fz_outline *head = NULL, *entry, *tail;
- int last_level = 1, this_level;
- for (node = fz_xml_down(root); node; node = fz_xml_next(node))
- {
- if (fz_xml_is_tag(node, "OutlineEntry"))
- {
- char *level = fz_xml_att(node, "OutlineLevel");
- char *target = fz_xml_att(node, "OutlineTarget");
- char *description = fz_xml_att(node, "Description");
- if (!target || !description)
- continue;
- entry = fz_new_outline(ctx);
- entry->title = Memento_label(fz_strdup(ctx, description), "outline_title");
- entry->uri = Memento_label(fz_strdup(ctx, target), "outline_uri");
- entry->page = xps_lookup_link_target(ctx, (fz_document*)doc, target).loc;
- entry->down = NULL;
- entry->next = NULL;
- this_level = level ? atoi(level) : 1;
- if (!head)
- {
- head = entry;
- }
- else
- {
- tail = xps_lookup_last_outline_at_level(ctx, doc, head, 1, this_level);
- if (this_level > last_level)
- tail->down = entry;
- else
- tail->next = entry;
- }
- last_level = this_level;
- }
- }
- return head;
- }
- static fz_outline *
- xps_parse_document_structure(fz_context *ctx, xps_document *doc, fz_xml *root)
- {
- fz_xml *node;
- if (fz_xml_is_tag(root, "DocumentStructure"))
- {
- node = fz_xml_down(root);
- if (node && fz_xml_is_tag(node, "DocumentStructure.Outline"))
- {
- node = fz_xml_down(node);
- if (node && fz_xml_is_tag(node, "DocumentOutline"))
- return xps_parse_document_outline(ctx, doc, node);
- }
- }
- return NULL;
- }
- static fz_outline *
- xps_load_document_structure(fz_context *ctx, xps_document *doc, xps_fixdoc *fixdoc)
- {
- xps_part *part;
- fz_xml_doc *xml = NULL;
- fz_outline *outline = NULL;
- fz_var(xml);
- part = xps_read_part(ctx, doc, fixdoc->outline);
- fz_try(ctx)
- {
- xml = fz_parse_xml(ctx, part->data, 0);
- outline = xps_parse_document_structure(ctx, doc, fz_xml_root(xml));
- }
- fz_always(ctx)
- {
- fz_drop_xml(ctx, xml);
- xps_drop_part(ctx, doc, part);
- }
- fz_catch(ctx)
- {
- fz_rethrow(ctx);
- }
- return outline;
- }
- fz_outline *
- xps_load_outline(fz_context *ctx, fz_document *doc_)
- {
- xps_document *doc = (xps_document*)doc_;
- xps_fixdoc *fixdoc;
- fz_outline *head = NULL, *tail, *outline = NULL;
- for (fixdoc = doc->first_fixdoc; fixdoc; fixdoc = fixdoc->next)
- {
- if (fixdoc->outline)
- {
- fz_try(ctx)
- {
- outline = xps_load_document_structure(ctx, doc, fixdoc);
- }
- fz_catch(ctx)
- {
- fz_rethrow_if(ctx, FZ_ERROR_TRYLATER);
- fz_rethrow_if(ctx, FZ_ERROR_SYSTEM);
- fz_report_error(ctx);
- outline = NULL;
- }
- if (!outline)
- continue;
- if (!head)
- head = outline;
- else
- {
- while (tail->next)
- tail = tail->next;
- tail->next = outline;
- }
- tail = outline;
- }
- }
- return head;
- }
|