You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TrailerDictionary.java 3.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.pdf.xref;
  19. import java.io.IOException;
  20. import java.io.OutputStream;
  21. import org.apache.fop.pdf.PDFArray;
  22. import org.apache.fop.pdf.PDFDictionary;
  23. import org.apache.fop.pdf.PDFDocument;
  24. import org.apache.fop.pdf.PDFEncryption;
  25. import org.apache.fop.pdf.PDFInfo;
  26. import org.apache.fop.pdf.PDFRoot;
  27. import org.apache.fop.pdf.PDFText;
  28. import org.apache.fop.pdf.PDFWritable;
  29. /**
  30. * A data class representing entries of the file trailer dictionary.
  31. */
  32. public class TrailerDictionary {
  33. private final PDFDictionary dictionary;
  34. public TrailerDictionary(PDFDocument pdfDocument) {
  35. this.dictionary = new PDFDictionary();
  36. this.dictionary.setDocument(pdfDocument);
  37. }
  38. /** Sets the value of the Root entry. */
  39. public TrailerDictionary setRoot(PDFRoot root) {
  40. dictionary.put("/Root", root);
  41. return this;
  42. }
  43. /** Sets the value of the Info entry. */
  44. public TrailerDictionary setInfo(PDFInfo info) {
  45. dictionary.put("/Info", info);
  46. return this;
  47. }
  48. /** Sets the value of the Encrypt entry. */
  49. public TrailerDictionary setEncryption(PDFEncryption encryption) {
  50. dictionary.put("/Encrypt", encryption);
  51. return this;
  52. }
  53. /** Sets the value of the ID entry. */
  54. public TrailerDictionary setFileID(byte[] originalFileID, byte[] updatedFileID) {
  55. // TODO this is ugly! Used to circumvent the fact that the file ID will be
  56. // encrypted if directly stored as a byte array
  57. class FileID implements PDFWritable {
  58. private final byte[] fileID;
  59. FileID(byte[] id) {
  60. fileID = id;
  61. }
  62. public void outputInline(OutputStream out, StringBuilder textBuffer)
  63. throws IOException {
  64. PDFDocument.flushTextBuffer(textBuffer, out);
  65. String hex = PDFText.toHex(fileID, true);
  66. byte[] encoded = hex.getBytes("US-ASCII");
  67. out.write(encoded);
  68. }
  69. }
  70. PDFArray fileID = new PDFArray(new FileID(originalFileID), new FileID(updatedFileID));
  71. dictionary.put("/ID", fileID);
  72. return this;
  73. }
  74. PDFDictionary getDictionary() {
  75. return dictionary;
  76. }
  77. }