summaryrefslogtreecommitdiff
path: root/src/pdf_doc.h
blob: 4853170d8e62f30ef809110b0970f53f98368a47 (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
64
65
66
/*
 * Copyright 2018 Vincent Sanders <vince@netsurf-browser.org>
 *
 * This file is part of libnspdf.
 *
 * Licensed under the MIT License,
 *                http://www.opensource.org/licenses/mit-license.php
 */

/**
 * \file
 * NetSurf PDF library pdf document
 */

#ifndef NSPDF__PDF_DOC_H_
#define NSPDF__PDF_DOC_H_

#include "cos_stream.h"

struct xref_table_entry;
struct page_table_entry;

/**
 * pdf document
 */
struct nspdf_doc {

    const uint8_t *start; /* start of pdf document in input stream */
    unsigned int length;

    /**
     * input data stream
     */
    struct cos_stream *stream;

    int major;
    int minor;

    /**
     * Indirect object cross reference table
     */
    uint64_t xref_table_size;
    struct xref_table_entry *xref_table;

    struct cos_object *root;
    struct cos_object *encrypt;
    struct cos_object *info;
    struct cos_object *id;

    /* page refrerence table */
    uint64_t page_table_size;
    struct page_table_entry *page_table;
};

/* helpers in pdf_doc.c */
nspdferror nspdf__stream_skip_ws(struct cos_stream *stream, strmoff_t *offset);
nspdferror nspdf__stream_skip_eol(struct cos_stream *stream, strmoff_t *offset);
nspdferror nspdf__stream_read_uint(struct cos_stream *stream, strmoff_t *offset_out, uint64_t *result_out);


nspdferror nspdf__decode_page_tree(struct nspdf_doc *doc, struct cos_object *page_tree_node, unsigned int *page_index);

/* cos stream filters */
nspdferror nspdf__cos_stream_filter(struct nspdf_doc *doc, const char *filter_name, struct cos_stream **stream_out);

#endif