Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: "select" step of "vector pipeline" 5 : * Author: Even Rouault <even dot rouault at spatialys.com> 6 : * 7 : ****************************************************************************** 8 : * Copyright (c) 2024, Even Rouault <even dot rouault at spatialys.com> 9 : * 10 : * SPDX-License-Identifier: MIT 11 : ****************************************************************************/ 12 : 13 : #ifndef GDALALG_VECTOR_SELECT_INCLUDED 14 : #define GDALALG_VECTOR_SELECT_INCLUDED 15 : 16 : #include "gdalalg_vector_pipeline.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALVectorSelectAlgorithm */ 22 : /************************************************************************/ 23 : 24 : class GDALVectorSelectAlgorithm /* non final */ 25 : : public GDALVectorPipelineStepAlgorithm 26 : { 27 : public: 28 : static constexpr const char *NAME = "select"; 29 : static constexpr const char *DESCRIPTION = 30 : "Select a subset of fields from a vector dataset."; 31 : static constexpr const char *HELP_URL = "/programs/gdal_vector_select.html"; 32 : 33 198 : static std::vector<std::string> GetAliases() 34 : { 35 198 : return {}; 36 : } 37 : 38 : explicit GDALVectorSelectAlgorithm(bool standaloneStep = false); 39 : 40 : private: 41 : bool RunStep(GDALProgressFunc pfnProgress, void *pProgressData) override; 42 : 43 : std::vector<std::string> m_fields{}; 44 : bool m_ignoreMissingFields = false; 45 : bool m_exclude = false; 46 : }; 47 : 48 : /************************************************************************/ 49 : /* GDALVectorSelectAlgorithmStandalone */ 50 : /************************************************************************/ 51 : 52 : class GDALVectorSelectAlgorithmStandalone final 53 : : public GDALVectorSelectAlgorithm 54 : { 55 : public: 56 9 : GDALVectorSelectAlgorithmStandalone() 57 9 : : GDALVectorSelectAlgorithm(/* standaloneStep = */ true) 58 : { 59 9 : } 60 : }; 61 : 62 : //! @endcond 63 : 64 : #endif /* GDALALG_VECTOR_SELECT_INCLUDED */