Added linked data record.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352411 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Glen Stampoultzis 2002-04-14 12:43:57 +00:00
parent e3e60995e7
commit ea50e6186c
4 changed files with 499 additions and 0 deletions

View File

@ -626,6 +626,18 @@ public class BiffViewer
retval = new FontIndexRecord(rectype, size, data);
break;
case LineFormatRecord.sid :
retval = new LineFormatRecord(rectype, size, data);
break;
case AreaFormatRecord.sid :
retval = new AreaFormatRecord(rectype, size, data);
break;
case LinkedDataRecord.sid :
retval = new LinkedDataRecord(rectype, size, data);
break;
default :
retval = new UnknownRecord(rectype, size, data);
}

View File

@ -0,0 +1,343 @@
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2002 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" and
* "Apache POI" 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",
* "Apache POI", 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
* <http://www.apache.org/>.
*/
package org.apache.poi.hssf.record;
import org.apache.poi.util.BitField;
import org.apache.poi.util.LittleEndian;
import org.apache.poi.util.StringUtil;
import org.apache.poi.util.HexDump;
/**
* Describes a linked data record. This record referes to the series data or text.
* NOTE: This source is automatically generated please do not modify this file. Either subclass or
* remove the record in src/records/definitions.
* @author Glen Stampoultzis (glens at apache.org)
*/
public class LinkedDataRecord
extends Record
{
public final static short sid = 0x1051;
private byte field_1_linkType;
public final static byte LINK_TYPE_TITLE_OR_TEXT = 0;
public final static byte LINK_TYPE_VALUES = 1;
public final static byte LINK_TYPE_CATEGORIES = 1;
private byte field_2_referenceType;
public final static byte REFERENCE_TYPE_DEFAULT_CATEGORIES = 0;
public final static byte REFERENCE_TYPE_DIRECT = 1;
public final static byte REFERENCE_TYPE_WORKSHEET = 2;
public final static byte REFERENCE_TYPE_NOT_USED = 3;
public final static byte REFERENCE_TYPE_ERROR_REPORTED = 4;
private short field_3_options;
private BitField customNumberFormat = new BitField(0x1);
private short field_4_indexNumberFmtRecord;
private short field_5_formulaOfLink;
public LinkedDataRecord()
{
}
/**
* Constructs a LinkedData record and sets its fields appropriately.
*
* @param id id must be 0x1051 or an exception
* will be throw upon validation
* @param size size the size of the data area of the record
* @param data data of the record (should not contain sid/len)
*/
public LinkedDataRecord(short id, short size, byte [] data)
{
super(id, size, data);
}
/**
* Constructs a LinkedData record and sets its fields appropriately.
*
* @param id id must be 0x1051 or an exception
* will be throw upon validation
* @param size size the size of the data area of the record
* @param data data of the record (should not contain sid/len)
* @param offset of the record's data
*/
public LinkedDataRecord(short id, short size, byte [] data, int offset)
{
super(id, size, data, offset);
}
/**
* Checks the sid matches the expected side for this record
*
* @param id the expected sid.
*/
protected void validateSid(short id)
{
if (id != sid)
{
throw new RecordFormatException("Not a LinkedData record");
}
}
protected void fillFields(byte [] data, short size, int offset)
{
field_1_linkType = data[ 0x0 + offset ];
field_2_referenceType = data[ 0x1 + offset ];
field_3_options = LittleEndian.getShort(data, 0x2 + offset);
field_4_indexNumberFmtRecord = LittleEndian.getShort(data, 0x4 + offset);
field_5_formulaOfLink = LittleEndian.getShort(data, 0x6 + offset);
}
public String toString()
{
StringBuffer buffer = new StringBuffer();
buffer.append("[LinkedData]\n");
buffer.append(" .linkType = ")
.append("0x")
.append(HexDump.toHex((byte)getLinkType()))
.append(" (").append(getLinkType()).append(" )\n");
buffer.append(" .referenceType = ")
.append("0x")
.append(HexDump.toHex((byte)getReferenceType()))
.append(" (").append(getReferenceType()).append(" )\n");
buffer.append(" .options = ")
.append("0x")
.append(HexDump.toHex((short)getOptions()))
.append(" (").append(getOptions()).append(" )\n");
buffer.append(" .customNumberFormat = ").append(isCustomNumberFormat ()).append('\n');
buffer.append(" .indexNumberFmtRecord = ")
.append("0x")
.append(HexDump.toHex((short)getIndexNumberFmtRecord()))
.append(" (").append(getIndexNumberFmtRecord()).append(" )\n");
buffer.append(" .formulaOfLink = ")
.append("0x")
.append(HexDump.toHex((short)getFormulaOfLink()))
.append(" (").append(getFormulaOfLink()).append(" )\n");
buffer.append("[/LinkedData]\n");
return buffer.toString();
}
public int serialize(int offset, byte[] data)
{
LittleEndian.putShort(data, 0 + offset, sid);
LittleEndian.putShort(data, 2 + offset, (short)(getRecordSize() - 4));
data[ 4 + offset ] = field_1_linkType;
data[ 5 + offset ] = field_2_referenceType;
LittleEndian.putShort(data, 6 + offset, field_3_options);
LittleEndian.putShort(data, 8 + offset, field_4_indexNumberFmtRecord);
LittleEndian.putShort(data, 10 + offset, field_5_formulaOfLink);
return getRecordSize();
}
/**
* Size of record (exluding 4 byte header)
*/
public int getRecordSize()
{
return 4 + 1 + 1 + 2 + 2 + 2;
}
public short getSid()
{
return this.sid;
}
/**
* Get the link type field for the LinkedData record.
*
* @return One of
* LINK_TYPE_TITLE_OR_TEXT
* LINK_TYPE_VALUES
* LINK_TYPE_CATEGORIES
*/
public byte getLinkType()
{
return field_1_linkType;
}
/**
* Set the link type field for the LinkedData record.
*
* @param field_1_linkType
* One of
* LINK_TYPE_TITLE_OR_TEXT
* LINK_TYPE_VALUES
* LINK_TYPE_CATEGORIES
*/
public void setLinkType(byte field_1_linkType)
{
this.field_1_linkType = field_1_linkType;
}
/**
* Get the reference type field for the LinkedData record.
*
* @return One of
* REFERENCE_TYPE_DEFAULT_CATEGORIES
* REFERENCE_TYPE_DIRECT
* REFERENCE_TYPE_WORKSHEET
* REFERENCE_TYPE_NOT_USED
* REFERENCE_TYPE_ERROR_REPORTED
*/
public byte getReferenceType()
{
return field_2_referenceType;
}
/**
* Set the reference type field for the LinkedData record.
*
* @param field_2_referenceType
* One of
* REFERENCE_TYPE_DEFAULT_CATEGORIES
* REFERENCE_TYPE_DIRECT
* REFERENCE_TYPE_WORKSHEET
* REFERENCE_TYPE_NOT_USED
* REFERENCE_TYPE_ERROR_REPORTED
*/
public void setReferenceType(byte field_2_referenceType)
{
this.field_2_referenceType = field_2_referenceType;
}
/**
* Get the options field for the LinkedData record.
*/
public short getOptions()
{
return field_3_options;
}
/**
* Set the options field for the LinkedData record.
*/
public void setOptions(short field_3_options)
{
this.field_3_options = field_3_options;
}
/**
* Get the index number fmt record field for the LinkedData record.
*/
public short getIndexNumberFmtRecord()
{
return field_4_indexNumberFmtRecord;
}
/**
* Set the index number fmt record field for the LinkedData record.
*/
public void setIndexNumberFmtRecord(short field_4_indexNumberFmtRecord)
{
this.field_4_indexNumberFmtRecord = field_4_indexNumberFmtRecord;
}
/**
* Get the formula of link field for the LinkedData record.
*/
public short getFormulaOfLink()
{
return field_5_formulaOfLink;
}
/**
* Set the formula of link field for the LinkedData record.
*/
public void setFormulaOfLink(short field_5_formulaOfLink)
{
this.field_5_formulaOfLink = field_5_formulaOfLink;
}
/**
* Sets the custom number format field value.
* true if this object has a custom number format
*/
public void setCustomNumberFormat(boolean value)
{
field_3_options = customNumberFormat.setShortBoolean(field_3_options, value);
}
/**
* true if this object has a custom number format
* @return the custom number format field value.
*/
public boolean isCustomNumberFormat()
{
return customNumberFormat.isSet(field_3_options);
}
} // END OF CLASS

