2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* ====================================================================
|
|
|
|
|
* The Apache Software License, Version 1.1
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* Copyright (c) 2000 The Apache Software Foundation. All rights
|
|
|
|
|
* reserved.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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.
|
|
|
|
|
* ====================================================================
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* 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
|
|
|
|
|
* <http://www.apache.org/>.
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-05-11 14:47:24 +00:00
|
|
|
* Portions of this software are based upon public domain software
|
|
|
|
|
* originally written at the National Center for Supercomputing Applications,
|
|
|
|
|
* University of Illinois, Urbana-Champaign.
|
|
|
|
|
*
|
|
|
|
|
* Portions of this software are based upon public domain software
|
|
|
|
|
* originally written at the National Center for Supercomputing Applications,
|
|
|
|
|
* University of Illinois, Urbana-Champaign.
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
|
|
|
|
package org.apache.poi.hpsf;
|
|
|
|
|
|
|
|
|
|
import java.util.*;
|
2002-05-26 22:18:40 +00:00
|
|
|
import org.apache.poi.util.LittleEndian;
|
2002-02-14 04:00:59 +00:00
|
|
|
|
|
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>A property in a {@link Section} of a {@link PropertySet}.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>The property's <strong>ID</strong> gives the property a meaning
|
|
|
|
|
* in the context of its {@link Section}. Each {@link Section} spans
|
|
|
|
|
* its own name space of property IDs.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>The property's <strong>type</strong> determines how its
|
|
|
|
|
* <strong>value </strong> is interpreted. For example, if the type is
|
|
|
|
|
* {@link Variant#VT_LPSTR} (byte string), the value consists of a
|
2002-07-22 08:25:19 +00:00
|
|
|
* DWord telling how many bytes the string contains. The bytes follow
|
|
|
|
|
* immediately, including any null bytes that terminate the
|
2002-07-18 15:51:39 +00:00
|
|
|
* string. The type {@link Variant#VT_I4} denotes a four-byte integer
|
|
|
|
|
* value, {@link Variant#VT_FILETIME} some date and time (of a
|
|
|
|
|
* file).</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-22 08:25:19 +00:00
|
|
|
* <p><strong>FIXME:</strong> Reading of other types than {@link
|
|
|
|
|
* Variant#VT_I4}, {@link Variant#VT_FILETIME}, {@link
|
|
|
|
|
* Variant#VT_LPSTR}, {@link Variant#VT_CF}, {@link Variant#VT_BOOL},
|
|
|
|
|
* and reading the dictionary property is not yet implemented.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @author Rainer Klute (klute@rainer-klute.de)
|
|
|
|
|
* @author Drew Varner (Drew.Varner InAndAround sc.edu)
|
|
|
|
|
* @see Section
|
|
|
|
|
* @see Variant
|
|
|
|
|
* @version $Id$
|
|
|
|
|
* @since 2002-02-09
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
public class Property
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
|
|
|
|
|
private int id;
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
|
2002-02-14 04:00:59 +00:00
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Returns the property's ID.</p>
|
2002-05-11 14:47:24 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @return The ID value
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
public int getID()
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
private long type;
|
|
|
|
|
|
2002-02-14 04:00:59 +00:00
|
|
|
|
|
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Returns the property's type.</p>
|
2002-05-11 14:47:24 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @return The type value
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
public long getType()
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
return type;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private Object value;
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
|
2002-02-14 04:00:59 +00:00
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Returns the property's value.</p>
|
2002-05-11 14:47:24 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @return The property's value
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
public Object getValue()
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Creates a {@link Property} instance by reading its bytes
|
|
|
|
|
* from the property set stream.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @param id The property's ID.
|
|
|
|
|
* @param src The bytes the property set stream consists of.
|
|
|
|
|
* @param offset The property's type/value pair's offset in the
|
|
|
|
|
* section.
|
|
|
|
|
* @param length The property's type/value pair's length in bytes.
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-05-11 14:47:24 +00:00
|
|
|
public Property(final int id, final byte[] src, final long offset,
|
2002-07-18 15:51:39 +00:00
|
|
|
int length)
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
this.id = id;
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* ID 0 is a special case since it specifies a dictionary of
|
|
|
|
|
* property IDs and property names.
|
|
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
if (id == 0)
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
value = readDictionary(src, offset, length);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* FIXME: Support this!
|
|
|
|
|
*/
|
2002-02-14 04:00:59 +00:00
|
|
|
// /* ID 1 is another special case: It denotes the code page of
|
|
|
|
|
// * byte strings in this section. */
|
|
|
|
|
// if (id == 1)
|
|
|
|
|
// {
|
|
|
|
|
// value = readCodepage(src, offset);
|
|
|
|
|
// return;
|
|
|
|
|
// }
|
|
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
int o = (int) offset;
|
|
|
|
|
type = LittleEndian.getUInt(src, o);
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
2002-02-14 04:00:59 +00:00
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* FIXME: Support reading more types!
|
|
|
|
|
*/
|
|
|
|
|
switch ((int)type) {
|
2002-02-14 04:00:59 +00:00
|
|
|
case Variant.VT_I4:
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* Read a word. In Java it is represented as an
|
|
|
|
|
* Integer object.
|
|
|
|
|
*/
|
|
|
|
|
value = new Long(LittleEndian.getUInt(src, o));
|
2002-02-14 04:00:59 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case Variant.VT_FILETIME:
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* Read a FILETIME object. In Java it is represented
|
|
|
|
|
* as a Date.
|
|
|
|
|
*/
|
|
|
|
|
final long low = LittleEndian.getUInt(src, o);
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
|
|
|
|
final long high = LittleEndian.getUInt(src, o);
|
|
|
|
|
value = Util.filetimeToDate((int)high, (int)low);
|
2002-02-14 04:00:59 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case Variant.VT_LPSTR:
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* Read a byte string. In Java it is represented as a
|
|
|
|
|
* String. The null bytes at the end of the byte
|
|
|
|
|
* strings must be stripped.
|
|
|
|
|
*/
|
|
|
|
|
final int first = o + LittleEndian.INT_SIZE;
|
|
|
|
|
long last = first + LittleEndian.getUInt(src, o) - 1;
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
|
|
|
|
while (src[(int)last] == 0 && first <= last) {
|
2002-02-14 04:00:59 +00:00
|
|
|
last--;
|
2002-05-11 14:47:24 +00:00
|
|
|
}
|
|
|
|
|
value = new String(src, (int)first, (int)(last - first + 1));
|
2002-02-14 04:00:59 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2002-05-01 09:31:52 +00:00
|
|
|
case Variant.VT_CF:
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* The first four bytes in src, from rc[offset] to
|
|
|
|
|
* src[offset + 3] contain the DWord for VT_CF, so
|
|
|
|
|
* skip it, we don't need it.
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
* Truncate the length of the return array by a DWord
|
|
|
|
|
* length (4 bytes).
|
|
|
|
|
*/
|
|
|
|
|
length = length - LittleEndian.INT_SIZE;
|
2002-05-01 09:31:52 +00:00
|
|
|
|
|
|
|
|
final byte[] v = new byte[length];
|
2002-07-18 15:51:39 +00:00
|
|
|
for (int i = 0; i < length; i++)
|
2002-05-11 14:47:24 +00:00
|
|
|
v[i] = src[(int)(o + i)];
|
2002-07-18 15:51:39 +00:00
|
|
|
value = v;
|
2002-05-01 09:31:52 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2002-05-03 07:29:09 +00:00
|
|
|
case Variant.VT_BOOL:
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* The first four bytes in src, from src[offset] to
|
|
|
|
|
* src[offset + 3] contain the DWord for VT_BOOL, so
|
|
|
|
|
* skip it, we don't need it.
|
|
|
|
|
*/
|
|
|
|
|
final int first = o + LittleEndian.INT_SIZE;
|
|
|
|
|
long bool = LittleEndian.getUInt(src, o);
|
2002-07-18 15:51:39 +00:00
|
|
|
if (bool != 0)
|
2002-05-03 07:29:09 +00:00
|
|
|
value = new Boolean(true);
|
2002-07-18 15:51:39 +00:00
|
|
|
else
|
2002-05-03 07:29:09 +00:00
|
|
|
value = new Boolean(false);
|
2002-07-18 15:51:39 +00:00
|
|
|
break;
|
2002-05-03 07:29:09 +00:00
|
|
|
}
|
2002-02-14 04:00:59 +00:00
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
final byte[] v = new byte[length];
|
2002-07-18 15:51:39 +00:00
|
|
|
for (int i = 0; i < length; i++)
|
2002-05-11 14:47:24 +00:00
|
|
|
v[i] = src[(int)(offset + i)];
|
2002-07-18 15:51:39 +00:00
|
|
|
value = v;
|
2002-02-14 04:00:59 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Reads a dictionary.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @param src The byte array containing the bytes making out the
|
|
|
|
|
* dictionary.
|
|
|
|
|
* @param offset At this offset within <var>src</var> the
|
|
|
|
|
* dictionary starts.
|
|
|
|
|
* @param length The dictionary contains at most this many bytes.
|
|
|
|
|
* @return The dictonary
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-05-11 14:47:24 +00:00
|
|
|
protected Map readDictionary(final byte[] src, final long offset,
|
2002-07-18 15:51:39 +00:00
|
|
|
final int length)
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* FIXME: Check the length!
|
|
|
|
|
*/
|
|
|
|
|
int o = (int)offset;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Read the number of dictionary entries.
|
|
|
|
|
*/
|
|
|
|
|
final long nrEntries = LittleEndian.getUInt(src, o);
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
|
|
|
|
|
|
|
|
|
final Map m = new HashMap((int)nrEntries, (float) 1.0);
|
2002-07-18 15:51:39 +00:00
|
|
|
for (int i = 0; i < nrEntries; i++)
|
|
|
|
|
{
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* The key
|
|
|
|
|
*/
|
|
|
|
|
final Long id = new Long(LittleEndian.getUInt(src, o));
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The value (a string)
|
|
|
|
|
*/
|
|
|
|
|
final long sLength = LittleEndian.getUInt(src, o);
|
|
|
|
|
o += LittleEndian.INT_SIZE;
|
2002-07-18 15:51:39 +00:00
|
|
|
|
2002-05-11 14:47:24 +00:00
|
|
|
/*
|
|
|
|
|
* Strip trailing 0x00 bytes.
|
|
|
|
|
*/
|
|
|
|
|
long l = sLength;
|
2002-07-18 15:51:39 +00:00
|
|
|
while (src[(int)(o + l - 1)] == 0x00)
|
2002-02-14 04:00:59 +00:00
|
|
|
l--;
|
2002-05-11 14:47:24 +00:00
|
|
|
final String s = new String(src, o, (int)l);
|
2002-02-14 04:00:59 +00:00
|
|
|
o += sLength;
|
|
|
|
|
m.put(id, s);
|
|
|
|
|
}
|
|
|
|
|
return m;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2002-07-18 15:51:39 +00:00
|
|
|
* <p>Reads a code page.</p>
|
2002-02-14 04:00:59 +00:00
|
|
|
*
|
2002-07-18 15:51:39 +00:00
|
|
|
* @param src The byte array containing the bytes making out the
|
|
|
|
|
* code page.
|
|
|
|
|
* @param offset At this offset within <var>src</var> the code
|
|
|
|
|
* page starts.
|
|
|
|
|
* @return The code page.
|
2002-02-14 04:00:59 +00:00
|
|
|
*/
|
2002-07-18 15:51:39 +00:00
|
|
|
protected int readCodePage(final byte[] src, final long offset)
|
|
|
|
|
{
|
2002-02-14 04:00:59 +00:00
|
|
|
throw new UnsupportedOperationException("FIXME");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|