QGIS API Documentation 4.1.0-Master (60fea48833c)
Loading...
Searching...
No Matches
qgstransaction.h
Go to the documentation of this file.
1/***************************************************************************
2 qgstransaction.h
3 ----------------
4 begin : May 5, 2014
5 copyright : (C) 2014 by Marco Hugentobler
6 email : marco dot hugentobler at sourcepole dot ch
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18#ifndef QGSTRANSACTION_H
19#define QGSTRANSACTION_H
20
21#include "qgis_core.h"
22#include "qgis_sip.h"
23
24#include <QObject>
25#include <QSet>
26#include <QStack>
27#include <QString>
28
30class QgsVectorLayer;
31
56
57class CORE_EXPORT QgsTransaction : public QObject SIP_ABSTRACT
58{
59 Q_OBJECT
60
61 public:
66 static QgsTransaction *create( const QString &connString, const QString &providerKey ) SIP_FACTORY;
67
73 static QgsTransaction *create( const QSet<QgsVectorLayer *> &layers ) SIP_FACTORY;
74
75 ~QgsTransaction() override;
76
81 QString connectionString() const;
82
90 bool addLayer( QgsVectorLayer *layer, bool addLayersInEditMode = false );
91
102 bool begin( QString &errorMsg SIP_OUT, int statementTimeout = 20 );
103
107 bool commit( QString &errorMsg SIP_OUT );
108
112 bool rollback( QString &errorMsg SIP_OUT );
113
124 virtual bool executeSql( const QString &sql, QString &error SIP_OUT, bool isDirty = false, const QString &name = QString() ) = 0;
125
129 static bool supportsTransaction( const QgsVectorLayer *layer );
130
136 QString createSavepoint( QString &error SIP_OUT );
137
142 virtual QString createSavepoint( const QString &savePointId, QString &error SIP_OUT );
143
147 virtual bool rollbackToSavepoint( const QString &name, QString &error SIP_OUT );
148
152 void dirtyLastSavePoint();
153
157 QList< QString > savePoints() const { return QList< QString >::fromVector( mSavepoints ); }
158
163
165 // For internal use only, or by QgsTransactionGroup
166 static QString connectionString( const QString &layerUri ) SIP_SKIP;
168
169 signals:
170
175
180 void afterRollbackToSavepoint( const QString &savepointName );
181
185 void dirtied( const QString &sql, const QString &name );
186
187 protected:
188 QgsTransaction( const QString &connString ) SIP_SKIP;
189
190 QString mConnString;
191 bool mTransactionActive = false;
192 QStack< QString > mSavepoints;
194
195 private slots:
196 void onLayerDeleted();
197
198 private:
199 QSet<QgsVectorLayer *> mLayers;
200
201 void setLayerTransactionIds( QgsTransaction *transaction );
202
203 static QString cleanupConnectionString( const QString &str );
204
205 virtual bool beginTransaction( QString &error, int statementTimeout ) = 0;
206 virtual bool commitTransaction( QString &error ) = 0;
207 virtual bool rollbackTransaction( QString &error ) = 0;
208};
209
210#endif // QGSTRANSACTION_H
QStack< QString > mSavepoints
void afterRollbackToSavepoint(const QString &savepointName)
Emitted after a rollback to savepoint.
void afterRollback()
Emitted after a rollback.
bool rollback(QString &errorMsg)
Roll back transaction.
bool addLayer(QgsVectorLayer *layer, bool addLayersInEditMode=false)
Add the layer to the transaction.
QList< QString > savePoints() const
returns savepoints
bool begin(QString &errorMsg, int statementTimeout=20)
Begin transaction The statementTimeout (in seconds) specifies how long an sql statement is allowed to...
static bool supportsTransaction(const QgsVectorLayer *layer)
Checks if the provider of a given layer supports transactions.
virtual bool rollbackToSavepoint(const QString &name, QString &error)
rollback to save point, the save point is maintained and is "undertied"
virtual bool executeSql(const QString &sql, QString &error, bool isDirty=false, const QString &name=QString())=0
Execute the sql string.
QgsTransaction(const QString &connString)
QString connectionString() const
Returns the connection string of the transaction.
bool commit(QString &errorMsg)
Commit transaction.
static QgsTransaction * create(const QString &connString, const QString &providerKey)
Create a transaction for the specified connection string connString and provider with providerKey.
bool lastSavePointIsDirty() const
returns the last created savepoint
QString createSavepoint(QString &error)
creates a save point returns empty string on error returns the last created savepoint if it's not dir...
void dirtyLastSavePoint()
dirty save point such that next call to createSavepoint will create a new one
void dirtied(const QString &sql, const QString &name)
Emitted if a sql query is executed and the underlying data is modified.
Base class for vector data providers.
Represents a vector layer which manages a vector based dataset.
#define SIP_SKIP
Definition qgis_sip.h:133
#define SIP_OUT
Definition qgis_sip.h:57
#define SIP_ABSTRACT
Definition qgis_sip.h:220
#define SIP_FACTORY
Definition qgis_sip.h:83