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