/components/forks/poi/src/loci/poi/hssf/record/RecordFactory.java
Java | 312 lines | 216 code | 29 blank | 67 comment | 39 complexity | 3a96eda8fddbdf5ee7f2d333771bc3be MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, Apache-2.0, BSD-2-Clause, MPL-2.0-no-copyleft-exception
- /*
- * #%L
- * Fork of Apache Jakarta POI.
- * %%
- * Copyright (C) 2008 - 2013 Open Microscopy Environment:
- * - Board of Regents of the University of Wisconsin-Madison
- * - Glencoe Software, Inc.
- * - University of Dundee
- * %%
- * Licensed 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.
- * #L%
- */
- /* ====================================================================
- 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 loci.poi.hssf.record;
- import java.io.InputStream;
- import java.lang.reflect.Constructor;
- import java.util.*;
- /**
- * Title: Record Factory<P>
- * Description: Takes a stream and outputs an array of Record objects.<P>
- *
- * @deprecated use {@link loci.poi.hssf.eventmodel.EventRecordFactory} instead
- * @see loci.poi.hssf.eventmodel.EventRecordFactory
- * @author Andrew C. Oliver (acoliver at apache dot org)
- * @author Marc Johnson (mjohnson at apache dot org)
- * @author Glen Stampoultzis (glens at apache.org)
- * @author Csaba Nagy (ncsaba at yahoo dot com)
- */
- public class RecordFactory
- {
- private static int NUM_RECORDS = 10000;
- private static final Class[] records;
- static {
- records = new Class[]
- {
- BOFRecord.class, InterfaceHdrRecord.class, MMSRecord.class,
- InterfaceEndRecord.class, WriteAccessRecord.class,
- CodepageRecord.class, DSFRecord.class, TabIdRecord.class,
- FnGroupCountRecord.class, WindowProtectRecord.class,
- ProtectRecord.class, PasswordRecord.class, ProtectionRev4Record.class,
- PasswordRev4Record.class, WindowOneRecord.class, BackupRecord.class,
- HideObjRecord.class, DateWindow1904Record.class,
- PrecisionRecord.class, RefreshAllRecord.class, BookBoolRecord.class,
- FontRecord.class, FormatRecord.class, ExtendedFormatRecord.class,
- StyleRecord.class, UseSelFSRecord.class, BoundSheetRecord.class,
- CountryRecord.class, SSTRecord.class, ExtSSTRecord.class,
- EOFRecord.class, IndexRecord.class, CalcModeRecord.class,
- CalcCountRecord.class, RefModeRecord.class, IterationRecord.class,
- DeltaRecord.class, SaveRecalcRecord.class, PrintHeadersRecord.class,
- PrintGridlinesRecord.class, GridsetRecord.class, GutsRecord.class,
- DefaultRowHeightRecord.class, WSBoolRecord.class, HeaderRecord.class,
- FooterRecord.class, HCenterRecord.class, VCenterRecord.class,
- PrintSetupRecord.class, DefaultColWidthRecord.class,
- DimensionsRecord.class, RowRecord.class, LabelSSTRecord.class,
- RKRecord.class, NumberRecord.class, DBCellRecord.class,
- WindowTwoRecord.class, SelectionRecord.class, ContinueRecord.class,
- LabelRecord.class, BlankRecord.class, ColumnInfoRecord.class,
- MulRKRecord.class, MulBlankRecord.class, MergeCellsRecord.class,
- FormulaRecord.class, BoolErrRecord.class, ExternSheetRecord.class,
- NameRecord.class, LeftMarginRecord.class, RightMarginRecord.class,
- TopMarginRecord.class, BottomMarginRecord.class,
- DrawingRecord.class, DrawingGroupRecord.class, DrawingSelectionRecord.class,
- ObjRecord.class, TextObjectRecord.class,
- PaletteRecord.class, StringRecord.class, RecalcIdRecord.class, SharedFormulaRecord.class,
- HorizontalPageBreakRecord.class, VerticalPageBreakRecord.class,
- WriteProtectRecord.class, FilePassRecord.class, PaneRecord.class,
- NoteRecord.class, ObjectProtectRecord.class, ScenarioProtectRecord.class, FileSharingRecord.class
- };
- }
- private static Map recordsMap = recordsToMap(records);
- /**
- * changes the default capacity (10000) to handle larger files
- */
- public static void setCapacity(int capacity)
- {
- NUM_RECORDS = capacity;
- }
- /**
- * Create an array of records from an input stream
- *
- * @param in the InputStream from which the records will be
- * obtained
- *
- * @return an array of Records created from the InputStream
- *
- * @exception RecordFormatException on error processing the
- * InputStream
- */
- public static List createRecords(InputStream in)
- throws RecordFormatException
- {
- ArrayList records = new ArrayList(NUM_RECORDS);
- RecordInputStream recStream = new RecordInputStream(in);
- DrawingRecord lastDrawingRecord = new DrawingRecord( );
- Record lastRecord = null;
- while (recStream.hasNextRecord()) {
- recStream.nextRecord();
- if (recStream.getSid() != 0)
- {
- Record[] recs = createRecord(recStream); // handle MulRK records
- if (recs.length > 1)
- {
- for (int k = 0; k < recs.length; k++)
- {
- records.add(
- recs[ k ]); // these will be number records
- }
- }
- else
- {
- Record record = recs[ 0 ];
- if (record != null)
- {
- if (record.getSid() == DrawingGroupRecord.sid
- && lastRecord instanceof DrawingGroupRecord)
- {
- DrawingGroupRecord lastDGRecord = (DrawingGroupRecord) lastRecord;
- lastDGRecord.join((AbstractEscherHolderRecord) record);
- }
- else if (record.getSid() == ContinueRecord.sid &&
- ((lastRecord instanceof ObjRecord) || (lastRecord instanceof TextObjectRecord))) {
- // Drawing records have a very strange continue behaviour.
- //There can actually be OBJ records mixed between the continues.
- lastDrawingRecord.processContinueRecord( ((ContinueRecord)record).getData() );
- } else if (record.getSid() == ContinueRecord.sid &&
- (lastRecord instanceof DrawingGroupRecord)) {
- ((DrawingGroupRecord)lastRecord).processContinueRecord(((ContinueRecord)record).getData());
- } else if (record.getSid() == ContinueRecord.sid) {
- if (lastRecord instanceof UnknownRecord) {
- //Gracefully handle records that we dont know about,
- //that happen to be continued
- records.add(record);
- } else
- throw new RecordFormatException("Unhandled Continue Record");
- }
- else {
- lastRecord = record;
- if (record instanceof DrawingRecord)
- lastDrawingRecord = (DrawingRecord) record;
- records.add(record);
- }
- }
- }
- }
- }
- return records;
- }
- public static Record [] createRecord(RecordInputStream in)
- {
- Record retval;
- Record[] realretval = null;
- try
- {
- Constructor constructor =
- ( Constructor ) recordsMap.get(new Short(in.getSid()));
- if (constructor != null)
- {
- retval = ( Record ) constructor.newInstance(new Object[]
- {
- in
- });
- }
- else
- {
- retval = new UnknownRecord(in);
- }
- }
- catch (Exception introspectionException)
- {
- throw new RecordFormatException("Unable to construct record instance",introspectionException);
- }
- if (retval instanceof RKRecord)
- {
- RKRecord rk = ( RKRecord ) retval;
- NumberRecord num = new NumberRecord();
- num.setColumn(rk.getColumn());
- num.setRow(rk.getRow());
- num.setXFIndex(rk.getXFIndex());
- num.setValue(rk.getRKNumber());
- retval = num;
- }
- else if (retval instanceof DBCellRecord)
- {
- retval = null;
- }
- else if (retval instanceof MulRKRecord)
- {
- MulRKRecord mrk = ( MulRKRecord ) retval;
- realretval = new Record[ mrk.getNumColumns() ];
- for (int k = 0; k < mrk.getNumColumns(); k++)
- {
- NumberRecord nr = new NumberRecord();
- nr.setColumn(( short ) (k + mrk.getFirstColumn()));
- nr.setRow(mrk.getRow());
- nr.setXFIndex(mrk.getXFAt(k));
- nr.setValue(mrk.getRKNumberAt(k));
- realretval[ k ] = nr;
- }
- }
- else if (retval instanceof MulBlankRecord)
- {
- MulBlankRecord mb = ( MulBlankRecord ) retval;
- realretval = new Record[ mb.getNumColumns() ];
- for (int k = 0; k < mb.getNumColumns(); k++)
- {
- BlankRecord br = new BlankRecord();
- br.setColumn(( short ) (k + mb.getFirstColumn()));
- br.setRow(mb.getRow());
- br.setXFIndex(mb.getXFAt(k));
- realretval[ k ] = br;
- }
- }
- if (realretval == null)
- {
- realretval = new Record[ 1 ];
- realretval[ 0 ] = retval;
- }
- return realretval;
- }
- public static short [] getAllKnownRecordSIDs()
- {
- short[] results = new short[ recordsMap.size() ];
- int i = 0;
- for (Iterator iterator = recordsMap.keySet().iterator();
- iterator.hasNext(); )
- {
- Short sid = ( Short ) iterator.next();
- results[ i++ ] = sid.shortValue();
- }
- return results;
- }
- private static Map recordsToMap(Class [] records)
- {
- Map result = new HashMap();
- Constructor constructor;
- for (int i = 0; i < records.length; i++)
- {
- Class record;
- short sid;
- record = records[ i ];
- try
- {
- sid = record.getField("sid").getShort(null);
- constructor = record.getConstructor(new Class[]
- {
- RecordInputStream.class
- });
- }
- catch (Exception illegalArgumentException)
- {
- throw new RecordFormatException(
- "Unable to determine record types", illegalArgumentException);
- }
- result.put(new Short(sid), constructor);
- }
- return result;
- }
- }