forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathogr_feature.h
1997 lines (1662 loc) · 58.3 KB
/
ogr_feature.h
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
/******************************************************************************
* $Id$
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: Class for representing a whole feature, and layer schemas.
* Author: Frank Warmerdam, [email protected]
*
******************************************************************************
* Copyright (c) 1999, Les Technologies SoftMap Inc.
* Copyright (c) 2008-2013, Even Rouault <even dot rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#ifndef OGR_FEATURE_H_INCLUDED
#define OGR_FEATURE_H_INCLUDED
#include "cpl_atomic_ops.h"
#include "ogr_featurestyle.h"
#include "ogr_geometry.h"
#include "ogr_geomcoordinateprecision.h"
#include <cstddef>
#include <exception>
#include <memory>
#include <string>
#include <vector>
/**
* \file ogr_feature.h
*
* Simple feature classes.
*/
#ifndef DEFINE_OGRFeatureH
/*! @cond Doxygen_Suppress */
#define DEFINE_OGRFeatureH
/*! @endcond */
#ifdef DEBUG
typedef struct OGRFieldDefnHS *OGRFieldDefnH;
typedef struct OGRFeatureDefnHS *OGRFeatureDefnH;
typedef struct OGRFeatureHS *OGRFeatureH;
typedef struct OGRStyleTableHS *OGRStyleTableH;
#else
/** Opaque type for a field definition (OGRFieldDefn) */
typedef void *OGRFieldDefnH;
/** Opaque type for a feature definition (OGRFeatureDefn) */
typedef void *OGRFeatureDefnH;
/** Opaque type for a feature (OGRFeature) */
typedef void *OGRFeatureH;
/** Opaque type for a style table (OGRStyleTable) */
typedef void *OGRStyleTableH;
#endif
/** Opaque type for a geometry field definition (OGRGeomFieldDefn) */
typedef struct OGRGeomFieldDefnHS *OGRGeomFieldDefnH;
/** Opaque type for a field domain definition (OGRFieldDomain) */
typedef struct OGRFieldDomainHS *OGRFieldDomainH;
#endif /* DEFINE_OGRFeatureH */
class OGRStyleTable;
/************************************************************************/
/* OGRFieldDefn */
/************************************************************************/
/**
* Definition of an attribute of an OGRFeatureDefn. A field is described by :
* <ul>
* <li>a name. See SetName() / GetNameRef()</li>
* <li>an alternative name (optional): alternative descriptive name for the
* field (sometimes referred to as an "alias"). See SetAlternativeName() /
* GetAlternativeNameRef()</li> <li>a type: OFTString, OFTInteger, OFTReal, ...
* See SetType() / GetType()</li> <li>a subtype (optional): OFSTBoolean, ... See
* SetSubType() / GetSubType()</li> <li>a width (optional): maximal number of
* characters. See SetWidth() / GetWidth()</li> <li>a precision (optional):
* number of digits after decimal point. See SetPrecision() /
* GetPrecision()</li> <li>a NOT NULL constraint (optional). See SetNullable() /
* IsNullable()</li> <li>a UNIQUE constraint (optional). See SetUnique() /
* IsUnique()</li> <li>a default value (optional). See SetDefault() /
* GetDefault()</li> <li>a boolean to indicate whether it should be ignored when
* retrieving features. See SetIgnored() / IsIgnored()</li> <li>a field domain
* name (optional). See SetDomainName() / Get DomainName()</li>
* </ul>
*
* Note that once a OGRFieldDefn has been added to a layer definition with
* OGRLayer::AddFieldDefn(), its setter methods should not be called on the
* object returned with OGRLayer::GetLayerDefn()->GetFieldDefn(). Instead,
* OGRLayer::AlterFieldDefn() should be called on a new instance of
* OGRFieldDefn, for drivers that support AlterFieldDefn().
*/
class CPL_DLL OGRFieldDefn
{
private:
char *pszName;
char *pszAlternativeName;
OGRFieldType eType;
OGRJustification eJustify;
int nWidth; // Zero is variable.
int nPrecision;
char *pszDefault;
int bIgnore;
OGRFieldSubType eSubType;
int bNullable;
int bUnique;
std::string m_osDomainName{}; // field domain name. Might be empty
std::string m_osComment{}; // field comment. Might be empty
int m_nTZFlag = OGR_TZFLAG_UNKNOWN;
bool m_bSealed = false;
public:
OGRFieldDefn(const char *, OGRFieldType);
explicit OGRFieldDefn(const OGRFieldDefn *);
~OGRFieldDefn();
void SetName(const char *);
const char *GetNameRef() const
{
return pszName;
}
void SetAlternativeName(const char *);
const char *GetAlternativeNameRef() const
{
return pszAlternativeName;
}
OGRFieldType GetType() const
{
return eType;
}
void SetType(OGRFieldType eTypeIn);
static const char *GetFieldTypeName(OGRFieldType);
OGRFieldSubType GetSubType() const
{
return eSubType;
}
void SetSubType(OGRFieldSubType eSubTypeIn);
static const char *GetFieldSubTypeName(OGRFieldSubType);
OGRJustification GetJustify() const
{
return eJustify;
}
void SetJustify(OGRJustification eJustifyIn)
{
eJustify = eJustifyIn;
}
int GetWidth() const
{
return nWidth;
}
void SetWidth(int nWidthIn);
int GetPrecision() const
{
return nPrecision;
}
void SetPrecision(int nPrecisionIn);
int GetTZFlag() const
{
return m_nTZFlag;
}
void SetTZFlag(int nTZFlag);
void Set(const char *, OGRFieldType, int = 0, int = 0,
OGRJustification = OJUndefined);
void SetDefault(const char *);
const char *GetDefault() const;
int IsDefaultDriverSpecific() const;
int IsIgnored() const
{
return bIgnore;
}
void SetIgnored(int bIgnoreIn)
{
bIgnore = bIgnoreIn;
}
int IsNullable() const
{
return bNullable;
}
void SetNullable(int bNullableIn);
int IsUnique() const
{
return bUnique;
}
void SetUnique(int bUniqueIn);
const std::string &GetDomainName() const
{
return m_osDomainName;
}
void SetDomainName(const std::string &osDomainName);
const std::string &GetComment() const
{
return m_osComment;
}
void SetComment(const std::string &osComment);
int IsSame(const OGRFieldDefn *) const;
/** Convert a OGRFieldDefn* to a OGRFieldDefnH.
* @since GDAL 2.3
*/
static inline OGRFieldDefnH ToHandle(OGRFieldDefn *poFieldDefn)
{
return reinterpret_cast<OGRFieldDefnH>(poFieldDefn);
}
/** Convert a OGRFieldDefnH to a OGRFieldDefn*.
* @since GDAL 2.3
*/
static inline OGRFieldDefn *FromHandle(OGRFieldDefnH hFieldDefn)
{
return reinterpret_cast<OGRFieldDefn *>(hFieldDefn);
}
void Seal();
void Unseal();
/*! @cond Doxygen_Suppress */
struct CPL_DLL TemporaryUnsealer
{
private:
OGRFieldDefn *m_poFieldDefn = nullptr;
CPL_DISALLOW_COPY_ASSIGN(TemporaryUnsealer)
public:
explicit TemporaryUnsealer(OGRFieldDefn *poFieldDefn)
: m_poFieldDefn(poFieldDefn)
{
m_poFieldDefn->Unseal();
}
TemporaryUnsealer(TemporaryUnsealer &&) = default;
TemporaryUnsealer &operator=(TemporaryUnsealer &&) = default;
~TemporaryUnsealer()
{
m_poFieldDefn->Seal();
}
OGRFieldDefn *operator->()
{
return m_poFieldDefn;
}
};
/*! @endcond */
TemporaryUnsealer GetTemporaryUnsealer();
private:
CPL_DISALLOW_COPY_ASSIGN(OGRFieldDefn)
};
#ifdef GDAL_COMPILATION
/** Return an object that temporary unseals the OGRFieldDefn.
*
* The returned object calls Unseal() initially, and when it is destroyed
* it calls Seal().
*
* This method should only be called by driver implementations.
*
* Usage: whileUnsealing(poFieldDefn)->some_method();
*
* @since GDAL 3.9
*/
inline OGRFieldDefn::TemporaryUnsealer whileUnsealing(OGRFieldDefn *object)
{
return object->GetTemporaryUnsealer();
}
#endif
/************************************************************************/
/* OGRGeomFieldDefn */
/************************************************************************/
/**
* Definition of a geometry field of an OGRFeatureDefn. A geometry field is
* described by :
* <ul>
* <li>a name. See SetName() / GetNameRef()</li>
* <li>a type: wkbPoint, wkbLineString, ... See SetType() / GetType()</li>
* <li>a spatial reference system (optional). See SetSpatialRef() /
* GetSpatialRef()</li> <li>a NOT NULL constraint (optional). See SetNullable()
* / IsNullable()</li> <li>a boolean to indicate whether it should be ignored
* when retrieving features. See SetIgnored() / IsIgnored()</li>
* </ul>
*
* Note that once a OGRGeomFieldDefn has been added to a layer definition with
* OGRLayer::AddGeomFieldDefn(), its setter methods should not be called on the
* object returned with OGRLayer::GetLayerDefn()->GetGeomFieldDefn(). Instead,
* OGRLayer::AlterGeomFieldDefn() should be called on a new instance of
* OGRFieldDefn, for drivers that support AlterFieldDefn().
*
* @since OGR 1.11
*/
class CPL_DLL OGRGeomFieldDefn
{
protected:
//! @cond Doxygen_Suppress
char *pszName = nullptr;
OGRwkbGeometryType eGeomType =
wkbUnknown; /* all values possible except wkbNone */
mutable const OGRSpatialReference *poSRS = nullptr;
int bIgnore = false;
mutable int bNullable = true;
bool m_bSealed = false;
OGRGeomCoordinatePrecision m_oCoordPrecision{};
void Initialize(const char *, OGRwkbGeometryType);
//! @endcond
public:
OGRGeomFieldDefn(const char *pszNameIn, OGRwkbGeometryType eGeomTypeIn);
explicit OGRGeomFieldDefn(const OGRGeomFieldDefn *);
virtual ~OGRGeomFieldDefn();
void SetName(const char *);
const char *GetNameRef() const
{
return pszName;
}
OGRwkbGeometryType GetType() const
{
return eGeomType;
}
void SetType(OGRwkbGeometryType eTypeIn);
virtual const OGRSpatialReference *GetSpatialRef() const;
void SetSpatialRef(const OGRSpatialReference *poSRSIn);
int IsIgnored() const
{
return bIgnore;
}
void SetIgnored(int bIgnoreIn)
{
bIgnore = bIgnoreIn;
}
int IsNullable() const
{
return bNullable;
}
void SetNullable(int bNullableIn);
const OGRGeomCoordinatePrecision &GetCoordinatePrecision() const
{
return m_oCoordPrecision;
}
void SetCoordinatePrecision(const OGRGeomCoordinatePrecision &prec);
int IsSame(const OGRGeomFieldDefn *) const;
/** Convert a OGRGeomFieldDefn* to a OGRGeomFieldDefnH.
* @since GDAL 2.3
*/
static inline OGRGeomFieldDefnH ToHandle(OGRGeomFieldDefn *poGeomFieldDefn)
{
return reinterpret_cast<OGRGeomFieldDefnH>(poGeomFieldDefn);
}
/** Convert a OGRGeomFieldDefnH to a OGRGeomFieldDefn*.
* @since GDAL 2.3
*/
static inline OGRGeomFieldDefn *FromHandle(OGRGeomFieldDefnH hGeomFieldDefn)
{
return reinterpret_cast<OGRGeomFieldDefn *>(hGeomFieldDefn);
}
void Seal();
void Unseal();
/*! @cond Doxygen_Suppress */
struct CPL_DLL TemporaryUnsealer
{
private:
OGRGeomFieldDefn *m_poFieldDefn = nullptr;
CPL_DISALLOW_COPY_ASSIGN(TemporaryUnsealer)
public:
explicit TemporaryUnsealer(OGRGeomFieldDefn *poFieldDefn)
: m_poFieldDefn(poFieldDefn)
{
m_poFieldDefn->Unseal();
}
TemporaryUnsealer(TemporaryUnsealer &&) = default;
TemporaryUnsealer &operator=(TemporaryUnsealer &&) = default;
~TemporaryUnsealer()
{
m_poFieldDefn->Seal();
}
OGRGeomFieldDefn *operator->()
{
return m_poFieldDefn;
}
};
/*! @endcond */
TemporaryUnsealer GetTemporaryUnsealer();
private:
CPL_DISALLOW_COPY_ASSIGN(OGRGeomFieldDefn)
};
#ifdef GDAL_COMPILATION
/** Return an object that temporary unseals the OGRGeomFieldDefn.
*
* The returned object calls Unseal() initially, and when it is destroyed
* it calls Seal().
*
* This method should only be called by driver implementations.
*
* Usage: whileUnsealing(poGeomFieldDefn)->some_method();
*
* @since GDAL 3.9
*/
inline OGRGeomFieldDefn::TemporaryUnsealer
whileUnsealing(OGRGeomFieldDefn *object)
{
return object->GetTemporaryUnsealer();
}
#endif
/************************************************************************/
/* OGRFeatureDefn */
/************************************************************************/
/**
* Definition of a feature class or feature layer.
*
* This object contains schema information for a set of OGRFeatures. In
* table based systems, an OGRFeatureDefn is essentially a layer. In more
* object oriented approaches (such as SF CORBA) this can represent a class
* of features but doesn't necessarily relate to all of a layer, or just one
* layer.
*
* This object also can contain some other information such as a name and
* potentially other metadata.
*
* It is essentially a collection of field descriptions (OGRFieldDefn class).
* Starting with GDAL 1.11, in addition to attribute fields, it can also
* contain multiple geometry fields (OGRGeomFieldDefn class).
*
* It is reasonable for different translators to derive classes from
* OGRFeatureDefn with additional translator specific information.
*
* Note that adding, modifying, removing, reordering a OGRFieldDefn (or a
* OGRGeomFieldDefn) from/to a OGRFeatureDefn that belongs to a OGRLayer should
* not be done through the OGRFeatureDefn::AddFieldDefn(),
* OGRFeatureDefn::DeleteFieldDefn() or OGRFeatureDefn::ReorderFieldDefns()
* methods, but rather through OGRLayer::CreateField(),
* OGRLayer::AlterFieldDefn() or OGRLayer::ReorderFields(), for drivers that
* support those operations.
*/
class CPL_DLL OGRFeatureDefn
{
protected:
//! @cond Doxygen_Suppress
volatile int nRefCount = 0;
mutable std::vector<std::unique_ptr<OGRFieldDefn>> apoFieldDefn{};
mutable std::vector<std::unique_ptr<OGRGeomFieldDefn>> apoGeomFieldDefn{};
char *pszFeatureClassName = nullptr;
bool bIgnoreStyle = false;
friend class TemporaryUnsealer;
bool m_bSealed = false;
int m_nTemporaryUnsealCount = 0;
//! @endcond
public:
explicit OGRFeatureDefn(const char *pszName = nullptr);
virtual ~OGRFeatureDefn();
void SetName(const char *pszName);
virtual const char *GetName() const;
virtual int GetFieldCount() const;
virtual OGRFieldDefn *GetFieldDefn(int i);
virtual const OGRFieldDefn *GetFieldDefn(int i) const;
virtual int GetFieldIndex(const char *) const;
int GetFieldIndexCaseSensitive(const char *) const;
//! @cond Doxygen_Suppress
/** Helper class to iterate over non-geometry fields.
*
* Note: fields should not be added or removed while iterating over them.
*/
struct CPL_DLL Fields
{
private:
OGRFeatureDefn *m_poFDefn;
public:
inline explicit Fields(OGRFeatureDefn *poFDefn) : m_poFDefn(poFDefn)
{
}
struct CPL_DLL ConstIterator
{
private:
OGRFeatureDefn *m_poFDefn;
int m_nIdx;
public:
inline ConstIterator(OGRFeatureDefn *poFDefn, int nIdx)
: m_poFDefn(poFDefn), m_nIdx(nIdx)
{
}
inline const OGRFieldDefn *operator*() const
{
return m_poFDefn->GetFieldDefn(m_nIdx);
}
inline ConstIterator &operator++()
{
m_nIdx++;
return *this;
}
inline bool operator!=(const ConstIterator &it) const
{
return m_nIdx != it.m_nIdx;
}
};
inline ConstIterator begin()
{
return ConstIterator(m_poFDefn, 0);
}
inline ConstIterator end()
{
return ConstIterator(m_poFDefn, m_poFDefn->GetFieldCount());
}
inline size_t size() const
{
return static_cast<std::size_t>(m_poFDefn->GetFieldCount());
}
inline OGRFieldDefn *operator[](size_t i)
{
return m_poFDefn->GetFieldDefn(static_cast<int>(i));
}
inline const OGRFieldDefn *operator[](size_t i) const
{
return m_poFDefn->GetFieldDefn(static_cast<int>(i));
}
};
//! @endcond
/** Return an object that can be used to iterate over non-geometry fields.
\verbatim
for( const auto* poFieldDefn: poFeatureDefn->GetFields() )
{
// do something
}
\endverbatim
@since GDAL 3.7
*/
inline Fields GetFields()
{
return Fields(this);
}
//! @cond Doxygen_Suppress
// That method should only be called if there's a guarantee that
// GetFieldCount() has been called before
int GetFieldCountUnsafe() const
{
return static_cast<int>(apoFieldDefn.size());
}
// Those methods don't check i is n range.
OGRFieldDefn *GetFieldDefnUnsafe(int i)
{
if (apoFieldDefn.empty())
GetFieldDefn(i);
return apoFieldDefn[static_cast<std::size_t>(i)].get();
}
const OGRFieldDefn *GetFieldDefnUnsafe(int i) const
{
if (apoFieldDefn.empty())
GetFieldDefn(i);
return apoFieldDefn[static_cast<std::size_t>(i)].get();
}
//! @endcond
virtual void AddFieldDefn(const OGRFieldDefn *);
virtual OGRErr DeleteFieldDefn(int iField);
virtual OGRErr ReorderFieldDefns(const int *panMap);
virtual int GetGeomFieldCount() const;
virtual OGRGeomFieldDefn *GetGeomFieldDefn(int i);
virtual const OGRGeomFieldDefn *GetGeomFieldDefn(int i) const;
virtual int GetGeomFieldIndex(const char *) const;
//! @cond Doxygen_Suppress
/** Helper class to iterate over geometry fields.
*
* Note: fields should not be added or removed while iterating over them.
*/
struct CPL_DLL GeomFields
{
private:
OGRFeatureDefn *m_poFDefn;
public:
inline explicit GeomFields(OGRFeatureDefn *poFDefn) : m_poFDefn(poFDefn)
{
}
struct CPL_DLL ConstIterator
{
private:
OGRFeatureDefn *m_poFDefn;
int m_nIdx;
public:
inline ConstIterator(OGRFeatureDefn *poFDefn, int nIdx)
: m_poFDefn(poFDefn), m_nIdx(nIdx)
{
}
inline const OGRGeomFieldDefn *operator*() const
{
return m_poFDefn->GetGeomFieldDefn(m_nIdx);
}
inline ConstIterator &operator++()
{
m_nIdx++;
return *this;
}
inline bool operator!=(const ConstIterator &it) const
{
return m_nIdx != it.m_nIdx;
}
};
inline ConstIterator begin()
{
return ConstIterator(m_poFDefn, 0);
}
inline ConstIterator end()
{
return ConstIterator(m_poFDefn, m_poFDefn->GetGeomFieldCount());
}
inline size_t size() const
{
return static_cast<std::size_t>(m_poFDefn->GetGeomFieldCount());
}
inline OGRGeomFieldDefn *operator[](size_t i)
{
return m_poFDefn->GetGeomFieldDefn(static_cast<int>(i));
}
inline const OGRGeomFieldDefn *operator[](size_t i) const
{
return m_poFDefn->GetGeomFieldDefn(static_cast<int>(i));
}
};
//! @endcond
/** Return an object that can be used to iterate over geometry fields.
\verbatim
for( const auto* poGeomFieldDefn: poFeatureDefn->GetGeomFields() )
{
// do something
}
\endverbatim
@since GDAL 3.7
*/
inline GeomFields GetGeomFields()
{
return GeomFields(this);
}
virtual void AddGeomFieldDefn(const OGRGeomFieldDefn *);
virtual void AddGeomFieldDefn(std::unique_ptr<OGRGeomFieldDefn> &&);
virtual OGRErr DeleteGeomFieldDefn(int iGeomField);
virtual OGRwkbGeometryType GetGeomType() const;
virtual void SetGeomType(OGRwkbGeometryType);
virtual OGRFeatureDefn *Clone() const;
int Reference()
{
return CPLAtomicInc(&nRefCount);
}
int Dereference()
{
return CPLAtomicDec(&nRefCount);
}
int GetReferenceCount() const
{
return nRefCount;
}
void Release();
virtual int IsGeometryIgnored() const;
virtual void SetGeometryIgnored(int bIgnore);
virtual bool IsStyleIgnored() const
{
return bIgnoreStyle;
}
virtual void SetStyleIgnored(bool bIgnore)
{
bIgnoreStyle = bIgnore;
}
virtual int IsSame(const OGRFeatureDefn *poOtherFeatureDefn) const;
//! @cond Doxygen_Suppress
void ReserveSpaceForFields(int nFieldCountIn);
//! @endcond
std::vector<int> ComputeMapForSetFrom(const OGRFeatureDefn *poSrcFDefn,
bool bForgiving = true) const;
static OGRFeatureDefn *CreateFeatureDefn(const char *pszName = nullptr);
static void DestroyFeatureDefn(OGRFeatureDefn *);
/** Convert a OGRFeatureDefn* to a OGRFeatureDefnH.
* @since GDAL 2.3
*/
static inline OGRFeatureDefnH ToHandle(OGRFeatureDefn *poFeatureDefn)
{
return reinterpret_cast<OGRFeatureDefnH>(poFeatureDefn);
}
/** Convert a OGRFeatureDefnH to a OGRFeatureDefn*.
* @since GDAL 2.3
*/
static inline OGRFeatureDefn *FromHandle(OGRFeatureDefnH hFeatureDefn)
{
return reinterpret_cast<OGRFeatureDefn *>(hFeatureDefn);
}
void Seal(bool bSealFields);
void Unseal(bool bUnsealFields);
/*! @cond Doxygen_Suppress */
struct CPL_DLL TemporaryUnsealer
{
private:
OGRFeatureDefn *m_poFeatureDefn = nullptr;
bool m_bSealFields = false;
CPL_DISALLOW_COPY_ASSIGN(TemporaryUnsealer)
public:
explicit TemporaryUnsealer(OGRFeatureDefn *poFeatureDefn,
bool bSealFields);
TemporaryUnsealer(TemporaryUnsealer &&) = default;
TemporaryUnsealer &operator=(TemporaryUnsealer &&) = default;
~TemporaryUnsealer();
OGRFeatureDefn *operator->()
{
return m_poFeatureDefn;
}
};
/*! @endcond */
TemporaryUnsealer GetTemporaryUnsealer(bool bSealFields = true);
private:
CPL_DISALLOW_COPY_ASSIGN(OGRFeatureDefn)
};
#ifdef GDAL_COMPILATION
/** Return an object that temporary unseals the OGRFeatureDefn
*
* The returned object calls Unseal() initially, and when it is destroyed
* it calls Seal().
* This method should be called on a OGRFeatureDefn that has been sealed
* previously.
* GetTemporaryUnsealer() calls may be nested, in which case only the first
* one has an effect (similarly to a recursive mutex locked in a nested way
* from the same thread).
*
* This method should only be called by driver implementations.
*
* Usage: whileUnsealing(poFeatureDefn)->some_method();
*
* @param bSealFields Whether fields and geometry fields should be unsealed and
* resealed.
* This is generally desirabled, but in case of deferred
* resolution of them, this parameter should be set to false.
* @since GDAL 3.9
*/
inline OGRFeatureDefn::TemporaryUnsealer whileUnsealing(OGRFeatureDefn *object,
bool bSealFields = true)
{
return object->GetTemporaryUnsealer(bSealFields);
}
#endif
/************************************************************************/
/* OGRFeature */
/************************************************************************/
/**
* A simple feature, including geometry and attributes.
*/
class CPL_DLL OGRFeature
{
private:
GIntBig nFID;
OGRFeatureDefn *poDefn;
OGRGeometry **papoGeometries;
OGRField *pauFields;
char *m_pszNativeData;
char *m_pszNativeMediaType;
bool SetFieldInternal(int i, const OGRField *puValue);
protected:
//! @cond Doxygen_Suppress
mutable char *m_pszStyleString;
mutable OGRStyleTable *m_poStyleTable;
mutable char *m_pszTmpFieldValue;
//! @endcond
bool CopySelfTo(OGRFeature *poNew) const;
public:
explicit OGRFeature(OGRFeatureDefn *);
virtual ~OGRFeature();
/** Field value. */
class CPL_DLL FieldValue
{
friend class OGRFeature;
struct Private;
std::unique_ptr<Private> m_poPrivate;
FieldValue(OGRFeature *poFeature, int iFieldIndex);
FieldValue(const OGRFeature *poFeature, int iFieldIndex);
FieldValue(const FieldValue &oOther) = delete;
FieldValue &Assign(const FieldValue &oOther);
public:
//! @cond Doxygen_Suppress
~FieldValue();
FieldValue &operator=(FieldValue &&oOther);
//! @endcond
/** Set a field value from another one. */
FieldValue &operator=(const FieldValue &oOther);
/** Set an integer value to the field. */
FieldValue &operator=(int nVal);
/** Set an integer value to the field. */
FieldValue &operator=(GIntBig nVal);
/** Set a real value to the field. */
FieldValue &operator=(double dfVal);
/** Set a string value to the field. */
FieldValue &operator=(const char *pszVal);
/** Set a string value to the field. */
FieldValue &operator=(const std::string &osVal);
/** Set an array of integer to the field. */
FieldValue &operator=(const std::vector<int> &oArray);
/** Set an array of big integer to the field. */
FieldValue &operator=(const std::vector<GIntBig> &oArray);
/** Set an array of double to the field. */
FieldValue &operator=(const std::vector<double> &oArray);
/** Set an array of strings to the field. */
FieldValue &operator=(const std::vector<std::string> &oArray);
/** Set an array of strings to the field. */
FieldValue &operator=(CSLConstList papszValues);
/** Set a null value to the field. */
void SetNull();
/** Unset the field. */
void clear();
/** Unset the field. */
void Unset()
{
clear();
}
/** Set date time value/ */
void SetDateTime(int nYear, int nMonth, int nDay, int nHour = 0,
int nMinute = 0, float fSecond = 0.f, int nTZFlag = 0);
/** Return field index. */
int GetIndex() const;
/** Return field definition. */
const OGRFieldDefn *GetDefn() const;
/** Return field name. */
const char *GetName() const
{
return GetDefn()->GetNameRef();
}
/** Return field type. */
OGRFieldType GetType() const
{
return GetDefn()->GetType();
}
/** Return field subtype. */
OGRFieldSubType GetSubType() const
{
return GetDefn()->GetSubType();
}
/** Return whether the field value is unset/empty. */
// cppcheck-suppress functionStatic
bool empty() const
{
return IsUnset();