GDAL
ogreditablelayer.h
1/******************************************************************************
2 * $Id$
3 *
4 * Project: OpenGIS Simple Features Reference Implementation
5 * Purpose: Defines OGREditableLayer class
6 * Author: Even Rouault <even.rouault at spatialys.com>
7 *
8 ******************************************************************************
9 * Copyright (c) 2015, Even Rouault <even.rouault at spatialys.com>
10 *
11 * Permission is hereby granted, free of charge, to any person obtaining a
12 * copy of this software and associated documentation files (the "Software"),
13 * to deal in the Software without restriction, including without limitation
14 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
15 * and/or sell copies of the Software, and to permit persons to whom the
16 * Software is furnished to do so, subject to the following conditions:
17 *
18 * The above copyright notice and this permission notice shall be included
19 * in all copies or substantial portions of the Software.
20 *
21 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
22 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
24 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
26 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27 * DEALINGS IN THE SOFTWARE.
28 ****************************************************************************/
29
30#ifndef OGREDITABLELAYER_H_INCLUDED
31#define OGREDITABLELAYER_H_INCLUDED
32
34#include "ogrlayerdecorator.h"
35#include <set>
36#include <map>
37
38class CPL_DLL IOGREditableLayerSynchronizer
39{
40 public:
41 virtual ~IOGREditableLayerSynchronizer();
42
43 virtual OGRErr EditableSyncToDisk(OGRLayer *poEditableLayer,
44 OGRLayer **ppoDecoratedLayer) = 0;
45};
46
47class CPL_DLL OGREditableLayer : public OGRLayerDecorator
48{
49 CPL_DISALLOW_COPY_ASSIGN(OGREditableLayer)
50
51 protected:
52 IOGREditableLayerSynchronizer *m_poSynchronizer;
53 bool m_bTakeOwnershipSynchronizer;
54 OGRFeatureDefn *m_poEditableFeatureDefn;
55 GIntBig m_nNextFID;
56 std::set<GIntBig> m_oSetCreated{};
57 std::set<GIntBig> m_oSetEdited{};
58 std::set<GIntBig> m_oSetDeleted{};
59 std::set<GIntBig>::iterator m_oIter{};
60 std::set<CPLString> m_oSetDeletedFields{};
61 OGRLayer *m_poMemLayer;
62 bool m_bStructureModified;
63 bool m_bSupportsCreateGeomField;
64 bool m_bSupportsCurveGeometries;
65 std::map<CPLString, int> m_oMapEditableFDefnFieldNameToIdx{};
66
67 OGRFeature *Translate(OGRFeatureDefn *poTargetDefn,
68 OGRFeature *poSrcFeature, bool bCanStealSrcFeature,
69 bool bHideDeletedFields);
70 void DetectNextFID();
71 int GetSrcGeomFieldIndex(int iGeomField);
72
73 public:
74 OGREditableLayer(OGRLayer *poDecoratedLayer,
75 bool bTakeOwnershipDecoratedLayer,
76 IOGREditableLayerSynchronizer *poSynchronizer,
77 bool bTakeOwnershipSynchronizer);
78 virtual ~OGREditableLayer();
79
80 void SetNextFID(GIntBig nNextFID);
81 void SetSupportsCreateGeomField(bool SupportsCreateGeomField);
82 void SetSupportsCurveGeometries(bool bSupportsCurveGeometries);
83
84 virtual OGRGeometry *GetSpatialFilter() override;
85 virtual void SetSpatialFilter(OGRGeometry *) override;
86 virtual void SetSpatialFilterRect(double dfMinX, double dfMinY,
87 double dfMaxX, double dfMaxY) override;
88 virtual void SetSpatialFilter(int iGeomField, OGRGeometry *) override;
89 virtual void SetSpatialFilterRect(int iGeomField, double dfMinX,
90 double dfMinY, double dfMaxX,
91 double dfMaxY) override;
92
93 virtual OGRErr SetAttributeFilter(const char *) override;
94
95 virtual void ResetReading() override;
96 virtual OGRFeature *GetNextFeature() override;
97 virtual OGRErr SetNextByIndex(GIntBig nIndex) override;
98 virtual OGRFeature *GetFeature(GIntBig nFID) override;
99 virtual OGRErr ISetFeature(OGRFeature *poFeature) override;
100 virtual OGRErr ICreateFeature(OGRFeature *poFeature) override;
101 virtual OGRErr IUpsertFeature(OGRFeature *poFeature) override;
102 virtual OGRErr DeleteFeature(GIntBig nFID) override;
103
104 virtual OGRwkbGeometryType GetGeomType() override;
105 virtual OGRFeatureDefn *GetLayerDefn() override;
106
107 virtual OGRSpatialReference *GetSpatialRef() override;
108
109 virtual GIntBig GetFeatureCount(int bForce = TRUE) override;
110 virtual OGRErr GetExtent(int iGeomField, OGREnvelope *psExtent,
111 int bForce = TRUE) override;
112 virtual OGRErr GetExtent(OGREnvelope *psExtent, int bForce = TRUE) override;
113
114 virtual int TestCapability(const char *) override;
115
116 virtual OGRErr CreateField(OGRFieldDefn *poField,
117 int bApproxOK = TRUE) override;
118 virtual OGRErr DeleteField(int iField) override;
119 virtual OGRErr ReorderFields(int *panMap) override;
120 virtual OGRErr AlterFieldDefn(int iField, OGRFieldDefn *poNewFieldDefn,
121 int nFlags) override;
122 virtual OGRErr
123 AlterGeomFieldDefn(int iGeomField,
124 const OGRGeomFieldDefn *poNewGeomFieldDefn,
125 int nFlags) override;
126
127 virtual OGRErr CreateGeomField(OGRGeomFieldDefn *poField,
128 int bApproxOK = TRUE) override;
129
130 virtual OGRErr SyncToDisk() override;
131
132 virtual OGRErr StartTransaction() override;
133 virtual OGRErr CommitTransaction() override;
134 virtual OGRErr RollbackTransaction() override;
135
136 virtual const char *GetGeometryColumn() override;
137};
139
140#endif // OGREDITABLELAYER_H_INCLUDED
Simple container for a bounding region (rectangle)
Definition ogr_core.h:58
Definition of a feature class or feature layer.
Definition ogr_feature.h:364
A simple feature, including geometry and attributes.
Definition ogr_feature.h:497
Definition of an attribute of an OGRFeatureDefn.
Definition ogr_feature.h:104
Definition of a geometry field of an OGRFeatureDefn.
Definition ogr_feature.h:265
Abstract base class for all geometry classes.
Definition ogr_geometry.h:335
This class represents a layer of simple features, with access methods.
Definition ogrsf_frmts.h:73
This class represents an OpenGIS Spatial Reference System, and contains methods for converting betwee...
Definition ogr_spatialref.h:167
#define CPL_DISALLOW_COPY_ASSIGN(ClassName)
Helper to remove the copy and assignment constructors so that the compiler will not generate the defa...
Definition cpl_port.h:1049
long long GIntBig
Large signed integer type (generally 64-bit integer type).
Definition cpl_port.h:233
OGRwkbGeometryType
List of well known binary geometry types.
Definition ogr_core.h:407
int OGRErr
Type for a OGR error.
Definition ogr_core.h:378