QGIS API Documentation
3.26.3-Buenos Aires (65e4edfdad)
|
Go to the documentation of this file.
24 QString QgsAttributeIndexAlgorithm::name()
const
26 return QStringLiteral(
"createattributeindex" );
29 QString QgsAttributeIndexAlgorithm::displayName()
const
31 return QObject::tr(
"Create attribute index" );
34 QStringList QgsAttributeIndexAlgorithm::tags()
const
36 return QObject::tr(
"table,attribute,index,create,vector" ).split(
',' );
39 QString QgsAttributeIndexAlgorithm::group()
const
41 return QObject::tr(
"Vector general" );
44 QString QgsAttributeIndexAlgorithm::groupId()
const
46 return QStringLiteral(
"vectorgeneral" );
49 QgsProcessingAlgorithm::Flags QgsAttributeIndexAlgorithm::flags()
const
55 QString QgsAttributeIndexAlgorithm::shortHelpString()
const
57 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." );
62 QgsAttributeIndexAlgorithm *QgsAttributeIndexAlgorithm::createInstance()
const
64 return new QgsAttributeIndexAlgorithm();
67 void QgsAttributeIndexAlgorithm::initAlgorithm(
const QVariantMap & )
70 addParameter(
new QgsProcessingParameterField( QStringLiteral(
"FIELD" ), QObject::tr(
"Attribute to index" ), QVariant(), QStringLiteral(
"INPUT" ) ) );
77 QgsVectorLayer *layer = parameterAsVectorLayer( parameters, QStringLiteral(
"INPUT" ), context );
80 throw QgsProcessingException( QObject::tr(
"Could not load source layer for %1." ).arg( QLatin1String(
"INPUT" ) ) );
82 const QString
field = parameterAsString( parameters, QStringLiteral(
"FIELD" ), context );
89 feedback->
pushInfo( QObject::tr(
"Can not create attribute index on %1" ).arg(
field ) );
98 feedback->
pushInfo( QObject::tr(
"Could not create attribute index" ) );
103 feedback->
pushInfo( QObject::tr(
"Layer's data provider does not support creating attribute indexes" ) );
108 outputs.insert( QStringLiteral(
"OUTPUT" ), layer->
id() );
@ OriginProvider
Field comes from the underlying data provider of the vector layer (originIndex = index in provider's ...
virtual bool createAttributeIndex(int field)
Create an attribute index on the datasource.
QgsVectorDataProvider * dataProvider() FINAL
Returns the layer's data provider, it may be nullptr.
Base class for providing feedback from a processing algorithm.
virtual void pushInfo(const QString &info)
Pushes a general informational message from the algorithm.
A vector layer output for processing algorithms.
@ CreateAttributeIndex
Can create indexes on provider's fields.
QgsFields fields() const FINAL
Returns the list of fields of this layer.
virtual Q_INVOKABLE QgsVectorDataProvider::Capabilities capabilities() const
Returns flags containing the supported capabilities.
Contains information about the context in which a processing algorithm is executed.
QString id() const
Returns the layer's unique ID, which is used to access this layer from QgsProject.
A vector layer (with or without geometry) parameter for processing algorithms. Consider using the mor...
@ FlagNoThreading
Algorithm is not thread safe and cannot be run in a background thread, e.g. for algorithms which mani...
Represents a vector layer which manages a vector based data sets.
int fieldOriginIndex(int fieldIdx) const
Returns the field's origin index (its meaning is specific to each type of origin).
This is the base class for vector data providers.
virtual Flags flags() const
Returns the flags indicating how and when the algorithm operates and should be exposed to users.
int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
Custom exception class for processing related exceptions.
A vector layer or feature source field parameter for processing algorithms.