/* * 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. */ package org.apache.pdfbox.pdmodel.common; import java.io.IOException; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Set; import org.apache.pdfbox.cos.COSBase; import org.apache.pdfbox.cos.COSBoolean; import org.apache.pdfbox.cos.COSDictionary; import org.apache.pdfbox.cos.COSFloat; import org.apache.pdfbox.cos.COSInteger; import org.apache.pdfbox.cos.COSName; import org.apache.pdfbox.cos.COSString; /** * This is a Map that will automatically sync the contents to a COSDictionary. * * @author <a href="mailto:ben@benlitchfield.com">Ben Litchfield</a> * @version $Revision: 1.10 $ */ public class COSDictionaryMap implements Map { private COSDictionary map; private Map actuals; /** * Constructor for this map. * * @param actualsMap The map with standard java objects as values. * @param dicMap The map with COSBase objects as values. */ public COSDictionaryMap( Map actualsMap, COSDictionary dicMap ) { actuals = actualsMap; map = dicMap; } /** * {@inheritDoc} */ public int size() { return map.size(); } /** * {@inheritDoc} */ public boolean isEmpty() { return size() == 0; } /** * {@inheritDoc} */ public boolean containsKey(Object key) { return map.keySet().contains( key ); } /** * {@inheritDoc} */ public boolean containsValue(Object value) { return actuals.containsValue( value ); } /** * {@inheritDoc} */ public Object get(Object key) { return actuals.get( key ); } /** * {@inheritDoc} */ public Object put(Object key, Object value) { COSObjectable object = (COSObjectable)value; map.setItem( COSName.getPDFName( (String)key ), object.getCOSObject() ); return actuals.put( key, value ); } /** * {@inheritDoc} */ public Object remove(Object key) { map.removeItem( COSName.getPDFName( (String)key ) ); return actuals.remove( key ); } /** * {@inheritDoc} */ public void putAll(Map t) { throw new RuntimeException( "Not yet implemented" ); } /** * {@inheritDoc} */ public void clear() { map.clear(); actuals.clear(); } /** * {@inheritDoc} */ public Set keySet() { return actuals.keySet(); } /** * {@inheritDoc} */ public Collection values() { return actuals.values(); } /** * {@inheritDoc} */ public Set entrySet() { return Collections.unmodifiableSet(actuals.entrySet()); } /** * {@inheritDoc} */ public boolean equals(Object o) { boolean retval = false; if( o instanceof COSDictionaryMap ) { COSDictionaryMap other = (COSDictionaryMap)o; retval = other.map.equals( this.map ); } return retval; } /** * {@inheritDoc} */ public String toString() { return actuals.toString(); } /** * {@inheritDoc} */ public int hashCode() { return map.hashCode(); } /** * This will take a map<java.lang.String,org.apache.pdfbox.pdmodel.COSObjectable> * and convert it into a COSDictionary<COSName,COSBase>. * * @param someMap A map containing COSObjectables * * @return A proper COSDictionary */ public static COSDictionary convert( Map someMap ) { Iterator iter = someMap.keySet().iterator(); COSDictionary dic = new COSDictionary(); while( iter.hasNext() ) { String name = (String)iter.next(); COSObjectable object = (COSObjectable)someMap.get( name ); dic.setItem( COSName.getPDFName( name ), object.getCOSObject() ); } return dic; } /** * This will take a COS dictionary and convert it into COSDictionaryMap. All cos * objects will be converted to their primitive form. * * @param map The COS mappings. * @return A standard java map. * @throws IOException If there is an error during the conversion. */ public static COSDictionaryMap convertBasicTypesToMap( COSDictionary map ) throws IOException { COSDictionaryMap retval = null; if( map != null ) { Map actualMap = new HashMap(); for( COSName key : map.keySet() ) { COSBase cosObj = map.getDictionaryObject( key ); Object actualObject = null; if( cosObj instanceof COSString ) { actualObject = ((COSString)cosObj).getString(); } else if( cosObj instanceof COSInteger ) { actualObject = new Integer( ((COSInteger)cosObj).intValue() ); } else if( cosObj instanceof COSName ) { actualObject = ((COSName)cosObj).getName(); } else if( cosObj instanceof COSFloat ) { actualObject = new Float( ((COSFloat)cosObj).floatValue() ); } else if( cosObj instanceof COSBoolean ) { actualObject = ((COSBoolean)cosObj).getValue() ? Boolean.TRUE : Boolean.FALSE; } else { throw new IOException( "Error:unknown type of object to convert:" + cosObj ); } actualMap.put( key.getName(), actualObject ); } retval = new COSDictionaryMap( actualMap, map ); } return retval; } }