QGIS API Documentation  3.20.0-Odense (decaadbb31)
qgsauxiliarystorage.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsauxiliarystorage.h - description
3  -------------------
4  begin : Aug 28, 2017
5  copyright : (C) 2017 by Paul Blottiere
6  email : [email protected]
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 QGSAUXILIARYSTORAGE_H
19 #define QGSAUXILIARYSTORAGE_H
20 
21 #include "qgis_core.h"
22 #include "qgsdatasourceuri.h"
23 #include "qgspallabeling.h"
24 #include "qgsdiagramrenderer.h"
25 #include "qgsvectorlayerjoininfo.h"
26 #include "qgsproperty.h"
27 #include "qgsspatialiteutils.h"
28 #include "qgsvectorlayer.h"
29 #include "qgscallout.h"
30 #include <QString>
31 
32 class QgsProject;
33 
61 class CORE_EXPORT QgsAuxiliaryLayer : public QgsVectorLayer
62 {
63  Q_OBJECT
64 
65  public:
66 
75  QgsAuxiliaryLayer( const QString &pkField, const QString &filename, const QString &table, QgsVectorLayer *vlayer );
76 
80  QgsAuxiliaryLayer( const QgsAuxiliaryLayer &rhs ) = delete;
81 
83 
84 #ifdef SIP_RUN
85  SIP_PYOBJECT __repr__();
86  % MethodCode
87  QString str = QStringLiteral( "<QgsAuxiliaryLayer: '%1'>" ).arg( sipCpp->name() );
88  sipRes = PyUnicode_FromString( str.toUtf8().constData() );
89  % End
90 #endif
91 
100 
107  QgsVectorLayer *toSpatialLayer() const;
108 
115  bool clear();
116 
120  QgsVectorLayerJoinInfo joinInfo() const;
121 
130  bool exists( const QgsPropertyDefinition &definition ) const;
131 
141  bool addAuxiliaryField( const QgsPropertyDefinition &definition );
142 
146  QgsFields auxiliaryFields() const;
147 
153  bool save();
154 
163  bool deleteAttribute( int attr ) override;
164 
171  bool isHiddenProperty( int index ) const;
172 
181  int indexOfPropertyDefinition( const QgsPropertyDefinition &definition ) const;
182 
191  int propertyFromIndex( int index ) const;
192 
198  QgsPropertyDefinition propertyDefinitionFromIndex( int index ) const;
199 
209  static int createProperty( QgsPalLayerSettings::Property property, QgsVectorLayer *vlayer );
210 
220  static int createProperty( QgsDiagramLayerSettings::Property property, QgsVectorLayer *vlayer );
221 
232  static int createProperty( QgsCallout::Property property, QgsVectorLayer *vlayer );
233 
239  static QgsField createAuxiliaryField( const QgsPropertyDefinition &definition );
240 
246  static QgsField createAuxiliaryField( const QgsField &field );
247 
254  static QString nameFromProperty( const QgsPropertyDefinition &def, bool joined = false );
255 
261  static QgsPropertyDefinition propertyDefinitionFromField( const QgsField &field );
262 
263  private:
264  QgsVectorLayerJoinInfo mJoinInfo;
265  QString mFileName;
266  QString mTable;
267  QgsVectorLayer *mLayer = nullptr;
268 };
269 
270 
280 class CORE_EXPORT QgsAuxiliaryStorage
281 {
282  public:
283 
295  QgsAuxiliaryStorage( const QgsProject &project, bool copy = true );
296 
318  QgsAuxiliaryStorage( const QString &filename = QString(), bool copy = true );
319 
323  virtual ~QgsAuxiliaryStorage();
324 
330  bool isValid() const;
331 
335  QString fileName() const;
336 
341  QString currentFileName() const;
342 
349  QString errorString() const;
350 
356  bool saveAs( const QString &filename );
357 
365  bool saveAs( const QgsProject &project );
366 
372  bool save() const;
373 
384  QgsAuxiliaryLayer *createAuxiliaryLayer( const QgsField &field, QgsVectorLayer *layer ) const SIP_FACTORY;
385 
393  static bool deleteTable( const QgsDataSourceUri &uri );
394 
403  static bool duplicateTable( const QgsDataSourceUri &uri, const QString &newTable );
404 
408  static QString extension();
409 
417  static bool exists( const QgsProject &project );
418 
419  private:
420  spatialite_database_unique_ptr open( const QString &filename = QString() );
421  spatialite_database_unique_ptr open( const QgsProject &project );
422 
423  void initTmpFileName();
424 
425  static QString filenameForProject( const QgsProject &project );
426  static spatialite_database_unique_ptr createDB( const QString &filename );
427  static spatialite_database_unique_ptr openDB( const QString &filename );
428  static bool tableExists( const QString &table, sqlite3 *handler );
429  static bool createTable( const QString &type, const QString &table, sqlite3 *handler, QString &errorMsg );
430 
431  static bool exec( const QString &sql, sqlite3 *handler );
432  static QString debugMsg( const QString &sql, sqlite3 *handler );
433 
434  static QgsDataSourceUri parseOgrUri( const QgsDataSourceUri &uri );
435 
436  bool mValid = false;
437  QString mFileName; // original filename
438  QString mTmpFileName; // temporary filename used in copy mode
439  bool mCopy = false;
440  mutable QString mErrorString;
441 };
442 
443 #endif
Class allowing to manage the auxiliary storage for a vector layer.
QgsAuxiliaryLayer & operator=(QgsAuxiliaryLayer const &rhs)=delete
QgsAuxiliaryLayer(const QString &pkField, const QString &filename, const QString &table, QgsVectorLayer *vlayer)
Constructor.
QgsAuxiliaryLayer(const QgsAuxiliaryLayer &rhs)=delete
Copy constructor deactivated.
Class providing some utility methods to manage auxiliary storage.
Property
Data definable properties.
Definition: qgscallout.h:83
Class for storing the component parts of a RDBMS data source URI (e.g.
Property
Data definable properties.
Encapsulate a field in an attribute table or data source.
Definition: qgsfield.h:51
Container of fields for a vector layer.
Definition: qgsfields.h:45
bool isValid
Definition: qgsmaplayer.h:78
Property
Data definable properties.
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition: qgsproject.h:99
Definition for a property.
Definition: qgsproperty.h:48
Defines left outer join from our vector layer to some other vector layer.
Represents a vector layer which manages a vector based data sets.
virtual bool deleteAttribute(int attr)
Deletes an attribute field (but does not commit it).
QgsVectorLayer * clone() const override
Returns a new instance equivalent to this one.
Unique pointer for spatialite databases, which automatically closes the database when the pointer goe...
#define str(x)
Definition: qgis.cpp:37
#define SIP_FACTORY
Definition: qgis_sip.h:76
struct sqlite3 sqlite3
const QgsField & field
Definition: qgsfield.h:463