13#ifndef OGRLAYERPOOL_H_INCLUDED
14#define OGRLAYERPOOL_H_INCLUDED
22typedef OGRLayer *(*OpenLayerFunc)(
void *user_data);
23typedef void (*ReleaseLayerFunc)(
OGRLayer *,
void *user_data);
24typedef void (*FreeUserDataFunc)(
void *user_data);
32class CPL_DLL OGRAbstractProxiedLayer :
public OGRLayer
36 friend class OGRLayerPool;
38 OGRAbstractProxiedLayer
40 OGRAbstractProxiedLayer
46 virtual void CloseUnderlyingLayer() = 0;
49 explicit OGRAbstractProxiedLayer(OGRLayerPool *poPool);
50 ~OGRAbstractProxiedLayer()
override;
57class CPL_DLL OGRLayerPool
62 OGRAbstractProxiedLayer *poMRULayer;
63 OGRAbstractProxiedLayer
66 int nMaxSimultaneouslyOpened;
69 explicit OGRLayerPool(
int nMaxSimultaneouslyOpened = 100);
72 void SetLastUsedLayer(OGRAbstractProxiedLayer *poProxiedLayer);
73 void UnchainLayer(OGRAbstractProxiedLayer *poProxiedLayer);
75 int GetMaxSimultaneouslyOpened()
const
77 return nMaxSimultaneouslyOpened;
90class CPL_DLL OGRProxiedLayer :
public OGRAbstractProxiedLayer
94 OpenLayerFunc pfnOpenLayer;
95 ReleaseLayerFunc pfnReleaseLayer;
96 FreeUserDataFunc pfnFreeUserData;
98 mutable OGRLayer *poUnderlyingLayer;
99 mutable OGRFeatureDefn *poFeatureDefn;
100 mutable OGRSpatialReference *poSRS;
101 mutable std::recursive_mutex m_oMutex{};
103 int OpenUnderlyingLayer()
const;
106 void CloseUnderlyingLayer()
override;
109 OGRProxiedLayer(OGRLayerPool *poPool, OpenLayerFunc pfnOpenLayer,
110 FreeUserDataFunc pfnFreeUserData,
void *pUserData);
111 OGRProxiedLayer(OGRLayerPool *poPool, OpenLayerFunc pfnOpenLayer,
112 ReleaseLayerFunc pfnReleaseLayer,
113 FreeUserDataFunc pfnFreeUserData,
void *pUserData);
114 ~OGRProxiedLayer()
override;
116 OGRLayer *GetUnderlyingLayer();
120 const OGRGeometry *)
override;
132 const int *panUpdatedFieldsIdx,
133 int nUpdatedGeomFieldsCount,
134 const int *panUpdatedGeomFieldsIdx,
135 bool bUpdateStyleString)
override;
142 const char *
GetName()
const override;
150 bool bForce)
override;
155 int bApproxOK = TRUE)
override;
159 int nFlags)
override;
162 const OGRGeomFieldDefn *poNewGeomFieldDefn,
163 int nFlags)
override;
This class represents a layer of simple features, with access methods.
Definition ogrsf_frmts.h:61
virtual OGRErr ISetSpatialFilter(int iGeomField, const OGRGeometry *)
Set a new spatial filter.
Definition ogrlayer.cpp:3398
virtual OGRErr DeleteFeature(GIntBig nFID)
Delete feature from layer.
Definition ogrlayer.cpp:4338
virtual void SetStyleTableDirectly(OGRStyleTable *poStyleTable)
Set layer style table.
Definition ogrlayer.cpp:4536
virtual OGRErr StartTransaction()
For datasources which support transactions, StartTransaction creates a transaction.
Definition ogrlayer.cpp:2600
virtual GIntBig GetFeatureCount(int bForce=TRUE)
Fetch the feature count in this layer.
Definition ogrlayer.cpp:205
virtual void SetStyleTable(OGRStyleTable *poStyleTable)
Set layer style table.
Definition ogrlayer.cpp:4558
virtual OGRErr IUpdateFeature(OGRFeature *poFeature, int nUpdatedFieldsCount, const int *panUpdatedFieldsIdx, int nUpdatedGeomFieldsCount, const int *panUpdatedGeomFieldsIdx, bool bUpdateStyleString)
Update (part of) an existing feature.
Definition ogrlayer.cpp:1748
virtual OGRErr IUpsertFeature(OGRFeature *poFeature)
Rewrite/replace an existing feature or create a new feature within a layer.
Definition ogrlayer.cpp:1562
virtual bool GetArrowStream(struct ArrowArrayStream *out_stream, CSLConstList papszOptions=nullptr)
Get a Arrow C stream.
Definition ogrlayerarrow.cpp:2584
virtual OGRErr ICreateFeature(OGRFeature *poFeature)
Create and write a new feature within a layer.
Definition ogrlayer.cpp:1462
virtual OGRErr AlterGeomFieldDefn(int iGeomField, const OGRGeomFieldDefn *poNewGeomFieldDefn, int nFlagsIn)
Alter the definition of an existing geometry field on a layer.
Definition ogrlayer.cpp:2415
virtual GDALDataset * GetDataset()
Return the dataset associated with this layer.
Definition ogrlayer.cpp:8353
virtual OGRErr ISetFeature(OGRFeature *poFeature)
Rewrite/replace an existing feature.
Definition ogrlayer.cpp:1343
virtual const char * GetName() const
Return the layer name.
Definition ogrlayer.cpp:4625
virtual OGRErr CreateField(const OGRFieldDefn *poField, int bApproxOK=TRUE)
Create a new field on a layer.
Definition ogrlayer.cpp:1898
virtual const char * GetGeometryColumn() const
This method returns the name of the underlying database column being used as the geometry column,...
Definition ogrlayer.cpp:4463
virtual OGRErr CommitTransaction()
For datasources which support transactions, CommitTransaction commits a transaction.
Definition ogrlayer.cpp:2659
virtual OGRErr IGetExtent(int iGeomField, OGREnvelope *psExtent, bool bForce)
Fetch the extent of this layer, on the specified geometry field.
Definition ogrlayer.cpp:377
virtual const OGRSpatialReference * GetSpatialRef() const
Fetch the spatial reference system for this layer.
Definition ogrlayer.cpp:2922
virtual void ResetReading()=0
Reset feature reading to start on the first feature.
virtual OGRErr DeleteField(int iField)
Delete an existing field on a layer.
Definition ogrlayer.cpp:1989
virtual const OGRFeatureDefn * GetLayerDefn() const =0
Fetch the schema information for this layer.
virtual OGRErr SetIgnoredFields(CSLConstList papszFields)
Set which fields can be omitted when retrieving features from the layer.
Definition ogrlayer.cpp:4764
virtual OGRErr RollbackTransaction()
For datasources which support transactions, RollbackTransaction will roll back a datasource to its st...
Definition ogrlayer.cpp:2734
virtual OGRwkbGeometryType GetGeomType() const
Return the layer geometry type.
Definition ogrlayer.cpp:4688
virtual const char * GetFIDColumn() const
This method returns the name of the underlying database column being used as the FID column,...
Definition ogrlayer.cpp:4415
virtual OGRErr SetNextByIndex(GIntBig nIndex)
Move read cursor to the nIndex'th feature in the current resultset.
Definition ogrlayer.cpp:1033
virtual OGRStyleTable * GetStyleTable()
Returns layer style table.
Definition ogrlayer.cpp:4516
virtual OGRErr SetAttributeFilter(const char *)
Set a new attribute query.
Definition ogrlayer.cpp:751
virtual int TestCapability(const char *) const =0
Test if this layer supported the named capability.
virtual OGRFeature * GetFeature(GIntBig nFID)
Fetch a feature by its identifier.
Definition ogrlayer.cpp:918
virtual OGRGeometry * GetSpatialFilter()
This method returns the current spatial filter for this layer.
Definition ogrlayer.cpp:3200
virtual OGRErr Rename(const char *pszNewName)
Rename layer.
Definition ogrlayer.cpp:4870
virtual OGRFeature * GetNextFeature()=0
Fetch the next available feature from this layer.
virtual OGRErr SyncToDisk()
Flush pending changes to disk.
Definition ogrlayer.cpp:4271
virtual OGRErr ReorderFields(int *panMap)
Reorder all the fields of a layer.
Definition ogrlayer.cpp:2079
virtual OGRErr AlterFieldDefn(int iField, OGRFieldDefn *poNewFieldDefn, int nFlagsIn)
Alter the definition of an existing field on a layer.
Definition ogrlayer.cpp:2312
#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:936
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition cpl_port.h:1087
long long GIntBig
Large signed integer type (generally 64-bit integer type).
Definition cpl_port.h:205
OGRwkbGeometryType
List of well known binary geometry types.
Definition ogr_core.h:405
int OGRErr
Type for a OGR error.
Definition ogr_core.h:370
Classes related to registration of format support, and opening datasets.