mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
153 lines
4.2 KiB
Java
153 lines
4.2 KiB
Java
|
|
package org.apache.poi.ddf;
|
||
|
|
|
||
|
|
import org.apache.poi.util.LittleEndian;
|
||
|
|
import org.apache.poi.util.HexDump;
|
||
|
|
|
||
|
|
import java.util.Arrays;
|
||
|
|
import java.io.ByteArrayOutputStream;
|
||
|
|
import java.io.IOException;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A complex property differs from a simple property in that the data can not fit inside a 32 bit
|
||
|
|
* integer. See the specification for more detailed information regarding exactly what is
|
||
|
|
* stored here.
|
||
|
|
*
|
||
|
|
* @author Glen Stampoultzis
|
||
|
|
*/
|
||
|
|
public class EscherComplexProperty
|
||
|
|
extends EscherProperty
|
||
|
|
{
|
||
|
|
byte[] complexData = new byte[0];
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a complex property using the property id and a byte array containing the complex
|
||
|
|
* data value.
|
||
|
|
*
|
||
|
|
* @param id The id consists of the property number, a flag indicating whether this is a blip id and a flag
|
||
|
|
* indicating that this is a complex property.
|
||
|
|
* @param complexData The value of this property.
|
||
|
|
*/
|
||
|
|
public EscherComplexProperty( short id, byte[] complexData )
|
||
|
|
{
|
||
|
|
super( id );
|
||
|
|
this.complexData = complexData;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Create a complex property using the property number, a flag to indicate whether this is a
|
||
|
|
* blip reference and the complex property data.
|
||
|
|
*
|
||
|
|
* @param propertyNumber The property number
|
||
|
|
* @param isBlipId Whether this is a blip id. Should be false.
|
||
|
|
* @param complexData The value of this complex property.
|
||
|
|
*/
|
||
|
|
public EscherComplexProperty( short propertyNumber, boolean isBlipId, byte[] complexData )
|
||
|
|
{
|
||
|
|
super( propertyNumber, true, isBlipId );
|
||
|
|
this.complexData = complexData;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Serializes the simple part of this property. ie the first 6 bytes.
|
||
|
|
*/
|
||
|
|
public int serializeSimplePart( byte[] data, int pos )
|
||
|
|
{
|
||
|
|
LittleEndian.putShort(data, pos, getId());
|
||
|
|
LittleEndian.putInt(data, pos + 2, complexData.length);
|
||
|
|
return 6;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Serializes the complex part of this property
|
||
|
|
*
|
||
|
|
* @param data The data array to serialize to
|
||
|
|
* @param pos The offset within data to start serializing to.
|
||
|
|
* @return The number of bytes serialized.
|
||
|
|
*/
|
||
|
|
public int serializeComplexPart( byte[] data, int pos )
|
||
|
|
{
|
||
|
|
System.arraycopy(complexData, 0, data, pos, complexData.length);
|
||
|
|
return complexData.length;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Get the complex data value.
|
||
|
|
*/
|
||
|
|
public byte[] getComplexData()
|
||
|
|
{
|
||
|
|
return complexData;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Determine whether this property is equal to another property.
|
||
|
|
*
|
||
|
|
* @param o The object to compare to.
|
||
|
|
* @return True if the objects are equal.
|
||
|
|
*/
|
||
|
|
public boolean equals( Object o )
|
||
|
|
{
|
||
|
|
if ( this == o ) return true;
|
||
|
|
if ( !( o instanceof EscherComplexProperty ) ) return false;
|
||
|
|
|
||
|
|
final EscherComplexProperty escherComplexProperty = (EscherComplexProperty) o;
|
||
|
|
|
||
|
|
if ( !Arrays.equals( complexData, escherComplexProperty.complexData ) ) return false;
|
||
|
|
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Caclulates the number of bytes required to serialize this property.
|
||
|
|
*
|
||
|
|
* @return Number of bytes
|
||
|
|
*/
|
||
|
|
public int getPropertySize()
|
||
|
|
{
|
||
|
|
return 6 + complexData.length;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Calculates a hashcode for this property.
|
||
|
|
*/
|
||
|
|
public int hashCode()
|
||
|
|
{
|
||
|
|
return getId() * 11;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Retrieves the string representation for this property.
|
||
|
|
*/
|
||
|
|
public String toString()
|
||
|
|
{
|
||
|
|
String dataStr;
|
||
|
|
ByteArrayOutputStream b = new ByteArrayOutputStream();
|
||
|
|
try
|
||
|
|
{
|
||
|
|
HexDump.dump( this.complexData, 0, b, 0 );
|
||
|
|
dataStr = b.toString();
|
||
|
|
}
|
||
|
|
catch ( Exception e )
|
||
|
|
{
|
||
|
|
dataStr = e.toString();
|
||
|
|
}
|
||
|
|
finally
|
||
|
|
{
|
||
|
|
try
|
||
|
|
{
|
||
|
|
b.close();
|
||
|
|
}
|
||
|
|
catch ( IOException e )
|
||
|
|
{
|
||
|
|
e.printStackTrace();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return "propNum: " + getPropertyNumber()
|
||
|
|
+ ", propName: " + EscherProperties.getPropertyName( getPropertyNumber() )
|
||
|
|
+ ", complex: " + isComplex()
|
||
|
|
+ ", blipId: " + isBlipId()
|
||
|
|
+ ", data: " + System.getProperty("line.separator") + dataStr;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|