blob: d457c288841b5ec6a7d9bf3ba9c7cf6bdd89efcd (
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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
|
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.pdf;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;
/**
* class representing an /Info object
*/
public class PDFInfo extends PDFObject {
/**
* the application producing the PDF
*/
private String producer;
private String title = null;
private String author = null;
private String subject = null;
private String keywords = null;
private Date creationDate = null;
private Date modDate = null;
/**
* the name of the application that created the
* original document before converting to PDF
*/
private String creator;
/** @return the producer of the document or null if not set */
public String getProducer() {
return this.producer;
}
/**
* set the producer string
*
* @param producer the producer string
*/
public void setProducer(String producer) {
this.producer = producer;
}
/** @return the creator of the document or null if not set */
public String getCreator() {
return this.creator;
}
/**
* set the creator string
*
* @param creator the document creator
*/
public void setCreator(String creator) {
this.creator = creator;
}
/** @return the title string */
public String getTitle() {
return this.title;
}
/**
* set the title string
*
* @param t the document title
*/
public void setTitle(String t) {
this.title = t;
}
/** @return the author of the document or null if not set */
public String getAuthor() {
return this.author;
}
/**
* set the author string
*
* @param a the document author
*/
public void setAuthor(String a) {
this.author = a;
}
/** @return the subject of the document or null if not set */
public String getSubject() {
return this.subject;
}
/**
* set the subject string
*
* @param s the document subject
*/
public void setSubject(String s) {
this.subject = s;
}
/** @return the keywords for the document or null if not set */
public String getKeywords() {
return this.keywords;
}
/**
* set the keywords string
*
* @param k the keywords for this document
*/
public void setKeywords(String k) {
this.keywords = k;
}
/**
* @return last set creation date
*/
public Date getCreationDate() {
return creationDate;
}
/**
* @param date Date to store in the PDF as creation date. Use null to force current system date.
*/
public void setCreationDate(Date date) {
creationDate = date;
}
/** @return last modification date
*/
public Date getModDate() {
return this.modDate;
}
/**
* Sets the date of the last modification.
* @param date the last modification date or null if there are no modifications
*/
public void setModDate(Date date) {
this.modDate = date;
}
/**
* {@inheritDoc}
*/
public byte[] toPDF() {
PDFProfile profile = getDocumentSafely().getProfile();
ByteArrayOutputStream bout = new ByteArrayOutputStream(128);
try {
bout.write(encode("<<\n"));
if (title != null && title.length() > 0) {
bout.write(encode("/Title "));
bout.write(encodeText(this.title));
bout.write(encode("\n"));
} else {
profile.verifyTitleAbsent();
}
if (author != null) {
bout.write(encode("/Author "));
bout.write(encodeText(this.author));
bout.write(encode("\n"));
}
if (subject != null) {
bout.write(encode("/Subject "));
bout.write(encodeText(this.subject));
bout.write(encode("\n"));
}
if (keywords != null) {
bout.write(encode("/Keywords "));
bout.write(encodeText(this.keywords));
bout.write(encode("\n"));
}
if (creator != null) {
bout.write(encode("/Creator "));
bout.write(encodeText(this.creator));
bout.write(encode("\n"));
}
bout.write(encode("/Producer "));
bout.write(encodeText(this.producer));
bout.write(encode("\n"));
// creation date in form (D:YYYYMMDDHHmmSSOHH'mm')
if (creationDate == null) {
creationDate = new Date();
}
bout.write(encode("/CreationDate "));
bout.write(encodeString(formatDateTime(creationDate)));
bout.write(encode("\n"));
if (profile.isModDateRequired() && this.modDate == null) {
this.modDate = this.creationDate;
}
if (this.modDate != null) {
bout.write(encode("/ModDate "));
bout.write(encodeString(formatDateTime(modDate)));
bout.write(encode("\n"));
}
if (profile.isPDFXActive()) {
bout.write(encode("/GTS_PDFXVersion "));
bout.write(encodeString(profile.getPDFXMode().getName()));
bout.write(encode("\n"));
}
if (profile.isTrappedEntryRequired()) {
bout.write(encode("/Trapped /False\n"));
}
bout.write(encode(">>"));
} catch (IOException ioe) {
log.error("Ignored I/O exception", ioe);
}
return bout.toByteArray();
}
/**
* Returns a SimpleDateFormat instance for formatting PDF date-times.
* @return a new SimpleDateFormat instance
*/
protected static SimpleDateFormat getPDFDateFormat() {
SimpleDateFormat df = new SimpleDateFormat("'D:'yyyyMMddHHmmss", Locale.ENGLISH);
df.setTimeZone(TimeZone.getTimeZone("GMT"));
return df;
}
/**
* Formats a date/time according to the PDF specification (D:YYYYMMDDHHmmSSOHH'mm').
* @param time date/time value to format
* @param tz the time zone
* @return the requested String representation
*/
protected static String formatDateTime(Date time, TimeZone tz) {
Calendar cal = Calendar.getInstance(tz, Locale.ENGLISH);
cal.setTime(time);
int offset = cal.get(Calendar.ZONE_OFFSET);
offset += cal.get(Calendar.DST_OFFSET);
// DateFormat is operating on GMT so adjust for time zone offset
Date dt1 = new Date(time.getTime() + offset);
StringBuffer sb = new StringBuffer();
sb.append(getPDFDateFormat().format(dt1));
offset /= (1000 * 60); // Convert to minutes
if (offset == 0) {
sb.append('Z');
} else {
if (offset > 0) {
sb.append('+');
} else {
sb.append('-');
}
int offsetHour = Math.abs(offset / 60);
int offsetMinutes = Math.abs(offset % 60);
if (offsetHour < 10) {
sb.append('0');
}
sb.append(Integer.toString(offsetHour));
sb.append('\'');
if (offsetMinutes < 10) {
sb.append('0');
}
sb.append(Integer.toString(offsetMinutes));
sb.append('\'');
}
return sb.toString();
}
/**
* Formats a date/time according to the PDF specification. (D:YYYYMMDDHHmmSSOHH'mm').
* @param time date/time value to format
* @return the requested String representation
*/
protected static String formatDateTime(Date time) {
return formatDateTime(time, TimeZone.getDefault());
}
}
|