Line data Source code
1 : /****************************************************************************** 2 : * 3 : * Project: GDAL 4 : * Purpose: "read" step of "raster 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 : #include "gdalalg_raster_read.h" 14 : 15 : #include "gdal_priv.h" 16 : #include "ogrsf_frmts.h" 17 : 18 : //! @cond Doxygen_Suppress 19 : 20 : /************************************************************************/ 21 : /* GDALRasterReadAlgorithm::GDALRasterReadAlgorithm() */ 22 : /************************************************************************/ 23 : 24 382 : GDALRasterReadAlgorithm::GDALRasterReadAlgorithm(bool openForMixedRasterVector) 25 : : GDALRasterPipelineStepAlgorithm( 26 : NAME, DESCRIPTION, HELP_URL, 27 382 : ConstructorOptions().SetAddDefaultArguments(false)) 28 : { 29 382 : AddRasterInputArgs(openForMixedRasterVector, 30 : /* hiddenForCLI = */ false); 31 382 : } 32 : 33 : /************************************************************************/ 34 : /* GDALRasterReadAlgorithm::RunStep() */ 35 : /************************************************************************/ 36 : 37 305 : bool GDALRasterReadAlgorithm::RunStep(GDALPipelineStepRunContext &) 38 : { 39 305 : const auto poSrcDS = m_inputDataset[0].GetDatasetRef(); 40 305 : CPLAssert(poSrcDS); 41 305 : CPLAssert(m_outputDataset.GetName().empty()); 42 305 : CPLAssert(!m_outputDataset.GetDatasetRef()); 43 : 44 305 : m_outputDataset.Set(poSrcDS); 45 : 46 305 : return true; 47 : } 48 : 49 : //! @endcond