Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: "write" 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_WRITE_INCLUDED 14 : #define GDALALG_VECTOR_WRITE_INCLUDED 15 : 16 : #include "gdalalg_vector_pipeline.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALVectorWriteAlgorithm */ 22 : /************************************************************************/ 23 : 24 : class GDALVectorWriteAlgorithm final : public GDALVectorPipelineStepAlgorithm 25 : { 26 : public: 27 : static constexpr const char *NAME = "write"; 28 : static constexpr const char *DESCRIPTION = "Write a vector dataset."; 29 : static constexpr const char *HELP_URL = 30 : "/programs/gdal_vector_pipeline.html"; 31 : 32 : GDALVectorWriteAlgorithm(); 33 : 34 141 : bool CanBeLastStep() const override 35 : { 36 141 : return true; 37 : } 38 : 39 0 : bool GeneratesFilesFromUserInput() const override 40 : { 41 0 : return true; 42 : } 43 : 44 113 : bool IsNativelyStreamingCompatible() const override 45 : { 46 113 : return false; 47 : } 48 : 49 : private: 50 : friend class GDALVectorPipelineStepAlgorithm; 51 : bool RunStep(GDALPipelineStepRunContext &ctxt) override; 52 : }; 53 : 54 : //! @endcond 55 : 56 : #endif /* GDALALG_VECTOR_WRITE_INCLUDED */