zjf
2023-03-06 392b76515f40376b6d36f40a114850ef63650384
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
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
/////////////////////////////////////////////////////////////////////////////// 
// Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). 
// All rights reserved. 
// 
// This software and its documentation and related materials are owned by 
// the Alliance. The software may only be incorporated into application 
// programs owned by members of the Alliance, subject to a signed 
// Membership Agreement and Supplemental Software License Agreement with the
// Alliance. The structure and organization of this software are the valuable  
// trade secrets of the Alliance and its suppliers. The software is also 
// protected by copyright law and international treaty provisions. Application  
// programs incorporating this software must include the following statement 
// with their copyright notices:
//   
//   This application incorporates Teigha(R) software pursuant to a license 
//   agreement with Open Design Alliance.
//   Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. 
//   All rights reserved.
//
// By use of this software, its documentation or related materials, you 
// acknowledge and accept the above terms.
///////////////////////////////////////////////////////////////////////////////
 
 
 
 
#ifndef ODARRAY_H_INCLUDED
#define ODARRAY_H_INCLUDED
 
#include <new>
 
#include "TD_PackPush.h"
 
#include "OdArrayPreDef.h"
#include "OdHeap.h"
#include "OdMutex.h"
#include "OdError.h"
#include "RxSystemServices.h"
 
