zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
/* ====================================================================
   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.Util
{
    using System;
 
    /// <summary>
    /// A List of short's; as full an implementation of the java.Util.List
    /// interface as possible, with an eye toward minimal creation of
    /// objects
    /// 
    /// the mimicry of List is as follows:
    /// <ul>
    /// <li> if possible, operations designated 'optional' in the List
    ///      interface are attempted</li>
    /// <li> wherever the List interface refers to an Object, substitute
    ///      short</li>
    /// <li> wherever the List interface refers to a Collection or List,
    ///      substitute shortList</li>
    /// </ul>
    /// 
    /// the mimicry is not perfect, however:
    /// <ul>
    /// <li> operations involving Iterators or ListIterators are not
    ///      supported</li>
    /// <li> Remove(Object) becomes RemoveValue to distinguish it from
    ///      Remove(short index)</li>
    /// <li> subList is not supported</li>
    /// </ul> 
    /// </summary>
    public class ShortList
    {
        private short[] _array;
        private int _limit;
        private static int _default_size = 128;
 
        /// <summary>
        /// create an shortList of default size
        /// </summary>
        public ShortList()
            : this(_default_size)
        {
 
        }
 
        /// <summary>
        /// create a copy of an existing shortList
        /// </summary>
        /// <param name="list">the existing shortList</param>
        public ShortList(ShortList list)
            : this(list._array.Length)
        {
            Array.Copy(list._array, 0, _array, 0, _array.Length);
            _limit = list._limit;
        }
 
        /// <summary>
        /// create an shortList with a predefined Initial size
        /// </summary>
        /// <param name="InitialCapacity">the size for the internal array</param>
        public ShortList(int InitialCapacity)
        {
            _array = new short[InitialCapacity];
            _limit = 0;
        }
 
        /// <summary>
        /// add the specfied value at the specified index
        /// </summary>
        /// <param name="index">the index where the new value is to be Added</param>
        /// <param name="value">the new value</param>
        public void Add(int index, short value)
        {
            if (index > _limit)
            {
                throw new IndexOutOfRangeException();
            }
            else if (index == _limit)
            {
                Add(value);
            }
            else
            {
 
                // index < limit -- insert into the middle
                if (_limit == _array.Length)
                {
                    GrowArray(_limit * 2);
                }
                Array.Copy(_array, index, _array, index + 1,
                                 _limit - index);
                _array[index] = value;
                _limit++;
            }
        }
 
        /// <summary>
        /// Appends the specified element to the end of this list
        /// </summary>
        /// <param name="value">element to be Appended to this list.</param>
        /// <returns>return true (as per the general contract of the Collection.add method).</returns>
        public bool Add(short value)
        {
            if (_limit == _array.Length)
            {
                GrowArray(_limit * 2);
            }
            _array[_limit++] = value;
            return true;
        }
 
        /// <summary>
        /// Appends all of the elements in the specified collection to the
        /// end of this list, in the order that they are returned by the
        /// specified collection's iterator.  The behavior of this
        /// operation is unspecified if the specified collection is
        /// modified while the operation is in progress.  (Note that this
        /// will occur if the specified collection is this list, and it's
        /// nonempty.)
        /// </summary>
        /// <param name="c">collection whose elements are to be Added to this list.</param>
        /// <returns>return true if this list Changed as a result of the call.</returns>
        public bool AddAll(ShortList c)
        {
            if (c._limit != 0)
            {
                if ((_limit + c._limit) > _array.Length)
                {
                    GrowArray(_limit + c._limit);
                }
                Array.Copy(c._array, 0, _array, _limit, c._limit);
                _limit += c._limit;
            }
            return true;
        }
 
        /// <summary>
        /// Inserts all of the elements in the specified collection into
        /// this list at the specified position.  Shifts the element
        /// currently at that position (if any) and any subsequent elements
        /// to the right (increases their indices).  The new elements will
        /// appear in this list in the order that they are returned by the
        /// specified collection's iterator.  The behavior of this
        /// operation is unspecified if the specified collection is
        /// modified while the operation is in progress.  (Note that this
        /// will occur if the specified collection is this list, and it's
        /// nonempty.)
        /// </summary>
        /// <param name="index">index at which to insert first element from the specified collection.</param>
        /// <param name="c">elements to be inserted into this list.</param>
        /// <returns>return true if this list Changed as a result of the call.</returns>
        /// <exception cref="IndexOutOfRangeException"> if the index is out of range (index &lt; 0 || index &gt; size())</exception>
        public bool AddAll(int index, ShortList c)
        {
            if (index > _limit)
            {
                throw new IndexOutOfRangeException();
            }
            if (c._limit != 0)
            {
                if ((_limit + c._limit) > _array.Length)
                {
                    GrowArray(_limit + c._limit);
                }
 
                // make a hole
                Array.Copy(_array, index, _array, index + c._limit,
                                 _limit - index);
 
                // fill it in
                Array.Copy(c._array, 0, _array, index, c._limit);
                _limit += c._limit;
            }
            return true;
        }
 
        /// <summary>
        /// Removes all of the elements from this list.  This list will be
        /// empty After this call returns (unless it throws an exception).
        /// </summary>
        public void Clear()
        {
            _limit = 0;
        }
 
        /// <summary>
        /// Returns true if this list Contains the specified element.  More
        /// formally, returns true if and only if this list Contains at
        /// least one element e such that o == e
        /// </summary>
        /// <param name="o">element whose presence in this list is to be Tested.</param>
        /// <returns>return true if this list Contains the specified element.</returns>
        public bool Contains(short o)
        {
            bool rval = false;
 
            for (int j = 0; !rval && (j < _limit); j++)
            {
                if (_array[j] == o)
                {
                    rval = true;
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Returns true if this list Contains all of the elements of the specified collection.
        /// </summary>
        /// <param name="c">collection to be Checked for Containment in this list.</param>
        /// <returns>return true if this list Contains all of the elements of the specified collection.</returns>
        public bool ContainsAll(ShortList c)
        {
            bool rval = true;
 
            if (this != c)
            {
                for (int j = 0; rval && (j < c._limit); j++)
                {
                    if (!Contains(c._array[j]))
                    {
                        rval = false;
                    }
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Compares the specified object with this list for Equality.
        /// Returns true if and only if the specified object is also a
        /// list, both lists have the same size, and all corresponding
        /// pairs of elements in the two lists are Equal.  (Two elements e1
        /// and e2 are equal if e1 == e2.)  In other words, two lists are
        /// defined to be equal if they contain the same elements in the
        /// same order.  This defInition ensures that the Equals method
        /// works properly across different implementations of the List
        /// interface.
        /// </summary>
        /// <param name="o">the object to be Compared for Equality with this list.</param>
        /// <returns>return true if the specified object is equal to this list.</returns>
        public override bool Equals(Object o)
        {
            bool rval = this == o;
 
            if (!rval && (o != null) && (o.GetType() == this.GetType()))
            {
                ShortList other = (ShortList)o;
 
                if (other._limit == _limit)
                {
 
                    // assume match
                    rval = true;
                    for (int j = 0; rval && (j < _limit); j++)
                    {
                        rval = _array[j] == other._array[j];
                    }
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Returns the element at the specified position in this list.
        /// </summary>
        /// <param name="index">index of element to return.</param>
        /// <returns>return the element at the specified position in this list.</returns>
        public short Get(int index)
        {
            if (index >= _limit)
            {
                throw new IndexOutOfRangeException();
            }
            return _array[index];
        }
 
        /// <summary>
        /// Returns the hash code value for this list.  The hash code of a
        /// list is defined to be the result of the following calculation:
        /// 
        /// <code>
        /// hashCode = 1;
        /// Iterator i = list.Iterator();
        /// while (i.HasNext()) {
        ///      Object obj = i.Next();
        ///      hashCode = 31*hashCode + (obj==null ? 0 : obj.HashCode());
        /// }
        /// </code>
        /// 
        /// This ensures that list1.Equals(list2) implies that
        /// list1.HashCode()==list2.HashCode() for any two lists, list1 and
        /// list2, as required by the general contract of Object.HashCode.
        /// </summary>
        /// <returns>return the hash code value for this list.</returns>
        public override int GetHashCode()
        {
            int hash = 0;
 
            for (int j = 0; j < _limit; j++)
            {
                hash = (31 * hash) + _array[j];
            }
            return hash;
        }
 
        /// <summary>
        /// Returns the index in this list of the first occurrence of the
        /// specified element, or -1 if this list does not contain this
        /// element.  More formally, returns the lowest index i such that
        /// (o == Get(i)), or -1 if there is no such index.
        /// </summary>
        /// <param name="o">element to search for.</param>
        /// <returns>the index in this list of the first occurrence of the
        /// specified element, or -1 if this list does not contain
        /// this element.
        /// </returns>
        public int IndexOf(short o)
        {
            int rval = 0;
 
            for (; rval < _limit; rval++)
            {
                if (o == _array[rval])
                {
                    break;
                }
            }
            if (rval == _limit)
            {
                rval = -1;   // didn't find it
            }
            return rval;
        }
 
        /// <summary>
        /// Returns true if this list Contains no elements.
        /// </summary>
        /// <returns>return true if this list Contains no elements.</returns>
        public bool IsEmpty()
        {
            return _limit == 0;
        }
 
        /// <summary>
        /// Returns the index in this list of the last occurrence of the
        /// specified element, or -1 if this list does not contain this
        /// element.  More formally, returns the highest index i such that
        /// (o == Get(i)), or -1 if there is no such index.
        /// </summary>
        /// <param name="o">element to search for.</param>
        /// <returns>return the index in this list of the last occurrence of the
        /// specified element, or -1 if this list does not contain this element.</returns>
        public int LastIndexOf(short o)
        {
            int rval = _limit - 1;
 
            for (; rval >= 0; rval--)
            {
                if (o == _array[rval])
                {
                    break;
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Removes the element at the specified position in this list.
        /// Shifts any subsequent elements to the left (subtracts one from
        /// their indices).  Returns the element that was Removed from the
        /// list.
        /// </summary>
        /// <param name="index">the index of the element to Removed.</param>
        /// <returns>return the element previously at the specified position.</returns>
        public short Remove(int index)
        {
            if (index >= _limit)
            {
                throw new IndexOutOfRangeException();
            }
            short rval = _array[index];
 
            Array.Copy(_array, index + 1, _array, index, _limit - index);
            _limit--;
            return rval;
        }
 
        /// <summary>
        /// Removes the first occurrence in this list of the specified
        /// element (optional operation).  If this list does not contain
        /// the element, it is unChanged.  More formally, Removes the
        /// element with the lowest index i such that (o.Equals(get(i)))
        /// (if such an element exists).
        /// </summary>
        /// <param name="o">element to be Removed from this list, if present.</param>
        /// <returns>return true if this list Contained the specified element.</returns>
        public bool RemoveValue(short o)
        {
            bool rval = false;
 
            for (int j = 0; !rval && (j < _limit); j++)
            {
                if (o == _array[j])
                {
                    Array.Copy(_array, j + 1, _array, j, _limit - j);
                    _limit--;
                    rval = true;
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Removes from this list all the elements that are Contained in the specified collection
        /// </summary>
        /// <param name="c">collection that defines which elements will be removed from this list.</param>
        /// <returns>return true if this list Changed as a result of the call.</returns>
        public bool RemoveAll(ShortList c)
        {
            bool rval = false;
 
            for (int j = 0; j < c._limit; j++)
            {
                if (RemoveValue(c._array[j]))
                {
                    rval = true;
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Retains only the elements in this list that are Contained in
        /// the specified collection.  In other words, Removes from this
        /// list all the elements that are not Contained in the specified
        /// collection.
        /// </summary>
        /// <param name="c">collection that defines which elements this Set will retain.</param>
        /// <returns>return true if this list Changed as a result of the call.</returns>
        public bool RetainAll(ShortList c)
        {
            bool rval = false;
 
            for (int j = 0; j < _limit; )
            {
                if (!c.Contains(_array[j]))
                {
                    Remove(j);
                    rval = true;
                }
                else
                {
                    j++;
                }
            }
            return rval;
        }
 
        /// <summary>
        /// Replaces the element at the specified position in this list with the specified element
        /// </summary>
        /// <param name="index">index of element to Replace.</param>
        /// <param name="element">element to be stored at the specified position.</param>
        /// <returns>return the element previously at the specified position.</returns>
        public short Set(int index, short element)
        {
            if (index >= _limit)
            {
                throw new IndexOutOfRangeException();
            }
            short rval = _array[index];
 
            _array[index] = element;
            return rval;
        }
 
        /// <summary>
        /// Returns the number of elements in this list. If this list
        /// Contains more than Int32.MaxValue elements, returns
        /// Int32.MaxValue.
        /// </summary>
        /// <returns>return the number of elements in this shortList</returns>
        public int Size()
        {
            return _limit;
        }
        /// <summary>
        /// the number of elements in this shortList
        /// </summary>
        public int Count
        {
            get { return _limit; }
        }
        
        /// <summary>
        /// Returns an array Containing all of the elements in this list in
        /// proper sequence.  Obeys the general contract of the
        /// Collection.ToArray method.
        /// </summary>
        /// <returns>an array Containing all of the elements in this list in
        /// proper sequence.</returns>
        public short[] ToArray()
        {
            short[] rval = new short[_limit];
 
            Array.Copy(_array, 0, rval, 0, _limit);
            return rval;
        }
 
        /// <summary>
        /// Returns an array Containing all of the elements in this list in
        /// proper sequence.  Obeys the general contract of the
        /// Collection.ToArray(Object[]) method.
        /// </summary>
        /// <param name="a">the array into which the elements of this list are to
        /// be stored, if it is big enough; otherwise, a new array
        /// is allocated for this purpose.</param>
        /// <returns>return an array Containing the elements of this list.</returns>
        public short[] ToArray(short[] a)
        {
            short[] rval;
 
            if (a.Length == _limit)
            {
                Array.Copy(_array, 0, a, 0, _limit);
                rval = a;
            }
            else
            {
                rval = ToArray();
            }
            return rval;
        }
 
        private void GrowArray(int new_size)
        {
            int size = (new_size == _array.Length) ? new_size + 1
                                                            : new_size;
            short[] new_array = new short[size];
 
            Array.Copy(_array, 0, new_array, 0, _limit);
            _array = new_array;
        }
    }   // end public class shortList
}