File: PdfTrailer.cs

package info (click to toggle)
pdfmod 0.8.3-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 5,196 kB
  • ctags: 9,346
  • sloc: cs: 50,590; xml: 1,177; sh: 709; makefile: 640
file content (285 lines) | stat: -rw-r--r-- 10,373 bytes parent folder | download
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
#region PDFsharp - A .NET library for processing PDF
//
// Authors:
//   Stefan Lange (mailto:Stefan.Lange@pdfsharp.com)
//
// Copyright (c) 2005-2008 empira Software GmbH, Cologne (Germany)
//
// http://www.pdfsharp.com
// http://sourceforge.net/projects/pdfsharp
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
// THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 
// DEALINGS IN THE SOFTWARE.
#endregion

using System;
using System.Diagnostics;
using System.Collections;
using PdfSharp.Pdf.IO;
using PdfSharp.Pdf.Security;
using PdfSharp.Pdf.Internal;

namespace PdfSharp.Pdf.Advanced
{
  /// <summary>
  /// Represents a PDF trailer dictionary. Even trailers are dictionaries their never have a cross
  /// reference entry in PdfReferenceTable.
  /// </summary>
  internal sealed class PdfTrailer : PdfDictionary
  {
    /// <summary>
    /// Initializes a new instance of PdfTrailer.
    /// </summary>
    public PdfTrailer(PdfDocument document) : base(document)
    {
      this.document = document;
    }

    public int Size
    {
      get {return Elements.GetInteger(Keys.Size);}
      set {Elements.SetInteger(Keys.Size, value);}
    }

    // TODO: needed when linearized...
    //public int Prev
    //{
    //  get {return Elements.GetInteger(Keys.Prev);}
    //}

    public PdfDocumentInformation Info
    {
      get {return (PdfDocumentInformation)Elements.GetValue(PdfTrailer.Keys.Info, VCF.CreateIndirect);}
    }

    /// <summary>
    /// (Required; must be an indirect reference)
    /// The catalog dictionary for the PDF document contained in the file.
    /// </summary>
    public PdfCatalog Root
    {
      get {return (PdfCatalog)Elements.GetValue(PdfTrailer.Keys.Root, VCF.CreateIndirect);}
    }

    /// <summary>
    /// Gets the first or secound document identifier.
    /// </summary>
    public string GetDocumentID(int index)
    {
      if (index < 0 || index > 1)
        throw new ArgumentOutOfRangeException("index", index, "Index must be 0 or 1.");

      PdfArray array = Elements[Keys.ID] as PdfArray;
      if (array == null || array.Elements.Count < 2)
        return "";
      PdfItem item = array.Elements[index];
      if (item is PdfString)
        return ((PdfString)item).Value;
      return "";
    }

    /// <summary>
    /// Sets the first or secound document identifier.
    /// </summary>
    public void SetDocumentID(int index, string value)
    {
      if (index < 0 || index > 1)
        throw new ArgumentOutOfRangeException("index", index, "Index must be 0 or 1.");

      PdfArray array = Elements[Keys.ID] as PdfArray;
      if (array == null || array.Elements.Count < 2)
        array = CreateNewDocumentIDs();
      array.Elements[index] = new PdfString(value, PdfStringFlags.HexLiteral);
    }

    /// <summary>
    /// Creates and sets two identical new document IDs.
    /// </summary>
    internal PdfArray CreateNewDocumentIDs()
    {
      PdfArray array = new PdfArray(this.document);
      string id = PdfEncoders.RawEncoding.GetString(Guid.NewGuid().ToByteArray());
      array.Elements.Add(new PdfString(id, PdfStringFlags.HexLiteral));
      array.Elements.Add(new PdfString(id, PdfStringFlags.HexLiteral));
      Elements[Keys.ID] = array;
      return array;
    }

    /// <summary>
    /// Gets the standard security handler.
    /// </summary>
    public PdfStandardSecurityHandler SecurityHandler
    {
      get 
      {
        if (this.securityHandler == null)
          this.securityHandler = (PdfStandardSecurityHandler)Elements.GetValue(PdfTrailer.Keys.Encrypt, VCF.CreateIndirect);
        return this.securityHandler;
      }
    }
    internal PdfStandardSecurityHandler securityHandler;

    //internal override void WriteDictionaryElement(PdfSharp.Pdf.IO.PdfWriter writer, PdfName key)
    //{
    //  //if (key == Keys.ID)
    //  //{
    //  //  PdfArray array = Elements[key] as PdfArray;
    //  //  PdfItem item = array.Elements[0];
    //  //  //base.WriteDictionaryElement(writer, key);
    //  //  return;
    //  //}
    //  base.WriteDictionaryElement (writer, key);
    //}