/** \details
    This template class implements memory allocation functions within Teigha.
    
    \sa
    TD_Db
    
    <group Other_Classes>
*/
template <class T> class OdMemoryAllocator
{
public:
  typedef unsigned int size_type;
  /** \details
    This function copies the specified number of elements from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numElements [in]  Number of elements.
    
    \note
    If the source and destination regions overlap, the behavior of this function is undefined. Use move() to handle overlapping regions.
  */
  static inline void copy(
    T* pDestination, 
    const T* pSource, 
    size_type numElements)
  {
    memcpy(pDestination, pSource, numElements * sizeof(T));
  }
  
  /** \details
    This function copies the specified number of elements from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numElements [in]  Number of elements.
    
    \remarks
    If the source and destination regions overlap, move copies the overlapping region before it is overwritten.
    
    \note
    Use copy() to handle non-overlapping regions. 
  */
  static inline void move(
    T* pDestination, 
    const T* pSource, 
    size_type numElements)
  {
    memmove(pDestination, pSource, numElements * sizeof(T));
  }
  /** \details
    This function constructs an element.
    
    \param pElement [out]  Receives the element. 
    \param value [in]  Value for the element.
  */
  static inline void construct(
    T* pElement, 
    const T& value = T())
  {
    *pElement = value;
  }
 
  /** \details
    This function constructs an array of elements.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param value [in]  Value for the elements.
    \param numElements [in]  Number of elements.
    
    \note
    When called with two arguments, this function does nothing but return.
  */
  static inline void constructn(
    T* pDestination, 
    size_type numElements, 
    const T& value)
  {
    while(numElements--)
    {
      pDestination[numElements] = value;
    }
  }
  
  static inline void constructn(
    T* pDestination, 
    const T* pSource, 
    size_type numElements)
  {
    copy(pDestination, pSource, numElements);
  }
  static inline void constructn(
    T*, 
    size_type)
  {
    // DOES NOTHING
  }
  /** \details
    Destroys the specified element or elements.
    
    \note
    This function does nothing but return.
  */
  static inline void destroy(
    T*)
  {
    // DOES NOTHING
  }
  static inline void destroy(
    T*, 
    size_type )
  {
    // DOES NOTHING
  }
  /** \details
     Returns true if and only if odrxRealloc can be used to resize an array.
 
     \note
     This function always returns true.
  */
  static inline bool useRealloc()
  {
    return true;
  }
};
 
 
/** \details
    This template class implements object allocation functions within Teigha.
    
    \remarks
    This class is for objects that must be copied with the assignment operator.
    For objects that can be copied with memcpy(), see OdPlainObjectsAllocator.
    
    \sa
    TD_Db
 
    <group Other_Classes>
*/
template <class T> class OdObjectsAllocator
{
public:
  typedef unsigned int size_type;
  
  /** \details
    This function copies the specified number of objects from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numObjects [in]  Number of objects.
    
    \note
    If the source and destination regions overlap, the behavior of this function is undefined. Use move() to handle overlapping regions.
  */
  static inline void copy(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      *pDestination = *pSource;
      pDestination++;
      pSource++;
    }
  }
 
  /** \details
    This function copies the specified number of objects from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numObjects [in]  Number of objects.
    
    \remarks
    If the source and destination regions overlap, move copies the overlapping region before it is overwritten.
    
    \note
    Use copy() to handle non-overlapping regions. 
  */
  static inline void move(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    if (pDestination <= pSource || pDestination >= pSource + numObjects)
    {
      copy(pDestination, pSource, numObjects);
    }
    else
    {
      while(numObjects--)
      {
        pDestination[numObjects] = pSource[numObjects];
      }
    }
  }
  /** \details
    This function constructs an object.
    
    \param pObject [out]  Receives the object. 
    \param value [in]  Value for the object.
  */
  static inline void construct(
    T* pObject)
  {
#ifdef new
#undef new
#endif
    ::new (pObject) T;
  }
  static inline void construct(
     T* pObject, 
     const T& value)
  {
#ifdef new
#undef new
#endif
    ::new (pObject) T(value);
  }
  /** \details
    This function constructs an array of objects.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param value [in]  Value for the objects.
    \param numObjects [in]  Number of objects.
    
  */
  static inline void constructn(
    T* pDestination, 
    size_type numObjects, 
    const T& value)
  {
    while(numObjects--)
    {
      construct(pDestination+numObjects, value);
    }
  }
  static inline void constructn(
    T* pDestination, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      construct(pDestination+numObjects);
    }
  }
  static inline void constructn(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      construct(pDestination, *pSource);
      pDestination++;
      pSource++;
    }
  }
  /** \details
    Destroys the specified object or objects.
    \param pObject [in]  Pointer to the object. 
    \param objects [in]  Array of objects.
    \param numObjects [in]  Number of objects.
  */
  static inline void destroy(
    T* pObject)
  {
    pObject->~T();
    pObject = 0;
  }
  static inline void destroy(
    T* objects, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      destroy(objects + numObjects);
    }
  }
  /** \details
     Returns true if and only if odrxRealloc can be used to resize an array.
     
     \note
     This function always returns false.
  */
  static inline bool useRealloc()
  {
    return false;
  }
};
/** \details
    This template class implements object allocation functions for objects within Teigha.
    
    \remarks
    This class is for objects that can copied with memcpy() (plain objects). For objects that must be copied with the assignment operator,
    see OdObjectsAllocator.
    
    \sa
    TD_Db
 
    <group Other_Classes>
*/
template <class T> class OdPlainObjectsAllocator
{
public:
  typedef unsigned int size_type;
  
  /** \details
    This function copies the specified number of objects from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numObjects [in]  Number of objects.
    
    \note
    If the source and destination regions overlap, the behavior of this function is undefined. Use move() to handle overlapping regions.
  */
  static inline void copy(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    memcpy(pDestination, pSource, numObjects * sizeof(T));
  }
  
  /** \details
    This function copies the specified number of objects from source to destination.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param numObjects [in]  Number of objects.
    
    \remarks
    If the source and destination regions overlap, move copies the overlapping region before it is overwritten.
    
    \note
    Use copy() to handle non-overlapping regions. 
  */
  static inline void move(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    memmove(pDestination, pSource, numObjects * sizeof(T));
  }
  
  /** \details
    This function constructs an object.
    
    \param pObject [out]  Receives the object. 
    \param value [in]  Value for the object.
  */
  static inline void construct(
    T* pObject)
  {
#ifdef new
#undef new
#endif
    ::new (pObject) T;
  }
  static inline void construct(
    T* pObject, 
    const T& value)
  {
#ifdef new
#undef new
#endif
    ::new (pObject) T(value);
  }
  
  /** \details
    This function constructs an array of objects.
    
    \param pDestination [in]  Pointer to the destination.
    \param pSource [in]  Pointer to the source.
    \param value [in]  Value for the objects.
    \param numObjects [in]  Number of objects.
    
  */
  static inline void constructn(
    T* pDestination, 
    size_type numObjects, 
    const T& value)
  {
    while(numObjects--)
    {
      construct(pDestination+numObjects, value);
    }
  }
  static inline void constructn(
    T* pDestination, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      construct(pDestination+numObjects);
    }
  }
  static inline void constructn(
    T* pDestination, 
    const T* pSource, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      construct(pDestination, *pSource);
      pDestination++;
      pSource++;
    }
  }
  
  /** \details
    Destroys the specified object or objects.
    \param pObject [in]  Pointer to the object. 
    \param objects [in]  Array of objects.
    \param numObjects [in]  Number of objects.
  */
  static inline void destroy(
    T* pObject)
  {
    pObject->~T();
    pObject = 0;
  }
  static inline void destroy(
    T* objects, 
    size_type numObjects)
  {
    while(numObjects--)
    {
      destroy(objects + numObjects);
    }
  }
  /** \details
     Returns true if and only if odrxRealloc can be used to resize an array.
     
     \note
     This function always returns true.
  */
  static inline bool useRealloc()
  {
    return true;
  }
};
 
