/** * Copyright (c) 2003-2004, www.pdfbox.org * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * 3. Neither the name of pdfbox; nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * http://www.pdfbox.org * */ package org.pdfbox.pdmodel.interactive.form; import org.pdfbox.cos.COSArray; import org.pdfbox.cos.COSDictionary; import org.pdfbox.cos.COSName; import org.pdfbox.cos.COSString; import org.pdfbox.pdmodel.PDDocument; import org.pdfbox.pdmodel.PDResources; import org.pdfbox.pdmodel.fdf.FDFDictionary; import org.pdfbox.pdmodel.fdf.FDFDocument; import org.pdfbox.pdmodel.fdf.FDFCatalog; import org.pdfbox.pdmodel.fdf.FDFField; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; /** * This class represents the acroform of a PDF document. * * @author Ben Litchfield (ben@csh.rit.edu) * @version $Revision: 1.8 $ */ public class PDAcroForm { private COSDictionary acroForm; private PDDocument document; private Map fieldCache; /** * Constructor. * * @param doc The document that this form is part of. */ public PDAcroForm( PDDocument doc ) { document = doc; acroForm = new COSDictionary(); COSArray fields = new COSArray(); acroForm.setItem( COSName.getPDFName( "Fields" ), fields ); } /** * Constructor. * * @param doc The document that this form is part of. * @param form The existing acroForm. */ public PDAcroForm( PDDocument doc, COSDictionary form ) { document = doc; acroForm = form; } /** * This will get the document associated with this form. * * @return The PDF document. */ public PDDocument getDocument() { return document; } /** * This will get the dictionary that this form wraps. * * @return The dictionary for this form. */ public COSDictionary getDictionary() { return acroForm; } /** * This method will import an entire FDF document into the PDF document * that this acroform is part of. * * @param fdf The FDF document to import. * * @throws IOException If there is an error doing the import. */ public void importFDF( FDFDocument fdf ) throws IOException { List fields = fdf.getCatalog().getFDF().getFields(); if( fields != null ) { for( int i=0; i 0 ) { fdfDict.setFields( fdfFields ); } return fdf; } private void addFieldAndChildren( PDField docField, List fdfFields ) throws IOException { Object fieldValue = docField.getValue(); FDFField fdfField = new FDFField(); fdfField.setPartialFieldName( docField.getPartialName() ); fdfField.setValue( fieldValue ); List kids = docField.getKids(); List childFDFFields = new ArrayList(); if( kids != null ) { for( int i=0; i 0 ) { fdfField.setKids( childFDFFields ); } } if( fieldValue != null || childFDFFields.size() > 0 ) { fdfFields.add( fdfField ); } } /** * This will return all of the fields in the document. The type * will be a org.pdfbox.pdmodel.field.PDField. * * @return A list of all the fields. * @throws IOException If there is an error while getting the list of fields. */ public List getFields() throws IOException { COSArray fields = (COSArray) acroForm.getDictionaryObject( COSName.getPDFName("Fields")); List retval = new ArrayList(); for (int i = 0; i < fields.size(); i++) { COSDictionary element = (COSDictionary) fields.getObject(i); if (element != null) { PDField field = PDFieldFactory.createField( this, element ); if( field != null ) { retval.add(field); } } } return retval; } /** * This will tell this form to cache the fields into a Map structure * for fast access via the getField method. The default is false. You would * want this to be false if you were changing the COSDictionary behind the scenes, * otherwise setting this to true is acceptable. * * @param cache A boolean telling if we should cache the fields. * @throws IOException If there is an error while caching the fields. */ public void setCacheFields( boolean cache ) throws IOException { if( cache ) { fieldCache = new HashMap(); List fields = getFields(); Iterator fieldIter = fields.iterator(); while( fieldIter.hasNext() ) { PDField next = (PDField)fieldIter.next(); fieldCache.put( next.getFullyQualifiedName(), next ); } } else { fieldCache = null; } } /** * This will tell if this acro form is caching the fields. * * @return true if the fields are being cached. */ public boolean isCachingFields() { return fieldCache != null; } /** * This will get a field by name, possibly using the cache if setCache is true. * * @param name The name of the field to get. * * @return The field with that name of null if one was not found. * * @throws IOException If there is an error getting the field type. */ public PDField getField( String name ) throws IOException { PDField retval = null; if( fieldCache != null ) { retval = (PDField)fieldCache.get( name ); } else { COSArray fields = (COSArray) acroForm.getDictionaryObject( COSName.getPDFName("Fields")); for (int i = 0; i < fields.size() && retval == null; i++) { COSDictionary element = (COSDictionary) fields.getObject(i); if( element != null ) { COSString fieldName = (COSString)element.getDictionaryObject( COSName.getPDFName( "T" ) ); if( fieldName.getString().equals( name ) ) { retval = PDFieldFactory.createField( this, element ); } } } } return retval; } /** * This will get the default resources for the acro form. * * @return The default resources. */ public PDResources getDefaultResources() { PDResources retval = null; COSDictionary dr = (COSDictionary)acroForm.getDictionaryObject( COSName.getPDFName( "DR" ) ); if( dr != null ) { retval = new PDResources( dr ); } return retval; } /** * This will set the default resources for the acroform. * * @param dr The new default resources. */ public void setDefaultResources( PDResources dr ) { COSDictionary drDict = null; if( dr != null ) { drDict = dr.getCOSDictionary(); } acroForm.setItem( COSName.getPDFName( "DR" ), drDict ); } }