zhao
2021-07-02 081df17b8cc4a6e7e4f4e1e1887f24810e3ec2f9
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
/* ====================================================================
   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.
==================================================================== */
 
/* ================================================================
 * About NPOI
 * Author: Tony Qu 
 * Author's email: tonyqus (at) gmail.com 
 * Author's Blog: tonyqus.wordpress.com.cn (wp.tonyqus.cn)
 * HomePage: http://www.codeplex.com/npoi
 * Contributors:
 * 
 * ==============================================================*/
 
namespace HH.WMS.Utils.NPOI.HPSF
{
    using System;
    using System.IO;
    using System.Text;
    using System.Collections;
    using HH.WMS.Utils.NPOI.Util;
    using HH.WMS.Utils.NPOI.HPSF.Wellknown;
    using System.Globalization;
 
    /// <summary>
    /// Adds writing capability To the {@link Section} class.
    /// Please be aware that this class' functionality will be merged into the
    /// {@link Section} class at a later time, so the API will Change.
    /// @since 2002-02-20
    /// </summary>
    public class MutableSection : Section
    {
        /**
         * If the "dirty" flag is true, the section's size must be
         * (re-)calculated before the section is written.
         */
        private bool dirty = true;
 
 
 
        /**
         * List To assemble the properties. Unfortunately a wrong
         * decision has been taken when specifying the "properties" field
         * as an Property[]. It should have been a {@link java.util.List}.
         */
        private ArrayList preprops;
 
 
 
        /**
         * Contains the bytes making out the section. This byte array is
         * established when the section's size is calculated and can be reused
         * later. It is valid only if the "dirty" flag is false.
         */
        private byte[] sectionBytes;
 
 
 
        /// <summary>
        /// Initializes a new instance of the <see cref="MutableSection"/> class.
        /// </summary>
        public MutableSection()
        {
            dirty = true;
            formatID = null;
            offset = -1;
            preprops = new ArrayList();
        }
 
 
 
        /// <summary>
        /// Constructs a <c>MutableSection</c> by doing a deep copy of an
        /// existing <c>Section</c>. All nested <c>Property</c>
        /// instances, will be their mutable counterparts in the new
        /// <c>MutableSection</c>.
        /// </summary>
        /// <param name="s">The section Set To copy</param>
        public MutableSection(Section s)
        {
            SetFormatID(s.FormatID);
            Property[] pa = s.Properties;
            MutableProperty[] mpa = new MutableProperty[pa.Length];
            for (int i = 0; i < pa.Length; i++)
                mpa[i] = new MutableProperty(pa[i]);
            SetProperties(mpa);
            this.Dictionary=(s.Dictionary);
        }
 
 
 
        /// <summary>
        /// Sets the section's format ID.
        /// </summary>
        /// <param name="formatID">The section's format ID</param>
        public void SetFormatID(ClassID formatID)
        {
            this.formatID = formatID;
        }
 
 
 
        /// <summary>
        /// Sets the section's format ID.
        /// </summary>
        /// <param name="formatID">The section's format ID as a byte array. It components
        /// are in big-endian format.</param>
        public void SetFormatID(byte[] formatID)
        {
            ClassID fid = this.FormatID;
            if (fid == null)
            {
                fid = new ClassID();
                SetFormatID(fid);
            }
            fid.Bytes=formatID;
        }
 
 
 
