26#ifndef __TERRALIB_STMEMORY_INTERNAL_TRANSACTOR_H
27#define __TERRALIB_STMEMORY_INTERNAL_TRANSACTOR_H
30#include "../dataaccess/datasource/DataSourceTransactor.h"
33namespace te {
namespace dt {
class DateTimePeriod; } }
78 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
80 bool connected =
false,
83 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
84 const std::string& propertyName,
88 bool connected =
false,
91 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
92 const std::string& propertyName,
96 bool connected =
false,
101 bool connected =
false,
104 std::unique_ptr<te::da::DataSet>
query(
const std::string& query,
106 bool connected =
false,
113 std::unique_ptr<te::da::PreparedQuery>
getPrepared(
const std::string& qName = std::string(
""));
121 std::string
escape(
const std::string& value);
133 boost::ptr_vector<te::dt::Property>
getProperties(
const std::string& datasetName);
135 std::unique_ptr<te::dt::Property>
getProperty(
const std::string& datasetName,
const std::string& name);
137 std::unique_ptr<te::dt::Property>
getProperty(
const std::string& datasetName, std::size_t propertyPos);
147 void dropProperty(
const std::string& datasetName,
const std::string& name);
150 const std::string& propertyName,
151 const std::string& newPropertyName);
153 std::unique_ptr<te::da::PrimaryKey>
getPrimaryKey(
const std::string& datasetName);
161 std::unique_ptr<te::da::ForeignKey>
getForeignKey(
const std::string& datasetName,
const std::string& name);
171 std::unique_ptr<te::da::UniqueKey>
getUniqueKey(
const std::string& datasetName,
const std::string& name);
179 void dropUniqueKey(
const std::string& datasetName,
const std::string& name);
181 std::unique_ptr<te::da::CheckConstraint>
getCheckConstraint(
const std::string& datasetName,
const std::string& name);
191 std::unique_ptr<te::da::Index>
getIndex(
const std::string& datasetName,
const std::string& name);
195 bool indexExists(
const std::string& datasetName,
const std::string& name);
198 const std::map<std::string, std::string>& options);
200 void dropIndex(
const std::string& datasetName,
const std::string& idxName);
202 std::unique_ptr<te::da::Sequence>
getSequence(
const std::string& name);
212 std::unique_ptr<te::gm::Envelope>
getExtent(
const std::string& datasetName,
213 const std::string& propertyName);
215 std::unique_ptr<te::gm::Envelope>
getExtent(
const std::string& datasetName,
216 std::size_t propertyPos);
227 const std::string& cloneName,
228 const std::map<std::string, std::string>& options);
234 void add(
const std::string& datasetName,
236 const std::map<std::string, std::string>& options,
237 std::size_t limit = 0,
238 bool enableProgress =
true);
242 void update(
const std::string& datasetName,
244 const std::vector<std::size_t>& properties,
246 const std::map<std::string, std::string>& options,
247 std::size_t limit = 0);
249 void optimize(
const std::map<std::string, std::string>& opInfo);
288 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
291 bool connected =
false,
317 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
321 bool connected =
false,
347 std::unique_ptr<te::da::DataSet>
getDataSet(
const std::string& name,
351 bool connected =
false,
A class that describes a check constraint.
A class that models the description of a dataset.
A dataset is the unit of information manipulated by the data access module of TerraLib.
A DataSourceTransactor can be viewed as a connection to the data source for reading/writing things in...
An abstract class for data providers like a DBMS, Web Services or a regular file.
It models a foreign key constraint for a DataSetType.
It describes an index associated to a DataSetType.
This class represents a set of unique ids created in the same context. i.e. from the same data set.
It describes a primary key (pk) constraint.
A Query is independent from the data source language/dialect.
A Select models a query to be used when retrieving data from a DataSource.
It describes a sequence (a number generator).
It describes a unique key (uk) constraint.
It models a property definition.
An Envelope defines a 2D rectangular region.
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
Implementation of a in-memory data set that contains spatiotemporal observations indexed by time and ...
Implements a DataSource that contains In-Memory DataSets indexed by space and time.
An implementation of DataSourceTransactor class for the ST in-memory driver.
bool isDataSetNameValid(const std::string &datasetName)
It returns true if the given string is a valid dataset name.
std::unique_ptr< te::gm::Envelope > getExtent(const std::string &datasetName, const std::string &propertyName)
It retrieves the bounding rectangle of the spatial property for the given dataset.
void optimize(const std::map< std::string, std::string > &opInfo)
For some data access drivers, this method will perform some operations to optimize the data storage.
void update(const std::string &datasetName, te::da::DataSet *dataset, const std::vector< std::size_t > &properties, const te::da::ObjectIdSet *oids, const std::map< std::string, std::string > &options, std::size_t limit=0)
It updates the contents of a dataset for the set of data items.
std::vector< std::string > getForeignKeyNames(const std::string &datasetName)
It gets the foreign key names of the given dataset.
void dropPrimaryKey(const std::string &datasetName)
It removes the primary key constraint from the dataset schema.
bool isPropertyNameValid(const std::string &propertyName)
It checks if the given property name is valid.
void addProperty(const std::string &datasetName, te::dt::Property *p)
It adds a new property to the dataset schema.
void renameProperty(const std::string &datasetName, const std::string &propertyName, const std::string &newPropertyName)
It renames a property of the given dataset.
std::unique_ptr< te::da::PrimaryKey > getPrimaryKey(const std::string &datasetName)
It retrieves the primary key of the dataset.
void dropProperty(const std::string &datasetName, const std::string &name)
It removes a property from the given dataset.
void createDataSet(te::da::DataSetType *dt, const std::map< std::string, std::string > &options)
It creates the dataset schema definition in the target data source.
void addUniqueKey(const std::string &datasetName, te::da::UniqueKey *uk)
It adds a unique key constraint to the dataset.
std::unique_ptr< te::da::UniqueKey > getUniqueKey(const std::string &datasetName, const std::string &name)
It gets the unique key in the dataset with the given name.
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, const te::dt::DateTime *dt, te::dt::TemporalRelation r=te::dt::DURING, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It returns a data set with observations whose phenomenon times satisfy a given temporal relation.
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, const std::string &propertyName, const te::gm::Envelope *e, te::gm::SpatialRelation r, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It gets the dataset identified by the given name using a spatial filter over the specified property....
bool foreignKeyExists(const std::string &datasetName, const std::string &name)
It checks if a foreign key with the given name exists in the data source.
std::unique_ptr< te::da::DataSet > query(const std::string &query, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It executes a query that may return some data using the data source native language....
std::unique_ptr< te::da::BatchExecutor > getBatchExecutor()
It creates a batch command executor.
void addPrimaryKey(const std::string &datasetName, te::da::PrimaryKey *pk)
It adds a primary key constraint to the dataset schema.
std::unique_ptr< te::dt::Property > getProperty(const std::string &datasetName, const std::string &name)
It retrieves the property with the given name from the dataset.
std::size_t getNumberOfItems(const std::string &datasetName)
It retrieves the number of items of the given dataset.
void remove(const std::string &datasetName, const te::da::ObjectIdSet *oids=0)
It removes all the informed items from the dataset.
void addSequence(te::da::Sequence *sequence)
It creates a new sequence in the data source.
bool sequenceExists(const std::string &name)
It checks if a sequence with the given name exists in the data source.
std::unique_ptr< te::da::DataSet > query(const te::da::Select &q, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It executes a query that may return some data using a generic query. A dataset can be connected or di...
DataSource * m_ds
The associated data source.
std::unique_ptr< te::da::PreparedQuery > getPrepared(const std::string &qName=std::string(""))
It creates a prepared query object that may be used for query commands (select, insert,...
bool propertyExists(const std::string &datasetName, const std::string &name)
It checks if a property with the given name exists in the dataset.
bool checkConstraintExists(const std::string &datasetName, const std::string &name)
It checks if a check-constraint with the given name exists in the data source.
bool primaryKeyExists(const std::string &datasetName, const std::string &name)
It checks if a primary key exists in the dataset.
std::size_t getNumberOfProperties(const std::string &datasetName)
It gets the number of properties of the given dataset.
te::da::DataSource * getDataSource() const
It returns the parent data source of the transactor.
void addIndex(const std::string &datasetName, te::da::Index *idx, const std::map< std::string, std::string > &options)
It adds an index to the dataset.
bool indexExists(const std::string &datasetName, const std::string &name)
It checks if an index with the given name exists in the dataset.
void execute(const std::string &command)
It executes the specifed command in the data source native language.
std::string escape(const std::string &value)
It escapes a string for using in commands and queries.
void addForeignKey(const std::string &datasetName, te::da::ForeignKey *fk)
It adds a foreign key constraint to a dataset.
std::unique_ptr< te::dt::Property > getProperty(const std::string &datasetName, std::size_t propertyPos)
It retrieves the property lying in the given position from the dataset.
void dropUniqueKey(const std::string &datasetName, const std::string &name)
It removes the unique key constraint from the dataset.
std::vector< std::string > getSequenceNames()
It gets the sequence names available in the data source.
void cloneDataSet(const std::string &name, const std::string &cloneName, const std::map< std::string, std::string > &options)
It clones the dataset in the data source.
std::size_t getNumberOfDataSets()
It retrieves the number of data sets available in the data source.
std::vector< std::string > getUniqueKeyNames(const std::string &datasetName)
It gets the unique key names of the given dataset.
void addCheckConstraint(const std::string &datasetName, te::da::CheckConstraint *cc)
It adds a check constraint to the dataset.
bool isInTransaction() const
It returns true if a transaction is in progress, otherwise, it returns false.
std::vector< std::string > getIndexNames(const std::string &datasetName)
It gets the index names of the given dataset.
std::unique_ptr< te::da::CheckConstraint > getCheckConstraint(const std::string &datasetName, const std::string &name)
It gets the check constraint of the dataset with the given name.
Transactor(DataSource *parent)
It constructs a Transactor.
std::unique_ptr< te::dt::DateTimePeriod > getTemporalExtent(const std::string &name)
It returns the temporal extent associated to a DataSet.
void begin()
It starts a new transaction.
boost::int64_t getLastGeneratedId()
It returns the last id generated by an insertion command.
void renameDataSet(const std::string &name, const std::string &newName)
It renames a dataset.
bool hasDataSets()
It checks if the data source has any dataset.
std::vector< std::string > getPropertyNames(const std::string &datasetName)
It gets the property names of the given dataset.
std::unique_ptr< te::da::Sequence > getSequence(const std::string &name)
It gets the sequence with the given name in the data source.
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, const te::gm::Envelope *e, te::gm::SpatialRelation sr, const te::dt::DateTime *dt, te::dt::TemporalRelation tr=te::dt::DURING, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It returns a data set with observations whose observed geometries satisfy a given spatial relation an...
std::unique_ptr< te::da::Index > getIndex(const std::string &datasetName, const std::string &name)
It gets the index with the given name from the dataset.
void cancel()
It requests that the data source stop the processing of the current command.
void rollBack()
It aborts the transaction. Any changes will be rolled-back.
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, const std::string &propertyName, const te::gm::Geometry *g, te::gm::SpatialRelation r, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It gets the dataset identified by the given name using a spatial filter over the given geometric prop...
std::unique_ptr< te::da::ForeignKey > getForeignKey(const std::string &datasetName, const std::string &name)
It retrieves the foreign key from the given dataset.
std::vector< std::string > getDataSetNames()
It It gets the dataset names available in the data source.
void add(const std::string &name, te::da::DataSetType *t, DataSet *d)
It adds the DataSet and its type associated to a given name.
void dropSequence(const std::string &name)
It removes the sequence from the data source.
bool uniqueKeyExists(const std::string &datasetName, const std::string &name)
It checks if a unique key with the given name exists in the dataset.
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, const te::gm::Geometry *geom, te::gm::SpatialRelation sr, const te::dt::DateTime *dt, te::dt::TemporalRelation tr=te::dt::DURING, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It returns a data set with observations whose observed geometries satisfy a given spatial relation an...
std::unique_ptr< te::da::DataSet > getDataSet(const std::string &name, te::common::TraverseType travType=te::common::FORWARDONLY, bool connected=false, const te::common::AccessPolicy accessPolicy=te::common::RAccess)
It gets the dataset identified by the given name. A dataset can be connected or disconnected....
DataSource * getSTMemDataSource() const
It returns its associated ST In-Memory DataSource.
std::unique_ptr< te::gm::Envelope > getExtent(const std::string &datasetName, std::size_t propertyPos)
It retrieves the bounding rectangle for the spatial property lying in the given position in the datas...
void dropForeignKey(const std::string &datasetName, const std::string &fkName)
It removes the foreign key constraint from the dataset schema.
void dropIndex(const std::string &datasetName, const std::string &idxName)
It removes the index from the dataset schema.
std::unique_ptr< te::da::DataSetType > getDataSetType(const std::string &name)
It gets information about the given dataset.
~Transactor()
It constructs a Transactor.
void execute(const te::da::Query &command)
It executes the specified command using a generic query representation.
boost::ptr_vector< te::dt::Property > getProperties(const std::string &datasetName)
It retrieves the properties of the dataset.
bool dataSetExists(const std::string &name)
It checks if a dataset with the given name exists in the data source.
void dropCheckConstraint(const std::string &datasetName, const std::string &name)
It removes the check constraint from the dataset.
void dropDataSet(const std::string &name)
It removes the dataset schema from the data source.
void add(const std::string &datasetName, te::da::DataSet *d, const std::map< std::string, std::string > &options, std::size_t limit=0, bool enableProgress=true)
It adds data items to the dataset in the data source.
DataSet * getData(const std::string &datasetName)
It returns the DataSet associated to a given name.
te::da::DataSetType * getType(const std::string &datasetName)
It returns the DataSetType associated to a given name.
void commit()
It commits the transaction.
std::vector< std::string > getCheckConstraintNames(const std::string &datasetName)
It gets the check constraint names of the given dataset.
TraverseType
A dataset can be traversed in two ways:
AccessPolicy
Supported data access policies (can be used as bitfield).
TemporalRelation
Temporal relations between date and time (Source: Allen, 1991).
SpatialRelation
Spatial relations between geometric objects.
#define TESTMEMORYEXPORT
You can use this macro in order to export/import classes and functions from this module.
Proxy configuration file for TerraView (see terraview_config.h).