Transactor.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file terralib/wcs/Transactor.h
22 
23  \brief Implementation of the transactor for the WCS driver.
24 */
25 
26 #ifndef __TERRALIB_WCS_INTERNAL_TRANSACTOR_H
27 #define __TERRALIB_WCS_INTERNAL_TRANSACTOR_H
28 
29 // TerraLib
30 #include "../dataaccess/datasource/DataSourceTransactor.h"
31 #include "WCSLayerInfo.h"
32 #include "Config.h"
33 
34 // STL
35 #include <map>
36 #include <memory>
37 #include <string>
38 
39 namespace te
40 {
41  namespace wcs
42  {
43  /*!
44  \class Transactor
45 
46  \brief Implementation of the transactor for the WCS driver.
47  */
49  {
50  public:
51 
52  Transactor(const std::string& serviceURL, const std::string& coverageName);
53 
54  ~Transactor();
55 
56  te::da::DataSource* getDataSource() const;
57 
58  void begin();
59 
60  void commit();
61 
62  void rollBack();
63 
64  bool isInTransaction() const;
65 
66  std::auto_ptr<te::da::DataSet> getDataSet(const std::string& name,
68  bool connected = false,
69  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
70 
71  std::auto_ptr<te::da::DataSet> getDataSet(const std::string& name,
72  const std::string& propertyName,
73  const te::gm::Envelope* e,
76  bool connected = false,
77  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
78 
79  std::auto_ptr<te::da::DataSet> getDataSet(const std::string& name,
80  const std::string& propertyName,
81  const te::gm::Geometry* g,
84  bool connected = false,
85  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
86 
87  std::auto_ptr<te::da::DataSet> getDataSet(const std::string& name,
88  const te::da::ObjectIdSet* oids,
90  bool connected = false,
91  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
92 
93  std::auto_ptr<te::da::DataSet> query(const te::da::Select& q,
95  bool connected = false,
96  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
97 
98  std::auto_ptr<te::da::DataSet> query(const std::string& query,
100  bool connected = false,
101  const te::common::AccessPolicy accessPolicy = te::common::RAccess);
102 
103  void execute(const te::da::Query& command);
104 
105  void execute(const std::string& command);
106 
107  std::auto_ptr<te::da::PreparedQuery> getPrepared(const std::string& qName = std::string(""));
108 
109  std::auto_ptr<te::da::BatchExecutor> getBatchExecutor();
110 
111  void cancel();
112 
113  boost::int64_t getLastGeneratedId();
114 
115  std::string escape(const std::string& value);
116 
117  bool isDataSetNameValid(const std::string& datasetName);
118 
119  bool isPropertyNameValid(const std::string& propertyName);
120 
121  std::vector<std::string> getDataSetNames();
122 
123  std::size_t getNumberOfDataSets();
124 
125  std::auto_ptr<te::da::DataSetType> getDataSetType(const std::string& name);
126 
127  boost::ptr_vector<te::dt::Property> getProperties(const std::string& datasetName);
128 
129  std::auto_ptr<te::dt::Property> getProperty(const std::string& datasetName, const std::string& name);
130 
131  std::auto_ptr<te::dt::Property> getProperty(const std::string& datasetName, std::size_t propertyPos);
132 
133  std::vector<std::string> getPropertyNames(const std::string& datasetName);
134 
135  std::size_t getNumberOfProperties(const std::string& datasetName);
136 
137  bool propertyExists(const std::string& datasetName, const std::string& name);
138 
139  void addProperty(const std::string& datasetName , te::dt::Property* p);
140 
141  void dropProperty(const std::string& datasetName, const std::string& name);
142 
143  void renameProperty(const std::string& datasetName , const std::string& propertyName, const std::string& newPropertyName);
144 
145  std::auto_ptr<te::da::PrimaryKey> getPrimaryKey(const std::string& datasetName);
146 
147  bool primaryKeyExists(const std::string& datasetName, const std::string& name);
148 
149  void addPrimaryKey(const std::string& datasetName, te::da::PrimaryKey* pk);
150 
151  void dropPrimaryKey(const std::string& datasetName);
152 
153  std::auto_ptr<te::da::ForeignKey> getForeignKey(const std::string& datasetName, const std::string& name);
154 
155  std::vector<std::string> getForeignKeyNames(const std::string& datasetName);
156 
157  bool foreignKeyExists(const std::string& datasetName , const std::string& name);
158 
159  void addForeignKey(const std::string& datasetName, te::da::ForeignKey* fk);
160 
161  void dropForeignKey(const std::string& datasetName , const std::string& fkName);
162 
163  std::auto_ptr<te::da::UniqueKey> getUniqueKey(const std::string& datasetName, const std::string& name);
164 
165  std::vector<std::string> getUniqueKeyNames(const std::string& datasetName);
166 
167  bool uniqueKeyExists(const std::string& datasetName, const std::string& name);
168 
169  void addUniqueKey(const std::string& datasetName, te::da::UniqueKey* uk);
170 
171  void dropUniqueKey(const std::string& datasetName, const std::string& name);
172 
173  std::auto_ptr<te::da::CheckConstraint> getCheckConstraint(const std::string& datasetName, const std::string& name);
174 
175  std::vector<std::string> getCheckConstraintNames(const std::string& datasetName);
176 
177  bool checkConstraintExists(const std::string& datasetName, const std::string& name);
178 
179  void addCheckConstraint(const std::string& datasetName, te::da::CheckConstraint* cc);
180 
181  void dropCheckConstraint(const std::string& datasetName, const std::string& name);
182 
183  std::auto_ptr<te::da::Index> getIndex(const std::string& datasetName, const std::string& name);
184 
185  std::vector<std::string> getIndexNames(const std::string& datasetName);
186 
187  bool indexExists(const std::string& datasetName, const std::string& name);
188 
189  void addIndex(const std::string& datasetName, te::da::Index* idx, const std::map<std::string, std::string>& options);
190 
191  void dropIndex(const std::string& datasetName, const std::string& idxName);
192 
193  std::auto_ptr<te::da::Sequence> getSequence(const std::string& name);
194 
195  std::vector<std::string> getSequenceNames();
196 
197  bool sequenceExists(const std::string& name);
198 
199  void addSequence(te::da::Sequence* sequence);
200 
201  void dropSequence(const std::string& name);
202 
203  std::auto_ptr<te::gm::Envelope> getExtent(const std::string& datasetName,
204  const std::string& propertyName);
205 
206  std::auto_ptr<te::gm::Envelope> getExtent(const std::string& datasetName,
207  std::size_t propertyPos);
208 
209  std::size_t getNumberOfItems(const std::string& datasetName);
210 
211  bool hasDataSets();
212 
213  bool dataSetExists(const std::string& name);
214 
215  void createDataSet(te::da::DataSetType* dt,
216  const std::map<std::string, std::string>& options);
217 
218  void cloneDataSet(const std::string& name,
219  const std::string& cloneName,
220  const std::map<std::string, std::string>& options);
221 
222  void dropDataSet(const std::string& name);
223 
224  void renameDataSet(const std::string& name,
225  const std::string& newName);
226 
227  void add(const std::string& datasetName,
228  te::da::DataSet* d,
229  const std::map<std::string, std::string>& options,
230  std::size_t limit = 0);
231 
232  void remove(const std::string& datasetName, const te::da::ObjectIdSet* oids = 0);
233 
234  void update(const std::string& datasetName,
235  te::da::DataSet* dataset,
236  const std::vector<std::size_t>& properties,
237  const te::da::ObjectIdSet* oids,
238  const std::map<std::string, std::string>& options,
239  std::size_t limit = 0);
240 
241  void optimize(const std::map<std::string, std::string>& opInfo);
242 
243  te::common::CharEncoding getEncoding();
244 
245  private:
246 
247  std::string m_serviceURL;
248  std::string m_coverageName;
249  };
250 
251  } // end namespace wcs
252 } // end namespace te
253 
254 #endif // __TERRALIB_WCS_INTERNAL_TRANSACTOR_H
#define TEWCSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:69
CharEncoding
Supported charsets (character encoding).
A class that models the description of a dataset.
Definition: DataSetType.h:72
SpatialRelation
Spatial relations between geometric objects.
Definition: Enums.h:127
It describes a sequence (a number generator).
Definition: Sequence.h:56
A class that describes a check constraint.
An abstract class for data providers like a DBMS, Web Services or a regular file. ...
Definition: DataSource.h:118
It models a property definition.
Definition: Property.h:59
std::string m_serviceURL
Definition: Transactor.h:247
AccessPolicy
Supported data access policies (can be used as bitfield).
Definition: Enums.h:40
TraverseType
A dataset can be traversed in two ways:
Definition: Enums.h:53
An Envelope defines a 2D rectangular region.
Definition: Envelope.h:51
This class represents a set of unique ids created in the same context. i.e. from the same data set...
Definition: ObjectIdSet.h:55
URI C++ Library.
Configuration flags for the TerraLib WCS module.
It models a foreign key constraint for a DataSetType.
Definition: ForeignKey.h:50
It describes a unique key (uk) constraint.
Definition: UniqueKey.h:53
A DataSourceTransactor can be viewed as a connection to the data source for reading/writing things in...
Informations about WCS Layers.
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
Definition: Geometry.h:73
A Select models a query to be used when retrieving data from a DataSource.
Definition: Select.h:65
A dataset is the unit of information manipulated by the data access module of TerraLib.
Definition: DataSet.h:112
std::string m_coverageName
Definition: Transactor.h:248
It describes a primary key (pk) constraint.
Definition: PrimaryKey.h:52
Implementation of the transactor for the WCS driver.
Definition: Transactor.h:48
A Query is independent from the data source language/dialect.
Definition: Query.h:46
It describes an index associated to a DataSetType.
Definition: Index.h:54