        /// <summary>
        /// Sets this section's properties. Any former values are overwritten.
        /// </summary>
        /// <param name="properties">This section's new properties.</param>
        public void SetProperties(Property[] properties)
        {
            this.properties = properties;
            preprops = new ArrayList();
            for (int i = 0; i < properties.Length; i++)
                preprops.Add(properties[i]);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the string value of the property with the specified ID.
        /// </summary>
        /// <param name="id">The property's ID</param>
        /// <param name="value">The property's value. It will be written as a Unicode
        /// string.</param>
        public void SetProperty(int id, String value)
        {
            SetProperty(id, Variant.VT_LPWSTR, value);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the int value of the property with the specified ID.
        /// </summary>
        /// <param name="id">The property's ID</param>
        /// <param name="value">The property's value.</param>
        public void SetProperty(int id, int value)
        {
            SetProperty(id, Variant.VT_I4, value);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the long value of the property with the specified ID.
        /// </summary>
        /// <param name="id">The property's ID</param>
        /// <param name="value">The property's value.</param>
        public void SetProperty(int id, long value)
        {
            SetProperty(id, Variant.VT_I8, value);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the bool value of the property with the specified ID.
        /// </summary>
        /// <param name="id">The property's ID</param>
        /// <param name="value">The property's value.</param>
        public void SetProperty(int id, bool value)
        {
            SetProperty(id, Variant.VT_BOOL, value);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the value and the variant type of the property with the
        /// specified ID. If a property with this ID is not yet present in
        /// the section, it will be Added. An alReady present property with
        /// the specified ID will be overwritten. A default mapping will be
        /// used To choose the property's type.
        /// </summary>
        /// <param name="id">The property's ID.</param>
        /// <param name="variantType">The property's variant type.</param>
        /// <param name="value">The property's value.</param>
        public void SetProperty(int id, long variantType,
                                Object value)
        {
            MutableProperty p = new MutableProperty();
            p.ID=id;
            p.Type=variantType;
            p.Value=value;
            SetProperty(p);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the property.
        /// </summary>
        /// <param name="p">The property To be Set.</param>
        public void SetProperty(Property p)
        {
            long id = p.ID;
            RemoveProperty(id);
            preprops.Add(p);
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Removes the property.
        /// </summary>
        /// <param name="id">The ID of the property To be Removed</param>
        public void RemoveProperty(long id)
        {
            for (IEnumerator i = preprops.GetEnumerator(); i.MoveNext(); )
                if (((Property)i.Current).ID == id)
                {
                    preprops.Remove(i.Current);
                    break;
                }
            dirty = true;
        }
 
 
 
        /// <summary>
        /// Sets the value of the bool property with the specified
        /// ID.
        /// </summary>
        /// <param name="id">The property's ID</param>
        /// <param name="value">The property's value</param>
        protected void SetPropertyBooleanValue(int id, bool value)
        {
            SetProperty(id, Variant.VT_BOOL, value);
        }
 
 
 
        /// <summary>
        /// Returns the section's size in bytes.
        /// </summary>
        /// <value>The section's size in bytes.</value>
        public override int Size
        {
            get
            {
                if (dirty)
                {
                    try
                    {
                        size = CalcSize();
                        dirty = false;
                    }
                    catch (Exception)
                    {
                        throw;
                    }
                }
                return size;
            }
        }
 
 
 
        /// <summary>
        /// Calculates the section's size. It is the sum of the Lengths of the
        /// section's header (8), the properties list (16 times the number of
        /// properties) and the properties themselves.
        /// </summary>
        /// <returns>the section's Length in bytes.</returns>
        private int CalcSize()
        {
            using (MemoryStream out1 = new MemoryStream())
            {
                Write(out1);
                /* Pad To multiple of 4 bytes so that even the Windows shell (explorer)
                 * shows custom properties. */
                sectionBytes = Util.Pad4(out1.ToArray());
                return sectionBytes.Length;
            }
        }
 
 
        private class PropertyComparer : IComparer
        {
            #region IComparer Members
 
            int IComparer.Compare(object o1, object o2)
            {
                Property p1 = (Property)o1;
                Property p2 = (Property)o2;
                if (p1.ID < p2.ID)
                    return -1;
                else if (p1.ID == p2.ID)
                    return 0;
                else
                    return 1;
            }
 
            #endregion
        }
        /// <summary>
        /// Writes this section into an output stream.
        /// Internally this is done by writing into three byte array output
        /// streams: one for the properties, one for the property list and one for
        /// the section as such. The two former are Appended To the latter when they
        /// have received all their data.
        /// </summary>
        /// <param name="out1">The stream To Write into.</param>
        /// <returns>The number of bytes written, i.e. the section's size.</returns>
        public int Write(Stream out1)
        {
            /* Check whether we have alReady generated the bytes making out the
             * section. */
            if (!dirty && sectionBytes != null)
            {
                out1.Write(sectionBytes,0,sectionBytes.Length);
                return sectionBytes.Length;
            }
 
            /* The properties are written To this stream. */
            using (MemoryStream propertyStream =
                new MemoryStream())
            {
 
                /* The property list is established here. After each property that has
                 * been written To "propertyStream", a property list entry is written To
                 * "propertyListStream". */
                using (MemoryStream propertyListStream =
                     new MemoryStream())
                {
 
                    /* Maintain the current position in the list. */
                    int position = 0;
 
                    /* Increase the position variable by the size of the property list so
                     * that it points behind the property list and To the beginning of the
                     * properties themselves. */
                    position += 2 * LittleEndianConsts.INT_SIZE +
                                PropertyCount * 2 * LittleEndianConsts.INT_SIZE;
 
                    /* Writing the section's dictionary it tricky. If there is a dictionary
                     * (property 0) the codepage property (property 1) must be Set, Too. */
                    int codepage = -1;
                    if (GetProperty(PropertyIDMap.PID_DICTIONARY) != null)
                    {
                        Object p1 = GetProperty(PropertyIDMap.PID_CODEPAGE);
                        if (p1 != null)
                        {
                            if (!(p1 is int))
                                throw new IllegalPropertySetDataException
                                    ("The codepage property (ID = 1) must be an " +
                                     "Integer object.");
                        }
                        else
                            /* Warning: The codepage property is not Set although a
                             * dictionary is present. In order To cope with this problem we
                             * Add the codepage property and Set it To Unicode. */
                            SetProperty(PropertyIDMap.PID_CODEPAGE, Variant.VT_I2,
                                        (int)Constants.CP_UNICODE);
                        codepage = Codepage;
                    }
 
 
 
                    /* Sort the property list by their property IDs: */
                    preprops.Sort(new PropertyComparer());
 
                    /* Write the properties and the property list into their respective
                     * streams: */
                    for (int i = 0; i < preprops.Count; i++)
                    {
                        MutableProperty p = (MutableProperty)preprops[i];
                        long id = p.ID;
 
                        /* Write the property list entry. */
                        TypeWriter.WriteUIntToStream(propertyListStream, (uint)p.ID);
                        TypeWriter.WriteUIntToStream(propertyListStream, (uint)position);
 
                        /* If the property ID is not equal 0 we Write the property and all
                         * is fine. However, if it Equals 0 we have To Write the section's
                         * dictionary which has an implicit type only and an explicit
                         * value. */
                        if (id != 0)
                        {
                            /* Write the property and update the position To the next
                             * property. */
                            position += p.Write(propertyStream, Codepage);
                        }
                        else
                        {
                            if (codepage == -1)
                                throw new IllegalPropertySetDataException
                                    ("Codepage (property 1) is undefined.");
                            position += WriteDictionary(propertyStream, dictionary,
                                                        codepage);
                        }
                    }
                    propertyStream.Flush();
                    propertyListStream.Flush();
 
                    /* Write the section: */
                    byte[] pb1 = propertyListStream.ToArray();
                    byte[] pb2 = propertyStream.ToArray();
 
                    /* Write the section's Length: */
                    TypeWriter.WriteToStream(out1, LittleEndianConsts.INT_SIZE * 2 +
                                                  pb1.Length + pb2.Length);
 
                    /* Write the section's number of properties: */
                    TypeWriter.WriteToStream(out1, PropertyCount);
 
                    /* Write the property list: */
                    out1.Write(pb1, 0, pb1.Length);
 
                    /* Write the properties: */
                    out1.Write(pb2, 0, pb2.Length);
 
                    int streamLength = LittleEndianConsts.INT_SIZE * 2 + pb1.Length + pb2.Length;
                    return streamLength;
                }
            }
        }
 
 
 
        /// <summary>
        /// Writes the section's dictionary
        /// </summary>
        /// <param name="out1">The output stream To Write To.</param>
        /// <param name="dictionary">The dictionary.</param>
        /// <param name="codepage">The codepage to be used to Write the dictionary items.</param>
        /// <returns>The number of bytes written</returns>
        /// <remarks>
        /// see MSDN KB: http://msdn.microsoft.com/en-us/library/aa380065(VS.85).aspx
        /// </remarks>
        private static int WriteDictionary(Stream out1,
                                           IDictionary dictionary, int codepage)
        {
            int length = TypeWriter.WriteUIntToStream(out1, (uint)dictionary.Count);
            for (IEnumerator i = dictionary.Keys.GetEnumerator(); i.MoveNext(); )
            {
                long key = Convert.ToInt64(i.Current, CultureInfo.InvariantCulture);
                String value = (String)dictionary[key];
                //tony qu added: some key is int32 instead of int64
                if(value==null)
                    value = (String)dictionary[(int)key];
 
                if (codepage == (int)Constants.CP_UNICODE)
                {
                    /* Write the dictionary item in Unicode. */
                    int sLength = value.Length + 1;
                    if (sLength % 2 == 1)
                        sLength++;
                    length += TypeWriter.WriteUIntToStream(out1, (uint)key);
                    length += TypeWriter.WriteUIntToStream(out1, (uint)sLength);
                    byte[] ca =
                        Encoding.GetEncoding(codepage).GetBytes(value);
                    for (int j = 0; j < ca.Length; j += 2)   //Tony qu fixed the bug
                    {
                        out1.WriteByte(ca[j + 1]);
                        out1.WriteByte(ca[j]);
                        length += 2;
                    }
                    sLength -= value.Length;
                    while (sLength > 0)
                    {
                        out1.WriteByte(0x00);
                        out1.WriteByte(0x00);
                        length += 2;
                        sLength--;
                    }
                }
                else
                {
                    /* Write the dictionary item in another codepage than
                     * Unicode. */
                    length += TypeWriter.WriteUIntToStream(out1, (uint)key);
                    length += TypeWriter.WriteUIntToStream(out1, (uint)value.Length + 1);
 
                    try
                    {
                        byte[] ba =
                            Encoding.GetEncoding(codepage).GetBytes(value);
                        for (int j = 0; j < ba.Length; j++)
                        {
                            out1.WriteByte(ba[j]);
                            length++;
                        }
                    }
                    catch (Exception ex)
                    {
                        throw new IllegalPropertySetDataException(ex);
                    }
 
                    out1.WriteByte(0x00);
                    length++;
                }
            }
            return length;
        }
 
 
 
        /// <summary>
        /// OverWrites the base class' method To cope with a redundancy:
        /// the property count is maintained in a separate member variable, but
        /// shouldn't.
        /// </summary>
        /// <value>The number of properties in this section.</value>
        public override int PropertyCount
        {
            get { return preprops.Count; }
        }
 
 
 
        /// <summary>
        /// Returns this section's properties.
        /// </summary>
        /// <value>This section's properties.</value>
        public override Property[] Properties
        {
            get
            {
                EnsureProperties();
                return properties;
            }
        }
        /// <summary>
        /// Ensures the properties.
        /// </summary>
        public void EnsureProperties()
        {
            properties = (Property[])preprops.ToArray(typeof(Property));
        }
 
 
        /// <summary>
        /// Gets a property.
        /// </summary>
        /// <param name="id">The ID of the property To Get</param>
        /// <returns>The property or null  if there is no such property</returns>
        public override Object GetProperty(long id)
        {
            /* Calling Properties ensures that properties and preprops are in
             * sync. */
            EnsureProperties();
            return base.GetProperty(id);
        }
 
 
 
        /// <summary>
        /// Sets the section's dictionary. All keys in the dictionary must be
        /// {@link java.lang.long} instances, all values must be
        /// {@link java.lang.String}s. This method overWrites the properties with IDs
        /// 0 and 1 since they are reserved for the dictionary and the dictionary's
        /// codepage. Setting these properties explicitly might have surprising
        /// effects. An application should never do this but always use this
        /// method.
        /// </summary>
        /// <value>
        /// the dictionary
        /// </value>
        public override IDictionary Dictionary
        {
            get {
                return this.dictionary;
            }
            set
            {
                if (value != null)
                {
                    for (IEnumerator i = value.Keys.GetEnumerator();
                         i.MoveNext(); )
                        if (!(i.Current is Int64 || i.Current is Int32))
                            throw new IllegalPropertySetDataException
                                ("Dictionary keys must be of type long. but it's " + i.Current + ","+i.Current.GetType().Name+" now");
 
                    this.dictionary = value;
 
                    /* Set the dictionary property (ID 0). Please note that the second
                     * parameter in the method call below is unused because dictionaries
                     * don't have a type. */
                    SetProperty(PropertyIDMap.PID_DICTIONARY, -1, value);
 
                    /* If the codepage property (ID 1) for the strings (keys and
                     * values) used in the dictionary is not yet defined, Set it To
                     * Unicode. */
                    if (GetProperty(PropertyIDMap.PID_CODEPAGE) == null)
                    {
                        SetProperty(PropertyIDMap.PID_CODEPAGE, Variant.VT_I2,
                                    (int)Constants.CP_UNICODE);
                    }
                    //int codepage = (int) GetProperty(PropertyIDMap.PID_CODEPAGE);
 
                }
                else
                {
                    /* Setting the dictionary To null means To Remove property 0.
                     * However, it does not mean To Remove property 1 (codepage). */
                    RemoveProperty(PropertyIDMap.PID_DICTIONARY);
                }
            }
        }
 
 
 
        /// <summary>
        /// Sets the property.
        /// </summary>
        /// <param name="id">The property ID.</param>
        /// <param name="value">The property's value. The value's class must be one of those
        /// supported by HPSF.</param>
        public void SetProperty(int id, Object value)
        {
            if (value is String)
                SetProperty(id, (String)value);
            else if (value is long)
                SetProperty(id, ((long)value));
            else if (value is int)
                SetProperty(id, value);
            else if (value is short)
                SetProperty(id, (short)value);
            else if (value is bool)
                SetProperty(id, (bool)value);
            else if (value is DateTime)
                SetProperty(id, Variant.VT_FILETIME, value);
            else
                throw new HPSFRuntimeException(
                        "HPSF does not support properties of type " +
                        value.GetType().Name + ".");
        }
 
 
 
        /// <summary>
        /// Removes all properties from the section including 0 (dictionary) and
        /// 1 (codepage).
        /// </summary>
        public void Clear()
        {
            Property[] properties = Properties;
            for (int i = 0; i < properties.Length; i++)
            {
                Property p = properties[i];
                RemoveProperty(p.ID);
            }
        }
 
        /// <summary>
        /// Gets the section's codepage, if any.
        /// </summary>
        /// <value>The section's codepage if one is defined, else -1.</value>
        public new int Codepage
        {
            get { return base.Codepage; }
            set
            {
                SetProperty(PropertyIDMap.PID_CODEPAGE, Variant.VT_I2,
                    value);
            }
        }
 
    }
}