/* ==================================================================== 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. ==================================================================== */ namespace Npoi.Core.DDF { using System; using System.Reflection; using Npoi.Core.Util; using System.Collections.Generic; /// /// Generates escher records when provided the byte array containing those records. /// @author Glen Stampoultzis /// @author Nick Burch (nick at torchbox . com) /// public class DefaultEscherRecordFactory : IEscherRecordFactory { private static Type[] escherRecordClasses = { typeof(EscherBSERecord), typeof(EscherOptRecord), typeof(EscherTertiaryOptRecord), typeof(EscherClientAnchorRecord), typeof(EscherDgRecord), typeof(EscherSpgrRecord), typeof(EscherSpRecord), typeof(EscherClientDataRecord), typeof(EscherDggRecord), typeof(EscherSplitMenuColorsRecord), typeof(EscherChildAnchorRecord), typeof(EscherTextboxRecord) }; private static Dictionary recordsMap = RecordsToMap(escherRecordClasses); /// /// Initializes a new instance of the class. /// public DefaultEscherRecordFactory() { } /// /// Generates an escher record including the any children contained under that record. /// An exception is thrown if the record could not be generated. /// /// The byte array containing the records /// The starting offset into the byte array /// The generated escher record public virtual EscherRecord CreateRecord(byte[] data, int offset) { short options = LittleEndian.GetShort(data, offset); short recordId = LittleEndian.GetShort(data, offset + 2); // int remainingBytes = LittleEndian.getInt( data, offset + 4 ); // Options of 0x000F means container record // However, EscherTextboxRecord are containers of records for the // host application, not of other Escher records, so treat them // differently if (IsContainer(options, recordId)) { EscherContainerRecord r = new EscherContainerRecord(); r.RecordId = recordId; r.Options = options; return r; } if (recordId >= EscherBlipRecord.RECORD_ID_START && recordId <= EscherBlipRecord.RECORD_ID_END) { EscherBlipRecord r; if (recordId == EscherBitmapBlip.RECORD_ID_DIB || recordId == EscherBitmapBlip.RECORD_ID_JPEG || recordId == EscherBitmapBlip.RECORD_ID_PNG) { r = new EscherBitmapBlip(); } else if (recordId == EscherMetafileBlip.RECORD_ID_EMF || recordId == EscherMetafileBlip.RECORD_ID_WMF || recordId == EscherMetafileBlip.RECORD_ID_PICT) { r = new EscherMetafileBlip(); } else { r = new EscherBlipRecord(); } r.RecordId = recordId; r.Options = options; return r; } //ConstructorInfo recordConstructor = (ConstructorInfo) recordsMap[header.RecordId]; ConstructorInfo recordConstructor = null; if (recordsMap.ContainsKey(recordId)) recordConstructor = recordsMap[recordId]; EscherRecord escherRecord = null; if (recordConstructor == null) { return new UnknownEscherRecord(); } try { escherRecord = (EscherRecord)recordConstructor.Invoke(new object[] { }); //escherRecord = (EscherRecord)Activator.CreateInstance(recordConstructor); } catch (Exception) { return new UnknownEscherRecord(); } escherRecord.RecordId = recordId; escherRecord.Options = options; return escherRecord; } /// /// Converts from a list of classes into a map that Contains the record id as the key and /// the Constructor in the value part of the map. It does this by using reflection to look up /// the RECORD_ID field then using reflection again to find a reference to the constructor. /// /// The records to convert /// The map containing the id/constructor pairs. private static Dictionary RecordsToMap(Type[] records) { Dictionary result = new Dictionary(); //ConstructorInfo constructor; Type[] EMPTY_CLASS_ARRAY = new Type[0]; for (int i = 0; i < records.Length; i++) { Type recordType = records[i]; short sid = 0; try { sid = (short)recordType.GetTypeInfo().GetField("RECORD_ID").GetValue(null); } catch (Exception) { throw new RecordFormatException( "Unable to determine record types"); } ConstructorInfo ci; try { ci = recordType.GetTypeInfo().GetConstructor(EMPTY_CLASS_ARRAY); } catch(Exception e) { throw new RuntimeException(e); } //result[sid] = recordType; //constructor; result.Add(sid, ci); } return result; } public static bool IsContainer(short options, short recordId) { if (recordId >= EscherContainerRecord.DGG_CONTAINER && recordId <= EscherContainerRecord.SOLVER_CONTAINER) { return true; } else { if (recordId == EscherTextboxRecord.RECORD_ID) { return false; } else { return (options & (short)0x000F) == (short)0x000F; } } } } }