/* ==================================================================== 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 HH.WMS.Utils.NPOI.DDF { using System; using System.IO; using System.Collections; using HH.WMS.Utils.NPOI.Util; /// /// A complex property differs from a simple property in that the data can not fit inside a 32 bit /// integer. See the specification for more detailed information regarding exactly what is /// stored here. /// @author Glen Stampoultzis /// public class EscherComplexProperty : EscherProperty { protected byte[] complexData = new byte[0]; /// /// Create a complex property using the property id and a byte array containing the complex /// data value. /// /// The id consists of the property number, a flag indicating whether this is a blip id and a flag /// indicating that this is a complex property. /// The value of this property. public EscherComplexProperty(short id, byte[] complexData):base(id) { this.complexData = complexData; } /// /// Create a complex property using the property number, a flag to indicate whether this is a /// blip reference and the complex property data. /// /// The property number. /// Whether this is a blip id. Should be false. /// The value of this complex property. public EscherComplexProperty(short propertyNumber, bool isBlipId, byte[] complexData):base(propertyNumber, true, isBlipId) { this.complexData = complexData; } /// /// Serializes the simple part of this property. ie the first 6 bytes. /// /// /// /// public override int SerializeSimplePart(byte[] data, int pos) { LittleEndian.PutShort(data, pos, Id); LittleEndian.PutInt(data, pos + 2, complexData.Length); return 6; } /// /// Serializes the complex part of this property /// /// The data array to Serialize to /// The offset within data to start serializing to. /// The number of bytes Serialized. public override int SerializeComplexPart(byte[] data, int pos) { Array.Copy(complexData, 0, data, pos, complexData.Length); return complexData.Length; } /// /// Gets the complex data. /// /// The complex data. public byte[] ComplexData { get { return complexData; } } /// /// Determine whether this property is equal to another property. /// /// The object to compare to. /// True if the objects are equal. public override bool Equals(Object o) { if (this == o) return true; if (!(o is EscherComplexProperty)) return false; EscherComplexProperty escherComplexProperty = (EscherComplexProperty)o; if (!Arrays.Equals(complexData, escherComplexProperty.complexData)) return false; return true; } /// /// Caclulates the number of bytes required to Serialize this property. /// /// Number of bytes public override int PropertySize { get { return 6 + complexData.Length; } } /// /// Serves as a hash function for a particular type. /// /// /// A hash code for the current . /// public override int GetHashCode() { return Id * 11; } /// /// Returns a that represents the current . /// /// /// A that represents the current . /// public override String ToString() { String dataStr; using (MemoryStream b = new MemoryStream()) { try { HexDump.Dump(this.complexData, 0, b, 0); dataStr = b.ToString(); } catch (Exception e) { dataStr = e.ToString(); } } return "propNum: " + PropertyNumber + ", propName: " + EscherProperties.GetPropertyName(PropertyNumber) + ", complex: " + IsComplex + ", blipId: " + IsBlipId + ", data: " + Environment.NewLine + dataStr; } } }