    internal override void WriteObject(PdfWriter writer)
    {
      // Delete /XRefStm entry, if any
      this.elements.Remove(Keys.XRefStm);

      // Don't encypt myself
      PdfStandardSecurityHandler securityHandler = writer.SecurityHandler;
      writer.SecurityHandler = null;
      base.WriteObject(writer);
      writer.SecurityHandler = securityHandler;
    }

    /// <summary>
    /// Replace temporary irefs by their correct counterparts from the iref table.
    /// </summary>
    internal void Finish()
    {
      // \Root
      PdfReference iref = document.trailer.Elements[PdfTrailer.Keys.Root] as PdfReference;
      if (iref != null && iref.Value == null)
      {
        iref = document.irefTable[iref.ObjectID];
        Debug.Assert(iref.Value != null);
        this.document.trailer.Elements[PdfTrailer.Keys.Root] = iref;
      }

      // \Info
      iref = this.document.trailer.Elements[PdfTrailer.Keys.Info] as PdfReference;
      if (iref != null && iref.Value == null)
      {
        iref = document.irefTable[iref.ObjectID];
        Debug.Assert(iref.Value != null);
        this.document.trailer.Elements[PdfTrailer.Keys.Info] = iref;
      }

      // \Encrypt
      iref = this.document.trailer.Elements[PdfTrailer.Keys.Encrypt] as PdfReference;
      if (iref != null)
      {
        iref = document.irefTable[iref.ObjectID];
        Debug.Assert(iref.Value != null);
        this.document.trailer.Elements[PdfTrailer.Keys.Encrypt] = iref;

        // The encryption dictionary (security handler) was read in before the XRefTable construction 
        // was completed. The next lines fix that state (it take several hours to find that bugs...).
        iref.Value = this.document.trailer.securityHandler;
        this.document.trailer.securityHandler.Reference = iref;
        iref.Value.Reference = iref;
      }

      Elements.Remove(Keys.Prev);

      this.document.irefTable.IsUnderConstruction = false;
    }

    /// <summary>
    /// Predefined keys of this dictionary.
    /// </summary>
    internal sealed class Keys : KeysBase
    {
      /// <summary>
      /// (Required; must not be an indirect reference) The total number of entries in the files 
      /// cross-reference table, as defined by the combination of the original section and all
      /// update sections. Equivalently, this value is 1 greater than the highest object number
      /// used in the file.
      /// Note: Any object in a cross-reference section whose number is greater than this value is
      /// ignored and considered missing.
      /// </summary>
      [KeyInfo(KeyType.Integer | KeyType.Required)]
      public const string Size = "/Size";

      /// <summary>
      /// (Present only if the file has more than one cross-reference section; must not be an indirect
      /// reference) The byte offset from the beginning of the file to the beginning of the previous 
      /// cross-reference section.
      /// </summary>
      [KeyInfo(KeyType.Integer | KeyType.Optional)]
      public const string Prev = "/Prev";

      /// <summary>
      /// (Required; must be an indirect reference) The catalog dictionary for the PDF document
      /// contained in the file.
      /// </summary>
      [KeyInfo(KeyType.Dictionary | KeyType.Required, typeof(PdfCatalog))]
      public const string Root = "/Root";

      /// <summary>
      /// (Required if document is encrypted; PDF 1.1) The documents encryption dictionary.
      /// </summary>
      [KeyInfo(KeyType.Dictionary | KeyType.Optional, typeof(PdfStandardSecurityHandler))]
      public const string Encrypt = "/Encrypt";

      /// <summary>
      /// (Optional; must be an indirect reference) The documents information dictionary.
      /// </summary>
      [KeyInfo(KeyType.Dictionary | KeyType.Optional, typeof(PdfDocumentInformation))]
      public const string Info = "/Info";

      /// <summary>
      /// (Optional, but strongly recommended; PDF 1.1) An array of two strings constituting
      /// a file identifier for the file. Although this entry is optional, 
      /// its absence might prevent the file from functioning in some workflows
      /// that depend on files being uniquely identified.
      /// </summary>
      [KeyInfo(KeyType.Array | KeyType.Optional)]
      public const string ID = "/ID";

      /// <summary>
      /// (Optional) The byte offset from the beginning of the file of a cross-reference stream.
      /// </summary>
      [KeyInfo(KeyType.Integer | KeyType.Optional)]
      public const string XRefStm = "/XRefStm";

      /// <summary>
      /// Gets the KeysMeta for these keys.
      /// </summary>
      public static DictionaryMeta Meta
      {
        get
        {
          if (Keys.meta == null)
            Keys.meta = CreateMeta(typeof(Keys));
          return Keys.meta;
        }
      }
      static DictionaryMeta meta;
    }

    /// <summary>
    /// Gets the KeysMeta of this dictionary type.
    /// </summary>
    internal override DictionaryMeta Meta
    {
      get {return Keys.Meta;}
    }
  }
}