|
GDAL
|
Argument of an algorithm. More...
#include <gdalalgorithm_cpp.h>
Public Member Functions | |
| template<class T> | |
| GDALAlgorithmArg (const GDALAlgorithmArgDecl &decl, T *pValue) | |
| Constructor. | |
| virtual | ~GDALAlgorithmArg () |
| Destructor. | |
| const GDALAlgorithmArgDecl & | GetDeclaration () const |
| Return the argument declaration. | |
| const std::string & | GetName () const |
| Alias for GDALAlgorithmArgDecl::GetName(). | |
| const std::string & | GetShortName () const |
| Alias for GDALAlgorithmArgDecl::GetShortName(). | |
| const std::vector< std::string > & | GetAliases () const |
| Alias for GDALAlgorithmArgDecl::GetAliases(). | |
| const std::vector< char > & | GetShortNameAliases () const |
| Alias for GDALAlgorithmArgDecl::GetShortNameAliases(). | |
| const std::string & | GetDescription () const |
| Alias for GDALAlgorithmArgDecl::GetDescription(). | |
| const std::string & | GetMetaVar () const |
| Alias for GDALAlgorithmArgDecl::GetMetaVar(). | |
| GDALAlgorithmArgType | GetType () const |
| Alias for GDALAlgorithmArgDecl::GetType(). | |
| const std::string & | GetCategory () const |
| Alias for GDALAlgorithmArgDecl::GetCategory(). | |
| bool | IsRequired () const |
| Alias for GDALAlgorithmArgDecl::IsRequired(). | |
| int | GetMinCount () const |
| Alias for GDALAlgorithmArgDecl::GetMinCount(). | |
| int | GetMaxCount () const |
| Alias for GDALAlgorithmArgDecl::GetMaxCount(). | |
| bool | GetDisplayHintAboutRepetition () const |
| Alias for GDALAlgorithmArgDecl::GetDisplayHintAboutRepetition(). | |
| bool | GetPackedValuesAllowed () const |
| Alias for GDALAlgorithmArgDecl::GetPackedValuesAllowed(). | |
| bool | GetRepeatedArgAllowed () const |
| Alias for GDALAlgorithmArgDecl::GetRepeatedArgAllowed(). | |
| bool | IsPositional () const |
| Alias for GDALAlgorithmArgDecl::IsPositional(). | |
| const std::vector< std::string > & | GetChoices () const |
| Alias for GDALAlgorithmArgDecl::GetChoices(). | |
| const std::vector< std::string > & | GetHiddenChoices () const |
| Alias for GDALAlgorithmArgDecl::GetHiddenChoices(). | |
| std::vector< std::string > | GetAutoCompleteChoices (const std::string ¤tValue) const |
| Return auto completion choices, if a auto completion function has been registered. | |
| std::pair< double, bool > | GetMinValue () const |
| Alias for GDALAlgorithmArgDecl::GetMinValue(). | |
| std::pair< double, bool > | GetMaxValue () const |
| Alias for GDALAlgorithmArgDecl::GetMaxValue(). | |
| int | GetMinCharCount () const |
| Alias for GDALAlgorithmArgDecl::GetMinCharCount(). | |
| bool | IsExplicitlySet () const |
| Return whether the argument value has been explicitly set with Set(). | |
| bool | HasDefaultValue () const |
| Alias for GDALAlgorithmArgDecl::HasDefaultValue(). | |
| bool | IsHidden () const |
| Alias for GDALAlgorithmArgDecl::IsHidden(). | |
| bool | IsHiddenForCLI () const |
| Alias for GDALAlgorithmArgDecl::IsHiddenForCLI(). | |
| bool | IsOnlyForCLI () const |
| Alias for GDALAlgorithmArgDecl::IsOnlyForCLI(). | |
| bool | IsHiddenForAPI () const |
| Alias for GDALAlgorithmArgDecl::IsHiddenForAPI(). | |
| bool | IsInput () const |
| Alias for GDALAlgorithmArgDecl::IsInput(). | |
| bool | IsOutput () const |
| Alias for GDALAlgorithmArgDecl::IsOutput(). | |
| bool | IsReadFromFileAtSyntaxAllowed () const |
| Alias for GDALAlgorithmArgDecl::IsReadFromFileAtSyntaxAllowed(). | |
| bool | IsRemoveSQLCommentsEnabled () const |
| Alias for GDALAlgorithmArgDecl::IsRemoveSQLCommentsEnabled(). | |
| const std::string & | GetMutualExclusionGroup () const |
| Alias for GDALAlgorithmArgDecl::GetMutualExclusionGroup(). | |
| const std::map< std::string, std::vector< std::string > > | GetMetadata () const |
| Alias for GDALAlgorithmArgDecl::GetMetadata(). | |
| const std::vector< std::string > * | GetMetadataItem (const std::string &name) const |
| Alias for GDALAlgorithmArgDecl::GetMetadataItem(). | |
| template<class T> | |
| const T & | GetDefault () const |
| Alias for GDALAlgorithmArgDecl::GetDefault(). | |
| bool | AutoOpenDataset () const |
| Alias for GDALAlgorithmArgDecl::AutoOpenDataset(). | |
| bool | IsUserProvided () const |
| Alias for GDALAlgorithmArgDecl::IsUserProvided(). | |
| GDALArgDatasetType | GetDatasetType () const |
| Alias for GDALAlgorithmArgDecl::GetDatasetType(). | |
| int | GetDatasetInputFlags () const |
| Alias for GDALAlgorithmArgDecl::GetDatasetInputFlags(). | |
| int | GetDatasetOutputFlags () const |
| Alias for GDALAlgorithmArgDecl::GetDatasetOutputFlags(). | |
| template<class T> | |
| T & | Get () |
| Return the value of the argument, which is by decreasing order of priority: | |
| template<class T> | |
| const T & | Get () const |
| Return the value of the argument, which is by decreasing order of priority: | |
| bool | Set (bool value) |
| Set the value for a GAAT_BOOLEAN argument. | |
| bool | Set (const std::string &value) |
| Set the value for a GAAT_STRING argument. | |
| bool | Set (const char *value) |
| Set the value for a GAAT_STRING argument. | |
| bool | Set (GDALDataType dt) |
| Set the value for a GAAT_STRING argument from a GDALDataType It cannot be called several times for a given argument. | |
| bool | Set (const OGRSpatialReference &) |
| Set the value for a GAAT_STRING argument (representing a CRS) from a OGRSpatialReference It cannot be called several times for a given argument. | |
| bool | Set (int value) |
| Set the value for a GAAT_INTEGER (or GAAT_REAL) argument. | |
| bool | Set (double value) |
| Set the value for a GAAT_REAL argument. | |
| bool | Set (GDALDataset *ds) |
| Set the value for a GAAT_DATASET argument, increasing ds' reference counter if ds is not null. | |
| bool | Set (std::unique_ptr< GDALDataset > ds) |
| Set the value for a GAAT_DATASET argument. | |
| bool | SetDatasetName (const std::string &name) |
| Set the value for a GAAT_DATASET argument. | |
| bool | SetFrom (const GDALArgDatasetValue &other) |
| Set the value for a GAAT_DATASET argument. | |
| bool | Set (const std::vector< std::string > &value) |
| Set the value for a GAAT_STRING_LIST argument. | |
| bool | Set (const std::vector< int > &value) |
| Set the value for a GAAT_INTEGER_LIST argument. | |
| bool | Set (const std::vector< double > &value) |
| Set the value for a GAAT_REAL_LIST argument. | |
| bool | Set (std::vector< GDALArgDatasetValue > &&value) |
| Set the value for a GAAT_DATASET_LIST argument. | |
| GDALAlgorithmArg & | operator= (bool value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (int value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (double value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const std::string &value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const char *value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (GDALDataType value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const OGRSpatialReference &value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const std::vector< int > &value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const std::vector< double > &value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (const std::vector< std::string > &value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (GDALDataset *value) |
| Set the value of the argument. | |
| GDALAlgorithmArg & | operator= (std::unique_ptr< GDALDataset > value) |
| Set the value of the argument. | |
| bool | SetFrom (const GDALAlgorithmArg &other) |
| Set the value for another argument. | |
| void | SetSkipIfAlreadySet (bool skip=true) |
| Advanced method used to make "gdal info" and "gdal raster|vector info" to avoid re-opening an already opened dataset. | |
| bool | SkipIfAlreadySet () const |
| Advanced method used to make "gdal info" and "gdal raster|vector info" to avoid re-opening an already opened dataset. | |
| bool | Serialize (std::string &serializedArg, bool absolutePath=false) const |
| Serialize this argument and its value. | |
Static Public Member Functions | |
| static std::string | GetEscapedString (const std::string &s) |
| Return an escaped string for argument serialization. | |
Protected Attributes | |
| GDALAlgorithmArgDecl | m_decl |
| Argument declaration. | |
| std::variant< bool *, std::string *, int *, double *, GDALArgDatasetValue *, std::vector< std::string > *, std::vector< int > *, std::vector< double > *, std::vector< GDALArgDatasetValue > * > | m_value {} |
| Pointer to the value. | |
| std::vector< std::function< void()> > | m_actions {} |
| Actions. | |
| std::vector< std::function< bool()> > | m_validationActions {} |
| Validation actions. | |
| std::function< std::vector< std::string >(const std::string &)> | m_autoCompleteFunction {} |
| Autocompletion function. | |
| GDALAlgorithm * | m_owner = nullptr |
| Algorithm that may own this argument. | |
Friends | |
| class | GDALAlgorithm |
Argument of an algorithm.
|
inline |
Return the value of the argument, which is by decreasing order of priority:
Must be called with T consistent of the type of the algorithm:
|
inline |
Return the value of the argument, which is by decreasing order of priority:
Must be called with T consistent of the type of the algorithm:
| bool GDALAlgorithmArg::Serialize | ( | std::string & | serializedArg, |
| bool | absolutePath = false ) const |
Serialize this argument and its value.
May return false if the argument is not explicitly set or if a dataset is passed by value.
| bool GDALAlgorithmArg::Set | ( | bool | value | ) |
Set the value for a GAAT_BOOLEAN argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
|
inline |
Set the value for a GAAT_STRING argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | const OGRSpatialReference & | value | ) |
Set the value for a GAAT_STRING argument (representing a CRS) from a OGRSpatialReference It cannot be called several times for a given argument.
Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | const std::string & | value | ) |
Set the value for a GAAT_STRING argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | const std::vector< double > & | value | ) |
Set the value for a GAAT_REAL_LIST argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | const std::vector< int > & | value | ) |
Set the value for a GAAT_INTEGER_LIST argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | const std::vector< std::string > & | value | ) |
Set the value for a GAAT_STRING_LIST argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | GDALDataset * | ds | ) |
Set the value for a GAAT_DATASET argument, increasing ds' reference counter if ds is not null.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
|
inline |
Set the value for a GAAT_STRING argument from a GDALDataType It cannot be called several times for a given argument.
Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | int | value | ) |
Set the value for a GAAT_INTEGER (or GAAT_REAL) argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | std::unique_ptr< GDALDataset > | ds | ) |
Set the value for a GAAT_DATASET argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::Set | ( | std::vector< GDALArgDatasetValue > && | value | ) |
Set the value for a GAAT_DATASET_LIST argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::SetDatasetName | ( | const std::string & | name | ) |
Set the value for a GAAT_DATASET argument.
It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::SetFrom | ( | const GDALAlgorithmArg & | other | ) |
Set the value for another argument.
For GAAT_DATASET, it will reference the dataset pointed by other.m_poDS. It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.
| bool GDALAlgorithmArg::SetFrom | ( | const GDALArgDatasetValue & | other | ) |
Set the value for a GAAT_DATASET argument.
It references the dataset pointed by other.m_poDS. It cannot be called several times for a given argument. Validation checks and other actions are run. Return true if success.