All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jpedal.io.PdfObjectReader Maven / Gradle / Ivy

There is a newer version: 20151002
Show newest version
/*
 * ===========================================
 * Java Pdf Extraction Decoding Access Library
 * ===========================================
 *
 * Project Info:  http://www.idrsolutions.com
 * Help section for developers at http://www.idrsolutions.com/support/
 *
 * (C) Copyright 1997-2017 IDRsolutions and Contributors.
 *
 * This file is part of JPedal/JPDF2HTML5
 *
     This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
    version 2.1 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
    Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with this library; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA


 *
 * ---------------
 * PdfObjectReader.java
 * ---------------
 */
package org.jpedal.io;

import java.io.File;
import java.io.InputStream;
import java.security.PrivateKey;
import java.security.cert.Certificate;
import java.util.HashMap;
import java.util.Map;
import javax.imageio.stream.ImageInputStream;
import org.jpedal.exception.PdfException;
import org.jpedal.io.security.DecryptionFactory;
import org.jpedal.objects.Javascript;
import org.jpedal.objects.PageLookup;
import org.jpedal.objects.raw.FormObject;
import org.jpedal.objects.raw.PageObject;
import org.jpedal.objects.raw.PdfDictionary;
import org.jpedal.objects.raw.PdfObject;
import org.jpedal.utils.LogWriter;
import org.jpedal.utils.StringUtils;

/**
 *  Provide access to data of PDF file on disk
 */
public class PdfObjectReader {
    
    private PdfFileReader objectReader=new PdfFileReader();
    
    /**
     * holds pdf id (ie 4 0 R) which stores each object
     */
    final Map pagesReferences = new HashMap();
    
    /**
     * page lookup table using objects as key
     */
    private PageLookup pageLookup = new PageLookup();

    private String tempFileName;
    
    /**names lookup table*/
    private NameLookup nameLookup;
    
    /**names lookup table*/
    private PageLabels pageLabels;
    
    RandomAccessBuffer pdf_datafile;
    
    /**Collection object*/
//    private PdfObject collectionObj;
    
    PdfObject pageObj;
    
    public PdfObjectReader() {}
    
    /**
     * set password as well
     * @param password
     */
    public PdfObjectReader(String password) {

        if(password==null) {
            password = "";
        }
        
        objectReader.setPassword(password);
    }
    
    public PdfObjectReader(final Certificate certificate, final PrivateKey key) {
        
        objectReader.setCertificate(certificate,key);
        
    }
    
    /**
     * reference for Page object
     * @param page
     * @return String ref (ie 1 0 R)
     * pdfObject=new PageObject(currentPageOffset);
     * currentPdfFile.readObject(pdfObject);
     */
    public String getReferenceforPage(final int page){
        return pagesReferences.get(page);
    }
    
    /**
     * close the file
     */
    public final void closePdfFile()
    {
        try
        {
            objectReader.closeFile();
            
            if(pdf_datafile!=null) {
                pdf_datafile.close();
            }
            
            //ensure temp file deleted
            if(tempFileName!=null){
                final File fileToDelete=new File(tempFileName);
                fileToDelete.delete();
                tempFileName=null;
            }
        }catch( final Exception e ){
            LogWriter.writeLog("Exception " + e + " closing file");
        }
    }
    
    /**
     * allow user to access SOME PDF objects
     * currently PdfDictionary.Encryption
     */
    public PdfObject getPDFObject(final int key) {
        
        switch(key){
            
            case PdfDictionary.Encrypt:
                return objectReader.encyptionObj;
                
//            case PdfDictionary.Collection:
//                return collectionObj;
                
            default:
                throw new RuntimeException("Access to " + key + " not supported");
        }
    }
    
    public PdfFileReader getObjectReader() {
        return objectReader;
    }
    
    /**
     * convert page number to label (or null if no value)
     * @param pageNumber
     * @return Label as String or null
     */
    public String convertPageNumberToLabel(final int pageNumber) {
        
        //see if decoded
        if(pageLabels==null) {
            return null;
        } else {
            return pageLabels.get(pageNumber);
        }   
    }
    
    /**
     * convert name into object ref
     */
    public String convertNameToRef(final String value) {
        
        //see if decoded
        if(nameLookup==null) {
            return null;
        } else {
            return (String) nameLookup.get(value);
        }
        
    }
    
