FileDocCategorySizeDatePackage
TestcaseRecordInputStream.javaAPI DocApache Poi 3.0.11851Mon Jan 01 12:39:46 GMT 2007org.apache.poi.hssf.record

TestcaseRecordInputStream.java

/* ====================================================================
   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 java.io.ByteArrayInputStream;
import org.apache.poi.util.LittleEndian;

/**
 * A Record Input Stream derivative that makes access to byte arrays used in the
 * test cases work a bit easier.
 * <p> Creates the sream and moves to the first record.
 *
 * @author Jason Height (jheight at apache.org)
 */
public class TestcaseRecordInputStream
        extends RecordInputStream
{
    public TestcaseRecordInputStream(short sid, short length, byte[] data)
    {
      super(new ByteArrayInputStream(mergeDataAndSid(sid, length, data)));
      nextRecord();
    }

    public static byte[] mergeDataAndSid(short sid, short length, byte[] data) {
      byte[] result = new byte[data.length + 4];
      LittleEndian.putShort(result, 0, sid);
      LittleEndian.putShort(result, 2, length);
      System.arraycopy(data, 0, result, 4, data.length);
      return result;
    }
}