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
|
/*
* $Id: PRStream.java,v 1.12 2002/06/20 13:30:25 blowagie Exp $
* $Name: $
*
* Copyright 2001, 2002 by Paulo Soares.
*
*
* The Original Code is 'iText, a free JAVA-PDF library'.
*
* The Initial Developer of the Original Code is Bruno Lowagie. Portions created by
* the Initial Developer are Copyright (C) 1999, 2000, 2001, 2002 by Bruno Lowagie.
* All Rights Reserved.
* Co-Developer of the code is Paulo Soares. Portions created by the Co-Developer
* are Copyright (C) 2000, 2001, 2002 by Paulo Soares. All Rights Reserved.
*
* Contributor(s): all the names of the contributors are added in the source code
* where applicable.
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*
* If you didn't download this code from the following link, you should check if
* you aren't using an obsolete version:
* http://www.lowagie.com/iText/
*/
package com.lowagie.text.pdf;
import java.io.*;
import com.lowagie.text.ExceptionConverter;
import java.util.zip.DeflaterOutputStream;
import com.lowagie.text.Document;
import java.io.OutputStream;
import java.io.IOException;
import java.util.ArrayList; // ssteward
public class PRStream extends PdfStream {
protected PdfReader reader;
protected int offset;
protected int length;
//added by ujihara for decryption
protected int objNum = 0;
protected int objGen = 0;
public PRStream(PRStream stream, PdfDictionary newDic) {
reader = stream.reader;
offset = stream.offset;
length = stream.length;
compressed = stream.compressed;
streamBytes = stream.streamBytes;
bytes = stream.bytes;
objNum = stream.objNum;
objGen = stream.objGen;
if (newDic != null)
putAll(newDic);
else
hashMap.putAll(stream.hashMap);
}
public PRStream(PRStream stream, PdfDictionary newDic, PdfReader reader) {
this(stream, newDic);
this.reader = reader;
}
public PRStream(PdfReader reader, int offset) {
this.reader = reader;
this.offset = offset;
}
public PRStream(PdfReader reader, byte conts[]) {
this.reader = reader;
this.offset = -1;
if (Document.compress) {
try {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
DeflaterOutputStream zip = new DeflaterOutputStream(stream);
zip.write(conts);
zip.close();
bytes = stream.toByteArray();
}
catch (IOException ioe) {
throw new ExceptionConverter(ioe);
}
put(PdfName.FILTER, PdfName.FLATEDECODE);
}
else
bytes = conts;
setLength(bytes.length);
}
/**Sets the data associated with the stream
* @param data raw data, decrypted and uncompressed.
*/
public void setData(byte[] data) {
remove(PdfName.FILTER);
this.offset = -1;
if (Document.compress) {
try {
ByteArrayOutputStream stream = new ByteArrayOutputStream();
DeflaterOutputStream zip = new DeflaterOutputStream(stream);
zip.write(data);
zip.close();
bytes = stream.toByteArray();
}
catch (IOException ioe) {
throw new ExceptionConverter(ioe);
}
put(PdfName.FILTER, PdfName.FLATEDECODE);
}
else
bytes = data;
setLength(bytes.length);
}
public void setLength(int length) {
this.length = length;
put(PdfName.LENGTH, new PdfNumber(length));
}
public int getOffset() {
return offset;
}
public int getLength() {
return length;
}
public PdfReader getReader() {
return reader;
}
public byte[] getBytes() {
return bytes;
}
public void setObjNum(int objNum, int objGen) {
this.objNum = objNum;
this.objGen = objGen;
}
int getObjNum() {
return objNum;
}
int getObjGen() {
return objGen;
}
// ssteward: added material to allow decoded, or "filtered," output;
// perhaps decryption should be moved to PdfReader, a'la PdfReader.getStreamBytes(),
// and encryption moved to PdfWriter? it just seems unwieldy to have some
// of this code duplicated in PdfReader.getStreamBytes();
//
public void toPdf(PdfWriter writer, OutputStream os) throws IOException {
{ // ssteward (right?)
// the filters to apply to this, if any
ArrayList filters= new ArrayList(); {
PdfObject filter= this.reader.getPdfObject(this.get(PdfName.FILTER));
if (filter != null) {
if (filter.type() == PdfObject.NAME) {
filters.add(filter);
}
else if (filter.type() == PdfObject.ARRAY) {
filters = ((PdfArray)filter).getArrayList();
}
}
}
// apply filters to our stream data before streaming?
boolean filterStream_b=
( writer.filterStreams &&
0< this.offset && // our stream data must be stored in a file, not in this.bytes
this.reader.getPdfObject( this.get(PdfName.DECODEPARMS) )== null &&
!filters.isEmpty() && allKnownFilters( this.reader, filters ) );
if( filterStream_b ) { // apply filters
RandomAccessFileOrArray file= writer.getReaderFile( this.reader );
this.bytes= PdfReader.getStreamBytes( this, file ); // decrypts, too
this.remove(PdfName.FILTER);
this.setLength( this.bytes.length );
this.offset= -1; // indicate that we have read the stream into this.bytes
}
// apply compression to our stream data before streaming?
// our stream data may be in this.bytes or in a file
boolean compressStream_b=
( writer.compressStreams &&
this.reader.getPdfObject( this.get(PdfName.DECODEPARMS) )== null &&
filters.isEmpty() );
if( compressStream_b ) { // apply compression
if( 0< this.offset ) { // our data is in file; pull into this.bytes
RandomAccessFileOrArray file= writer.getReaderFile( this.reader );
this.bytes= PdfReader.getStreamBytes( this, file ); // decrypts, too
}
ByteArrayOutputStream stream= new ByteArrayOutputStream();
DeflaterOutputStream zip= new DeflaterOutputStream( stream );
zip.write( this.bytes );
zip.close();
this.bytes= stream.toByteArray();
this.put( PdfName.FILTER, PdfName.FLATEDECODE );
this.setLength( this.bytes.length );
this.offset= -1; // indicate that we have read the stream into this.bytes
}
}
superToPdf(writer, os); // PdfDictionary.toPdf(), outputs FILTER, LENGTH, etc.
os.write(STARTSTREAM);
if (length > 0) {
PdfEncryption crypto = null;
if (writer != null) { // ssteward
crypto = writer.getEncryption();
}
if (offset < 0) { // our stream data is stored in this.bytes
if (crypto == null) {
os.write(bytes);
}
else { // encrypt and output
crypto.prepareKey();
byte buf[] = new byte[length];
System.arraycopy(bytes, 0, buf, 0, length);
crypto.encryptRC4(buf);
os.write(buf);
}
}
else { // our stream data is stored in a file
byte buf[] = new byte[Math.min(length, 4092)];
RandomAccessFileOrArray file = writer.getReaderFile(reader);
boolean isOpen = file.isOpen();
try {
file.seek(offset);
int size = length;
//added by ujihara for decryption
PdfEncryption decrypt = reader.getDecrypt();
if (decrypt != null) {
decrypt.setHashKey(objNum, objGen);
decrypt.prepareKey();
}
if (crypto != null)
crypto.prepareKey();
while (size > 0) {
int r = file.read(buf, 0, Math.min(size, buf.length));
size -= r;
if (decrypt != null)
decrypt.encryptRC4(buf, 0, r); //added by ujihara for decryption
if (crypto != null)
crypto.encryptRC4(buf, 0, r);
os.write(buf, 0, r);
}
}
finally {
if (!isOpen)
try{file.close();}catch(Exception e){}
}
}
}
os.write(ENDSTREAM);
}
// ssteward
// do we know how to apply all of the filters in (ArrayList filters)?
public static boolean allKnownFilters( PdfReader reader, ArrayList filters ) {
boolean retVal= true;
String name;
for (int j = 0; j < filters.size(); ++j) {
name = ((PdfName)reader.getPdfObject((PdfObject)filters.get(j))).toString();
retVal= retVal &&
( (name.equals("/FlateDecode") || name.equals("/Fl")) ||
(name.equals("/ASCIIHexDecode") || name.equals("/AHx")) ||
(name.equals("/ASCII85Decode") || name.equals("/A85")) ||
(name.equals("/LZWDecode")) );
}
return retVal;
}
}
|