用于生成 Office 文件的 .NET 组件。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

187 lines
7.4 KiB

8 years ago
/* ====================================================================
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
8 years ago
{
using System;
using System.Reflection;
using Npoi.Core.Util;
8 years ago
using System.Collections.Generic;
/// <summary>
/// Generates escher records when provided the byte array containing those records.
/// @author Glen Stampoultzis
/// @author Nick Burch (nick at torchbox . com)
/// </summary>
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<short,ConstructorInfo> recordsMap = RecordsToMap(escherRecordClasses);
/// <summary>
/// Initializes a new instance of the <see cref="DefaultEscherRecordFactory"/> class.
/// </summary>
public DefaultEscherRecordFactory()
{
}
/// <summary>
/// Generates an escher record including the any children contained under that record.
/// An exception is thrown if the record could not be generated.
/// </summary>
/// <param name="data">The byte array containing the records</param>
/// <param name="offset">The starting offset into the byte array</param>
/// <returns>The generated escher record</returns>
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;
}
/// <summary>
/// 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.
/// </summary>
/// <param name="records">The records to convert</param>
/// <returns>The map containing the id/constructor pairs.</returns>
private static Dictionary<short, ConstructorInfo> RecordsToMap(Type[] records)
{
Dictionary<short, ConstructorInfo> result = new Dictionary<short, ConstructorInfo>();
//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;
}
}
}
}
}