Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmexecutepostgisquery.cpp 3 : : --------------------- 4 : : begin : May 2020 5 : : copyright : (C) 2020 by Alexander Bruy 6 : : email : alexander dot bruy at gmail dot com 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 : : #include "qgsalgorithmexecutespatialitequery.h" 19 : : #include "qgsproviderregistry.h" 20 : : #include "qgsprovidermetadata.h" 21 : : #include "qgsabstractdatabaseproviderconnection.h" 22 : : 23 : : ///@cond PRIVATE 24 : : 25 : 0 : QString QgsExecuteSpatialiteQueryAlgorithm::name() const 26 : : { 27 : 0 : return QStringLiteral( "spatialiteexecutesql" ); 28 : : } 29 : : 30 : 0 : QString QgsExecuteSpatialiteQueryAlgorithm::displayName() const 31 : : { 32 : 0 : return QObject::tr( "SpatiaLite execute SQL" ); 33 : : } 34 : : 35 : 0 : QStringList QgsExecuteSpatialiteQueryAlgorithm::tags() const 36 : : { 37 : 0 : return QObject::tr( "database,sql,spatialite,execute" ).split( ',' ); 38 : 0 : } 39 : : 40 : 0 : QString QgsExecuteSpatialiteQueryAlgorithm::group() const 41 : : { 42 : 0 : return QObject::tr( "Database" ); 43 : : } 44 : : 45 : 0 : QString QgsExecuteSpatialiteQueryAlgorithm::groupId() const 46 : : { 47 : 0 : return QStringLiteral( "database" ); 48 : : } 49 : : 50 : 0 : QString QgsExecuteSpatialiteQueryAlgorithm::shortHelpString() const 51 : : { 52 : 0 : return QObject::tr( "Executes a SQL command on a SpatiaLite database." ); 53 : : } 54 : : 55 : 0 : QgsExecuteSpatialiteQueryAlgorithm *QgsExecuteSpatialiteQueryAlgorithm::createInstance() const 56 : : { 57 : 0 : return new QgsExecuteSpatialiteQueryAlgorithm(); 58 : : } 59 : : 60 : 0 : void QgsExecuteSpatialiteQueryAlgorithm::initAlgorithm( const QVariantMap & ) 61 : : { 62 : 0 : addParameter( new QgsProcessingParameterVectorLayer( QStringLiteral( "DATABASE" ), QObject::tr( "Database (connection name)" ), QList< int >() << QgsProcessing::TypeVector ) ); 63 : 0 : addParameter( new QgsProcessingParameterString( QStringLiteral( "SQL" ), QObject::tr( "SQL query" ), QVariant(), true ) ); 64 : 0 : } 65 : : 66 : 0 : QVariantMap QgsExecuteSpatialiteQueryAlgorithm::processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 67 : : { 68 : : //Q_UNUSED( feedback ); 69 : 0 : QgsVectorLayer *layer = parameterAsVectorLayer( parameters, QStringLiteral( "DATABASE" ), context ); 70 : 0 : QString databaseUri = layer->dataProvider()->dataSourceUri(); 71 : 0 : QgsDataSourceUri uri( databaseUri ); 72 : 0 : if ( uri.database().isEmpty() ) 73 : : { 74 : 0 : if ( databaseUri.contains( QStringLiteral( "|layername" ), Qt::CaseInsensitive ) ) 75 : 0 : databaseUri = databaseUri.left( databaseUri.indexOf( QLatin1String( "|layername" ) ) ); 76 : 0 : else if ( databaseUri.contains( QStringLiteral( "|layerid" ), Qt::CaseInsensitive ) ) 77 : 0 : databaseUri = databaseUri.left( databaseUri.indexOf( QLatin1String( "|layerid" ) ) ); 78 : : 79 : 0 : uri = QgsDataSourceUri( QStringLiteral( "dbname='%1'" ).arg( databaseUri ) ); 80 : 0 : } 81 : : 82 : 0 : feedback->pushInfo( databaseUri ); 83 : 0 : std::unique_ptr<QgsAbstractDatabaseProviderConnection> conn; 84 : : try 85 : : { 86 : 0 : QgsProviderMetadata *md = QgsProviderRegistry::instance()->providerMetadata( QStringLiteral( "spatialite" ) ); 87 : 0 : conn.reset( static_cast<QgsAbstractDatabaseProviderConnection *>( md->createConnection( uri.uri(), QVariantMap() ) ) ); 88 : 0 : } 89 : : catch ( QgsProviderConnectionException & ) 90 : : { 91 : 0 : throw QgsProcessingException( QObject::tr( "Could not connect to %1" ).arg( uri.uri() ) ); 92 : 0 : } 93 : : 94 : 0 : QString sql = parameterAsString( parameters, QStringLiteral( "SQL" ), context ).replace( '\n', ' ' ); 95 : : try 96 : : { 97 : 0 : conn->executeSql( sql ); 98 : 0 : } 99 : : catch ( QgsProviderConnectionException &ex ) 100 : : { 101 : 0 : throw QgsProcessingException( QObject::tr( "Error executing SQL:\n%1" ).arg( ex.what() ) ); 102 : 0 : } 103 : : 104 : 0 : return QVariantMap(); 105 : 0 : } 106 : : 107 : : ///@endcond