    /**
     * get Names lookup table
     */
    public NameLookup getNamesLookup() {
        
        //see if decoded
        if(nameLookup==null) {
            return null;
        } else {
            return nameLookup;
        }
        
    }

    /**
     * given a ref, what is the page
     * @param ref - PDF object reference
     * @return - page number with  being first page
     */
    public int convertObjectToPageNumber(final String ref) {
        
        return pageLookup.convertObjectToPageNumber(ref);
    }
    
    public void setLookup(final String currentPageOffset, final int tempPageCount) {
        pageLookup.put(currentPageOffset, tempPageCount);
        pagesReferences.put(tempPageCount, currentPageOffset);
    }
    
    public void dispose(){
        
        //this.objData=null;
        //this.lastRef=null;
        
//        collectionObj = null;
        
        pageLabels=null;
        
        nameLookup=null;
        
        //this.fields=null;
        
        if(objectReader!=null) {
            objectReader.dispose();
        }
        objectReader=null;
        
        if(pageLookup!=null) {
            pageLookup.dispose();
        }
        pageLookup=null;
        
    }
    
    /**
     * open pdf file
Only files allowed (not http) * so we can handle Random Access of pdf */ public final void openPdfFile( final InputStream in) throws PdfException { try { //use byte[] directly if small otherwise use Memory Map pdf_datafile = new RandomAccessMemoryMapBuffer(in ); objectReader.init(pdf_datafile); //this.eof = pdf_datafile.length(); //pdf_datafile = new RandomAccessFile( filename, "r" ); }catch( final Exception e ){ LogWriter.writeLog("Exception " + e + " accessing file"); throw new PdfException( "Exception " + e + " accessing file" ); } } /** * open pdf file
Only files allowed (not http) * so we can handle Random Access of pdf */ public final void openPdfFile(final ImageInputStream iis ) throws PdfException { final RandomAccessBuffer pdf_datafile; try { //use byte[] directly if small otherwise use Memory Map pdf_datafile = new ImageInputStreamFileBuffer(iis); //pdf_datafile = new RandomAccessFileBuffer( filename, "r" ); //pdf_datafile = new RandomAccessFCTest( new FileInputStream(filename)); objectReader.init(pdf_datafile); //this.eof = pdf_datafile.length(); }catch( final Exception e ){ LogWriter.writeLog("Exception " + e + " accessing file"); throw new PdfException( "Exception " + e + " accessing file" ); } } public void checkParentForResources(final PdfObject pdfObject) { /* * if no resource, check parent for one * (in theory should recurse up whole tree) */ if(pdfObject.getDictionary(PdfDictionary.Resources)==null){ final String parent=pdfObject.getStringKey(PdfDictionary.Parent); if(parent!=null){ final PdfObject parentObj=new PageObject(parent); readObject(parentObj); final PdfObject resObj=parentObj.getDictionary(PdfDictionary.Resources); if(resObj!=null){ pdfObject.setDictionary(PdfDictionary.Resources,resObj); } } } } /** * open pdf file
Only files allowed (not http) * so we can handle Random Access of pdf */ public final void openPdfFile( final String filename ) throws PdfException { final RandomAccessBuffer pdf_datafile; try { pdf_datafile = new RandomAccessFileBuffer( filename, "r" ); //pdf_datafile = new RandomAccessFCTest( new FileInputStream(filename)); objectReader.init(pdf_datafile); //this.eof = pdf_datafile.length(); }catch( final Exception e ){ LogWriter.writeLog("Exception " + e + " accessing file"); throw new PdfException( "Exception " + e + " accessing file" ); } } /** * open pdf file using a byte stream - By default files under 16384 bytes are cached to disk * but this can be altered by setting PdfFileReader.alwaysCacheInMemory to a maximimum size or -1 (always keep in memory) */ public final void openPdfFile( final byte[] data ) throws PdfException { final RandomAccessBuffer pdf_datafile; try { //use byte[] directly if small otherwise use Memory Map if(PdfFileReader.alwaysCacheInMemory ==-1 || data.length-->


© 2015 - 2024 Weber Informatics LLC | Privacy Policy