View File

@ -0,0 +1,25 @@
<record id="0x1051" name="LinkedData" package="org.apache.poi.hssf.record">
<suffix>Record</suffix>
<extends>Record</extends>
<description>Describes a linked data record. This record referes to the series data or text.</description>
<author>Glen Stampoultzis (glens at apache.org)</author>
<fields>
<field type="int" size="1" name="link type" description="What type of link is this?">
<const name="title or text" value="0" description="links a series title or text"/>
<const name="values" value="1" description="links to series values"/>
<const name="categories" value="1" description="links to categories"/>
</field>
<field type="int" size="1" name="reference type">
<const name="default categories" value="0" description="use default categories"/>
<const name="direct" value="1" description="reference to some text or a value entered directly into the formula bar"/>
<const name="worksheet" value="2" description="reference links to worksheet"/>
<const name="not used" value="3" description="??"/>
<const name="error reported" value="4" description="error reported"/>
</field>
<field type="bits" size="2" name="options">
<bit number="0" name="custom number format" description="true if this object has a custom number format"/>
</field>
<field type="int" size="2" name="index number fmt record"/>
<field type="int" size="2" name="formula of link" description="not supported"/>
</fields>
</record>

View File

@ -0,0 +1,119 @@
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2002 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" and
* "Apache POI" 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",
* "Apache POI", 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
* <http://www.apache.org/>.
*/
package org.apache.poi.hssf.record;
import junit.framework.TestCase;
/**
* Tests the serialization and deserialization of the LinkedDataRecord
* class works correctly. Test data taken directly from a real
* Excel file.
*
* @author Glen Stampoultzis (glens at apache.org)
*/
public class TestLinkedDataRecord
extends TestCase
{
byte[] data = new byte[] {
(byte)0x00,
(byte)0x01,
(byte)0x00,(byte)0x00,
(byte)0x00,(byte)0x00,
(byte)0x00,(byte)0x00 // not supported
};
public TestLinkedDataRecord(String name)
{
super(name);
}
public void testLoad()
throws Exception
{
LinkedDataRecord record = new LinkedDataRecord((short)0x1051, (short)data.length, data);
assertEquals( LinkedDataRecord.LINK_TYPE_TITLE_OR_TEXT, record.getLinkType());
assertEquals( LinkedDataRecord.REFERENCE_TYPE_DIRECT, record.getReferenceType());
assertEquals( 0, record.getOptions());
assertEquals( false, record.isCustomNumberFormat() );
assertEquals( 0, record.getIndexNumberFmtRecord());
assertEquals( 12, record.getRecordSize() );
record.validateSid((short)0x1051);
}
public void testStore()
{
LinkedDataRecord record = new LinkedDataRecord();
record.setLinkType( LinkedDataRecord.LINK_TYPE_TITLE_OR_TEXT );
record.setReferenceType( LinkedDataRecord.REFERENCE_TYPE_DIRECT );
record.setOptions( (short)0 );
record.setCustomNumberFormat( false );
record.setIndexNumberFmtRecord( (short)0 );
byte [] recordBytes = record.serialize();
assertEquals(recordBytes.length - 4, data.length);
for (int i = 0; i < data.length; i++)
assertEquals("At offset " + i, data[i], recordBytes[i+4]);
}
}