blob: ebcb843cc89af9a2b5cec57303408748df3940cd [file] [log] [blame]
/* ====================================================================
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.pivottable;
import org.apache.poi.hssf.record.RecordFormatException;
import org.apache.poi.hssf.record.RecordInputStream;
import org.apache.poi.hssf.record.StandardRecord;
import org.apache.poi.util.HexDump;
import org.apache.poi.util.LittleEndianOutput;
/**
* SXPI - Page Item (0x00B6)<br/>
*
* @author Patrick Cheng
*/
public final class PageItemRecord extends StandardRecord {
public static final short sid = 0x00B6;
private static final class FieldInfo {
public static final int ENCODED_SIZE = 6;
/** Index to the View Item SXVI(0x00B2) record */
private int _isxvi;
/** Index to the {@link ViewFieldsRecord} SXVD(0x00B1) record */
private int _isxvd;
/** Object ID for the drop-down arrow */
private int _idObj;
public FieldInfo(RecordInputStream in) {
_isxvi = in.readShort();
_isxvd = in.readShort();
_idObj = in.readShort();
}
protected void serialize(LittleEndianOutput out) {
out.writeShort(_isxvi);
out.writeShort(_isxvd);
out.writeShort(_idObj);
}
public void appendDebugInfo(StringBuffer sb) {
sb.append('(');
sb.append( "isxvi=").append(HexDump.shortToHex(_isxvi));
sb.append(" isxvd=").append(HexDump.shortToHex(_isxvd));
sb.append(" idObj=").append(HexDump.shortToHex(_idObj));
sb.append(')');
}
}
private final FieldInfo[] _fieldInfos;
public PageItemRecord(RecordInputStream in) {
int dataSize = in.remaining();
if (dataSize % FieldInfo.ENCODED_SIZE != 0) {
throw new RecordFormatException("Bad data size " + dataSize);
}
int nItems = dataSize / FieldInfo.ENCODED_SIZE;
FieldInfo[] fis = new FieldInfo[nItems];
for (int i = 0; i < fis.length; i++) {
fis[i] = new FieldInfo(in);
}
_fieldInfos = fis;
}
@Override
protected void serialize(LittleEndianOutput out) {
for (int i = 0; i < _fieldInfos.length; i++) {
_fieldInfos[i].serialize(out);
}
}
@Override
protected int getDataSize() {
return _fieldInfos.length * FieldInfo.ENCODED_SIZE;
}
@Override
public short getSid() {
return sid;
}
@Override
public String toString() {
StringBuffer sb = new StringBuffer();
sb.append("[SXPI]\n");
for (int i = 0; i < _fieldInfos.length; i++) {
sb.append(" item[").append(i).append("]=");
_fieldInfos[i].appendDebugInfo(sb);
sb.append('\n');
}
sb.append("[/SXPI]\n");
return sb.toString();
}
}