jt
2021-06-10 5d0d028456874576560552f5a5c4e8b801786f11
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
 
/* ====================================================================
   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.Collections;
 
    /// <summary>
    /// This is the abstract base class for all escher properties.
    /// @see EscherOptRecord
    /// @author Glen Stampoultzis (glens at apache.org)
    /// </summary>
    abstract public class EscherProperty
    {
        protected short id;
 
        /// <summary>
        /// Initializes a new instance of the <see cref="EscherProperty"/> class.
        /// </summary>
        /// <param name="id">The id is distinct from the actual property number.  The id includes the property number the blip id
        /// flag and an indicator whether the property is complex or not.</param>
        public EscherProperty(short id)
        {
            this.id = id;
        }
 
        /// <summary>
        /// Initializes a new instance of the <see cref="EscherProperty"/> class.The three parameters are combined to form a property
        /// id.
        /// </summary>
        /// <param name="propertyNumber">The property number.</param>
        /// <param name="isComplex">if set to <c>true</c> [is complex].</param>
        /// <param name="isBlipId">if set to <c>true</c> [is blip id].</param> 
        public EscherProperty(short propertyNumber, bool isComplex, bool isBlipId)
        {
            this.id = (short)(propertyNumber +
                    (isComplex ? unchecked((short)0x8000) : (short)0x0) +
                    (isBlipId ? (short)0x4000 : (short)0x0));
        }
 
        /// <summary>
        /// Gets the id.
        /// </summary>
        /// <value>The id.</value>
        public virtual  short Id
        {
            get { return id; }
        }
 
        /// <summary>
        /// Gets the property number.
        /// </summary>
        /// <value>The property number.</value>
        public virtual  short PropertyNumber
        {
            get { return (short)(id & (short)0x3FFF); }
        }
 
        /// <summary>
        /// Gets a value indicating whether this instance is complex.
        /// </summary>
        /// <value>
        ///     <c>true</c> if this instance is complex; otherwise, <c>false</c>.
        /// </value>
        public virtual  bool IsComplex
        {
            get { return (id & unchecked((short)0x8000)) != 0; }
        }
 
        /// <summary>
        /// Gets a value indicating whether this instance is blip id.
        /// </summary>
        /// <value>
        ///     <c>true</c> if this instance is blip id; otherwise, <c>false</c>.
        /// </value>
        public virtual  bool IsBlipId
        {
            get { return (id & (short)0x4000) != 0; }
        }
 
        /// <summary>
        /// Gets the name.
        /// </summary>
        /// <value>The name.</value>
        public virtual String Name
        {
            get { return EscherProperties.GetPropertyName(PropertyNumber); }
        }
 
        /// <summary>
        /// Most properties are just 6 bytes in Length.  Override this if we're
        /// dealing with complex properties.
        /// </summary>
        /// <value>The size of the property.</value>
        public virtual int PropertySize
        {
            get { return 6; }
        }
 
        /// <summary>
        /// Escher properties consist of a simple fixed Length part and a complex variable Length part.
        /// The fixed Length part is Serialized first.
        /// </summary>
        /// <param name="data">The data.</param>
        /// <param name="pos">The pos.</param>
        /// <returns></returns>
        abstract public int SerializeSimplePart(byte[] data, int pos);
        /// <summary>
        /// Escher properties consist of a simple fixed Length part and a complex variable Length part.
        /// The fixed Length part is Serialized first.
        /// </summary>
        /// <param name="data">The data.</param>
        /// <param name="pos">The pos.</param>
        /// <returns></returns>
        abstract public int SerializeComplexPart(byte[] data, int pos);
    }
}