From 8059beb4c3ec3cff8d52e2e22536e5d063a3532d Mon Sep 17 00:00:00 2001 From: Glen Stampoultzis Date: Mon, 25 Mar 2002 10:29:27 +0000 Subject: [PATCH] Series label record git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352281 13f79535-47bb-0310-9956-ffa450edef68 --- .../poi/hssf/record/SeriesLabelsRecord.java | 313 ++++++++++++++++++ .../definitions/attached_label_record.xml | 16 + src/records/styles/record_test.xsl | 7 +- .../hssf/record/TestSeriesLabelsRecord.java | 116 +++++++ 4 files changed, 451 insertions(+), 1 deletion(-) create mode 100644 src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java create mode 100644 src/records/definitions/attached_label_record.xml create mode 100644 src/testcases/org/apache/poi/hssf/record/TestSeriesLabelsRecord.java diff --git a/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java b/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java new file mode 100644 index 000000000..04fc3e66a --- /dev/null +++ b/src/java/org/apache/poi/hssf/record/SeriesLabelsRecord.java @@ -0,0 +1,313 @@ + +/* ==================================================================== + * 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 + * . + */ + + +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; + +/** + * The series label record defines the type of label associated with the data format record. + * 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 SeriesLabelsRecord + extends Record +{ + public final static short sid = 0x100c; + private short field_1_formatFlags; + private BitField showActual = new BitField(0x1); + private BitField showPercent = new BitField(0x2); + private BitField labelAsPercentage = new BitField(0x4); + private BitField smoothedLine = new BitField(0x8); + private BitField showLabel = new BitField(0x10); + private BitField showBubbleSizes = new BitField(0x20); + + + public SeriesLabelsRecord() + { + + } + + /** + * Constructs a SeriesLabels record and sets its fields appropriately. + * + * @param id id must be 0x100c 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 SeriesLabelsRecord(short id, short size, byte [] data) + { + super(id, size, data); + } + + /** + * Constructs a SeriesLabels record and sets its fields appropriately. + * + * @param id id must be 0x100c 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 SeriesLabelsRecord(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 SeriesLabels record"); + } + } + + protected void fillFields(byte [] data, short size, int offset) + { + field_1_formatFlags = LittleEndian.getShort(data, 0x0 + offset); + + } + + public String toString() + { + StringBuffer buffer = new StringBuffer(); + + buffer.append("[SeriesLabels]\n"); + + buffer.append(" .formatFlags = ") + .append("0x") + .append(HexDump.toHex((short)getFormatFlags())) + .append(" (").append(getFormatFlags()).append(" )\n"); + buffer.append(" .showActual = ").append(isShowActual ()).append('\n'); + buffer.append(" .showPercent = ").append(isShowPercent ()).append('\n'); + buffer.append(" .labelAsPercentage = ").append(isLabelAsPercentage ()).append('\n'); + buffer.append(" .smoothedLine = ").append(isSmoothedLine ()).append('\n'); + buffer.append(" .showLabel = ").append(isShowLabel ()).append('\n'); + buffer.append(" .showBubbleSizes = ").append(isShowBubbleSizes ()).append('\n'); + + buffer.append("[/SeriesLabels]\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)); + + LittleEndian.putShort(data, 4 + offset, field_1_formatFlags); + + return getRecordSize(); + } + + /** + * Size of record (exluding 4 byte header) + */ + public int getRecordSize() + { + return 4 + 2; + } + + public short getSid() + { + return this.sid; + } + + + /** + * Get the format flags field for the SeriesLabels record. + */ + public short getFormatFlags() + { + return field_1_formatFlags; + } + + /** + * Set the format flags field for the SeriesLabels record. + */ + public void setFormatFlags(short field_1_formatFlags) + { + this.field_1_formatFlags = field_1_formatFlags; + } + + /** + * Sets the show actual field value. + * show actual value of the data point + */ + public void setShowActual(boolean value) + { + field_1_formatFlags = showActual.setShortBoolean(field_1_formatFlags, value); + } + + /** + * show actual value of the data point + * @return the show actual field value. + */ + public boolean isShowActual() + { + return showActual.isSet(field_1_formatFlags); + } + + /** + * Sets the show percent field value. + * show value as percentage of total (pie charts only) + */ + public void setShowPercent(boolean value) + { + field_1_formatFlags = showPercent.setShortBoolean(field_1_formatFlags, value); + } + + /** + * show value as percentage of total (pie charts only) + * @return the show percent field value. + */ + public boolean isShowPercent() + { + return showPercent.isSet(field_1_formatFlags); + } + + /** + * Sets the label as percentage field value. + * show category label/value as percentage (pie charts only) + */ + public void setLabelAsPercentage(boolean value) + { + field_1_formatFlags = labelAsPercentage.setShortBoolean(field_1_formatFlags, value); + } + + /** + * show category label/value as percentage (pie charts only) + * @return the label as percentage field value. + */ + public boolean isLabelAsPercentage() + { + return labelAsPercentage.isSet(field_1_formatFlags); + } + + /** + * Sets the smoothed line field value. + * show smooth line + */ + public void setSmoothedLine(boolean value) + { + field_1_formatFlags = smoothedLine.setShortBoolean(field_1_formatFlags, value); + } + + /** + * show smooth line + * @return the smoothed line field value. + */ + public boolean isSmoothedLine() + { + return smoothedLine.isSet(field_1_formatFlags); + } + + /** + * Sets the show label field value. + * display category label + */ + public void setShowLabel(boolean value) + { + field_1_formatFlags = showLabel.setShortBoolean(field_1_formatFlags, value); + } + + /** + * display category label + * @return the show label field value. + */ + public boolean isShowLabel() + { + return showLabel.isSet(field_1_formatFlags); + } + + /** + * Sets the show bubble sizes field value. + * ?? + */ + public void setShowBubbleSizes(boolean value) + { + field_1_formatFlags = showBubbleSizes.setShortBoolean(field_1_formatFlags, value); + } + + /** + * ?? + * @return the show bubble sizes field value. + */ + public boolean isShowBubbleSizes() + { + return showBubbleSizes.isSet(field_1_formatFlags); + } + + +} // END OF CLASS + + + + diff --git a/src/records/definitions/attached_label_record.xml b/src/records/definitions/attached_label_record.xml new file mode 100644 index 000000000..4adc32419 --- /dev/null +++ b/src/records/definitions/attached_label_record.xml @@ -0,0 +1,16 @@ + + Record + Record + The series label record defines the type of label associated with the data format record. + Glen Stampoultzis (glens at apache.org) + + + + + + + + + + + diff --git a/src/records/styles/record_test.xsl b/src/records/styles/record_test.xsl index 3b4c94b38..95e3b1cb1 100644 --- a/src/records/styles/record_test.xsl +++ b/src/records/styles/record_test.xsl @@ -87,7 +87,8 @@ public class TestRecord public void testLoad() throws Exception { - + fail("Not implemented"); + /* Record record = new Record((short), (short)data.length, data); assertEquals( XXX, record.get()); @@ -96,10 +97,13 @@ public class TestRecord assertEquals( XXX, record.getRecordSize() ); record.validateSid((short)); + */ } public void testStore() { + fail("Not implemented"); + /* Record record = new Record(); record.set( XXXX ); @@ -109,6 +113,7 @@ public class TestRecord assertEquals(recordBytes.length - 4, data.length); for (int i = 0; i < data.length; i++) assertEquals("At offset " + i, data[i], recordBytes[i+4]); + */ } } diff --git a/src/testcases/org/apache/poi/hssf/record/TestSeriesLabelsRecord.java b/src/testcases/org/apache/poi/hssf/record/TestSeriesLabelsRecord.java new file mode 100644 index 000000000..46c4c0d87 --- /dev/null +++ b/src/testcases/org/apache/poi/hssf/record/TestSeriesLabelsRecord.java @@ -0,0 +1,116 @@ + +/* ==================================================================== + * 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 + * . + */ + + +package org.apache.poi.hssf.record; + + +import junit.framework.TestCase; + +/** + * Tests the serialization and deserialization of the SeriesLabelsRecord + * class works correctly. Test data taken directly from a real + * Excel file. + * + + * @author Glen Stampoultzis (glens at apache.org) + */ +public class TestSeriesLabelsRecord + extends TestCase +{ + byte[] data = new byte[] { + (byte)0x03,(byte)0x00 + }; + + public TestSeriesLabelsRecord(String name) + { + super(name); + } + + public void testLoad() + throws Exception + { + SeriesLabelsRecord record = new SeriesLabelsRecord((short)0x100c, (short)data.length, data); + assertEquals( 3, record.getFormatFlags()); + assertEquals( true, record.isShowActual() ); + assertEquals( true, record.isShowPercent() ); + assertEquals( false, record.isLabelAsPercentage() ); + assertEquals( false, record.isSmoothedLine() ); + assertEquals( false, record.isShowLabel() ); + assertEquals( false, record.isShowBubbleSizes() ); + + + assertEquals( 2+4, record.getRecordSize() ); + + record.validateSid((short)0x100c); + } + + public void testStore() + { + SeriesLabelsRecord record = new SeriesLabelsRecord(); + record.setShowActual( true ); + record.setShowPercent( true ); + record.setLabelAsPercentage( false ); + record.setSmoothedLine( false ); + record.setShowLabel( false ); + record.setShowBubbleSizes( false ); + + + 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]); + } +}