/*
* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000 The Apache Software Foundation. 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. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED 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 APACHE SOFTWARE FOUNDATION OR
* ITS 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.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
*
Adds writing capability to the {@link Section} class.
* *Please be aware that this class' functionality will be merged into the * {@link Section} class at a later time, so the API will change.
* * @version $Id$ * @since 2002-02-20 */ public class MutableSection extends Section { /** *If the "dirty" flag is true, the section's size must be * (re-)calculated before the section is written.
*/ private boolean dirty = true; /** *List to assemble the properties. Unfortunately a wrong * decision has been taken when specifying the "properties" field * as an Property[]. It should have been a {@link java.util.List}.
*/ private List preprops; /** *Contains the bytes making out the section. This byte array is * established when the section's size is calculated and can be reused * later. It is valid only if the "dirty" flag is false.
*/ private byte[] sectionBytes; /** *Creates an empty mutable section.
*/ public MutableSection() { dirty = true; formatID = null; offset = -1; preprops = new LinkedList(); } /** *Constructs a MutableSection by doing a deep copy of an
* existing Section. All nested Property
* instances, will be their mutable counterparts in the new
* MutableSection.
Sets the section's format ID.
* * @param formatID The section's format ID * * @see #setFormatID(byte[]) * @see #getFormatID */ public void setFormatID(final ClassID formatID) { this.formatID = formatID; } /** *Sets the section's format ID.
* * @param formatID The section's format ID as a byte array. It components * are in big-endian format. * * @see #setFormatID(ClassID) * @see #getFormatID */ public void setFormatID(final byte[] formatID) { setFormatID(new ClassID(formatID, 0)); } /** *Sets this section's properties. Any former values are overwritten.
* * @param properties This section's new properties. */ public void setProperties(final Property[] properties) { this.properties = properties; preprops = new LinkedList(); for (int i = 0; i < properties.length; i++) preprops.add(properties[i]); dirty = true; propertyCount = properties.length; } /** *Sets the value of the property with the specified ID. If a * property with this ID is not yet present in the section, it * will be added. An already present property with the specified * ID will be overwritten.
* * @param id The property's ID * @param value The property's value. It will be written as a Unicode * string. * * @see #setProperty(int, long, Object) * @see #getProperty */ public void setProperty(final int id, final String value) { setProperty(id, Variant.VT_LPWSTR, value); dirty = true; } /** *Sets the value and the variant type of the property with the * specified ID. If a property with this ID is not yet present in * the section, it will be added. An already present property with * the specified ID will be overwritten. A default mapping will be * used to choose the property's type.
* * @param id The property's ID. * @param variantType The property's variant type. * @param value The property's value. * * @see #setProperty(int, String) * @see #getProperty * @see Variant */ public void setProperty(final int id, final long variantType, final Object value) { final MutableProperty p = new MutableProperty(); p.setID(id); p.setType(variantType); p.setValue(value); setProperty(p); dirty = true; } /** *Sets a property. If a property with the same ID is not yet present in * the section, the property will be added to the section. If there is * already a property with the same ID present in the section, it will be * overwritten.
* * @param p The property to be added to the section * * @see #setProperty(int, long, Object) * @see #setProperty(int, String) * @see #getProperty * @see Variant */ public void setProperty(final Property p) { final long id = p.getID(); removeProperty(id); preprops.add(p); dirty = true; propertyCount = preprops.size(); } /** *Removes a property.
* * @param id The ID of the property to be removed */ public void removeProperty(final long id) { for (final Iterator i = preprops.iterator(); i.hasNext();) if (((Property) i.next()).getID() == id) { i.remove(); break; } dirty = true; propertyCount = preprops.size(); } /** *Sets the value of the boolean property with the specified * ID.
* * @param id The property's ID * @param value The property's value * * @see #setProperty(int, long, Object) * @see #getProperty * @see Variant */ protected void setPropertyBooleanValue(final int id, final boolean value) { setProperty(id, (long) Variant.VT_BOOL, new Boolean(value)); } /** *Returns the section's size.
* * @return the section's size. */ public int getSize() { if (dirty) { try { size = calcSize(); dirty = false; } catch (HPSFRuntimeException ex) { throw ex; } catch (Exception ex) { throw new HPSFRuntimeException(ex); } } return size; } /** *Calculates the section's size. It is the sum of the lengths of the * section's header (8), the properties list (16 times the number of * properties) and the properties themselves.
* * @return the section's length in bytes. */ private int calcSize() throws WritingNotSupportedException, IOException { final ByteArrayOutputStream out = new ByteArrayOutputStream(); write(out); out.close(); sectionBytes = out.toByteArray(); return sectionBytes.length; } /** *Writes this section into an output stream.
* *Internally this is done by writing into three byte array output * streams: one for the properties, one for the property list and one for * the section as such. The two former are appended to the latter when they * have received all their data.
* * @param out The stream to write into. * * @return The number of bytes written, i.e. the section's size. * @exception IOException if an I/O error occurs * @exception WritingNotSupportedException if HPSF does not yet support * writing a property's variant type. */ public int write(final OutputStream out) throws WritingNotSupportedException, IOException { /* Check whether we have already generated the bytes making out the * section. */ if (!dirty && sectionBytes != null) { out.write(sectionBytes); return sectionBytes.length; } /* The properties are written to this stream. */ final ByteArrayOutputStream propertyStream = new ByteArrayOutputStream(); /* The property list is established here. After each property that has * been written to "propertyStream", a property list entry is written to * "propertyListStream". */ final ByteArrayOutputStream propertyListStream = new ByteArrayOutputStream(); /* Maintain the current position in the list. */ int position = 0; /* Increase the position variable by the size of the property list so * that it points behind the property list and to the beginning of the * properties themselves. */ position += 2 * LittleEndian.INT_SIZE + getPropertyCount() * 2 * LittleEndian.INT_SIZE; /* Writing the section's dictionary it tricky. If there is a dictionary * (property 0) the codepage property (property 1) has to be set, too. * Since HPSF supports Unicode only, the codepage must be 1200. */ if (getProperty(PropertyIDMap.PID_DICTIONARY) != null) { final Object p1 = getProperty(PropertyIDMap.PID_CODEPAGE); if (p1 != null) { if (!(p1 instanceof Integer)) throw new IllegalPropertySetDataException ("The codepage property (ID = 1) must be an " + "Integer object."); else if (((Integer) p1).intValue() != Property.CP_UNICODE) throw new IllegalPropertySetDataException ("The codepage property (ID = 1) must be " + "1200 (Unicode)."); } else throw new IllegalPropertySetDataException ("The codepage property (ID = 1) must be set."); } /* Write the properties and the property list into their respective * streams: */ for (final Iterator i = preprops.iterator(); i.hasNext();) { final MutableProperty p = (MutableProperty) i.next(); final long id = p.getID(); /* Write the property list entry. */ TypeWriter.writeUIntToStream(propertyListStream, p.getID()); TypeWriter.writeUIntToStream(propertyListStream, position); /* If the property ID is not equal 0 we write the property and all * is fine. However, if it equals 0 we have to write the section's * dictionary which does not have a type but just a value. */ if (id != 0) /* Write the property and update the position to the next * property. */ position += p.write(propertyStream); else { final Integer codepage = (Integer) getProperty(PropertyIDMap.PID_CODEPAGE); if (codepage == null) throw new IllegalPropertySetDataException ("Codepage (property 1) is undefined."); position += writeDictionary(propertyStream, dictionary); } } propertyStream.close(); propertyListStream.close(); /* Write the section: */ byte[] pb1 = propertyListStream.toByteArray(); byte[] pb2 = propertyStream.toByteArray(); /* Write the section's length: */ TypeWriter.writeToStream(out, LittleEndian.INT_SIZE * 2 + pb1.length + pb2.length); /* Write the section's number of properties: */ TypeWriter.writeToStream(out, getPropertyCount()); /* Write the property list: */ out.write(pb1); /* Write the properties: */ out.write(pb2); int streamLength = LittleEndian.INT_SIZE * 2 + pb1.length + pb2.length; return streamLength; } /** *Writes the section's dictionary.
* * @param out The output stream to write to. * @param dictionary The dictionary. * @return The number of bytes written * @exception IOException if an I/O exception occurs. */ private static int writeDictionary(final OutputStream out, final Map dictionary) throws IOException { int length = 0; length += TypeWriter.writeUIntToStream(out, dictionary.size()); for (final Iterator i = dictionary.keySet().iterator(); i.hasNext();) { final Long key = (Long) i.next(); final String value = (String) dictionary.get(key); int sLength = value.length() + 1; if (sLength % 2 == 1) sLength++; length += TypeWriter.writeUIntToStream(out, key.longValue()); length += TypeWriter.writeUIntToStream(out, sLength); final char[] ca = value.toCharArray(); for (int j = 0; j < ca.length; j++) { int high = (ca[j] & 0x0ff00) >> 8; int low = (ca[j] & 0x000ff); out.write(low); out.write(high); length += 2; sLength--; } while (sLength > 0) { out.write(0x00); out.write(0x00); length += 2; sLength--; } } return length; } /** *Overwrites the super class' method to cope with a redundancy: * the property count is maintained in a separate member variable, but * shouldn't.
* * @return The number of properties in this section */ public int getPropertyCount() { return preprops.size(); } /** *Returns this section's properties.
* * @return this section's properties. */ public Property[] getProperties() { properties = (Property[]) preprops.toArray(new Property[0]); return properties; } /** *Gets a property.
* *FIXME (2): This method ensures that properties and * preprops are in sync. Cleanup this awful stuff!
* * @param id The ID of the property to get * @return The property ornull if there is no such property
*/
public Object getProperty(final long id)
{
getProperties();
return super.getProperty(id);
}
/**
* Sets the section's dictionary. All keys in the dictionary must be * {@link java.lang.Long} instances, all values must be * {@link java.lang.String}s. This method overwrites the properties with IDs * 0 and 1 since they are reserved for the dictionary and the dictionary's * codepage. Setting these properties explicitly might have surprising * effects. An application should never do this but always use this * method.
* * @param dictionary The dictionary * * @exception IllegalPropertySetDataException if the dictionary's key and * value types are not correct. * * @see Section#getDictionary() */ public void setDictionary(final Map dictionary) throws IllegalPropertySetDataException { if (dictionary != null) { for (final Iterator i = dictionary.keySet().iterator(); i.hasNext();) if (!(i.next() instanceof Long)) throw new IllegalPropertySetDataException ("Dictionary keys must be of type Long."); for (final Iterator i = dictionary.values().iterator(); i.hasNext();) if (!(i.next() instanceof String)) throw new IllegalPropertySetDataException ("Dictionary values must be of type String."); this.dictionary = dictionary; /* Set the dictionary property (ID 0). Please note that the second * parameter in the method call below is unused because dictionaries * don't have a type. */ setProperty(PropertyIDMap.PID_DICTIONARY, -1, dictionary); /* Set the codepage property (ID 1) for the strings used in the * dictionary. HPSF always writes Unicode strings to the * dictionary. */ setProperty(PropertyIDMap.PID_CODEPAGE, Variant.VT_I2, new Integer(Property.CP_UNICODE)); } else /* Setting the dictionary to null means to remove property 0. * However, it does not mean to remove property 1 (codepage). */ removeProperty(PropertyIDMap.PID_DICTIONARY); } }