/* ==================================================================== 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.formula.TblPtg; import org.apache.poi.hssf.util.CellReference; import org.apache.poi.util.BitField; import org.apache.poi.util.BitFieldFactory; import org.apache.poi.util.HexDump; import org.apache.poi.util.LittleEndianOutput; /** * DATATABLE (0x0236)<p/> * * TableRecord - The record specifies a data table. * This record is preceded by a single Formula record that * defines the first cell in the data table, which should * only contain a single Ptg, {@link TblPtg}. * * See p536 of the June 08 binary docs */ public final class TableRecord extends SharedValueRecordBase { public static final short sid = 0x0236; private static final BitField alwaysCalc = BitFieldFactory.getInstance(0x0001); private int field_5_flags; private int field_6_res; private int field_7_rowInputRow; private int field_8_colInputRow; private int field_9_rowInputCol; private int field_10_colInputCol; public TableRecord(RecordInputStream in) { // NO_UCD super(in); field_5_flags = in.readByte(); field_6_res = in.readByte(); field_7_rowInputRow = in.readShort(); field_8_colInputRow = in.readShort(); field_9_rowInputCol = in.readShort(); field_10_colInputCol = in.readShort(); } public boolean isAlwaysCalc() { return alwaysCalc.isSet(field_5_flags); } public short getSid() { return sid; } protected int getExtraDataSize() { return 2 // 2 byte fields + 8; // 4 short fields } protected void serializeExtraData(LittleEndianOutput out) { out.writeByte(field_5_flags); out.writeByte(field_6_res); out.writeShort(field_7_rowInputRow); out.writeShort(field_8_colInputRow); out.writeShort(field_9_rowInputCol); out.writeShort(field_10_colInputCol); } public String toString() { StringBuffer buffer = new StringBuffer(); buffer.append("[TABLE]\n"); buffer.append(" .range = ").append(getRange().toString()).append("\n"); buffer.append(" .flags = ") .append(HexDump.byteToHex(field_5_flags)).append("\n"); buffer.append(" .alwaysClc= ").append(isAlwaysCalc()).append("\n"); buffer.append(" .reserved = ").append(HexDump.intToHex(field_6_res)).append("\n"); CellReference crRowInput = cr(field_7_rowInputRow, field_8_colInputRow); CellReference crColInput = cr(field_9_rowInputCol, field_10_colInputCol); buffer.append(" .rowInput = ").append(crRowInput.formatAsString()).append("\n"); buffer.append(" .colInput = ").append(crColInput.formatAsString()).append("\n"); buffer.append("[/TABLE]\n"); return buffer.toString(); } private static CellReference cr(int rowIx, int colIxAndFlags) { int colIx = colIxAndFlags & 0x00FF; boolean isRowAbs = (colIxAndFlags & 0x8000) == 0; boolean isColAbs = (colIxAndFlags & 0x4000) == 0; return new CellReference(rowIx, colIx, isRowAbs, isColAbs); } }