26#include <QRegularExpression>
30QString QgsSplitFeaturesByAttributeCharacterAlgorithm::name()
const
32 return QStringLiteral(
"splitfeaturesbycharacter" );
35QString QgsSplitFeaturesByAttributeCharacterAlgorithm::displayName()
const
37 return QObject::tr(
"Split features by character" );
40QStringList QgsSplitFeaturesByAttributeCharacterAlgorithm::tags()
const
42 return QObject::tr(
"separate,attribute,value,string" ).split(
',' );
45QString QgsSplitFeaturesByAttributeCharacterAlgorithm::group()
const
47 return QObject::tr(
"Vector general" );
50QString QgsSplitFeaturesByAttributeCharacterAlgorithm::groupId()
const
52 return QStringLiteral(
"vectorgeneral" );
55QString QgsSplitFeaturesByAttributeCharacterAlgorithm::shortHelpString()
const
57 return QObject::tr(
"This algorithm splits features into multiple output features by splitting a field's value with a specified character.\n\n"
58 "For instance, if a layer contains features with multiple comma separated values contained in a single field, this "
59 "algorithm can be used to split these values up across multiple output features.\n\n"
60 "Geometries and other attributes remain unchanged in the output.\n\n"
61 "Optionally, the separator string can be a regular expression for added flexibility." );
64QString QgsSplitFeaturesByAttributeCharacterAlgorithm::shortDescription()
const
66 return QObject::tr(
"Splits features into multiple output features by splitting a field by a character." );
74QList<int> QgsSplitFeaturesByAttributeCharacterAlgorithm::inputLayerTypes()
const
79void QgsSplitFeaturesByAttributeCharacterAlgorithm::initParameters(
const QVariantMap & )
81 addParameter(
new QgsProcessingParameterField( QStringLiteral(
"FIELD" ), QObject::tr(
"Split using values in field" ), QVariant(), QStringLiteral(
"INPUT" ) ) );
83 std::unique_ptr<QgsProcessingParameterDefinition> regexParam = std::make_unique<QgsProcessingParameterBoolean>( QStringLiteral(
"REGEX" ), QObject::tr(
"Use regular expression separator" ) );
85 addParameter( regexParam.release() );
93QgsSplitFeaturesByAttributeCharacterAlgorithm *QgsSplitFeaturesByAttributeCharacterAlgorithm::createInstance()
const
95 return new QgsSplitFeaturesByAttributeCharacterAlgorithm();
98QgsFields QgsSplitFeaturesByAttributeCharacterAlgorithm::outputFields(
const QgsFields &inputFields )
const
100 mFieldIndex = inputFields.
lookupField( mFieldName );
102 for (
int i = 0; i < inputFields.
count(); ++i )
104 if ( i != mFieldIndex )
106 outputFields.
append( inputFields.
at( i ) );
117QString QgsSplitFeaturesByAttributeCharacterAlgorithm::outputName()
const
119 return QObject::tr(
"Split" );
124 mChar = parameterAsString( parameters, QStringLiteral(
"CHAR" ), context );
125 mFieldName = parameterAsString( parameters, QStringLiteral(
"FIELD" ), context );
126 mUseRegex = parameterAsBoolean( parameters, QStringLiteral(
"REGEX" ), context );
128 mRegex = QRegularExpression( mChar );
135 const QString val = f.
attribute( mFieldIndex ).toString();
136 const QStringList parts = mUseRegex ? val.split( mRegex ) : val.split( mChar );
137 res.reserve( parts.size() );
138 for (
const QString &p : parts )
ProcessingSourceType
Processing data source types.
@ Vector
Tables (i.e. vector layers with or without geometry). When used for a sink this indicates the sink ha...
@ RegeneratesPrimaryKey
Algorithm always drops any existing primary keys or FID values and regenerates them in outputs.
QFlags< ProcessingAlgorithmDocumentationFlag > ProcessingAlgorithmDocumentationFlags
Flags describing algorithm behavior for documentation purposes.
@ Advanced
Parameter is an advanced parameter which should be hidden from users by default.
QFlags< SinkFlag > SinkFlags
@ RegeneratePrimaryKey
This flag indicates, that a primary key field cannot be guaranteed to be unique and the sink should i...
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Q_INVOKABLE bool setAttribute(int field, const QVariant &attr)
Sets an attribute's value by field index.
Q_INVOKABLE QVariant attribute(const QString &name) const
Lookup attribute value by attribute name.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
bool append(const QgsField &field, Qgis::FieldOrigin origin=Qgis::FieldOrigin::Provider, int originIndex=-1)
Appends a field.
QgsField at(int i) const
Returns the field at particular index (must be in range 0..N-1).
Q_INVOKABLE int lookupField(const QString &fieldName) const
Looks up field's index from the field name.
Contains information about the context in which a processing algorithm is executed.
Base class for providing feedback from a processing algorithm.
A vector layer or feature source field parameter for processing algorithms.
A string parameter for processing algorithms.
QList< QgsFeature > QgsFeatureList