/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== */ package org.apache.poi.hssf.record; import org.apache.poi.hssf.record.common.UnicodeString; import org.apache.poi.hssf.record.cont.ContinuableRecord; import org.apache.poi.hssf.record.cont.ContinuableRecordOutput; import org.apache.poi.util.IntMapper; /** * Title: Static String Table Record (0x00FC)<p/> * * Description: This holds all the strings for LabelSSTRecords. * <P> * REFERENCE: PG 389 Microsoft Excel 97 Developer's Kit (ISBN: * 1-57231-498-2) * <P> * @author Andrew C. Oliver (acoliver at apache dot org) * @author Marc Johnson (mjohnson at apache dot org) * @author Glen Stampoultzis (glens at apache.org) * * @see org.apache.poi.hssf.record.LabelSSTRecord * @see org.apache.poi.hssf.record.ContinueRecord */ public final class SSTRecord extends ContinuableRecord { public static final short sid = 0x00FC; private static final UnicodeString EMPTY_STRING = new UnicodeString(""); /** union of strings in the SST and EXTSST */ private int field_1_num_strings; /** according to docs ONLY SST */ private int field_2_num_unique_strings; private IntMapper<UnicodeString> field_3_strings; private SSTDeserializer deserializer; public SSTRecord() { field_1_num_strings = 0; field_2_num_unique_strings = 0; field_3_strings = new IntMapper<>(); } /** * Add a string. * * @param string string to be added * * @return the index of that string in the table */ public int addString(UnicodeString string) { field_1_num_strings++; UnicodeString ucs = ( string == null ) ? EMPTY_STRING : string; int rval; int index = field_3_strings.getIndex(ucs); if ( index != -1 ) { rval = index; } else { // This is a new string -- we didn't see it among the // strings we've already collected rval = field_3_strings.size(); field_2_num_unique_strings++; SSTDeserializer.addToStringTable( field_3_strings, ucs ); } return rval; } /** * @return number of strings */ public int getNumStrings() { return field_1_num_strings; } /** * @return number of unique strings */ public int getNumUniqueStrings() { return field_2_num_unique_strings; } /** * Get a particular string by its index * * @param id index into the array of strings * * @return the desired string */ public UnicodeString getString(int id ) { return field_3_strings.get( id ); } /** * Return a debugging string representation * * @return string representation */ public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append( "[SST]\n" ); buffer.append( " .numstrings = " ) .append( Integer.toHexString( getNumStrings() ) ).append( "\n" ); buffer.append( " .uniquestrings = " ) .append( Integer.toHexString( getNumUniqueStrings() ) ).append( "\n" ); for ( int k = 0; k < field_3_strings.size(); k++ ) { UnicodeString s = field_3_strings.get( k ); buffer.append( " .string_" + k + " = " ) .append( s.getDebugInfo() ).append( "\n" ); } buffer.append( "[/SST]\n" ); return buffer.toString(); } public short getSid() { return sid; } /** * Fill the fields from the data * <P> * The data consists of sets of string data. This string data is * arranged as follows: * <P> * <CODE><pre> * short string_length; // length of string data * byte string_flag; // flag specifying special string * // handling * short run_count; // optional count of formatting runs * int extend_length; // optional extension length * char[] string_data; // string data, can be byte[] or * // short[] (length of array is * // string_length) * int[] formatting_runs; // optional formatting runs (length of * // array is run_count) * byte[] extension; // optional extension (length of array * // is extend_length) * </pre></CODE> * <P> * The string_flag is bit mapped as follows: * <P> * <TABLE> * <TR> * <TH>Bit number</TH> * <TH>Meaning if 0</TH> * <TH>Meaning if 1</TH> * <TR> * <TR> * <TD>0</TD> * <TD>string_data is byte[]</TD> * <TD>string_data is short[]</TH> * <TR> * <TR> * <TD>1</TD> * <TD>Should always be 0</TD> * <TD>string_flag is defective</TH> * <TR> * <TR> * <TD>2</TD> * <TD>extension is not included</TD> * <TD>extension is included</TH> * <TR> * <TR> * <TD>3</TD> * <TD>formatting run data is not included</TD> * <TD>formatting run data is included</TH> * <TR> * <TR> * <TD>4</TD> * <TD>Should always be 0</TD> * <TD>string_flag is defective</TH> * <TR> * <TR> * <TD>5</TD> * <TD>Should always be 0</TD> * <TD>string_flag is defective</TH> * <TR> * <TR> * <TD>6</TD> * <TD>Should always be 0</TD> * <TD>string_flag is defective</TH> * <TR> * <TR> * <TD>7</TD> * <TD>Should always be 0</TD> * <TD>string_flag is defective</TH> * <TR> * </TABLE> * <P> * We can handle eating the overhead associated with bits 2 or 3 * (or both) being set, but we have no idea what to do with the * associated data. The UnicodeString class can handle the byte[] * vs short[] nature of the actual string data * * @param in the RecordInputstream to read the record from */ public SSTRecord(RecordInputStream in) { // NO_UCD // this method is ALWAYS called after construction -- using // the nontrivial constructor, of course -- so this is where // we initialize our fields field_1_num_strings = in.readInt(); field_2_num_unique_strings = in.readInt(); field_3_strings = new IntMapper<>(); deserializer = new SSTDeserializer(field_3_strings); deserializer.manufactureStrings( field_2_num_unique_strings, in ); } protected void serialize(ContinuableRecordOutput out) { SSTSerializer serializer = new SSTSerializer(field_3_strings, getNumStrings(), getNumUniqueStrings() ); serializer.serialize(out); } }