Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsogrdbconnection.cpp QgsOgrDbConnection handles connection storage 3 : : for OGR/GDAL file-based DBs (i.e. GeoPackage) 4 : : ------------------- 5 : : begin : August 2017 6 : : copyright : (C) 2017 by Alessandro Pasotti 7 : : email : apasotti at boundlessgeo dot com 8 : : ***************************************************************************/ 9 : : 10 : : /*************************************************************************** 11 : : * * 12 : : * This program is free software; you can redistribute it and/or modify * 13 : : * it under the terms of the GNU General Public License as published by * 14 : : * the Free Software Foundation; either version 2 of the License, or * 15 : : * (at your option) any later version. * 16 : : * * 17 : : ***************************************************************************/ 18 : : #include "qgsogrdbconnection.h" 19 : : ///@cond PRIVATE 20 : : 21 : : #include "qgis.h" 22 : : #include "qgsdatasourceuri.h" 23 : : #include "qgssettings.h" 24 : : 25 : : #include "qgslogger.h" 26 : : #include <QInputDialog> 27 : : #include <QMessageBox> 28 : : 29 : : 30 : : 31 : 0 : QgsOgrDbConnection::QgsOgrDbConnection( const QString &connName, const QString &settingsKey ) 32 : 0 : : mConnName( connName ) 33 : 0 : { 34 : 0 : mSettingsKey = settingsKey; 35 : 0 : QgsSettings settings; 36 : 0 : QString key = QStringLiteral( "%1/%2/path" ).arg( connectionsPath( settingsKey ), mConnName ); 37 : 0 : mPath = settings.value( key ).toString(); 38 : 0 : } 39 : : 40 : 0 : QgsDataSourceUri QgsOgrDbConnection::uri() 41 : : { 42 : 0 : QgsDataSourceUri uri; 43 : 0 : uri.setEncodedUri( mPath ); 44 : 0 : return uri; 45 : 0 : } 46 : : 47 : 0 : void QgsOgrDbConnection::setPath( const QString &path ) 48 : : { 49 : 0 : mPath = path; 50 : 0 : } 51 : : 52 : 0 : void QgsOgrDbConnection::save( ) 53 : : { 54 : 0 : QgsSettings settings; 55 : 0 : settings.setValue( QStringLiteral( "%1/%2/path" ).arg( connectionsPath( mSettingsKey ), mConnName ), mPath ); 56 : 0 : } 57 : : 58 : 0 : bool QgsOgrDbConnection::allowProjectsInDatabase() 59 : : { 60 : 0 : return mSettingsKey == QLatin1String( "GPKG" ); 61 : : } 62 : : 63 : 0 : QString QgsOgrDbConnection::fullKey( const QString &settingsKey ) 64 : : { 65 : 0 : return QStringLiteral( "providers/ogr/%1" ).arg( settingsKey ); 66 : 0 : } 67 : : 68 : 0 : QString QgsOgrDbConnection::connectionsPath( const QString &settingsKey ) 69 : : { 70 : 0 : return QStringLiteral( "%1/connections" ).arg( fullKey( settingsKey ) ); 71 : 0 : } 72 : : 73 : 0 : const QStringList QgsOgrDbConnection::connectionList( const QString &driverName ) 74 : : { 75 : 0 : QgsSettings settings; 76 : 0 : settings.beginGroup( connectionsPath( driverName ) ); 77 : 0 : return settings.childGroups(); 78 : 0 : } 79 : : 80 : 0 : QString QgsOgrDbConnection::selectedConnection( const QString &settingsKey ) 81 : : { 82 : 0 : QgsSettings settings; 83 : 0 : return settings.value( QStringLiteral( "%1/selected" ).arg( connectionsPath( settingsKey ) ) ).toString(); 84 : 0 : } 85 : : 86 : 0 : void QgsOgrDbConnection::setSelectedConnection( const QString &connName, const QString &settingsKey ) 87 : : { 88 : 0 : QgsSettings settings; 89 : 0 : settings.setValue( QStringLiteral( "%1/selected" ).arg( connectionsPath( settingsKey ) ), connName ); 90 : 0 : } 91 : : 92 : 0 : void QgsOgrDbConnection::deleteConnection( const QString &connName, const QString &settingsKey ) 93 : : { 94 : 0 : QgsSettings settings; 95 : 0 : settings.remove( QStringLiteral( "%1/%2" ).arg( connectionsPath( settingsKey ), connName ) ); 96 : 0 : } 97 : : 98 : : ///@endcond