/** \details
 
    <group !!RECORDS_TD_APIRef>
*/
struct FIRSTDLL_EXPORT OdArrayBuffer
{
  typedef unsigned int size_type;
 
  mutable OdRefCounter m_nRefCounter;
  int               m_nGrowBy;
  size_type         m_nAllocated;
  size_type         m_nLength;
 
  FIRSTDLL_EXPORT_STATIC static OdArrayBuffer g_empty_array_buffer;
};
 
 
 
/** \details
    This template class implements dynamic Array objects within Teigha.
 
    \remarks
    Methods are provided to access Array elements via both array indices and array pointers (iterators).
 
    Some definitions are in order:
    
    1. Logical Length or Size -- The number of entries in the array. Initially zero.
    2. Physical Length -- The maximum Logical Length of the array before it automatically grows.
    3. Grow Length -- The number of entries by which the Physical Length will grow as required.
    
    \sa
    TD_Db
    
    <group Other_Classes>
*/
template <class T, class A> class OdArray
{
public:
  typedef typename A::size_type size_type;
  typedef T* iterator;
  typedef const T* const_iterator;
  typedef T value_type;
  typedef const T& const_reference;
  typedef T& reference;
private:
  struct Buffer : OdArrayBuffer
  {
    T* data() const { return (T*)(this+1); }
 
    static Buffer* allocate(size_type nLength2Allocate, int nGrowBy)
    {
      size_type nBytes2Allocate = sizeof(Buffer) + nLength2Allocate * sizeof(T);
      ODA_ASSERT(nBytes2Allocate > nLength2Allocate); // size_type overflow
      if(nBytes2Allocate > nLength2Allocate)
      {
        Buffer* pBuffer = (Buffer*)::odrxAlloc(nBytes2Allocate);
        if (pBuffer)
        {
          pBuffer->m_nRefCounter = 1;
          pBuffer->m_nGrowBy     = nGrowBy;
          pBuffer->m_nAllocated  = nLength2Allocate;
          pBuffer->m_nLength     = 0;
          return pBuffer;
        }
      }
      throw OdError(eOutOfMemory);
    }
    static Buffer* _default()
    {
      return (Buffer*)&g_empty_array_buffer;
    }
    void release()
    {
      ODA_ASSERT(m_nRefCounter);
      if((--m_nRefCounter)==0 && this != _default())
      {
        A::destroy(data(), m_nLength);
        ::odrxFree(this);
      }
    }
    void addref() const { ++m_nRefCounter; }
  };
  class reallocator
  {
    bool _may_use_realloc;
    Buffer* m_pBuffer;
  public:
    inline reallocator( bool may_use_realloc = false ) : _may_use_realloc(may_use_realloc), m_pBuffer(NULL)
    {
      if ( !_may_use_realloc )
      {
        m_pBuffer = Buffer::_default();
        m_pBuffer->addref(); 
      }
    }
    inline void reallocate(OdArray* pArray, size_type nNewLen )
    {
      if(!pArray->referenced())
      {
        if(nNewLen > pArray->physicalLength())
        {
          if ( !_may_use_realloc )
          {
            m_pBuffer->release();
            m_pBuffer = pArray->buffer();
            m_pBuffer->addref(); // save buffer to ensure copy from itself would work (e.g insertAt)
          }
          pArray->copy_buffer(nNewLen, _may_use_realloc);
        }
      }
      else
      {
        pArray->copy_buffer(nNewLen);
      }
    }
    inline ~reallocator() 
    {
      if ( !_may_use_realloc ) m_pBuffer->release();
    }
  };
  friend class reallocator;
  const_iterator begin_const() const { return begin(); }
  iterator begin_non_const() { return begin(); }
  const_iterator end_const() { return end(); }
  iterator end_non_const() { return end(); }
  void copy_before_write(size_type len, bool may_use_realloc = false )
  {
    if( referenced() )
      copy_buffer(len);
    else if ( len > physicalLength() )
      copy_buffer( len, may_use_realloc );
  }
  void copy_if_referenced() { if(referenced()) { copy_buffer(physicalLength()); } }
  void copy_buffer( size_type len, bool may_use_realloc = false, bool force_size = false )
  {
    Buffer* pOldBuffer = buffer();
    int nGrowBy = pOldBuffer->m_nGrowBy;
    size_type len2 = len;
    if ( !force_size )
    {
      if(nGrowBy > 0)
      {
        len2 += nGrowBy;
        len2 = ((len2 - 1) / nGrowBy) * nGrowBy;
      }
      else
      {
        len2 = pOldBuffer->m_nLength;
        len2 = len2 + -nGrowBy * len2 / 100;
        if(len2 < len)
        {
          len2 = len;
        }
      }
    }
    if ( may_use_realloc && A::useRealloc() && !empty() )
    {
      Buffer* pNewBuffer = reinterpret_cast<Buffer*>( ::odrxRealloc( 
        pOldBuffer, len2 * sizeof(T) + sizeof(Buffer), pOldBuffer->m_nAllocated * sizeof(T) + sizeof(Buffer) ) );
      if (!pNewBuffer)
        throw OdError(eOutOfMemory);
      pNewBuffer->m_nAllocated = len2;
      pNewBuffer->m_nLength = odmin(pNewBuffer->m_nLength, len);
      m_pData = pNewBuffer->data();
    }
    else 
    {
      Buffer* pNewBuffer = Buffer::allocate(len2, nGrowBy);
      if (!pNewBuffer)
        throw OdError(eOutOfMemory);
      len = odmin(pOldBuffer->m_nLength, len);
      A::constructn(pNewBuffer->data(), pOldBuffer->data(), len);
      pNewBuffer->m_nLength = len;
      m_pData = pNewBuffer->data();
      pOldBuffer->release();
    }
  }
  inline void assertValid(size_type index) const
  { 
    if(!isValid(index)) 
    { 
      ODA_FAIL(); 
      throw OdError_InvalidIndex(); 
    } 
  }
  static inline void rise_error(OdResult e) 
  { 
    ODA_FAIL(); 
    throw OdError(e); 
  }
public:
  // STL-like interface
  
  /** \details
    Returns an iterator that references the first element in this Array object.
  */
  iterator begin() 
  { 
    if(!empty()) 
    { 
      copy_if_referenced(); 
      return data(); 
    } 
    return 0;
  }
  const_iterator begin() const 
  { 
    if(!empty()) 
    { 
      return data(); 
    } 
    return 0; 
  }
 
  /** \details
    Returns an iterator that references the location after the last element in this Array object.
  */
  iterator end() 
  { 
    if(!empty()) 
    { 
      copy_if_referenced(); 
      return data() + length(); 
    } 
    return 0; 
  }
  const_iterator end() const 
  { 
    if(!empty()) 
    { 
      return data() + length(); 
    } 
    return 0; 
  }
  
  /** \details
    Inserts an element, number of elements, or range of elements, into this Array object. 
    
    \param before [in]  Position where first element is to be inserted.
    \param first [in]  Position of first element to be inserted.
    \param afterLast [in]  Position of first element after the last element to be inserted.
    
    \remarks
    The range of elements may be from another Array object.
  */
  void insert(
    iterator before, 
    const_iterator first, 
    const_iterator afterLast)
  {
    size_type len = length();
    size_type index = (size_type)(before - begin_const());
    if(index <= len && afterLast>=first)
    {
      if(afterLast > first)
      {
        size_type num2copy = (size_type)(afterLast - first);
        reallocator r( first < begin() || first >= end() );
        r.reallocate(this, len + num2copy);
        A::constructn(m_pData + len, first, num2copy);
        buffer()->m_nLength = len + num2copy;
        T* pDestination = m_pData + index;
        if(index != len)
        {
          A::move(pDestination + num2copy, pDestination, len - index);
        }
        A::copy(pDestination, first, (size_type)(afterLast - first));
      }
    }
    else
    {
      rise_error(eInvalidInput);
    }
  }
  /** \details
    Specifies the logical length for this Array object.
    \param logicalLength [in]  Logical length.
    \param value [in]  Value for the elements added to obtain the new logical length.
  */
  void resize( 
    size_type logicalLength, 
    const T& value )
  {
    size_type len = length();
    int d = logicalLength - len;
    if ( d > 0 )
    {
      reallocator r( m_pData > &value || &value > (m_pData + len) );
      r.reallocate(this, logicalLength);
      A::constructn(m_pData + len, d, value);
    }
    else if ( d < 0 )
    {
      d=-d;
      if(!referenced())
      {
        A::destroy(m_pData + logicalLength, d);
      }
      else
      {
        copy_buffer(logicalLength);
      }
    }
    buffer()->m_nLength = logicalLength;
  }
  
  void resize( 
    size_type logicalLength )
  {
    size_type len = length();
    int d = logicalLength - len;
    if ( d > 0 )
    {
      copy_before_write( len + d, true );
      A::constructn(m_pData + len, d);
    }
    else if ( d < 0 )
    {
      d = -d;
      if ( !referenced() )
      {
        A::destroy( m_pData + logicalLength, d );
      }
      else
      {
        copy_buffer(logicalLength);
      }
    }
    buffer()->m_nLength = logicalLength;
  }
  
  /** \details
    Returns the logical length of this Array object.
  */
  size_type size() const 
  { 
    return buffer()->m_nLength; 
  }
 
  /** \details
    Returns true if and only if this Array is empty.
  */
  bool empty() const 
  { 
    return size() == 0; 
  }
  
  /** \details
    Returns the physical length of this Array object.
  */
  size_type capacity() const 
  { 
    return buffer()->m_nAllocated; 
  }
 
  /** \details
    Sets the physical length of this Array object to the specified
    reserve length if the reserve length is greater than its physical length.
 
    \param reserveLength [in]  Minimum physical length.
  */
  void reserve(
    size_type reserveLength) 
  { 
    if(physicalLength() < reserveLength) 
    { 
      setPhysicalLength(reserveLength); 
    } 
  }
 
  /** \details
    Assigns the specified range of elements to this Array object.
 
    \param first [in]  Position of first element to be assigned.
    \param afterLast [in]  Position of first element after the last element to be assigned.
    
    \remarks
    After this Array object is cleared, this function assigns the specified range of elements from
    another Array object.  
  */
  void assign(
    const_iterator first, 
    const_iterator afterLast)
  { 
    erase(begin_non_const(), end_non_const()); 
    insert(begin_non_const(), first, afterLast); 
  }
  
  /** \details
    Removes the specified element or range of elements from this Array object.
 
    \param first [in]  Position of first element to be erased.
    \param afterLast [in]  Position of first element after the last element to be erased.
  */
  iterator erase(
    iterator first, 
    iterator afterLast)
  {
    size_type i = (size_type)(first - begin_const());
    if(first != afterLast)
    {
      removeSubArray(i, (size_type)(afterLast-begin_const()-1));
    }
    return begin_non_const()+i;
  }
  /** \param where [in]  Element to remove.
  */
  iterator erase(
    iterator where)
  {
    size_type i = (size_type) (where - begin_const());
    removeAt(i);
    return begin_non_const()+i;
  }
  /** \details
    Removes all elements from this Array object.
  */
  void clear()
  { 
    erase(begin_non_const(), end_non_const()); 
  }
 
  /** \details
    Appends an element to the end of this Array object.
  */
  void push_back(
    const T& value) 
  { 
    insertAt(length(), value); 
  }
  
  /** \param numElements [in]  Number of elements to insert.
    \param value [in]  Value to insert.
  */
  iterator insert(
    iterator before, 
    size_type numElements, 
    const T& value)
  {
    size_type len = length();
    size_type index = (size_type)(before - begin_const());
    reallocator r( m_pData > &value || &value > (m_pData + len) );
    r.reallocate(this, len + numElements);
    A::constructn(m_pData + len, numElements, value);
    buffer()->m_nLength = len + numElements;
    T* pData = data();
    pData += index;
    if(index != len)
    {
      A::move(pData + numElements, pData, len - index);
    }
    while(numElements--)
    {
      pData[numElements] = value;
    }
    return begin_non_const()+index;
  }
  
  iterator insert(
    iterator before, 
    const T& value = T())
  {
    size_type index = (size_type)(before - begin_const());
    insertAt(index, value);
    return (begin_non_const() + index);
  }  
 
  /** \details
    Returns true if and only if this Array object contains ths specified value.
    
    \param value [in]  Value for which to search.
    \param start [in]  Starting index of search.
  */
  bool contains(
    const T& value, 
    size_type start = 0) const
  { 
    size_type dummy; 
    return find(value, dummy, start); 
  }
 
  /** \details
    Returns the number of elements in this Array object.
  */
  size_type length() const 
  { 
    return buffer()->m_nLength; 
  }
  
  /** \details
    Returns true if and only if this Array is empty.
  */
  bool isEmpty() const 
  { 
    return length() == 0; 
  }
  
  /** \details
    Returns the logical length of this Array object.
  */
  size_type logicalLength() const 
  { 
    return length(); 
  }
  
  /** \details
    Returns the physical length of this Array object.
  */
  size_type physicalLength() const 
  { 
    return buffer()->m_nAllocated; 
  }
  
  /** \details
    Returns the grow length of this Array object.
  */
  int growLength() const 
  { 
    return buffer()->m_nGrowBy; 
  }
  
  /** \details
    Returns the data buffer of this Array object. 
  */
  const T* asArrayPtr() const 
  { 
    return data(); 
  }
 
  /** \details
    Returns the data buffer of this Array object. 
  */
  const T* getPtr() const 
  { 
    return data(); 
  }
 
  T* asArrayPtr() 
  { 
    copy_if_referenced(); 
    return data(); 
  }
  
  /** \remarks
    For convenient access to the data.
  */
  const T& operator [](
    size_type index) const 
  { 
    assertValid(index); 
    return m_pData[index]; 
  }
  T& operator [](
    size_type index) 
  { 
    assertValid(index); 
    copy_if_referenced(); 
    return m_pData[index]; 
  }
 
  /** \details
    Returns the element of this Array object at the specified index.
    \param arrayIndex [in]  Array index. 
  */
  T& at(
    size_type arrayIndex) 
  { 
    assertValid(arrayIndex); 
    copy_if_referenced(); 
    return *(data() + arrayIndex); 
  }
  const T& at(size_type arrayIndex) const 
  { 
    assertValid(arrayIndex); 
    return *(data() + arrayIndex); 
  }
  
  /** \details
    Sets the element of this Array object at the specified index.
    \param arrayIndex [in]  Array index.
    \param value [in]  Value. 
  */
  OdArray& setAt(
    size_type arrayIndex, 
    const T& value)
  { 
    assertValid(arrayIndex); 
    copy_if_referenced(); 
    m_pData[arrayIndex] = value; 
    return *this; 
  }
 
  /** \details
    Returns the element of this Array object at the specified position.
    \param arrayIndex [in]  Array index. 
  */
  const T& getAt(
    size_type arrayIndex) const 
  { 
    assertValid(arrayIndex); 
    return *(data() + arrayIndex); 
  }
  
  /** \details
    Returns the first element of this Array object.
  */
  T& first() 
  { 
    return *begin(); 
  }
  const T& first() const 
  { 
    return *begin(); 
  }
  
  /** \details
    Returns the last element of this Array object.
  */
  T& last() 
  { 
    return at(length() - 1); 
  }
  const T& last() const 
  { 
    return at(length() - 1); 
  }
  
  size_type append(
    const T& value) 
  { 
    insertAt(length(), value); 
    return length() - 1; 
  }
  
  iterator append() 
  { 
    size_type i = append(T()); 
    return begin_non_const() + i;
  }
  
  /** \details
    Removes the first element in this Array object.
  */
  OdArray& removeFirst() 
  { 
    return removeAt(0); 
  }
  
  /** \details
    Removes the last element in this Array object.
  */
  OdArray& removeLast() 
  { 
    return removeAt(length() - 1); 
  }
  
  /** \details
    Sets the grow length of this Array object.
    \param growLength [in]  Grow length. 
  */
  OdArray& setGrowLength(
    int growLength)
  {
    if (growLength != 0)
    {
      copy_if_referenced();
      buffer()->m_nGrowBy = growLength;
    }
    else
    {
      ODA_FAIL();
    }
    return *this;
  }
 
  /** \param physicalLength [in]  Initial physical length.
    \param growLength [in]  Initial grow length.
  */
  explicit OdArray(
    size_type physicalLength, 
    int growLength = 8) : m_pData(0)
  {
    if (growLength == 0)
    {
      growLength = 8;
    }
    m_pData = Buffer::allocate(physicalLength, growLength)->data();
  }
  
  OdArray() : m_pData(Buffer::_default()->data()) 
  { 
    buffer()->addref(); 
  }
  
  OdArray(const OdArray& source) : m_pData((T*)source.data()) 
  { 
    buffer()->addref(); 
  }
  
  ~OdArray() 
  { 
    buffer()->release(); 
  }
  
  OdArray& operator =(
    const OdArray& source)
  {
    source.buffer()->addref();
    buffer()->release();
    m_pData = source.m_pData;
    return *this;
  }
  
  bool operator ==(
    const OdArray& array) const
  {
    if(length() == array.length())
    {
      for(size_type i = 0; i < length(); i++)
      {
        if(at(i) != array[i])
        {
          return false;
        }
      }
      return true;
    }
    return false;
  }
  
  /** \details
    Sets all the elements in this Array object to the specified value.
    \param value [in]  Value to assign.
  */
  OdArray& setAll(
    const T& value)
  {
    copy_if_referenced();
    T* pData = data();
    size_type n = length();
    while(n)
    {
      pData[--n] = value;
    }
    return *this;
  }
  /** \details
    Appends the specified value or Array object to the end of this Array object.
 
    \param otherArray [in]  Array to append.
    \param value [in]  Value to append.
    
    \remarks
    If called with otherArray, returns a reference to this Array object.
    
    If called with value, returns the index of the new last element.
    
    If called with no arguments, returns an interator (pointer) to the first element 
    after the last element in the array.
  */
  OdArray& append(
    const OdArray& otherArray)
  {
    insert(end_non_const(), otherArray.begin(), otherArray.end());
    return *this;
  }
  
  /** \details
    Inserts the specified value into this Array object at the specified index.
 
    \param arrayIndex [in]  Array index.
    \param value [in]  Value to insert.
    
    \remarks
                0 <= arrayIndex <= length()
    
    Elements starting at arrayIndex will have their indices incremented.
     
    Returns a reference to this Array object.
  */
  OdArray& insertAt(
    size_type arrayIndex, 
    const T& value)
  {
    size_type len = length();
    if( arrayIndex == len )
    {
      resize( len + 1, value );
    }
    else if ( arrayIndex < len )
    {
      reallocator r( m_pData > &value || &value > (m_pData + len) );
      r.reallocate( this, len+1 );
      A::construct( m_pData + len );
      ++(buffer()->m_nLength);
      A::move(m_pData + arrayIndex + 1, m_pData + arrayIndex, len - arrayIndex);
      m_pData[arrayIndex] = value;
    }
    else
    {
      rise_error(eInvalidIndex);
    }
    return *this;
  }
  
  /** \details
    Removes the element at the specified index from this Array object.
 
    \param arrayIndex [in]  Array index.
    
    \remarks
                0 <= arrayIndex < length()
    
    Elements starting at arrayIndex+1 will have their indices decremented.
     
    Returns a reference to this Array object.
  */
  OdArray& removeAt(
    size_type arrayIndex)
  {
    assertValid(arrayIndex);
    size_type len = length();
    if(arrayIndex < --len)
    {
      copy_if_referenced();
      T* pData = data();
      A::move(pData + arrayIndex, pData + arrayIndex + 1, len - arrayIndex);
    }
    resize(len);
    return *this;
  }
  
  /** \details
    Removes the specified elements from this Array object.
 
    \param startIndex [in]  Start index.
    \param endIndex [in]   End index.
    
    \remarks
    Elements from startIndex through endIndex inclusive will be removed.
    
    Returns a reference to this Array object.
  */
  OdArray& removeSubArray(
    size_type startIndex, 
    size_type endIndex)
  {
    if(!isValid(startIndex) || startIndex > endIndex)
    {
      rise_error(eInvalidIndex);
    }
    size_type len = length();
    copy_if_referenced();
    T* pData = data();
    ++endIndex;
    size_type n2remove = endIndex - startIndex;
    A::move(pData + startIndex, pData + endIndex, len - endIndex);
    A::destroy(pData + len - n2remove, n2remove);
    buffer()->m_nLength -= n2remove;
    return *this;
  }
  
  /** \details
    Returns true if and only if this Array object contains ths specified value.
    
    \param value [in]  Value for which to search.
    \param findIndex [out]  Receives the index of the found value.
    \param start [in]  Starting index of search.
    
    \remarks
    Returns the index at which the element was found.
  */
  bool find(
    const T& value, 
    size_type& findIndex, 
    size_type start=0) const
  {
    if(!empty())
    {
      assertValid(start);
      size_type len = length();
      const T* pData = data();
      for(size_type i = start; i<len; ++i)
      {
        if(pData[i] == value)
        {
          findIndex = i;
          return true;
        }
      }
    }
    return false;
  }
  
  /** \details
    Sets the logical length of this Array object.
    \param logLength [in]  Logical length.
    \remarks
    The physical length is increased as required. 
  */
  OdArray& setLogicalLength(
    size_type logLength)
  {
    resize(logLength);
    return *this;
  }
  
  /** \details
    Sets the physical length of this Array object.
    \param physLength [in]  Physical length.
    \remarks
    The logical length is decreased as required.
  */
  OdArray& setPhysicalLength(
    size_type physLength)
  {
    if(physLength==0)
    {
      *this = OdArray<T, A>();
    }
    else if(physLength != physicalLength())
    {
      copy_buffer(physLength, !referenced(), true);
    }
    return *this;
  }
  
  /** \details
    Reverses the order of the elements in this Array object.
  */
  OdArray& reverse()
  {
    if(!empty())
    {
      copy_if_referenced();
      T tmp;
      iterator iter1 = begin_non_const();
      iterator iter2 = end_non_const();
      --iter2;
      while(iter1 < iter2)
      {
        tmp = *iter1;
        *iter1 = *iter2;
        *iter2 = tmp;
        ++iter1;
        --iter2;
      }
    }
    return *this;
  }
    
  /** \details
    Swaps the specified elements in this Array object.
    \param firstIndex [in]  Index of first element.
    \param secondIndex [in]  Index of second element. 
  */
  OdArray& swap(
    size_type firstIndex, 
    size_type secondIndex)
  {
    if(!isValid(firstIndex) || !isValid(secondIndex))
    {
      rise_error(eInvalidIndex);
    }    
    if(firstIndex != secondIndex)
    {
      const T tmp = at(firstIndex);
      at(firstIndex) = at(secondIndex);
      at(secondIndex) = tmp;
    }
    return *this;
  }
  /** \details
    Removes the element with the specified value from this Array object.
    
    \param value [in]  Value for which to search.
    \param start [in]  Starting index of search.
    
    \remarks
    Removes the first occurance of value starting at start.
   
    Returns true if and only if an element was removed.
  */
  bool remove(
    const T& value, 
    size_type start = 0)
  {
    size_type i = 0;
    if(find(value, i, start))
    {
      removeAt(i);
      return true;
    }
    return false;
  }
private:
 
  T*    m_pData;
 
  bool isValid(size_type i) const 
  { 
    return (i < length());
  }
 
  T* data() 
  { 
    return (length() ? m_pData : 0); 
  }
 
  const T* data() const 
  { 
    return m_pData; 
  }
 
  Buffer* buffer() const
  {
    return (reinterpret_cast<Buffer*>(const_cast<OdArray*>(this)->m_pData) - 1);
  }
  bool referenced() const
  {
    return (buffer()->m_nRefCounter>1);
  }
};
 
#include "TD_PackPop.h"
 
#endif // ODARRAY_H_INCLUDED