/* ==================================================================== 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.util.HexDump; import org.apache.poi.util.LittleEndianOutput; import org.apache.poi.util.StringUtil; /** * Title: Bound Sheet Record (aka BundleSheet) (0x0085)<P> * Description: Defines a sheet within a workbook. Basically stores the sheet name * and tells where the Beginning of file record is within the HSSF * file. <P> * REFERENCE: PG 291 Microsoft Excel 97 Developer's Kit (ISBN: 1-57231-498-2)<P> * @author Andrew C. Oliver (acoliver at apache dot org) * @author Sergei Kozello (sergeikozello at mail.ru) */ public final class BoundSheetRecord extends StandardRecord { public final static short sid = 0x0085; private int field_1_position_of_BOF; private int field_2_option_flags; private int field_4_isMultibyteUnicode; private String field_5_sheetname; /** * UTF8: sid + len + bof + flags + len(str) + unicode + str 2 + 2 + 4 + 2 + * 1 + 1 + len(str) * * UNICODE: sid + len + bof + flags + len(str) + unicode + str 2 + 2 + 4 + 2 + * 1 + 1 + 2 * len(str) */ public BoundSheetRecord(RecordInputStream in) { // NO_UCD field_1_position_of_BOF = in.readInt(); field_2_option_flags = in.readUShort(); int field_3_sheetname_length = in.readUByte(); field_4_isMultibyteUnicode = in.readByte(); if (isMultibyte()) { field_5_sheetname = in.readUnicodeLEString(field_3_sheetname_length); } else { field_5_sheetname = in.readCompressedUnicode(field_3_sheetname_length); } } /** * get the offset in bytes of the Beginning of File Marker within the HSSF Stream part of the POIFS file * * @return offset in bytes */ public int getPositionOfBof() { return field_1_position_of_BOF; } private boolean isMultibyte() { return (field_4_isMultibyteUnicode & 0x01) != 0; } /** * get the sheetname for this sheet. (this appears in the tabs at the bottom) * @return sheetname the name of the sheet */ public String getSheetname() { return field_5_sheetname; } public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append("[BOUNDSHEET]\n"); buffer.append(" .bof = ").append(HexDump.intToHex(getPositionOfBof())).append("\n"); buffer.append(" .options = ").append(HexDump.shortToHex(field_2_option_flags)).append("\n"); buffer.append(" .unicodeflag= ").append(HexDump.byteToHex(field_4_isMultibyteUnicode)).append("\n"); buffer.append(" .sheetname = ").append(field_5_sheetname).append("\n"); buffer.append("[/BOUNDSHEET]\n"); return buffer.toString(); } protected int getDataSize() { return 8 + field_5_sheetname.length() * (isMultibyte() ? 2 : 1); } public void serialize(LittleEndianOutput out) { out.writeInt(getPositionOfBof()); out.writeShort(field_2_option_flags); String name = field_5_sheetname; out.writeByte(name.length()); out.writeByte(field_4_isMultibyteUnicode); if (isMultibyte()) { StringUtil.putUnicodeLE(name, out); } else { StringUtil.putCompressedUnicode(name, out); } } public short getSid() { return sid; } }