Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsalgorithmattributeraster.cpp 3 : : --------------------- 4 : : begin : November 2019 5 : : copyright : (C) 2019 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 "qgsalgorithmattributeindex.h" 19 : : #include "qgsvectorlayer.h" 20 : : #include "qgsvectordataprovider.h" 21 : : 22 : : ///@cond PRIVATE 23 : : 24 : 0 : QString QgsAttributeIndexAlgorithm::name() const 25 : : { 26 : 0 : return QStringLiteral( "createattributeindex" ); 27 : : } 28 : : 29 : 0 : QString QgsAttributeIndexAlgorithm::displayName() const 30 : : { 31 : 0 : return QObject::tr( "Create attribute index" ); 32 : : } 33 : : 34 : 0 : QStringList QgsAttributeIndexAlgorithm::tags() const 35 : : { 36 : 0 : return QObject::tr( "table,attribute,index,create,vector" ).split( ',' ); 37 : 0 : } 38 : : 39 : 0 : QString QgsAttributeIndexAlgorithm::group() const 40 : : { 41 : 0 : return QObject::tr( "Vector general" ); 42 : : } 43 : : 44 : 0 : QString QgsAttributeIndexAlgorithm::groupId() const 45 : : { 46 : 0 : return QStringLiteral( "vectorgeneral" ); 47 : : } 48 : : 49 : 0 : QgsProcessingAlgorithm::Flags QgsAttributeIndexAlgorithm::flags() const 50 : : { 51 : 0 : return QgsProcessingAlgorithm::flags() | QgsProcessingAlgorithm::FlagNoThreading; 52 : : } 53 : : 54 : : 55 : 0 : QString QgsAttributeIndexAlgorithm::shortHelpString() const 56 : : { 57 : 0 : return QObject::tr( "Creates an index to speed up queries made against " 58 : : "a field in a table. Support for index creation is " 59 : : "dependent on the layer's data provider and the field type." ); 60 : : } 61 : : 62 : 0 : QgsAttributeIndexAlgorithm *QgsAttributeIndexAlgorithm::createInstance() const 63 : : { 64 : 0 : return new QgsAttributeIndexAlgorithm(); 65 : : } 66 : : 67 : 0 : void QgsAttributeIndexAlgorithm::initAlgorithm( const QVariantMap & ) 68 : : { 69 : 0 : addParameter( new QgsProcessingParameterVectorLayer( QStringLiteral( "INPUT" ), QObject::tr( "Input layer" ) ) ); 70 : 0 : addParameter( new QgsProcessingParameterField( QStringLiteral( "FIELD" ), QObject::tr( "Attribute to index" ), QVariant(), QStringLiteral( "INPUT" ) ) ); 71 : : 72 : 0 : addOutput( new QgsProcessingOutputVectorLayer( QStringLiteral( "OUTPUT" ), QObject::tr( "Indexed layer" ) ) ); 73 : 0 : } 74 : : 75 : 0 : QVariantMap QgsAttributeIndexAlgorithm::processAlgorithm( const QVariantMap ¶meters, QgsProcessingContext &context, QgsProcessingFeedback *feedback ) 76 : : { 77 : 0 : QgsVectorLayer *layer = parameterAsVectorLayer( parameters, QStringLiteral( "INPUT" ), context ); 78 : : 79 : 0 : if ( !layer ) 80 : 0 : throw QgsProcessingException( QObject::tr( "Could not load source layer for %1." ).arg( QLatin1String( "INPUT" ) ) ); 81 : : 82 : 0 : QString field = parameterAsString( parameters, QStringLiteral( "FIELD" ), context ); 83 : : 84 : 0 : QgsVectorDataProvider *provider = layer->dataProvider(); 85 : : 86 : 0 : int fieldIndex = layer->fields().lookupField( field ); 87 : 0 : if ( fieldIndex < 0 || layer->fields().fieldOrigin( fieldIndex ) != QgsFields::OriginProvider ) 88 : : { 89 : 0 : feedback->pushInfo( QObject::tr( "Can not create attribute index on %1" ).arg( field ) ); 90 : 0 : } 91 : : else 92 : : { 93 : 0 : int providerIndex = layer->fields().fieldOriginIndex( fieldIndex ); 94 : 0 : if ( provider->capabilities() & QgsVectorDataProvider::CreateAttributeIndex ) 95 : : { 96 : 0 : if ( !provider->createAttributeIndex( providerIndex ) ) 97 : : { 98 : 0 : feedback->pushInfo( QObject::tr( "Could not create attribute index" ) ); 99 : 0 : } 100 : 0 : } 101 : : else 102 : : { 103 : 0 : feedback->pushInfo( QObject::tr( "Layer's data provider does not support creating attribute indexes" ) ); 104 : : } 105 : : } 106 : : 107 : 0 : QVariantMap outputs; 108 : 0 : outputs.insert( QStringLiteral( "OUTPUT" ), layer->id() ); 109 : 0 : return outputs; 110 : 0 : } 111 : : 112 : : ///@endcond