LCOV - code coverage report
Current view: top level - apps - ogr2ogr_lib.cpp (source / functions) Hit Total Coverage
Test: gdal_filtered.info Lines: 3233 4006 80.7 %
Date: 2026-06-28 22:25:56 Functions: 104 140 74.3 %

          Line data    Source code
       1             : /******************************************************************************
       2             :  *
       3             :  * Project:  OpenGIS Simple Features Reference Implementation
       4             :  * Purpose:  Simple client for translating between formats.
       5             :  * Author:   Frank Warmerdam, warmerdam@pobox.com
       6             :  *
       7             :  ******************************************************************************
       8             :  * Copyright (c) 1999, Frank Warmerdam
       9             :  * Copyright (c) 2008-2015, Even Rouault <even dot rouault at spatialys.com>
      10             :  * Copyright (c) 2015, Faza Mahamood
      11             :  *
      12             :  * SPDX-License-Identifier: MIT
      13             :  ****************************************************************************/
      14             : 
      15             : #include "cpl_port.h"
      16             : #include "gdal_utils.h"
      17             : #include "gdal_utils_priv.h"
      18             : #include "gdalargumentparser.h"
      19             : 
      20             : #include <cassert>
      21             : #include <climits>
      22             : #include <cstdio>
      23             : #include <cstdlib>
      24             : #include <cstring>
      25             : 
      26             : #include <algorithm>
      27             : #include <atomic>
      28             : #include <future>
      29             : #include <limits>
      30             : #include <map>
      31             : #include <memory>
      32             : #include <mutex>
      33             : #include <set>
      34             : #include <unordered_set>
      35             : #include <string>
      36             : #include <utility>
      37             : #include <vector>
      38             : 
      39             : #include "commonutils.h"
      40             : #include "cpl_conv.h"
      41             : #include "cpl_error.h"
      42             : #include "cpl_multiproc.h"
      43             : #include "cpl_progress.h"
      44             : #include "cpl_string.h"
      45             : #include "cpl_time.h"
      46             : #include "cpl_vsi.h"
      47             : #include "gdal.h"
      48             : #include "gdal_alg.h"
      49             : #include "gdal_alg_priv.h"
      50             : #include "gdal_priv.h"
      51             : #include "gdal_thread_pool.h"
      52             : #include "ogr_api.h"
      53             : #include "ogr_core.h"
      54             : #include "ogr_feature.h"
      55             : #include "ogr_featurestyle.h"
      56             : #include "ogr_geometry.h"
      57             : #include "ogr_p.h"
      58             : #include "ogr_recordbatch.h"
      59             : #include "ogr_spatialref.h"
      60             : #include "ogrlayerarrow.h"
      61             : #include "ogrlayerdecorator.h"
      62             : #include "ogrsf_frmts.h"
      63             : #include "ogr_wkb.h"
      64             : #include "ogrct_priv.h"
      65             : 
      66             : typedef enum
      67             : {
      68             :     GEOMOP_NONE,
      69             :     GEOMOP_SEGMENTIZE,
      70             :     GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY,
      71             : } GeomOperation;
      72             : 
      73             : typedef enum
      74             : {
      75             :     GTC_DEFAULT,
      76             :     GTC_PROMOTE_TO_MULTI,
      77             :     GTC_CONVERT_TO_LINEAR,
      78             :     GTC_CONVERT_TO_CURVE,
      79             :     GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR,
      80             : } GeomTypeConversion;
      81             : 
      82             : #define GEOMTYPE_UNCHANGED -2
      83             : 
      84             : #define COORD_DIM_UNCHANGED -1
      85             : #define COORD_DIM_LAYER_DIM -2
      86             : #define COORD_DIM_XYM -3
      87             : 
      88             : #define TZ_OFFSET_INVALID INT_MIN
      89             : 
      90             : /************************************************************************/
      91             : /*                      GDALVectorTranslateOptions                      */
      92             : /************************************************************************/
      93             : 
      94             : /** Options for use with GDALVectorTranslate(). GDALVectorTranslateOptions* must
      95             :  * be allocated and freed with GDALVectorTranslateOptionsNew() and
      96             :  * GDALVectorTranslateOptionsFree() respectively.
      97             :  */
      98             : struct GDALVectorTranslateOptions
      99             : {
     100             :     // All arguments passed to GDALVectorTranslate() except the positional
     101             :     // ones (that is dataset names and layer names)
     102             :     CPLStringList aosArguments{};
     103             : 
     104             :     /*! continue after a failure, skipping the failed feature */
     105             :     bool bSkipFailures = false;
     106             : 
     107             :     /*! use layer level transaction. If set to FALSE, then it is interpreted as
     108             :      * dataset level transaction. */
     109             :     int nLayerTransaction = -1;
     110             : 
     111             :     /*! force the use of particular transaction type based on
     112             :      * GDALVectorTranslate::nLayerTransaction */
     113             :     bool bForceTransaction = false;
     114             : 
     115             :     /*! group nGroupTransactions features per transaction.
     116             :        Increase the value for better performance when writing into DBMS drivers
     117             :        that have transaction support. nGroupTransactions can be set to -1 to
     118             :        load the data into a single transaction */
     119             :     int nGroupTransactions = 100 * 1000;
     120             : 
     121             :     /*! If provided, only the feature with this feature id will be reported.
     122             :        Operates exclusive of the spatial or attribute queries. Note: if you want
     123             :        to select several features based on their feature id, you can also use
     124             :        the fact the 'fid' is a special field recognized by OGR SQL. So
     125             :        GDALVectorTranslateOptions::pszWHERE = "fid in (1,3,5)" would select
     126             :        features 1, 3 and 5. */
     127             :     GIntBig nFIDToFetch = OGRNullFID;
     128             : 
     129             :     /*! allow or suppress progress monitor and other non-error output */
     130             :     bool bQuiet = false;
     131             : 
     132             :     /*! output file format name */
     133             :     std::string osFormat{};
     134             : 
     135             :     /*! list of layers of the source dataset which needs to be selected */
     136             :     CPLStringList aosLayers{};
     137             : 
     138             :     /*! dataset creation option (format specific) */
     139             :     CPLStringList aosDSCO{};
     140             : 
     141             :     /*! layer creation option (format specific) */
     142             :     CPLStringList aosLCO{};
     143             : 
     144             :     /*! access modes */
     145             :     GDALVectorTranslateAccessMode eAccessMode = ACCESS_CREATION;
     146             : 
     147             :     /*! whether to use UpsertFeature() instead of CreateFeature() */
     148             :     bool bUpsert = false;
     149             : 
     150             :     /*! It has the effect of adding, to existing target layers, the new fields
     151             :        found in source layers. This option is useful when merging files that
     152             :        have non-strictly identical structures. This might not work for output
     153             :        formats that don't support adding fields to existing non-empty layers. */
     154             :     bool bAddMissingFields = false;
     155             : 
     156             :     /*! It must be set to true to trigger reprojection, otherwise only SRS
     157             :      * assignment is done. */
     158             :     bool bTransform = false;
     159             : 
     160             :     /*! output SRS. GDALVectorTranslateOptions::bTransform must be set to true
     161             :        to trigger reprojection, otherwise only SRS assignment is done. */
     162             :     std::string osOutputSRSDef{};
     163             : 
     164             :     /*! Coordinate epoch of source SRS */
     165             :     double dfSourceCoordinateEpoch = 0;
     166             : 
     167             :     /*! Coordinate epoch of output SRS */
     168             :     double dfOutputCoordinateEpoch = 0;
     169             : 
     170             :     /*! override source SRS */
     171             :     std::string osSourceSRSDef{};
     172             : 
     173             :     /*! PROJ pipeline */
     174             :     std::string osCTPipeline{};
     175             : 
     176             :     /*! Transform options. */
     177             :     CPLStringList aosCTOptions{};
     178             : 
     179             :     bool bNullifyOutputSRS = false;
     180             : 
     181             :     /*! If set to false, then field name matching between source and existing
     182             :        target layer is done in a more relaxed way if the target driver has an
     183             :        implementation for it. */
     184             :     bool bExactFieldNameMatch = true;
     185             : 
     186             :     /*! an alternate name to the new layer */
     187             :     std::string osNewLayerName{};
     188             : 
     189             :     /*! attribute query (like SQL WHERE) */
     190             :     std::string osWHERE{};
     191             : 
     192             :     /*! name of the geometry field on which the spatial filter operates on. */
     193             :     std::string osGeomField{};
     194             : 
     195             :     /*! whether osGeomField is set (useful for empty strings) */
     196             :     bool bGeomFieldSet = false;
     197             : 
     198             :     /*! whether -select has been specified. This is of course true when
     199             :      * !aosSelFields.empty(), but this can also be set when an empty string
     200             :      * has been to disable fields. */
     201             :     bool bSelFieldsSet = false;
     202             : 
     203             :     /*! list of fields from input layer to copy to the new layer.
     204             :      * Geometry fields can also be specified in the list. */
     205             :     CPLStringList aosSelFields{};
     206             : 
     207             :     /*! SQL statement to execute. The resulting table/layer will be saved to the
     208             :      * output. */
     209             :     std::string osSQLStatement{};
     210             : 
     211             :     /*! SQL dialect. In some cases can be used to use (unoptimized) OGR SQL
     212             :        instead of the native SQL of an RDBMS by using "OGRSQL". The "SQLITE"
     213             :        dialect can also be used with any datasource. */
     214             :     std::string osDialect{};
     215             : 
     216             :     /*! the geometry type for the created layer */
     217             :     int eGType = GEOMTYPE_UNCHANGED;
     218             : 
     219             :     GeomTypeConversion eGeomTypeConversion = GTC_DEFAULT;
     220             : 
     221             :     /*! Geometric operation to perform */
     222             :     GeomOperation eGeomOp = GEOMOP_NONE;
     223             : 
     224             :     /*! the parameter to geometric operation */
     225             :     double dfGeomOpParam = 0;
     226             : 
     227             :     /*! Whether to run MakeValid */
     228             :     bool bMakeValid = false;
     229             : 
     230             :     /*! Whether to run OGRGeometry::IsValid */
     231             :     bool bSkipInvalidGeom = false;
     232             : 
     233             :     /*! list of field types to convert to a field of type string in the
     234             :        destination layer. Valid types are: Integer, Integer64, Real, String,
     235             :        Date, Time, DateTime, Binary, IntegerList, Integer64List, RealList,
     236             :        StringList. Special value "All" can be used to convert all fields to
     237             :        strings. This is an alternate way to using the CAST operator of OGR SQL,
     238             :        that may avoid typing a long SQL query. Note that this does not influence
     239             :        the field types used by the source driver, and is only an afterwards
     240             :         conversion. */
     241             :     CPLStringList aosFieldTypesToString{};
     242             : 
     243             :     /*! list of field types and the field type after conversion in the
     244             :        destination layer.
     245             :         ("srctype1=dsttype1","srctype2=dsttype2",...).
     246             :         Valid types are : Integer, Integer64, Real, String, Date, Time,
     247             :        DateTime, Binary, IntegerList, Integer64List, RealList, StringList. Types
     248             :        can also include subtype between parenthesis, such as Integer(Boolean),
     249             :        Real(Float32), ... Special value "All" can be used to convert all fields
     250             :        to another type. This is an alternate way to using the CAST operator of
     251             :        OGR SQL, that may avoid typing a long SQL query. This is a generalization
     252             :        of GDALVectorTranslateOptions::papszFieldTypeToString. Note that this
     253             :        does not influence the field types used by the source driver, and is only
     254             :        an afterwards conversion. */
     255             :     CPLStringList aosMapFieldType{};
     256             : 
     257             :     /*! set field width and precision to 0 */
     258             :     bool bUnsetFieldWidth = false;
     259             : 
     260             :     /*! display progress on terminal. Only works if input layers have the "fast
     261             :     feature count" capability */
     262             :     bool bDisplayProgress = false;
     263             : 
     264             :     /*! split geometries crossing the dateline meridian */
     265             :     bool bWrapDateline = false;
     266             : 
     267             :     /*! offset from dateline in degrees (default long. = +/- 10deg, geometries
     268             :     within 170deg to -170deg will be split) */
     269             :     double dfDateLineOffset = 10.0;
     270             : 
     271             :     /*! clip geometries when it is set to true */
     272             :     bool bClipSrc = false;
     273             : 
     274             :     std::shared_ptr<OGRGeometry> poClipSrc{};
     275             : 
     276             :     /*! clip datasource */
     277             :     std::string osClipSrcDS{};
     278             : 
     279             :     /*! select desired geometries using an SQL query */
     280             :     std::string osClipSrcSQL{};
     281             : 
     282             :     /*! selected named layer from the source clip datasource */
     283             :     std::string osClipSrcLayer{};
     284             : 
     285             :     /*! restrict desired geometries based on attribute query */
     286             :     std::string osClipSrcWhere{};
     287             : 
     288             :     std::shared_ptr<OGRGeometry> poClipDst{};
     289             : 
     290             :     /*! destination clip datasource */
     291             :     std::string osClipDstDS{};
     292             : 
     293             :     /*! select desired geometries using an SQL query */
     294             :     std::string osClipDstSQL{};
     295             : 
     296             :     /*! selected named layer from the destination clip datasource */
     297             :     std::string osClipDstLayer{};
     298             : 
     299             :     /*! restrict desired geometries based on attribute query */
     300             :     std::string osClipDstWhere{};
     301             : 
     302             :     /*! split fields of type StringList, RealList or IntegerList into as many
     303             :        fields of type String, Real or Integer as necessary. */
     304             :     bool bSplitListFields = false;
     305             : 
     306             :     /*! limit the number of subfields created for each split field. */
     307             :     int nMaxSplitListSubFields = -1;
     308             : 
     309             :     /*! produce one feature for each geometry in any kind of geometry collection
     310             :        in the source file */
     311             :     bool bExplodeCollections = false;
     312             : 
     313             :     /*! uses the specified field to fill the Z coordinates of geometries */
     314             :     std::string osZField{};
     315             : 
     316             :     /*! the list of field indexes to be copied from the source to the
     317             :        destination. The (n)th value specified in the list is the index of the
     318             :        field in the target layer definition in which the n(th) field of the
     319             :        source layer must be copied. Index count starts at zero. There must be
     320             :         exactly as many values in the list as the count of the fields in the
     321             :        source layer. We can use the "identity" option to specify that the fields
     322             :        should be transferred by using the same order. This option should be used
     323             :        along with the GDALVectorTranslateOptions::eAccessMode = ACCESS_APPEND
     324             :        option. */
     325             :     CPLStringList aosFieldMap{};
     326             : 
     327             :     /*! force the coordinate dimension to nCoordDim (valid values are 2 or 3).
     328             :        This affects both the layer geometry type, and feature geometries. */
     329             :     int nCoordDim = COORD_DIM_UNCHANGED;
     330             : 
     331             :     /*! destination dataset open option (format specific), only valid in update
     332             :      * mode */
     333             :     CPLStringList aosDestOpenOptions{};
     334             : 
     335             :     /*! If set to true, does not propagate not-nullable constraints to target
     336             :        layer if they exist in source layer */
     337             :     bool bForceNullable = false;
     338             : 
     339             :     /*! If set to true, for each field with a coded field domains, create a
     340             :        field that contains the description of the coded value. */
     341             :     bool bResolveDomains = false;
     342             : 
     343             :     /*! If set to true, empty string values will be treated as null */
     344             :     bool bEmptyStrAsNull = false;
     345             : 
     346             :     /*! If set to true, does not propagate default field values to target layer
     347             :        if they exist in source layer */
     348             :     bool bUnsetDefault = false;
     349             : 
     350             :     /*! to prevent the new default behavior that consists in, if the output
     351             :        driver has a FID layer creation option and we are not in append mode, to
     352             :        preserve the name of the source FID column and source feature IDs */
     353             :     bool bUnsetFid = false;
     354             : 
     355             :     /*! use the FID of the source features instead of letting the output driver
     356             :        to automatically assign a new one. If not in append mode, this behavior
     357             :        becomes the default if the output driver has a FID layer creation option.
     358             :        In which case the name of the source FID column will be used and source
     359             :        feature IDs will be attempted to be preserved. This behavior can be
     360             :         disabled by option GDALVectorTranslateOptions::bUnsetFid */
     361             :     bool bPreserveFID = false;
     362             : 
     363             :     /*! set it to false to disable copying of metadata from source dataset and
     364             :        layers into target dataset and layers, when supported by output driver.
     365             :      */
     366             :     bool bCopyMD = true;
     367             : 
     368             :     /*! list of metadata key and value to set on the output dataset, when
     369             :        supported by output driver.
     370             :         ("META-TAG1=VALUE1","META-TAG2=VALUE2") */
     371             :     CPLStringList aosMetadataOptions{};
     372             : 
     373             :     /*! override spatial filter SRS */
     374             :     std::string osSpatSRSDef{};
     375             : 
     376             :     /*! list of ground control points to be added */
     377             :     std::vector<gdal::GCP> asGCPs{};
     378             : 
     379             :     /*! order of polynomial used for warping (1 to 3). The default is to select
     380             :        a polynomial order based on the number of GCPs */
     381             :     int nTransformOrder = 0;
     382             : 
     383             :     /*! spatial query extents, in the SRS of the source layer(s) (or the one
     384             :        specified with GDALVectorTranslateOptions::pszSpatSRSDef). Only features
     385             :        whose geometry intersects the extents will be selected. The geometries
     386             :        will not be clipped unless GDALVectorTranslateOptions::bClipSrc is true.
     387             :      */
     388             :     std::shared_ptr<OGRGeometry> poSpatialFilter{};
     389             : 
     390             :     /*! the progress function to use */
     391             :     GDALProgressFunc pfnProgress = nullptr;
     392             : 
     393             :     /*! pointer to the progress data variable */
     394             :     void *pProgressData = nullptr;
     395             : 
     396             :     /*! Whether layer and feature native data must be transferred. */
     397             :     bool bNativeData = true;
     398             : 
     399             :     /*! Maximum number of features, or -1 if no limit. */
     400             :     GIntBig nLimit = -1;
     401             : 
     402             :     /*! Wished offset w.r.t UTC of dateTime */
     403             :     int nTZOffsetInSec = TZ_OFFSET_INVALID;
     404             : 
     405             :     /*! Geometry X,Y coordinate resolution */
     406             :     double dfXYRes = OGRGeomCoordinatePrecision::UNKNOWN;
     407             : 
     408             :     /*! Unit of dXYRes. empty string, "m", "mm" or "deg" */
     409             :     std::string osXYResUnit{};
     410             : 
     411             :     /*! Geometry Z coordinate resolution */
     412             :     double dfZRes = OGRGeomCoordinatePrecision::UNKNOWN;
     413             : 
     414             :     /*! Unit of dfZRes. empty string, "m" or "mm" */
     415             :     std::string osZResUnit{};
     416             : 
     417             :     /*! Geometry M coordinate resolution */
     418             :     double dfMRes = OGRGeomCoordinatePrecision::UNKNOWN;
     419             : 
     420             :     /*! Whether to unset geometry coordinate precision */
     421             :     bool bUnsetCoordPrecision = false;
     422             : 
     423             :     /*! set to true to prevent overwriting existing dataset */
     424             :     bool bNoOverwrite = false;
     425             : 
     426             :     /*! set to true to customize error messages when called from "new" (GDAL 3.11) CLI or Algorithm API */
     427             :     bool bInvokedFromGdalAlgorithm = false;
     428             : };
     429             : 
     430             : struct TargetLayerInfo
     431             : {
     432             :     OGRLayer *m_poSrcLayer = nullptr;
     433             :     GIntBig m_nFeaturesRead = 0;
     434             :     bool m_bPerFeatureCT = 0;
     435             :     OGRLayer *m_poDstLayer = nullptr;
     436             :     bool m_bUseWriteArrowBatch = false;
     437             : 
     438             :     struct ReprojectionInfo
     439             :     {
     440             :         std::unique_ptr<OGRCoordinateTransformation> m_poCT{};
     441             :         CPLStringList m_aosTransformOptions{};
     442             :         bool m_bCanInvalidateValidity = true;
     443             :         bool m_bWarnAboutDifferentCoordinateOperations = false;
     444             :         double m_dfLeftX = std::numeric_limits<double>::max();
     445             :         double m_dfLeftY = 0;
     446             :         double m_dfLeftZ = 0;
     447             :         double m_dfRightX = -std::numeric_limits<double>::max();
     448             :         double m_dfRightY = 0;
     449             :         double m_dfRightZ = 0;
     450             :         double m_dfBottomX = 0;
     451             :         double m_dfBottomY = std::numeric_limits<double>::max();
     452             :         double m_dfBottomZ = 0;
     453             :         double m_dfTopX = 0;
     454             :         double m_dfTopY = -std::numeric_limits<double>::max();
     455             :         double m_dfTopZ = 0;
     456             : 
     457       13076 :         void UpdateExtremePoints(double dfX, double dfY, double dfZ)
     458             :         {
     459       13076 :             if (dfX < m_dfLeftX)
     460             :             {
     461         237 :                 m_dfLeftX = dfX;
     462         237 :                 m_dfLeftY = dfY;
     463         237 :                 m_dfLeftZ = dfZ;
     464             :             }
     465       13076 :             if (dfX > m_dfRightX)
     466             :             {
     467       10373 :                 m_dfRightX = dfX;
     468       10373 :                 m_dfRightY = dfY;
     469       10373 :                 m_dfRightZ = dfZ;
     470             :             }
     471       13076 :             if (dfY < m_dfBottomY)
     472             :             {
     473         411 :                 m_dfBottomX = dfX;
     474         411 :                 m_dfBottomY = dfY;
     475         411 :                 m_dfBottomZ = dfZ;
     476             :             }
     477       13076 :             if (dfY > m_dfTopY)
     478             :             {
     479       10219 :                 m_dfTopX = dfX;
     480       10219 :                 m_dfTopY = dfY;
     481       10219 :                 m_dfTopZ = 0;
     482             :             }
     483       13076 :         }
     484             :     };
     485             : 
     486             :     std::vector<ReprojectionInfo> m_aoReprojectionInfo{};
     487             : 
     488             :     std::vector<int> m_anMap{};
     489             : 
     490             :     struct ResolvedInfo
     491             :     {
     492             :         int nSrcField;
     493             :         const OGRFieldDomain *poDomain;
     494             :     };
     495             : 
     496             :     std::map<int, ResolvedInfo> m_oMapResolved{};
     497             :     std::map<const OGRFieldDomain *, std::map<std::string, std::string>>
     498             :         m_oMapDomainToKV{};
     499             :     int m_iSrcZField = -1;
     500             :     int m_iSrcFIDField = -1;
     501             :     int m_iRequestedSrcGeomField = -1;
     502             :     bool m_bPreserveFID = false;
     503             :     const char *m_pszCTPipeline = nullptr;
     504             :     CPLStringList m_aosCTOptions{};
     505             :     bool m_bCanAvoidSetFrom = false;
     506             :     const char *m_pszSpatSRSDef = nullptr;
     507             :     OGRGeometryH m_hSpatialFilter = nullptr;
     508             :     const char *m_pszGeomField = nullptr;
     509             :     std::vector<int> m_anDateTimeFieldIdx{};
     510             :     bool m_bSupportCurves = false;
     511             :     bool m_bSupportZ = false;
     512             :     bool m_bSupportM = false;
     513             :     bool m_bHasWarnedAboutCurves = false;
     514             :     bool m_bHasWarnedAboutZ = false;
     515             :     bool m_bHasWarnedAboutM = false;
     516             :     OGRArrowArrayStream m_sArrowArrayStream{};
     517             : 
     518             :     void CheckSameCoordinateOperation() const;
     519             : };
     520             : 
     521             : struct AssociatedLayers
     522             : {
     523             :     OGRLayer *poSrcLayer = nullptr;
     524             :     std::unique_ptr<TargetLayerInfo> psInfo{};
     525             : };
     526             : 
     527             : class SetupTargetLayer
     528             : {
     529             :   public:
     530             :     GDALDataset *m_poSrcDS = nullptr;
     531             :     GDALDataset *m_poDstDS = nullptr;
     532             :     CSLConstList m_papszLCO = nullptr;
     533             :     const OGRSpatialReference *m_poUserSourceSRS = nullptr;
     534             :     const OGRSpatialReference *m_poOutputSRS = nullptr;
     535             :     bool m_bTransform = false;
     536             :     bool m_bNullifyOutputSRS = false;
     537             :     bool m_bSelFieldsSet = false;
     538             :     CSLConstList m_papszSelFields = nullptr;
     539             :     bool m_bAppend = false;
     540             :     bool m_bAddMissingFields = false;
     541             :     int m_eGType = 0;
     542             :     GeomTypeConversion m_eGeomTypeConversion = GTC_DEFAULT;
     543             :     int m_nCoordDim = 0;
     544             :     bool m_bOverwrite = false;
     545             :     CSLConstList m_papszFieldTypesToString = nullptr;
     546             :     CSLConstList m_papszMapFieldType = nullptr;
     547             :     bool m_bUnsetFieldWidth = false;
     548             :     bool m_bExplodeCollections = false;
     549             :     const char *m_pszZField = nullptr;
     550             :     CSLConstList m_papszFieldMap = nullptr;
     551             :     const char *m_pszWHERE = nullptr;
     552             :     bool m_bExactFieldNameMatch = false;
     553             :     bool m_bQuiet = false;
     554             :     bool m_bForceNullable = false;
     555             :     bool m_bResolveDomains = false;
     556             :     bool m_bUnsetDefault = false;
     557             :     bool m_bUnsetFid = false;
     558             :     bool m_bPreserveFID = false;
     559             :     bool m_bCopyMD = false;
     560             :     bool m_bNativeData = false;
     561             :     bool m_bNewDataSource = false;
     562             :     const char *m_pszCTPipeline = nullptr;
     563             :     CPLStringList m_aosCTOptions{};
     564             : 
     565             :     std::unique_ptr<TargetLayerInfo>
     566             :     Setup(OGRLayer *poSrcLayer, const char *pszNewLayerName,
     567             :           GDALVectorTranslateOptions *psOptions, GIntBig &nTotalEventsDone);
     568             : 
     569             :   private:
     570             :     bool CanUseWriteArrowBatch(OGRLayer *poSrcLayer, OGRLayer *poDstLayer,
     571             :                                bool bJustCreatedLayer,
     572             :                                const GDALVectorTranslateOptions *psOptions,
     573             :                                bool bPreserveFID,
     574             :                                OGRArrowArrayStream &streamSrc);
     575             : 
     576             :     void SetIgnoredFields(OGRLayer *poSrcLayer);
     577             : };
     578             : 
     579             : class LayerTranslator
     580             : {
     581             :     bool TranslateArrow(TargetLayerInfo *psInfo, GIntBig nCountLayerFeatures,
     582             :                         GIntBig *pnReadFeatureCount,
     583             :                         GDALProgressFunc pfnProgress, void *pProgressArg,
     584             :                         const GDALVectorTranslateOptions *psOptions);
     585             : 
     586             :   public:
     587             :     GDALDataset *m_poSrcDS = nullptr;
     588             :     GDALDataset *m_poODS = nullptr;
     589             :     bool m_bTransform = false;
     590             :     bool m_bWrapDateline = false;
     591             :     CPLString m_osDateLineOffset{};
     592             :     const OGRSpatialReference *m_poOutputSRS = nullptr;
     593             :     bool m_bNullifyOutputSRS = false;
     594             :     const OGRSpatialReference *m_poUserSourceSRS = nullptr;
     595             :     OGRCoordinateTransformation *m_poGCPCoordTrans = nullptr;
     596             :     int m_eGType = -1;
     597             :     GeomTypeConversion m_eGeomTypeConversion = GTC_DEFAULT;
     598             :     bool m_bMakeValid = false;
     599             :     bool m_bSkipInvalidGeom = false;
     600             :     int m_nCoordDim = 0;
     601             :     GeomOperation m_eGeomOp = GEOMOP_NONE;
     602             :     double m_dfGeomOpParam = 0;
     603             : 
     604             :     OGRGeometry *m_poClipSrcOri = nullptr;
     605             :     bool m_bWarnedClipSrcSRS = false;
     606             :     std::unique_ptr<OGRGeometry> m_poClipSrcReprojectedToSrcSRS{};
     607             :     const OGRSpatialReference *m_poClipSrcReprojectedToSrcSRS_SRS = nullptr;
     608             :     OGREnvelope m_oClipSrcEnv{};
     609             :     bool m_bClipSrcIsRectangle = false;
     610             : 
     611             :     OGRGeometry *m_poClipDstOri = nullptr;
     612             :     bool m_bWarnedClipDstSRS = false;
     613             :     std::unique_ptr<OGRGeometry> m_poClipDstReprojectedToDstSRS{};
     614             :     const OGRSpatialReference *m_poClipDstReprojectedToDstSRS_SRS = nullptr;
     615             :     OGREnvelope m_oClipDstEnv{};
     616             :     bool m_bClipDstIsRectangle = false;
     617             : 
     618             :     bool m_bExplodeCollections = false;
     619             :     bool m_bNativeData = false;
     620             :     GIntBig m_nLimit = -1;
     621             :     OGRGeometryFactory::TransformWithOptionsCache m_transformWithOptionsCache{};
     622             : 
     623             :     bool Translate(std::unique_ptr<OGRFeature> poFeatureIn,
     624             :                    TargetLayerInfo *psInfo, GIntBig nCountLayerFeatures,
     625             :                    GIntBig *pnReadFeatureCount, GIntBig &nTotalEventsDone,
     626             :                    GDALProgressFunc pfnProgress, void *pProgressArg,
     627             :                    const GDALVectorTranslateOptions *psOptions);
     628             : 
     629             :   private:
     630             :     struct ClipGeomDesc
     631             :     {
     632             :         const OGRGeometry *poGeom = nullptr;
     633             :         const OGREnvelope *poEnv = nullptr;
     634             :         bool bGeomIsRectangle = false;
     635             :     };
     636             : 
     637             :     ClipGeomDesc GetDstClipGeom(const OGRSpatialReference *poGeomSRS);
     638             :     ClipGeomDesc GetSrcClipGeom(const OGRSpatialReference *poGeomSRS);
     639             : };
     640             : 
     641             : static OGRLayer *GetLayerAndOverwriteIfNecessary(GDALDataset *poDstDS,
     642             :                                                  const char *pszNewLayerName,
     643             :                                                  bool bOverwrite,
     644             :                                                  bool *pbErrorOccurred,
     645             :                                                  bool *pbOverwriteActuallyDone,
     646             :                                                  bool *pbAddOverwriteLCO);
     647             : 
     648             : /************************************************************************/
     649             : /*                            LoadGeometry()                            */
     650             : /************************************************************************/
     651             : 
     652          20 : static std::unique_ptr<OGRGeometry> LoadGeometry(const std::string &osDS,
     653             :                                                  const std::string &osSQL,
     654             :                                                  const std::string &osLyr,
     655             :                                                  const std::string &osWhere,
     656             :                                                  bool bMakeValid)
     657             : {
     658             :     auto poDS = std::unique_ptr<GDALDataset>(
     659          40 :         GDALDataset::Open(osDS.c_str(), GDAL_OF_VECTOR));
     660          20 :     if (poDS == nullptr)
     661           3 :         return nullptr;
     662             : 
     663          17 :     OGRLayer *poLyr = nullptr;
     664          17 :     if (!osSQL.empty())
     665           3 :         poLyr = poDS->ExecuteSQL(osSQL.c_str(), nullptr, nullptr);
     666          14 :     else if (!osLyr.empty())
     667           2 :         poLyr = poDS->GetLayerByName(osLyr.c_str());
     668             :     else
     669          12 :         poLyr = poDS->GetLayer(0);
     670             : 
     671          17 :     if (poLyr == nullptr)
     672             :     {
     673           0 :         CPLError(CE_Failure, CPLE_AppDefined,
     674             :                  "Failed to identify source layer from datasource.");
     675           0 :         return nullptr;
     676             :     }
     677             : 
     678          17 :     if (!osWhere.empty())
     679           7 :         poLyr->SetAttributeFilter(osWhere.c_str());
     680             : 
     681          34 :     OGRGeometryCollection oGC;
     682             : 
     683          17 :     const auto poSRSSrc = poLyr->GetSpatialRef();
     684          17 :     if (poSRSSrc)
     685             :     {
     686           4 :         auto poSRSClone = OGRSpatialReferenceRefCountedPtr::makeClone(poSRSSrc);
     687           2 :         oGC.assignSpatialReference(poSRSClone.get());
     688             :     }
     689             : 
     690          34 :     for (auto &poFeat : poLyr)
     691             :     {
     692          17 :         auto poSrcGeom = std::unique_ptr<OGRGeometry>(poFeat->StealGeometry());
     693          17 :         if (poSrcGeom)
     694             :         {
     695             :             // Only take into account areal geometries.
     696          17 :             if (poSrcGeom->getDimension() == 2)
     697             :             {
     698          17 :                 std::string osReason;
     699          17 :                 if (!poSrcGeom->IsValid(&osReason))
     700             :                 {
     701           4 :                     if (!bMakeValid)
     702             :                     {
     703           2 :                         CPLError(
     704             :                             CE_Failure, CPLE_AppDefined,
     705             :                             "Geometry of feature " CPL_FRMT_GIB " of %s "
     706             :                             "is invalid (%s). You can try to make it valid by "
     707             :                             "specifying -makevalid, but the results of "
     708             :                             "the operation should be manually inspected.",
     709             :                             poFeat->GetFID(), osDS.c_str(), osReason.c_str());
     710           2 :                         oGC.empty();
     711           2 :                         break;
     712             :                     }
     713             :                     auto poValid =
     714           2 :                         std::unique_ptr<OGRGeometry>(poSrcGeom->MakeValid());
     715           2 :                     if (poValid)
     716             :                     {
     717           2 :                         CPLError(CE_Warning, CPLE_AppDefined,
     718             :                                  "Geometry of feature " CPL_FRMT_GIB " of %s "
     719             :                                  "was invalid (%s) and has been made valid, "
     720             :                                  "but the results of the operation "
     721             :                                  "should be manually inspected.",
     722             :                                  poFeat->GetFID(), osDS.c_str(),
     723             :                                  osReason.c_str());
     724             : 
     725           2 :                         oGC.addGeometry(std::move(poValid));
     726             :                     }
     727             :                     else
     728             :                     {
     729           0 :                         CPLError(
     730             :                             CE_Failure, CPLE_AppDefined,
     731             :                             "Geometry of feature " CPL_FRMT_GIB " of %s "
     732             :                             "is invalid (%s), and could not be made valid.",
     733             :                             poFeat->GetFID(), osDS.c_str(), osReason.c_str());
     734           0 :                         oGC.empty();
     735           0 :                         break;
     736             :                     }
     737             :                 }
     738             :                 else
     739             :                 {
     740          13 :                     oGC.addGeometry(std::move(poSrcGeom));
     741             :                 }
     742             :             }
     743             :         }
     744             :     }
     745             : 
     746          17 :     if (!osSQL.empty())
     747           3 :         poDS->ReleaseResultSet(poLyr);
     748             : 
     749          17 :     if (oGC.IsEmpty())
     750           2 :         return nullptr;
     751             : 
     752          15 :     return std::unique_ptr<OGRGeometry>(oGC.UnaryUnion());
     753             : }
     754             : 
     755             : /************************************************************************/
     756             : /*                        OGRSplitListFieldLayer                        */
     757             : /************************************************************************/
     758             : 
     759             : class OGRSplitListFieldLayer : public OGRLayer
     760             : {
     761             :     struct ListFieldDesc
     762             :     {
     763             :         int iSrcIndex = -1;
     764             :         OGRFieldType eType = OFTMaxType;
     765             :         int nMaxOccurrences = 0;
     766             :         int nWidth = 0;
     767             :     };
     768             : 
     769             :     OGRLayer *poSrcLayer = nullptr;
     770             :     OGRFeatureDefnRefCountedPtr poFeatureDefn{};
     771             :     std::vector<ListFieldDesc> asListFields{};
     772             :     const int nMaxSplitListSubFields;
     773             : 
     774             :     std::unique_ptr<OGRFeature>
     775             :     TranslateFeature(std::unique_ptr<OGRFeature> poSrcFeature) const;
     776             : 
     777             :     CPL_DISALLOW_COPY_ASSIGN(OGRSplitListFieldLayer)
     778             : 
     779             :   public:
     780             :     OGRSplitListFieldLayer(OGRLayer *poSrcLayer, int nMaxSplitListSubFields);
     781             : 
     782             :     bool BuildLayerDefn(GDALProgressFunc pfnProgress, void *pProgressArg);
     783             : 
     784             :     OGRFeature *GetNextFeature() override;
     785             :     OGRFeature *GetFeature(GIntBig nFID) override;
     786             :     const OGRFeatureDefn *GetLayerDefn() const override;
     787             : 
     788           1 :     void ResetReading() override
     789             :     {
     790           1 :         poSrcLayer->ResetReading();
     791           1 :     }
     792             : 
     793           1 :     int TestCapability(const char *) const override
     794             :     {
     795           1 :         return FALSE;
     796             :     }
     797             : 
     798           0 :     GIntBig GetFeatureCount(int bForce = TRUE) override
     799             :     {
     800           0 :         return poSrcLayer->GetFeatureCount(bForce);
     801             :     }
     802             : 
     803           1 :     const OGRSpatialReference *GetSpatialRef() const override
     804             :     {
     805           1 :         return poSrcLayer->GetSpatialRef();
     806             :     }
     807             : 
     808           0 :     OGRGeometry *GetSpatialFilter() override
     809             :     {
     810           0 :         return poSrcLayer->GetSpatialFilter();
     811             :     }
     812             : 
     813           1 :     OGRStyleTable *GetStyleTable() override
     814             :     {
     815           1 :         return poSrcLayer->GetStyleTable();
     816             :     }
     817             : 
     818           0 :     virtual OGRErr ISetSpatialFilter(int iGeom,
     819             :                                      const OGRGeometry *poGeom) override
     820             :     {
     821           0 :         return poSrcLayer->SetSpatialFilter(iGeom, poGeom);
     822             :     }
     823             : 
     824           0 :     OGRErr SetAttributeFilter(const char *pszFilter) override
     825             :     {
     826           0 :         return poSrcLayer->SetAttributeFilter(pszFilter);
     827             :     }
     828             : };
     829             : 
     830             : /************************************************************************/
     831             : /*                       OGRSplitListFieldLayer()                       */
     832             : /************************************************************************/
     833             : 
     834           1 : OGRSplitListFieldLayer::OGRSplitListFieldLayer(OGRLayer *poSrcLayerIn,
     835           1 :                                                int nMaxSplitListSubFieldsIn)
     836             :     : poSrcLayer(poSrcLayerIn),
     837             :       nMaxSplitListSubFields(
     838           1 :           nMaxSplitListSubFieldsIn < 0 ? INT_MAX : nMaxSplitListSubFieldsIn)
     839             : {
     840           1 : }
     841             : 
     842             : /************************************************************************/
     843             : /*                           BuildLayerDefn()                           */
     844             : /************************************************************************/
     845             : 
     846           1 : bool OGRSplitListFieldLayer::BuildLayerDefn(GDALProgressFunc pfnProgress,
     847             :                                             void *pProgressArg)
     848             : {
     849           1 :     CPLAssert(poFeatureDefn == nullptr);
     850             : 
     851           1 :     const OGRFeatureDefn *poSrcFeatureDefn = poSrcLayer->GetLayerDefn();
     852             : 
     853           1 :     const int nSrcFields = poSrcFeatureDefn->GetFieldCount();
     854           1 :     asListFields.reserve(nSrcFields);
     855             : 
     856             :     /* Establish the list of fields of list type */
     857           6 :     for (int i = 0; i < nSrcFields; ++i)
     858             :     {
     859           5 :         OGRFieldType eType = poSrcFeatureDefn->GetFieldDefn(i)->GetType();
     860           5 :         if (eType == OFTIntegerList || eType == OFTInteger64List ||
     861           3 :             eType == OFTRealList || eType == OFTStringList)
     862             :         {
     863           3 :             asListFields.resize(asListFields.size() + 1);
     864           3 :             asListFields.back().iSrcIndex = i;
     865           3 :             asListFields.back().eType = eType;
     866           3 :             if (nMaxSplitListSubFields == 1)
     867           0 :                 asListFields.back().nMaxOccurrences = 1;
     868             :         }
     869             :     }
     870             : 
     871           1 :     if (asListFields.empty())
     872           0 :         return false;
     873             : 
     874             :     /* No need for full scan if the limit is 1. We just to have to create */
     875             :     /* one and a single one field */
     876           1 :     if (nMaxSplitListSubFields != 1)
     877             :     {
     878           1 :         poSrcLayer->ResetReading();
     879             : 
     880             :         const GIntBig nFeatureCount =
     881           1 :             poSrcLayer->TestCapability(OLCFastFeatureCount)
     882           1 :                 ? poSrcLayer->GetFeatureCount()
     883           1 :                 : 0;
     884           1 :         GIntBig nFeatureIndex = 0;
     885             : 
     886             :         /* Scan the whole layer to compute the maximum number of */
     887             :         /* items for each field of list type */
     888           2 :         for (const auto &poSrcFeature : poSrcLayer)
     889             :         {
     890           4 :             for (auto &sListField : asListFields)
     891             :             {
     892           3 :                 int nCount = 0;
     893             :                 const OGRField *psField =
     894           3 :                     poSrcFeature->GetRawFieldRef(sListField.iSrcIndex);
     895           3 :                 switch (sListField.eType)
     896             :                 {
     897           1 :                     case OFTIntegerList:
     898           1 :                         nCount = psField->IntegerList.nCount;
     899           1 :                         break;
     900           1 :                     case OFTRealList:
     901           1 :                         nCount = psField->RealList.nCount;
     902           1 :                         break;
     903           1 :                     case OFTStringList:
     904             :                     {
     905           1 :                         nCount = psField->StringList.nCount;
     906           1 :                         char **paList = psField->StringList.paList;
     907           3 :                         for (int j = 0; j < nCount; j++)
     908             :                         {
     909           2 :                             int nWidth = static_cast<int>(strlen(paList[j]));
     910           2 :                             if (nWidth > sListField.nWidth)
     911           1 :                                 sListField.nWidth = nWidth;
     912             :                         }
     913           1 :                         break;
     914             :                     }
     915           0 :                     default:
     916             :                         // cppcheck-suppress knownConditionTrueFalse
     917           0 :                         CPLAssert(false);
     918             :                         break;
     919             :                 }
     920           3 :                 if (nCount > sListField.nMaxOccurrences)
     921             :                 {
     922           3 :                     if (nCount > nMaxSplitListSubFields)
     923           0 :                         nCount = nMaxSplitListSubFields;
     924           3 :                     sListField.nMaxOccurrences = nCount;
     925             :                 }
     926             :             }
     927             : 
     928           1 :             nFeatureIndex++;
     929           1 :             if (pfnProgress != nullptr && nFeatureCount != 0)
     930           0 :                 pfnProgress(nFeatureIndex * 1.0 / nFeatureCount, "",
     931             :                             pProgressArg);
     932             :         }
     933             :     }
     934             : 
     935             :     /* Now let's build the target feature definition */
     936             : 
     937           1 :     poFeatureDefn.reset(
     938           1 :         OGRFeatureDefn::CreateFeatureDefn(poSrcFeatureDefn->GetName()));
     939           1 :     poFeatureDefn->SetGeomType(wkbNone);
     940             : 
     941           1 :     for (const auto poSrcGeomFieldDefn : poSrcFeatureDefn->GetGeomFields())
     942             :     {
     943           0 :         poFeatureDefn->AddGeomFieldDefn(poSrcGeomFieldDefn);
     944             :     }
     945             : 
     946           1 :     int iListField = 0;
     947           6 :     for (const auto poSrcFieldDefn : poSrcFeatureDefn->GetFields())
     948             :     {
     949           5 :         const OGRFieldType eType = poSrcFieldDefn->GetType();
     950           5 :         if (eType == OFTIntegerList || eType == OFTInteger64List ||
     951           3 :             eType == OFTRealList || eType == OFTStringList)
     952             :         {
     953             :             const int nMaxOccurrences =
     954           3 :                 asListFields[iListField].nMaxOccurrences;
     955           3 :             const int nWidth = asListFields[iListField].nWidth;
     956           3 :             iListField++;
     957           3 :             if (nMaxOccurrences == 1)
     958             :             {
     959             :                 OGRFieldDefn oFieldDefn(poSrcFieldDefn->GetNameRef(),
     960             :                                         (eType == OFTIntegerList) ? OFTInteger
     961             :                                         : (eType == OFTInteger64List)
     962           0 :                                             ? OFTInteger64
     963           0 :                                         : (eType == OFTRealList) ? OFTReal
     964           0 :                                                                  : OFTString);
     965           0 :                 poFeatureDefn->AddFieldDefn(&oFieldDefn);
     966             :             }
     967             :             else
     968             :             {
     969           9 :                 for (int j = 0; j < nMaxOccurrences; j++)
     970             :                 {
     971          12 :                     CPLString osFieldName;
     972             :                     osFieldName.Printf("%s%d", poSrcFieldDefn->GetNameRef(),
     973           6 :                                        j + 1);
     974             :                     OGRFieldDefn oFieldDefn(
     975             :                         osFieldName.c_str(),
     976             :                         (eType == OFTIntegerList)     ? OFTInteger
     977           8 :                         : (eType == OFTInteger64List) ? OFTInteger64
     978           4 :                         : (eType == OFTRealList)      ? OFTReal
     979          16 :                                                       : OFTString);
     980           6 :                     oFieldDefn.SetWidth(nWidth);
     981           6 :                     poFeatureDefn->AddFieldDefn(&oFieldDefn);
     982             :                 }
     983           3 :             }
     984             :         }
     985             :         else
     986             :         {
     987           2 :             poFeatureDefn->AddFieldDefn(poSrcFieldDefn);
     988             :         }
     989             :     }
     990             : 
     991           1 :     return true;
     992             : }
     993             : 
     994             : /************************************************************************/
     995             : /*                          TranslateFeature()                          */
     996             : /************************************************************************/
     997             : 
     998           2 : std::unique_ptr<OGRFeature> OGRSplitListFieldLayer::TranslateFeature(
     999             :     std::unique_ptr<OGRFeature> poSrcFeature) const
    1000             : {
    1001           2 :     if (poSrcFeature == nullptr)
    1002           1 :         return nullptr;
    1003           1 :     if (poFeatureDefn == nullptr)
    1004           0 :         return poSrcFeature;
    1005             : 
    1006           2 :     auto poFeature = std::make_unique<OGRFeature>(poFeatureDefn.get());
    1007           1 :     poFeature->SetFID(poSrcFeature->GetFID());
    1008           1 :     for (int i = 0; i < poFeature->GetGeomFieldCount(); i++)
    1009             :     {
    1010           0 :         poFeature->SetGeomFieldDirectly(i, poSrcFeature->StealGeometry(i));
    1011             :     }
    1012           1 :     poFeature->SetStyleString(poFeature->GetStyleString());
    1013             : 
    1014           1 :     const OGRFeatureDefn *poSrcFieldDefn = poSrcLayer->GetLayerDefn();
    1015           1 :     const int nSrcFields = poSrcFeature->GetFieldCount();
    1016           1 :     int iDstField = 0;
    1017           1 :     int iListField = 0;
    1018             : 
    1019           6 :     for (int iSrcField = 0; iSrcField < nSrcFields; ++iSrcField)
    1020             :     {
    1021             :         const OGRFieldType eType =
    1022           5 :             poSrcFieldDefn->GetFieldDefn(iSrcField)->GetType();
    1023           5 :         const OGRField *psField = poSrcFeature->GetRawFieldRef(iSrcField);
    1024           5 :         switch (eType)
    1025             :         {
    1026           1 :             case OFTIntegerList:
    1027             :             {
    1028           1 :                 const int nCount = std::min(nMaxSplitListSubFields,
    1029           1 :                                             psField->IntegerList.nCount);
    1030           1 :                 const int *paList = psField->IntegerList.paList;
    1031           3 :                 for (int j = 0; j < nCount; ++j)
    1032           2 :                     poFeature->SetField(iDstField + j, paList[j]);
    1033           1 :                 iDstField += asListFields[iListField].nMaxOccurrences;
    1034           1 :                 iListField++;
    1035           1 :                 break;
    1036             :             }
    1037           0 :             case OFTInteger64List:
    1038             :             {
    1039           0 :                 const int nCount = std::min(nMaxSplitListSubFields,
    1040           0 :                                             psField->Integer64List.nCount);
    1041           0 :                 const GIntBig *paList = psField->Integer64List.paList;
    1042           0 :                 for (int j = 0; j < nCount; ++j)
    1043           0 :                     poFeature->SetField(iDstField + j, paList[j]);
    1044           0 :                 iDstField += asListFields[iListField].nMaxOccurrences;
    1045           0 :                 iListField++;
    1046           0 :                 break;
    1047             :             }
    1048           1 :             case OFTRealList:
    1049             :             {
    1050             :                 const int nCount =
    1051           1 :                     std::min(nMaxSplitListSubFields, psField->RealList.nCount);
    1052           1 :                 const double *paList = psField->RealList.paList;
    1053           3 :                 for (int j = 0; j < nCount; ++j)
    1054           2 :                     poFeature->SetField(iDstField + j, paList[j]);
    1055           1 :                 iDstField += asListFields[iListField].nMaxOccurrences;
    1056           1 :                 iListField++;
    1057           1 :                 break;
    1058             :             }
    1059           1 :             case OFTStringList:
    1060             :             {
    1061           1 :                 const int nCount = std::min(nMaxSplitListSubFields,
    1062           1 :                                             psField->StringList.nCount);
    1063           1 :                 CSLConstList paList = psField->StringList.paList;
    1064           3 :                 for (int j = 0; j < nCount; ++j)
    1065           2 :                     poFeature->SetField(iDstField + j, paList[j]);
    1066           1 :                 iDstField += asListFields[iListField].nMaxOccurrences;
    1067           1 :                 iListField++;
    1068           1 :                 break;
    1069             :             }
    1070           2 :             default:
    1071             :             {
    1072           2 :                 poFeature->SetField(iDstField, psField);
    1073           2 :                 iDstField++;
    1074           2 :                 break;
    1075             :             }
    1076             :         }
    1077             :     }
    1078             : 
    1079           1 :     return poFeature;
    1080             : }
    1081             : 
    1082             : /************************************************************************/
    1083             : /*                           GetNextFeature()                           */
    1084             : /************************************************************************/
    1085             : 
    1086           2 : OGRFeature *OGRSplitListFieldLayer::GetNextFeature()
    1087             : {
    1088           4 :     return TranslateFeature(
    1089           4 :                std::unique_ptr<OGRFeature>(poSrcLayer->GetNextFeature()))
    1090           4 :         .release();
    1091             : }
    1092             : 
    1093             : /************************************************************************/
    1094             : /*                             GetFeature()                             */
    1095             : /************************************************************************/
    1096             : 
    1097           0 : OGRFeature *OGRSplitListFieldLayer::GetFeature(GIntBig nFID)
    1098             : {
    1099           0 :     return TranslateFeature(
    1100           0 :                std::unique_ptr<OGRFeature>(poSrcLayer->GetFeature(nFID)))
    1101           0 :         .release();
    1102             : }
    1103             : 
    1104             : /************************************************************************/
    1105             : /*                            GetLayerDefn()                            */
    1106             : /************************************************************************/
    1107             : 
    1108           3 : const OGRFeatureDefn *OGRSplitListFieldLayer::GetLayerDefn() const
    1109             : {
    1110           3 :     if (poFeatureDefn == nullptr)
    1111           0 :         return poSrcLayer->GetLayerDefn();
    1112           3 :     return poFeatureDefn.get();
    1113             : }
    1114             : 
    1115             : /************************************************************************/
    1116             : /*                            GCPCoordTransformation()                  */
    1117             : /*                                                                      */
    1118             : /*      Apply GCP Transform to points                                   */
    1119             : /************************************************************************/
    1120             : namespace
    1121             : {
    1122             : class GCPCoordTransformation final : public OGRCoordinateTransformation
    1123             : {
    1124           0 :     GCPCoordTransformation(const GCPCoordTransformation &other)
    1125           0 :         : bUseTPS(other.bUseTPS), poSRS(other.poSRS)
    1126             :     {
    1127           0 :         hTransformArg.reset(GDALCloneTransformer(other.hTransformArg.get()));
    1128           0 :     }
    1129             : 
    1130             :     GCPCoordTransformation &operator=(const GCPCoordTransformation &) = delete;
    1131             : 
    1132             :   public:
    1133             :     std::unique_ptr<void, decltype(&GDALDestroyTransformer)> hTransformArg{
    1134           0 :         nullptr, GDALDestroyTransformer};
    1135             :     const bool bUseTPS;
    1136             :     const OGRSpatialReferenceRefCountedPtr poSRS;
    1137             : 
    1138           7 :     GCPCoordTransformation(int nGCPCount, const GDAL_GCP *pasGCPList,
    1139             :                            int nReqOrder, const OGRSpatialReference *poSRSIn)
    1140          14 :         : bUseTPS(nReqOrder < 0),
    1141             :           poSRS(const_cast<OGRSpatialReference *>(poSRSIn),
    1142           7 :                 /* add_ref = */ true)
    1143             :     {
    1144           7 :         if (nReqOrder < 0)
    1145             :         {
    1146           1 :             hTransformArg.reset(
    1147             :                 GDALCreateTPSTransformer(nGCPCount, pasGCPList, FALSE));
    1148             :         }
    1149             :         else
    1150             :         {
    1151           6 :             hTransformArg.reset(GDALCreateGCPTransformer(nGCPCount, pasGCPList,
    1152             :                                                          nReqOrder, FALSE));
    1153             :         }
    1154           7 :     }
    1155             : 
    1156           0 :     OGRCoordinateTransformation *Clone() const override
    1157             :     {
    1158           0 :         return new GCPCoordTransformation(*this);
    1159             :     }
    1160             : 
    1161           7 :     bool IsValid() const
    1162             :     {
    1163           7 :         return hTransformArg != nullptr;
    1164             :     }
    1165             : 
    1166          11 :     const OGRSpatialReference *GetSourceCS() const override
    1167             :     {
    1168          11 :         return poSRS.get();
    1169             :     }
    1170             : 
    1171          18 :     const OGRSpatialReference *GetTargetCS() const override
    1172             :     {
    1173          18 :         return poSRS.get();
    1174             :     }
    1175             : 
    1176          11 :     virtual int Transform(size_t nCount, double *x, double *y, double *z,
    1177             :                           double * /* t */, int *pabSuccess) override
    1178             :     {
    1179          11 :         CPLAssert(nCount <=
    1180             :                   static_cast<size_t>(std::numeric_limits<int>::max()));
    1181          11 :         if (bUseTPS)
    1182           2 :             return GDALTPSTransform(hTransformArg.get(), FALSE,
    1183             :                                     static_cast<int>(nCount), x, y, z,
    1184           2 :                                     pabSuccess);
    1185             :         else
    1186           9 :             return GDALGCPTransform(hTransformArg.get(), FALSE,
    1187             :                                     static_cast<int>(nCount), x, y, z,
    1188           9 :                                     pabSuccess);
    1189             :     }
    1190             : 
    1191           0 :     OGRCoordinateTransformation *GetInverse() const override
    1192             :     {
    1193             :         static std::once_flag flag;
    1194           0 :         std::call_once(flag,
    1195           0 :                        []()
    1196             :                        {
    1197           0 :                            CPLDebug("OGR2OGR",
    1198             :                                     "GCPCoordTransformation::GetInverse() "
    1199             :                                     "called, but not implemented");
    1200           0 :                        });
    1201           0 :         return nullptr;
    1202             :     }
    1203             : };
    1204             : }  // namespace
    1205             : 
    1206             : /************************************************************************/
    1207             : /*                             CompositeCT                              */
    1208             : /************************************************************************/
    1209             : 
    1210          12 : class CompositeCT final : public OGRCoordinateTransformation
    1211             : {
    1212             :     std::unique_ptr<OGRCoordinateTransformation> poOwnedCT1{};
    1213             :     OGRCoordinateTransformation *const poCT1;
    1214             :     std::unique_ptr<OGRCoordinateTransformation> poOwnedCT2{};
    1215             :     OGRCoordinateTransformation *const poCT2;
    1216             : 
    1217             :     // Working buffer
    1218             :     std::vector<int> m_anErrorCode{};
    1219             : 
    1220             :     CompositeCT &operator=(const CompositeCT &) = delete;
    1221             : 
    1222             :   public:
    1223           5 :     CompositeCT(OGRCoordinateTransformation *poCT1In,
    1224             :                 OGRCoordinateTransformation *poCT2In)
    1225           5 :         : poCT1(poCT1In), poCT2(poCT2In)
    1226             :     {
    1227           5 :     }
    1228             : 
    1229           0 :     CompositeCT(std::unique_ptr<OGRCoordinateTransformation> poCT1In,
    1230             :                 OGRCoordinateTransformation *poCT2In)
    1231           0 :         : poOwnedCT1(std::move(poCT1In)), poCT1(poOwnedCT1.get()),
    1232           0 :           poCT2(poCT2In)
    1233             :     {
    1234           0 :     }
    1235             : 
    1236           0 :     CompositeCT(std::unique_ptr<OGRCoordinateTransformation> poCT1In,
    1237             :                 std::unique_ptr<OGRCoordinateTransformation> poCT2In)
    1238           0 :         : poOwnedCT1(std::move(poCT1In)), poCT1(poOwnedCT1.get()),
    1239           0 :           poOwnedCT2(std::move(poCT2In)), poCT2(poOwnedCT2.get())
    1240             :     {
    1241           0 :     }
    1242             : 
    1243           1 :     CompositeCT(OGRCoordinateTransformation *poCT1In,
    1244             :                 std::unique_ptr<OGRCoordinateTransformation> poCT2In)
    1245           2 :         : poCT1(poCT1In), poOwnedCT2(std::move(poCT2In)),
    1246           1 :           poCT2(poOwnedCT2.get())
    1247             :     {
    1248           1 :     }
    1249             : 
    1250           0 :     CompositeCT(const CompositeCT &other)
    1251           0 :         : poOwnedCT1(other.poCT1 ? other.poCT1->Clone() : nullptr),
    1252           0 :           poCT1(poOwnedCT1.get()),
    1253           0 :           poOwnedCT2(other.poCT2 ? other.poCT2->Clone() : nullptr),
    1254           0 :           poCT2(poOwnedCT2.get()), m_anErrorCode({})
    1255             :     {
    1256           0 :     }
    1257             : 
    1258             :     ~CompositeCT() override;
    1259             : 
    1260           0 :     OGRCoordinateTransformation *Clone() const override
    1261             :     {
    1262           0 :         return std::make_unique<CompositeCT>(*this).release();
    1263             :     }
    1264             : 
    1265          11 :     const OGRSpatialReference *GetSourceCS() const override
    1266             :     {
    1267          11 :         return poCT1   ? poCT1->GetSourceCS()
    1268           0 :                : poCT2 ? poCT2->GetSourceCS()
    1269          11 :                        : nullptr;
    1270             :     }
    1271             : 
    1272          22 :     const OGRSpatialReference *GetTargetCS() const override
    1273             :     {
    1274          40 :         return poCT2   ? poCT2->GetTargetCS()
    1275          18 :                : poCT1 ? poCT1->GetTargetCS()
    1276          22 :                        : nullptr;
    1277             :     }
    1278             : 
    1279           0 :     bool GetEmitErrors() const override
    1280             :     {
    1281           0 :         if (poCT1)
    1282           0 :             return poCT1->GetEmitErrors();
    1283           0 :         if (poCT2)
    1284           0 :             return poCT2->GetEmitErrors();
    1285           0 :         return true;
    1286             :     }
    1287             : 
    1288           0 :     void SetEmitErrors(bool bEmitErrors) override
    1289             :     {
    1290           0 :         if (poCT1)
    1291           0 :             poCT1->SetEmitErrors(bEmitErrors);
    1292           0 :         if (poCT2)
    1293           0 :             poCT2->SetEmitErrors(bEmitErrors);
    1294           0 :     }
    1295             : 
    1296          11 :     virtual int Transform(size_t nCount, double *x, double *y, double *z,
    1297             :                           double *t, int *pabSuccess) override
    1298             :     {
    1299          11 :         int nResult = TRUE;
    1300          11 :         if (poCT1)
    1301          11 :             nResult = poCT1->Transform(nCount, x, y, z, t, pabSuccess);
    1302          11 :         if (nResult && poCT2)
    1303           2 :             nResult = poCT2->Transform(nCount, x, y, z, t, pabSuccess);
    1304          11 :         return nResult;
    1305             :     }
    1306             : 
    1307           0 :     virtual int TransformWithErrorCodes(size_t nCount, double *x, double *y,
    1308             :                                         double *z, double *t,
    1309             :                                         int *panErrorCodes) override
    1310             :     {
    1311           0 :         if (poCT1 && poCT2 && panErrorCodes)
    1312             :         {
    1313           0 :             m_anErrorCode.resize(nCount);
    1314           0 :             int nResult = poCT1->TransformWithErrorCodes(nCount, x, y, z, t,
    1315           0 :                                                          m_anErrorCode.data());
    1316           0 :             if (nResult)
    1317           0 :                 nResult = poCT2->TransformWithErrorCodes(nCount, x, y, z, t,
    1318           0 :                                                          panErrorCodes);
    1319           0 :             for (size_t i = 0; i < nCount; ++i)
    1320             :             {
    1321           0 :                 if (m_anErrorCode[i])
    1322           0 :                     panErrorCodes[i] = m_anErrorCode[i];
    1323             :             }
    1324           0 :             return nResult;
    1325             :         }
    1326           0 :         int nResult = TRUE;
    1327           0 :         if (poCT1)
    1328           0 :             nResult = poCT1->TransformWithErrorCodes(nCount, x, y, z, t,
    1329           0 :                                                      panErrorCodes);
    1330           0 :         if (nResult && poCT2)
    1331           0 :             nResult = poCT2->TransformWithErrorCodes(nCount, x, y, z, t,
    1332           0 :                                                      panErrorCodes);
    1333           0 :         return nResult;
    1334             :     }
    1335             : 
    1336           0 :     OGRCoordinateTransformation *GetInverse() const override
    1337             :     {
    1338           0 :         if (!poCT1)
    1339             :         {
    1340           0 :             if (poCT2)
    1341           0 :                 return poCT2->GetInverse();
    1342           0 :             return nullptr;
    1343             :         }
    1344           0 :         else if (!poCT2)
    1345             :         {
    1346           0 :             return poCT1->GetInverse();
    1347             :         }
    1348             :         auto poInvCT1 =
    1349           0 :             std::unique_ptr<OGRCoordinateTransformation>(poCT1->GetInverse());
    1350             :         auto poInvCT2 =
    1351           0 :             std::unique_ptr<OGRCoordinateTransformation>(poCT2->GetInverse());
    1352           0 :         if (!poInvCT1 || !poInvCT2)
    1353           0 :             return nullptr;
    1354           0 :         return std::make_unique<CompositeCT>(std::move(poInvCT2),
    1355           0 :                                              std::move(poInvCT1))
    1356           0 :             .release();
    1357             :     }
    1358             : };
    1359             : 
    1360             : CompositeCT::~CompositeCT() = default;
    1361             : 
    1362             : /************************************************************************/
    1363             : /*                 AxisMappingCoordinateTransformation                  */
    1364             : /************************************************************************/
    1365             : 
    1366           0 : class AxisMappingCoordinateTransformation : public OGRCoordinateTransformation
    1367             : {
    1368             :     bool bSwapXY = false;
    1369             : 
    1370           0 :     AxisMappingCoordinateTransformation(
    1371             :         const AxisMappingCoordinateTransformation &) = default;
    1372             :     AxisMappingCoordinateTransformation &
    1373             :     operator=(const AxisMappingCoordinateTransformation &) = delete;
    1374             :     AxisMappingCoordinateTransformation(
    1375             :         AxisMappingCoordinateTransformation &&) = delete;
    1376             :     AxisMappingCoordinateTransformation &
    1377             :     operator=(AxisMappingCoordinateTransformation &&) = delete;
    1378             : 
    1379             :   public:
    1380           0 :     explicit AxisMappingCoordinateTransformation(bool bSwapXYIn)
    1381           0 :         : bSwapXY(bSwapXYIn)
    1382             :     {
    1383           0 :     }
    1384             : 
    1385           0 :     AxisMappingCoordinateTransformation(const std::vector<int> &mappingIn,
    1386             :                                         const std::vector<int> &mappingOut)
    1387           0 :     {
    1388           0 :         if (mappingIn.size() >= 2 && mappingIn[0] == 1 && mappingIn[1] == 2 &&
    1389           0 :             mappingOut.size() >= 2 && mappingOut[0] == 2 && mappingOut[1] == 1)
    1390             :         {
    1391           0 :             bSwapXY = true;
    1392             :         }
    1393           0 :         else if (mappingIn.size() >= 2 && mappingIn[0] == 2 &&
    1394           0 :                  mappingIn[1] == 1 && mappingOut.size() >= 2 &&
    1395           0 :                  mappingOut[0] == 1 && mappingOut[1] == 2)
    1396             :         {
    1397           0 :             bSwapXY = true;
    1398             :         }
    1399             :         else
    1400             :         {
    1401           0 :             CPLError(CE_Failure, CPLE_NotSupported,
    1402             :                      "Unsupported axis transformation");
    1403             :         }
    1404           0 :     }
    1405             : 
    1406             :     ~AxisMappingCoordinateTransformation() override;
    1407             : 
    1408           0 :     OGRCoordinateTransformation *Clone() const override
    1409             :     {
    1410           0 :         return new AxisMappingCoordinateTransformation(*this);
    1411             :     }
    1412             : 
    1413           0 :     const OGRSpatialReference *GetSourceCS() const override
    1414             :     {
    1415           0 :         return nullptr;
    1416             :     }
    1417             : 
    1418           0 :     const OGRSpatialReference *GetTargetCS() const override
    1419             :     {
    1420           0 :         return nullptr;
    1421             :     }
    1422             : 
    1423           0 :     virtual int Transform(size_t nCount, double *x, double *y, double * /*z*/,
    1424             :                           double * /*t*/, int *pabSuccess) override
    1425             :     {
    1426           0 :         for (size_t i = 0; i < nCount; i++)
    1427             :         {
    1428           0 :             if (pabSuccess)
    1429           0 :                 pabSuccess[i] = true;
    1430           0 :             if (bSwapXY)
    1431           0 :                 std::swap(x[i], y[i]);
    1432             :         }
    1433           0 :         return true;
    1434             :     }
    1435             : 
    1436           0 :     virtual int TransformWithErrorCodes(size_t nCount, double *x, double *y,
    1437             :                                         double * /*z*/, double * /*t*/,
    1438             :                                         int *panErrorCodes) override
    1439             :     {
    1440           0 :         for (size_t i = 0; i < nCount; i++)
    1441             :         {
    1442           0 :             if (panErrorCodes)
    1443           0 :                 panErrorCodes[i] = 0;
    1444           0 :             if (bSwapXY)
    1445           0 :                 std::swap(x[i], y[i]);
    1446             :         }
    1447           0 :         return true;
    1448             :     }
    1449             : 
    1450           0 :     OGRCoordinateTransformation *GetInverse() const override
    1451             :     {
    1452           0 :         return std::make_unique<AxisMappingCoordinateTransformation>(bSwapXY)
    1453           0 :             .release();
    1454             :     }
    1455             : };
    1456             : 
    1457             : AxisMappingCoordinateTransformation::~AxisMappingCoordinateTransformation() =
    1458             :     default;
    1459             : 
    1460             : /************************************************************************/
    1461             : /*                         ApplySpatialFilter()                         */
    1462             : /************************************************************************/
    1463             : 
    1464        1246 : static void ApplySpatialFilter(OGRLayer *poLayer, OGRGeometry *poSpatialFilter,
    1465             :                                const OGRSpatialReference *poSpatSRS,
    1466             :                                const char *pszGeomField,
    1467             :                                const OGRSpatialReference *poSourceSRS)
    1468             : {
    1469        1246 :     if (poSpatialFilter == nullptr)
    1470        1238 :         return;
    1471             : 
    1472           8 :     std::unique_ptr<OGRGeometry> poSpatialFilterReprojected;
    1473           8 :     if (poSpatSRS)
    1474             :     {
    1475           4 :         poSpatialFilterReprojected.reset(poSpatialFilter->clone());
    1476           4 :         poSpatialFilterReprojected->assignSpatialReference(poSpatSRS);
    1477             :         const OGRSpatialReference *poSpatialFilterTargetSRS =
    1478           4 :             poSourceSRS ? poSourceSRS : poLayer->GetSpatialRef();
    1479           4 :         if (poSpatialFilterTargetSRS)
    1480             :         {
    1481             :             // When transforming the spatial filter from its spat_srs to the
    1482             :             // layer SRS, make sure to densify it sufficiently to avoid issues
    1483           4 :             constexpr double SEGMENT_DISTANCE_METRE = 10 * 1000;
    1484           4 :             if (poSpatSRS->IsGeographic())
    1485             :             {
    1486             :                 const double LENGTH_OF_ONE_DEGREE =
    1487           1 :                     poSpatSRS->GetSemiMajor(nullptr) * M_PI / 180.0;
    1488           1 :                 poSpatialFilterReprojected->segmentize(SEGMENT_DISTANCE_METRE /
    1489           1 :                                                        LENGTH_OF_ONE_DEGREE);
    1490             :             }
    1491           3 :             else if (poSpatSRS->IsProjected())
    1492             :             {
    1493           3 :                 poSpatialFilterReprojected->segmentize(
    1494             :                     SEGMENT_DISTANCE_METRE /
    1495           3 :                     poSpatSRS->GetLinearUnits(nullptr));
    1496             :             }
    1497           4 :             poSpatialFilterReprojected->transformTo(poSpatialFilterTargetSRS);
    1498             :         }
    1499             :         else
    1500           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    1501             :                      "cannot determine layer SRS for %s.",
    1502           0 :                      poLayer->GetDescription());
    1503             :     }
    1504             : 
    1505           8 :     if (pszGeomField != nullptr)
    1506             :     {
    1507             :         const int iGeomField =
    1508           1 :             poLayer->GetLayerDefn()->GetGeomFieldIndex(pszGeomField);
    1509           1 :         if (iGeomField >= 0)
    1510           1 :             poLayer->SetSpatialFilter(iGeomField,
    1511             :                                       poSpatialFilterReprojected
    1512           0 :                                           ? poSpatialFilterReprojected.get()
    1513           1 :                                           : poSpatialFilter);
    1514             :         else
    1515           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    1516             :                      "Cannot find geometry field %s.", pszGeomField);
    1517             :     }
    1518             :     else
    1519             :     {
    1520          11 :         poLayer->SetSpatialFilter(poSpatialFilterReprojected
    1521           4 :                                       ? poSpatialFilterReprojected.get()
    1522           7 :                                       : poSpatialFilter);
    1523             :     }
    1524             : }
    1525             : 
    1526             : /************************************************************************/
    1527             : /*                            GetFieldType()                            */
    1528             : /************************************************************************/
    1529             : 
    1530          12 : static int GetFieldType(const char *pszArg, int *pnSubFieldType)
    1531             : {
    1532          12 :     *pnSubFieldType = OFSTNone;
    1533          12 :     const char *pszOpenParenthesis = strchr(pszArg, '(');
    1534          12 :     const int nLengthBeforeParenthesis =
    1535          12 :         pszOpenParenthesis ? static_cast<int>(pszOpenParenthesis - pszArg)
    1536          11 :                            : static_cast<int>(strlen(pszArg));
    1537          72 :     for (int iType = 0; iType <= static_cast<int>(OFTMaxType); iType++)
    1538             :     {
    1539             :         const char *pszFieldTypeName =
    1540          72 :             OGRFieldDefn::GetFieldTypeName(static_cast<OGRFieldType>(iType));
    1541          72 :         if (EQUALN(pszArg, pszFieldTypeName, nLengthBeforeParenthesis) &&
    1542          12 :             pszFieldTypeName[nLengthBeforeParenthesis] == '\0')
    1543             :         {
    1544          12 :             if (pszOpenParenthesis != nullptr)
    1545             :             {
    1546           1 :                 *pnSubFieldType = -1;
    1547           2 :                 CPLString osArgSubType = pszOpenParenthesis + 1;
    1548           1 :                 if (!osArgSubType.empty() && osArgSubType.back() == ')')
    1549           1 :                     osArgSubType.pop_back();
    1550           2 :                 for (int iSubType = 0;
    1551           2 :                      iSubType <= static_cast<int>(OFSTMaxSubType); iSubType++)
    1552             :                 {
    1553             :                     const char *pszFieldSubTypeName =
    1554           2 :                         OGRFieldDefn::GetFieldSubTypeName(
    1555             :                             static_cast<OGRFieldSubType>(iSubType));
    1556           2 :                     if (EQUAL(pszFieldSubTypeName, osArgSubType))
    1557             :                     {
    1558           1 :                         *pnSubFieldType = iSubType;
    1559           1 :                         break;
    1560             :                     }
    1561             :                 }
    1562             :             }
    1563          12 :             return iType;
    1564             :         }
    1565             :     }
    1566           0 :     return -1;
    1567             : }
    1568             : 
    1569             : /************************************************************************/
    1570             : /*                            IsFieldType()                             */
    1571             : /************************************************************************/
    1572             : 
    1573           8 : static bool IsFieldType(const char *pszArg)
    1574             : {
    1575             :     int iSubType;
    1576           8 :     return GetFieldType(pszArg, &iSubType) >= 0 && iSubType >= 0;
    1577             : }
    1578             : 
    1579             : class GDALVectorTranslateWrappedDataset final : public GDALDataset
    1580             : {
    1581             :     std::unique_ptr<GDALDriver> m_poDriverToFree{};
    1582             :     GDALDataset *m_poBase = nullptr;
    1583             :     OGRSpatialReference *m_poOutputSRS = nullptr;
    1584             :     const bool m_bTransform = false;
    1585             : 
    1586             :     std::vector<std::unique_ptr<OGRLayer>> m_apoLayers{};
    1587             :     std::vector<std::unique_ptr<OGRLayer>> m_apoHiddenLayers{};
    1588             : 
    1589             :     GDALVectorTranslateWrappedDataset(GDALDataset *poBase,
    1590             :                                       OGRSpatialReference *poOutputSRS,
    1591             :                                       bool bTransform);
    1592             : 
    1593             :     CPL_DISALLOW_COPY_ASSIGN(GDALVectorTranslateWrappedDataset)
    1594             : 
    1595             :   public:
    1596           3 :     int GetLayerCount() const override
    1597             :     {
    1598           3 :         return static_cast<int>(m_apoLayers.size());
    1599             :     }
    1600             : 
    1601             :     OGRLayer *GetLayer(int nIdx) const override;
    1602             :     OGRLayer *GetLayerByName(const char *pszName) override;
    1603             : 
    1604             :     OGRLayer *ExecuteSQL(const char *pszStatement, OGRGeometry *poSpatialFilter,
    1605             :                          const char *pszDialect) override;
    1606             :     void ReleaseResultSet(OGRLayer *poResultsSet) override;
    1607             : 
    1608             :     static std::unique_ptr<GDALVectorTranslateWrappedDataset>
    1609             :     New(GDALDataset *poBase, OGRSpatialReference *poOutputSRS, bool bTransform);
    1610             : };
    1611             : 
    1612             : class GDALVectorTranslateWrappedLayer final : public OGRLayerDecorator
    1613             : {
    1614             :     std::vector<std::unique_ptr<OGRCoordinateTransformation>> m_apoCT{};
    1615             :     OGRFeatureDefnRefCountedPtr m_poFDefn{};
    1616             : 
    1617             :     GDALVectorTranslateWrappedLayer(OGRLayer *poBaseLayer, bool bOwnBaseLayer);
    1618             :     std::unique_ptr<OGRFeature>
    1619             :     TranslateFeature(std::unique_ptr<OGRFeature> poSrcFeat);
    1620             : 
    1621             :     CPL_DISALLOW_COPY_ASSIGN(GDALVectorTranslateWrappedLayer)
    1622             : 
    1623             :   public:
    1624         379 :     const OGRFeatureDefn *GetLayerDefn() const override
    1625             :     {
    1626         379 :         return m_poFDefn.get();
    1627             :     }
    1628             : 
    1629             :     OGRFeature *GetNextFeature() override;
    1630             :     OGRFeature *GetFeature(GIntBig nFID) override;
    1631             : 
    1632             :     static std::unique_ptr<GDALVectorTranslateWrappedLayer>
    1633             :     New(OGRLayer *poBaseLayer, bool bOwnBaseLayer,
    1634             :         OGRSpatialReference *poOutputSRS, bool bTransform);
    1635             : };
    1636             : 
    1637          79 : GDALVectorTranslateWrappedLayer::GDALVectorTranslateWrappedLayer(
    1638          79 :     OGRLayer *poBaseLayer, bool bOwnBaseLayer)
    1639             :     : OGRLayerDecorator(poBaseLayer, bOwnBaseLayer),
    1640          79 :       m_apoCT(poBaseLayer->GetLayerDefn()->GetGeomFieldCount())
    1641             : {
    1642          79 : }
    1643             : 
    1644             : std::unique_ptr<GDALVectorTranslateWrappedLayer>
    1645          79 : GDALVectorTranslateWrappedLayer::New(OGRLayer *poBaseLayer, bool bOwnBaseLayer,
    1646             :                                      OGRSpatialReference *poOutputSRS,
    1647             :                                      bool bTransform)
    1648             : {
    1649             :     auto poNew = std::unique_ptr<GDALVectorTranslateWrappedLayer>(
    1650         158 :         new GDALVectorTranslateWrappedLayer(poBaseLayer, bOwnBaseLayer));
    1651          79 :     poNew->m_poFDefn.reset(poBaseLayer->GetLayerDefn()->Clone());
    1652          79 :     if (!poOutputSRS)
    1653           0 :         return poNew;
    1654             : 
    1655          94 :     for (int i = 0; i < poNew->m_poFDefn->GetGeomFieldCount(); i++)
    1656             :     {
    1657          15 :         if (bTransform)
    1658             :         {
    1659           0 :             const OGRSpatialReference *poSourceSRS = poBaseLayer->GetLayerDefn()
    1660           0 :                                                          ->GetGeomFieldDefn(i)
    1661           0 :                                                          ->GetSpatialRef();
    1662           0 :             if (poSourceSRS == nullptr)
    1663             :             {
    1664           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    1665             :                          "Layer %s has no source SRS for geometry field %s",
    1666           0 :                          poBaseLayer->GetName(),
    1667           0 :                          poBaseLayer->GetLayerDefn()
    1668           0 :                              ->GetGeomFieldDefn(i)
    1669             :                              ->GetNameRef());
    1670           0 :                 return nullptr;
    1671             :             }
    1672             :             else
    1673             :             {
    1674           0 :                 poNew->m_apoCT[i] =
    1675           0 :                     std::unique_ptr<OGRCoordinateTransformation>(
    1676             :                         OGRCreateCoordinateTransformation(poSourceSRS,
    1677           0 :                                                           poOutputSRS));
    1678           0 :                 if (poNew->m_apoCT[i] == nullptr)
    1679             :                 {
    1680           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    1681             :                              "Failed to create coordinate transformation "
    1682             :                              "between the\n"
    1683             :                              "following coordinate systems.  This may be "
    1684             :                              "because they\n"
    1685             :                              "are not transformable.");
    1686             : 
    1687           0 :                     char *pszWKT = nullptr;
    1688           0 :                     poSourceSRS->exportToPrettyWkt(&pszWKT, FALSE);
    1689           0 :                     CPLError(CE_Failure, CPLE_AppDefined, "Source:\n%s",
    1690             :                              pszWKT);
    1691           0 :                     CPLFree(pszWKT);
    1692             : 
    1693           0 :                     poOutputSRS->exportToPrettyWkt(&pszWKT, FALSE);
    1694           0 :                     CPLError(CE_Failure, CPLE_AppDefined, "Target:\n%s",
    1695             :                              pszWKT);
    1696           0 :                     CPLFree(pszWKT);
    1697             : 
    1698           0 :                     return nullptr;
    1699             :                 }
    1700             :             }
    1701             :         }
    1702          15 :         poNew->m_poFDefn->GetGeomFieldDefn(i)->SetSpatialRef(poOutputSRS);
    1703             :     }
    1704             : 
    1705          79 :     return poNew;
    1706             : }
    1707             : 
    1708         641 : OGRFeature *GDALVectorTranslateWrappedLayer::GetNextFeature()
    1709             : {
    1710        1282 :     return TranslateFeature(
    1711        1282 :                std::unique_ptr<OGRFeature>(OGRLayerDecorator::GetNextFeature()))
    1712        1282 :         .release();
    1713             : }
    1714             : 
    1715           0 : OGRFeature *GDALVectorTranslateWrappedLayer::GetFeature(GIntBig nFID)
    1716             : {
    1717           0 :     return TranslateFeature(
    1718           0 :                std::unique_ptr<OGRFeature>(OGRLayerDecorator::GetFeature(nFID)))
    1719           0 :         .release();
    1720             : }
    1721             : 
    1722         641 : std::unique_ptr<OGRFeature> GDALVectorTranslateWrappedLayer::TranslateFeature(
    1723             :     std::unique_ptr<OGRFeature> poSrcFeat)
    1724             : {
    1725         641 :     if (poSrcFeat == nullptr)
    1726          93 :         return nullptr;
    1727        1096 :     auto poNewFeat = std::make_unique<OGRFeature>(m_poFDefn.get());
    1728         548 :     poNewFeat->SetFrom(poSrcFeat.get());
    1729         548 :     poNewFeat->SetFID(poSrcFeat->GetFID());
    1730         563 :     for (int i = 0; i < poNewFeat->GetGeomFieldCount(); i++)
    1731             :     {
    1732          15 :         OGRGeometry *poGeom = poNewFeat->GetGeomFieldRef(i);
    1733          15 :         if (poGeom)
    1734             :         {
    1735          13 :             if (m_apoCT[i])
    1736           0 :                 poGeom->transform(m_apoCT[i].get());
    1737          13 :             poGeom->assignSpatialReference(
    1738          13 :                 m_poFDefn->GetGeomFieldDefn(i)->GetSpatialRef());
    1739             :         }
    1740             :     }
    1741         548 :     return poNewFeat;
    1742             : }
    1743             : 
    1744           3 : GDALVectorTranslateWrappedDataset::GDALVectorTranslateWrappedDataset(
    1745           3 :     GDALDataset *poBase, OGRSpatialReference *poOutputSRS, bool bTransform)
    1746           3 :     : m_poBase(poBase), m_poOutputSRS(poOutputSRS), m_bTransform(bTransform)
    1747             : {
    1748           3 :     SetDescription(poBase->GetDescription());
    1749           3 :     if (poBase->GetDriver())
    1750             :     {
    1751           6 :         auto poNewDriver = std::make_unique<GDALDriver>();
    1752           3 :         poNewDriver->SetDescription(poBase->GetDriver()->GetDescription());
    1753           3 :         m_poDriverToFree = std::move(poNewDriver);
    1754             :     }
    1755           3 : }
    1756             : 
    1757             : std::unique_ptr<GDALVectorTranslateWrappedDataset>
    1758           3 : GDALVectorTranslateWrappedDataset::New(GDALDataset *poBase,
    1759             :                                        OGRSpatialReference *poOutputSRS,
    1760             :                                        bool bTransform)
    1761             : {
    1762             :     auto poNew = std::unique_ptr<GDALVectorTranslateWrappedDataset>(
    1763           6 :         new GDALVectorTranslateWrappedDataset(poBase, poOutputSRS, bTransform));
    1764          70 :     for (int i = 0; i < poBase->GetLayerCount(); i++)
    1765             :     {
    1766             :         auto poLayer = GDALVectorTranslateWrappedLayer::New(
    1767             :             poBase->GetLayer(i), /* bOwnBaseLayer = */ false, poOutputSRS,
    1768          67 :             bTransform);
    1769          67 :         if (poLayer == nullptr)
    1770             :         {
    1771           0 :             return nullptr;
    1772             :         }
    1773          67 :         poNew->m_apoLayers.push_back(std::move(poLayer));
    1774             :     }
    1775           3 :     return poNew;
    1776             : }
    1777             : 
    1778           0 : OGRLayer *GDALVectorTranslateWrappedDataset::GetLayer(int i) const
    1779             : {
    1780           0 :     if (i < 0 || i >= static_cast<int>(m_apoLayers.size()))
    1781           0 :         return nullptr;
    1782           0 :     return m_apoLayers[i].get();
    1783             : }
    1784             : 
    1785          68 : OGRLayer *GDALVectorTranslateWrappedDataset::GetLayerByName(const char *pszName)
    1786             : {
    1787        1008 :     for (const auto &poLayer : m_apoLayers)
    1788             :     {
    1789        1008 :         if (strcmp(poLayer->GetName(), pszName) == 0)
    1790          68 :             return poLayer.get();
    1791             :     }
    1792           0 :     for (const auto &poLayer : m_apoHiddenLayers)
    1793             :     {
    1794           0 :         if (strcmp(poLayer->GetName(), pszName) == 0)
    1795           0 :             return poLayer.get();
    1796             :     }
    1797           0 :     for (const auto &poLayer : m_apoLayers)
    1798             :     {
    1799           0 :         if (EQUAL(poLayer->GetName(), pszName))
    1800           0 :             return poLayer.get();
    1801             :     }
    1802           0 :     for (const auto &poLayer : m_apoHiddenLayers)
    1803             :     {
    1804           0 :         if (EQUAL(poLayer->GetName(), pszName))
    1805           0 :             return poLayer.get();
    1806             :     }
    1807             : 
    1808           0 :     OGRLayer *poLayer = m_poBase->GetLayerByName(pszName);
    1809           0 :     if (poLayer == nullptr)
    1810           0 :         return nullptr;
    1811             : 
    1812             :     auto poNewLayer = GDALVectorTranslateWrappedLayer::New(
    1813           0 :         poLayer, /* bOwnBaseLayer = */ false, m_poOutputSRS, m_bTransform);
    1814           0 :     if (poNewLayer == nullptr)
    1815           0 :         return nullptr;
    1816             : 
    1817             :     // Replicate source dataset behavior: if the fact of calling
    1818             :     // GetLayerByName() on a initially hidden layer makes it visible through
    1819             :     // GetLayerCount()/GetLayer(), do the same. Otherwise we are going to
    1820             :     // maintain it hidden as well.
    1821           0 :     for (int i = 0; i < m_poBase->GetLayerCount(); i++)
    1822             :     {
    1823           0 :         if (m_poBase->GetLayer(i) == poLayer)
    1824             :         {
    1825           0 :             m_apoLayers.push_back(std::move(poNewLayer));
    1826           0 :             return m_apoLayers.back().get();
    1827             :         }
    1828             :     }
    1829           0 :     m_apoHiddenLayers.push_back(std::move(poNewLayer));
    1830           0 :     return m_apoHiddenLayers.back().get();
    1831             : }
    1832             : 
    1833             : OGRLayer *
    1834          12 : GDALVectorTranslateWrappedDataset::ExecuteSQL(const char *pszStatement,
    1835             :                                               OGRGeometry *poSpatialFilter,
    1836             :                                               const char *pszDialect)
    1837             : {
    1838             :     OGRLayer *poLayer =
    1839          12 :         m_poBase->ExecuteSQL(pszStatement, poSpatialFilter, pszDialect);
    1840          12 :     if (poLayer == nullptr)
    1841           0 :         return nullptr;
    1842          12 :     return GDALVectorTranslateWrappedLayer::New(
    1843          12 :                poLayer, /* bOwnBaseLayer = */ true, m_poOutputSRS, m_bTransform)
    1844          12 :         .release();
    1845             : }
    1846             : 
    1847          12 : void GDALVectorTranslateWrappedDataset::ReleaseResultSet(OGRLayer *poResultsSet)
    1848             : {
    1849          12 :     delete poResultsSet;
    1850          12 : }
    1851             : 
    1852             : /************************************************************************/
    1853             : /*                   GDALVectorTranslateCreateCopy()                    */
    1854             : /************************************************************************/
    1855             : 
    1856             : static GDALDataset *
    1857          22 : GDALVectorTranslateCreateCopy(GDALDriver *poDriver, const char *pszDest,
    1858             :                               GDALDataset *poDS,
    1859             :                               const GDALVectorTranslateOptions *psOptions)
    1860             : {
    1861          22 :     const char *const szErrorMsg = "%s not supported by this output driver";
    1862             : 
    1863          22 :     if (psOptions->bSkipFailures)
    1864             :     {
    1865           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-skipfailures");
    1866           0 :         return nullptr;
    1867             :     }
    1868          22 :     if (psOptions->nLayerTransaction >= 0)
    1869             :     {
    1870           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg,
    1871             :                  "-lyr_transaction or -ds_transaction");
    1872           0 :         return nullptr;
    1873             :     }
    1874          22 :     if (psOptions->nFIDToFetch >= 0)
    1875             :     {
    1876           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-fid");
    1877           0 :         return nullptr;
    1878             :     }
    1879          22 :     if (!psOptions->aosLCO.empty())
    1880             :     {
    1881           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-lco");
    1882           0 :         return nullptr;
    1883             :     }
    1884          22 :     if (psOptions->bAddMissingFields)
    1885             :     {
    1886           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-addfields");
    1887           0 :         return nullptr;
    1888             :     }
    1889          22 :     if (!psOptions->osSourceSRSDef.empty())
    1890             :     {
    1891           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-s_srs");
    1892           0 :         return nullptr;
    1893             :     }
    1894          22 :     if (!psOptions->bExactFieldNameMatch)
    1895             :     {
    1896           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg,
    1897             :                  "-relaxedFieldNameMatch");
    1898           0 :         return nullptr;
    1899             :     }
    1900          22 :     if (!psOptions->osNewLayerName.empty())
    1901             :     {
    1902           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-nln");
    1903           0 :         return nullptr;
    1904             :     }
    1905          22 :     if (psOptions->bSelFieldsSet)
    1906             :     {
    1907           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-select");
    1908           0 :         return nullptr;
    1909             :     }
    1910          22 :     if (!psOptions->osSQLStatement.empty())
    1911             :     {
    1912           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-sql");
    1913           0 :         return nullptr;
    1914             :     }
    1915          22 :     if (!psOptions->osDialect.empty())
    1916             :     {
    1917           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-dialect");
    1918           0 :         return nullptr;
    1919             :     }
    1920          22 :     if (psOptions->eGType != GEOMTYPE_UNCHANGED ||
    1921          22 :         psOptions->eGeomTypeConversion != GTC_DEFAULT)
    1922             :     {
    1923           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-nlt");
    1924           0 :         return nullptr;
    1925             :     }
    1926          22 :     if (!psOptions->aosFieldTypesToString.empty())
    1927             :     {
    1928           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg,
    1929             :                  "-fieldTypeToString");
    1930           0 :         return nullptr;
    1931             :     }
    1932          22 :     if (!psOptions->aosMapFieldType.empty())
    1933             :     {
    1934           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-mapFieldType");
    1935           0 :         return nullptr;
    1936             :     }
    1937          22 :     if (psOptions->bUnsetFieldWidth)
    1938             :     {
    1939           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-unsetFieldWidth");
    1940           0 :         return nullptr;
    1941             :     }
    1942          22 :     if (psOptions->bWrapDateline)
    1943             :     {
    1944           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-wrapdateline");
    1945           0 :         return nullptr;
    1946             :     }
    1947          22 :     if (psOptions->bClipSrc)
    1948             :     {
    1949           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipsrc");
    1950           0 :         return nullptr;
    1951             :     }
    1952          22 :     if (!psOptions->osClipSrcSQL.empty())
    1953             :     {
    1954           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipsrcsql");
    1955           0 :         return nullptr;
    1956             :     }
    1957          22 :     if (!psOptions->osClipSrcLayer.empty())
    1958             :     {
    1959           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipsrclayer");
    1960           0 :         return nullptr;
    1961             :     }
    1962          22 :     if (!psOptions->osClipSrcWhere.empty())
    1963             :     {
    1964           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipsrcwhere");
    1965           0 :         return nullptr;
    1966             :     }
    1967          22 :     if (!psOptions->osClipDstDS.empty() || psOptions->poClipDst)
    1968             :     {
    1969           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipdst");
    1970           0 :         return nullptr;
    1971             :     }
    1972          22 :     if (!psOptions->osClipDstSQL.empty())
    1973             :     {
    1974           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipdstsql");
    1975           0 :         return nullptr;
    1976             :     }
    1977          22 :     if (!psOptions->osClipDstLayer.empty())
    1978             :     {
    1979           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipdstlayer");
    1980           0 :         return nullptr;
    1981             :     }
    1982          22 :     if (!psOptions->osClipDstWhere.empty())
    1983             :     {
    1984           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-clipdstwhere");
    1985           0 :         return nullptr;
    1986             :     }
    1987          22 :     if (psOptions->bSplitListFields)
    1988             :     {
    1989           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-splitlistfields");
    1990           0 :         return nullptr;
    1991             :     }
    1992          22 :     if (psOptions->nMaxSplitListSubFields >= 0)
    1993             :     {
    1994           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-maxsubfields");
    1995           0 :         return nullptr;
    1996             :     }
    1997          22 :     if (psOptions->bExplodeCollections)
    1998             :     {
    1999           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg,
    2000             :                  "-explodecollections");
    2001           0 :         return nullptr;
    2002             :     }
    2003          22 :     if (!psOptions->osZField.empty())
    2004             :     {
    2005           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-zfield");
    2006           0 :         return nullptr;
    2007             :     }
    2008          22 :     if (!psOptions->asGCPs.empty())
    2009             :     {
    2010           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-gcp");
    2011           0 :         return nullptr;
    2012             :     }
    2013          22 :     if (!psOptions->aosFieldMap.empty())
    2014             :     {
    2015           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-fieldmap");
    2016           0 :         return nullptr;
    2017             :     }
    2018          22 :     if (psOptions->bForceNullable)
    2019             :     {
    2020           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-forceNullable");
    2021           0 :         return nullptr;
    2022             :     }
    2023          22 :     if (psOptions->bResolveDomains)
    2024             :     {
    2025           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-forceNullable");
    2026           0 :         return nullptr;
    2027             :     }
    2028          22 :     if (psOptions->bEmptyStrAsNull)
    2029             :     {
    2030           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-emptyStrAsNull");
    2031           0 :         return nullptr;
    2032             :     }
    2033          22 :     if (psOptions->bUnsetDefault)
    2034             :     {
    2035           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-unsetDefault");
    2036           0 :         return nullptr;
    2037             :     }
    2038          22 :     if (psOptions->bUnsetFid)
    2039             :     {
    2040           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-unsetFid");
    2041           0 :         return nullptr;
    2042             :     }
    2043          22 :     if (!psOptions->bCopyMD)
    2044             :     {
    2045           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-nomd");
    2046           0 :         return nullptr;
    2047             :     }
    2048          22 :     if (!psOptions->bNativeData)
    2049             :     {
    2050           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-noNativeData");
    2051           0 :         return nullptr;
    2052             :     }
    2053          22 :     if (psOptions->nLimit >= 0)
    2054             :     {
    2055           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-limit");
    2056           0 :         return nullptr;
    2057             :     }
    2058          22 :     if (!psOptions->aosMetadataOptions.empty())
    2059             :     {
    2060           0 :         CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-mo");
    2061           0 :         return nullptr;
    2062             :     }
    2063             : 
    2064          22 :     GDALDataset *poWrkSrcDS = poDS;
    2065          22 :     std::unique_ptr<GDALDataset> poWrkSrcDSToFree;
    2066          44 :     OGRSpatialReferenceRefCountedPtr poOutputSRS;
    2067             : 
    2068          22 :     if (!psOptions->osOutputSRSDef.empty())
    2069             :     {
    2070           3 :         poOutputSRS = OGRSpatialReferenceRefCountedPtr::makeInstance();
    2071           3 :         poOutputSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
    2072           3 :         if (poOutputSRS->SetFromUserInput(psOptions->osOutputSRSDef.c_str()) !=
    2073             :             OGRERR_NONE)
    2074             :         {
    2075           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2076             :                      "Failed to process SRS definition: %s",
    2077             :                      psOptions->osOutputSRSDef.c_str());
    2078           0 :             return nullptr;
    2079             :         }
    2080           3 :         poOutputSRS->SetCoordinateEpoch(psOptions->dfOutputCoordinateEpoch);
    2081             : 
    2082           6 :         poWrkSrcDSToFree = GDALVectorTranslateWrappedDataset::New(
    2083           6 :             poDS, poOutputSRS.get(), psOptions->bTransform);
    2084           3 :         if (poWrkSrcDSToFree == nullptr)
    2085           0 :             return nullptr;
    2086           3 :         poWrkSrcDS = poWrkSrcDSToFree.get();
    2087             :     }
    2088             : 
    2089          22 :     if (!psOptions->osWHERE.empty())
    2090             :     {
    2091             :         // Hack for GMLAS driver
    2092           0 :         if (EQUAL(poDriver->GetDescription(), "GMLAS"))
    2093             :         {
    2094           0 :             if (psOptions->aosLayers.empty())
    2095             :             {
    2096           0 :                 CPLError(CE_Failure, CPLE_NotSupported,
    2097             :                          "-where not supported by this output driver "
    2098             :                          "without explicit layer name(s)");
    2099           0 :                 return nullptr;
    2100             :             }
    2101             :             else
    2102             :             {
    2103           0 :                 for (const char *pszLayer : psOptions->aosLayers)
    2104             :                 {
    2105           0 :                     OGRLayer *poSrcLayer = poDS->GetLayerByName(pszLayer);
    2106           0 :                     if (poSrcLayer != nullptr)
    2107             :                     {
    2108           0 :                         poSrcLayer->SetAttributeFilter(
    2109           0 :                             psOptions->osWHERE.c_str());
    2110             :                     }
    2111             :                 }
    2112             :             }
    2113             :         }
    2114             :         else
    2115             :         {
    2116           0 :             CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg, "-where");
    2117           0 :             return nullptr;
    2118             :         }
    2119             :     }
    2120             : 
    2121          22 :     if (psOptions->poSpatialFilter)
    2122             :     {
    2123           0 :         for (int i = 0; i < poWrkSrcDS->GetLayerCount(); ++i)
    2124             :         {
    2125           0 :             OGRLayer *poSrcLayer = poWrkSrcDS->GetLayer(i);
    2126           0 :             if (poSrcLayer &&
    2127           0 :                 poSrcLayer->GetLayerDefn()->GetGeomFieldCount() > 0 &&
    2128           0 :                 (psOptions->aosLayers.empty() ||
    2129           0 :                  psOptions->aosLayers.FindString(poSrcLayer->GetName()) >= 0))
    2130             :             {
    2131           0 :                 if (psOptions->bGeomFieldSet)
    2132             :                 {
    2133             :                     const int iGeomField =
    2134           0 :                         poSrcLayer->GetLayerDefn()->GetGeomFieldIndex(
    2135           0 :                             psOptions->osGeomField.c_str());
    2136           0 :                     if (iGeomField >= 0)
    2137           0 :                         poSrcLayer->SetSpatialFilter(
    2138           0 :                             iGeomField, psOptions->poSpatialFilter.get());
    2139             :                     else
    2140           0 :                         CPLError(CE_Warning, CPLE_AppDefined,
    2141             :                                  "Cannot find geometry field %s in layer %s. "
    2142             :                                  "Applying to first geometry field",
    2143             :                                  psOptions->osGeomField.c_str(),
    2144           0 :                                  poSrcLayer->GetName());
    2145             :                 }
    2146             :                 else
    2147             :                 {
    2148           0 :                     poSrcLayer->SetSpatialFilter(
    2149           0 :                         psOptions->poSpatialFilter.get());
    2150             :                 }
    2151             :             }
    2152             :         }
    2153             :     }
    2154             : 
    2155          44 :     CPLStringList aosDSCO(psOptions->aosDSCO);
    2156          22 :     if (!psOptions->aosLayers.empty())
    2157             :     {
    2158             :         // Hack for GMLAS driver
    2159           0 :         if (EQUAL(poDriver->GetDescription(), "GMLAS"))
    2160             :         {
    2161           0 :             CPLString osLayers;
    2162           0 :             for (const char *pszLayer : psOptions->aosLayers)
    2163             :             {
    2164           0 :                 if (!osLayers.empty())
    2165           0 :                     osLayers += ",";
    2166           0 :                 osLayers += pszLayer;
    2167             :             }
    2168           0 :             aosDSCO.SetNameValue("LAYERS", osLayers);
    2169             :         }
    2170             :         else
    2171             :         {
    2172           0 :             CPLError(CE_Failure, CPLE_NotSupported, szErrorMsg,
    2173             :                      "Specifying layers");
    2174           0 :             return nullptr;
    2175             :         }
    2176             :     }
    2177             : 
    2178             :     // Hack for GMLAS driver (this speed up deletion by avoiding the GML
    2179             :     // driver to try parsing a pre-existing file). Could be potentially
    2180             :     // removed if the GML driver implemented fast dataset opening (ie
    2181             :     // without parsing) and GetFileList()
    2182          22 :     if (EQUAL(poDriver->GetDescription(), "GMLAS"))
    2183             :     {
    2184          22 :         GDALDriverH hIdentifyingDriver = GDALIdentifyDriver(pszDest, nullptr);
    2185          23 :         if (hIdentifyingDriver != nullptr &&
    2186           1 :             EQUAL(GDALGetDescription(hIdentifyingDriver), "GML"))
    2187             :         {
    2188           0 :             VSIUnlink(pszDest);
    2189           0 :             VSIUnlink(CPLResetExtensionSafe(pszDest, "gfs").c_str());
    2190             :         }
    2191             :     }
    2192             : 
    2193             :     GDALDataset *poOut =
    2194          22 :         poDriver->CreateCopy(pszDest, poWrkSrcDS, FALSE, aosDSCO.List(),
    2195          22 :                              psOptions->pfnProgress, psOptions->pProgressData);
    2196             : 
    2197          22 :     return poOut;
    2198             : }
    2199             : 
    2200             : /************************************************************************/
    2201             : /*                         CopyRelationships()                          */
    2202             : /************************************************************************/
    2203             : 
    2204        1055 : static void CopyRelationships(GDALDataset *poODS, GDALDataset *poDS)
    2205             : {
    2206        1055 :     if (!poODS->GetDriver()->GetMetadataItem(GDAL_DCAP_CREATE_RELATIONSHIP))
    2207        1050 :         return;
    2208             : 
    2209         449 :     const auto aosRelationshipNames = poDS->GetRelationshipNames();
    2210         449 :     if (aosRelationshipNames.empty())
    2211         444 :         return;
    2212             : 
    2213             :     // Collect target layer names
    2214          10 :     std::set<std::string> oSetDestLayerNames;
    2215          30 :     for (const auto &poLayer : poDS->GetLayers())
    2216             :     {
    2217          25 :         oSetDestLayerNames.insert(poLayer->GetName());
    2218             :     }
    2219             : 
    2220             :     // Iterate over all source relationships
    2221          20 :     for (const auto &osRelationshipName : aosRelationshipNames)
    2222             :     {
    2223             :         const auto poSrcRelationship =
    2224          15 :             poDS->GetRelationship(osRelationshipName);
    2225          15 :         if (!poSrcRelationship)
    2226           0 :             continue;
    2227             : 
    2228             :         // Skip existing relationship of the same name
    2229          15 :         if (poODS->GetRelationship(osRelationshipName))
    2230           0 :             continue;
    2231             : 
    2232          15 :         bool canAdd = true;
    2233          15 :         const auto &osLeftTableName = poSrcRelationship->GetLeftTableName();
    2234          30 :         if (!osLeftTableName.empty() &&
    2235          15 :             !cpl::contains(oSetDestLayerNames, osLeftTableName))
    2236             :         {
    2237           1 :             CPLDebug("GDALVectorTranslate",
    2238             :                      "Skipping relationship %s because its left table (%s) "
    2239             :                      "does not exist in target dataset",
    2240             :                      osRelationshipName.c_str(), osLeftTableName.c_str());
    2241           1 :             canAdd = false;
    2242             :         }
    2243             : 
    2244          15 :         const auto &osRightTableName = poSrcRelationship->GetRightTableName();
    2245          30 :         if (!osRightTableName.empty() &&
    2246          15 :             !cpl::contains(oSetDestLayerNames, osRightTableName))
    2247             :         {
    2248           0 :             CPLDebug("GDALVectorTranslate",
    2249             :                      "Skipping relationship %s because its right table (%s) "
    2250             :                      "does not exist in target dataset",
    2251             :                      osRelationshipName.c_str(), osRightTableName.c_str());
    2252           0 :             canAdd = false;
    2253             :         }
    2254             : 
    2255             :         const auto &osMappingTableName =
    2256          15 :             poSrcRelationship->GetMappingTableName();
    2257          21 :         if (!osMappingTableName.empty() &&
    2258           6 :             !cpl::contains(oSetDestLayerNames, osMappingTableName))
    2259             :         {
    2260           0 :             CPLDebug("GDALVectorTranslate",
    2261             :                      "Skipping relationship %s because its mapping table (%s) "
    2262             :                      "does not exist in target dataset",
    2263             :                      osRelationshipName.c_str(), osMappingTableName.c_str());
    2264           0 :             canAdd = false;
    2265             :         }
    2266             : 
    2267          15 :         if (canAdd)
    2268             :         {
    2269          28 :             std::string osFailureReason;
    2270          14 :             if (!poODS->AddRelationship(
    2271          14 :                     std::make_unique<GDALRelationship>(*poSrcRelationship),
    2272          14 :                     osFailureReason))
    2273             :             {
    2274           3 :                 CPLDebug("GDALVectorTranslate",
    2275             :                          "Cannot add relationship %s: %s",
    2276             :                          osRelationshipName.c_str(), osFailureReason.c_str());
    2277             :             }
    2278             :         }
    2279             :     }
    2280             : }
    2281             : 
    2282             : /************************************************************************/
    2283             : /*                        GDALVectorTranslate()                         */
    2284             : /************************************************************************/
    2285             : /**
    2286             :  * Converts vector data between file formats.
    2287             :  *
    2288             :  * This is the equivalent of the <a href="/programs/ogr2ogr.html">ogr2ogr</a>
    2289             :  * utility.
    2290             :  *
    2291             :  * GDALVectorTranslateOptions* must be allocated and freed with
    2292             :  * GDALVectorTranslateOptionsNew() and GDALVectorTranslateOptionsFree()
    2293             :  * respectively. pszDest and hDstDS cannot be used at the same time.
    2294             :  *
    2295             :  * @param pszDest the destination dataset path or NULL.
    2296             :  * @param hDstDS the destination dataset or NULL.
    2297             :  * @param nSrcCount the number of input datasets (only 1 supported currently)
    2298             :  * @param pahSrcDS the list of input datasets.
    2299             :  * @param psOptionsIn the options struct returned by
    2300             :  * GDALVectorTranslateOptionsNew() or NULL.
    2301             :  * @param pbUsageError pointer to a integer output variable to store if any
    2302             :  * usage error has occurred, or NULL.
    2303             :  * @return the output dataset (new dataset that must be closed using
    2304             :  * GDALClose(), or hDstDS is not NULL) or NULL in case of error.
    2305             :  *
    2306             :  * @since GDAL 2.1
    2307             :  */
    2308             : 
    2309        1103 : GDALDatasetH GDALVectorTranslate(const char *pszDest, GDALDatasetH hDstDS,
    2310             :                                  int nSrcCount, GDALDatasetH *pahSrcDS,
    2311             :                                  const GDALVectorTranslateOptions *psOptionsIn,
    2312             :                                  int *pbUsageError)
    2313             : 
    2314             : {
    2315        1103 :     if (pszDest == nullptr && hDstDS == nullptr)
    2316             :     {
    2317           0 :         CPLError(CE_Failure, CPLE_AppDefined,
    2318             :                  "pszDest == NULL && hDstDS == NULL");
    2319             : 
    2320           0 :         if (pbUsageError)
    2321           0 :             *pbUsageError = TRUE;
    2322           0 :         return nullptr;
    2323             :     }
    2324        1103 :     if (nSrcCount != 1)
    2325             :     {
    2326           0 :         CPLError(CE_Failure, CPLE_AppDefined, "nSrcCount != 1");
    2327             : 
    2328           0 :         if (pbUsageError)
    2329           0 :             *pbUsageError = TRUE;
    2330           0 :         return nullptr;
    2331             :     }
    2332             : 
    2333        1103 :     GDALDatasetH hSrcDS = pahSrcDS[0];
    2334        1103 :     if (hSrcDS == nullptr)
    2335             :     {
    2336           0 :         CPLError(CE_Failure, CPLE_AppDefined, "hSrcDS == NULL");
    2337             : 
    2338           0 :         if (pbUsageError)
    2339           0 :             *pbUsageError = TRUE;
    2340           0 :         return nullptr;
    2341             :     }
    2342             : 
    2343             :     auto psOptions =
    2344             :         psOptionsIn ? std::make_unique<GDALVectorTranslateOptions>(*psOptionsIn)
    2345        2206 :                     : std::make_unique<GDALVectorTranslateOptions>();
    2346             : 
    2347        1103 :     bool bAppend = false;
    2348        1103 :     bool bUpdate = false;
    2349        1103 :     bool bOverwrite = false;
    2350             : 
    2351        1103 :     if (psOptions->eAccessMode == ACCESS_UPDATE)
    2352             :     {
    2353           5 :         bUpdate = true;
    2354             :     }
    2355        1098 :     else if (psOptions->eAccessMode == ACCESS_APPEND)
    2356             :     {
    2357          44 :         bAppend = true;
    2358          44 :         bUpdate = true;
    2359             :     }
    2360        1054 :     else if (psOptions->eAccessMode == ACCESS_OVERWRITE)
    2361             :     {
    2362          18 :         bOverwrite = true;
    2363          18 :         bUpdate = true;
    2364             :     }
    2365        1036 :     else if (hDstDS != nullptr)
    2366             :     {
    2367           9 :         bUpdate = true;
    2368             :     }
    2369             : 
    2370        1103 :     if (psOptions->bPreserveFID && psOptions->bExplodeCollections)
    2371             :     {
    2372           1 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2373             :                  "cannot use -preserve_fid and -explodecollections at the same "
    2374             :                  "time.");
    2375           1 :         if (pbUsageError)
    2376           1 :             *pbUsageError = TRUE;
    2377           1 :         return nullptr;
    2378             :     }
    2379             : 
    2380        1102 :     if (!psOptions->aosFieldMap.empty() && !bAppend)
    2381             :     {
    2382           0 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2383             :                  "if -fieldmap is specified, -append must also be specified");
    2384           0 :         if (pbUsageError)
    2385           0 :             *pbUsageError = TRUE;
    2386           0 :         return nullptr;
    2387             :     }
    2388             : 
    2389        1102 :     if (!psOptions->aosFieldMap.empty() && psOptions->bAddMissingFields)
    2390             :     {
    2391           0 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2392             :                  "if -addfields is specified, -fieldmap cannot be used.");
    2393           0 :         if (pbUsageError)
    2394           0 :             *pbUsageError = TRUE;
    2395           0 :         return nullptr;
    2396             :     }
    2397             : 
    2398        1102 :     if (psOptions->bSelFieldsSet && bAppend && !psOptions->bAddMissingFields)
    2399             :     {
    2400           1 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2401             :                  "if -append is specified, -select cannot be used "
    2402             :                  "(use -fieldmap or -sql instead).");
    2403           1 :         if (pbUsageError)
    2404           1 :             *pbUsageError = TRUE;
    2405           1 :         return nullptr;
    2406             :     }
    2407             : 
    2408        1101 :     if (!psOptions->aosFieldTypesToString.empty() &&
    2409           0 :         !psOptions->aosMapFieldType.empty())
    2410             :     {
    2411           0 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2412             :                  "-fieldTypeToString and -mapFieldType are exclusive.");
    2413           0 :         if (pbUsageError)
    2414           0 :             *pbUsageError = TRUE;
    2415           0 :         return nullptr;
    2416             :     }
    2417             : 
    2418        1109 :     if (!psOptions->osSourceSRSDef.empty() &&
    2419        1109 :         psOptions->osOutputSRSDef.empty() && psOptions->osSpatSRSDef.empty())
    2420             :     {
    2421           0 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2422             :                  "if -s_srs is specified, -t_srs and/or -spat_srs must also be "
    2423             :                  "specified.");
    2424           0 :         if (pbUsageError)
    2425           0 :             *pbUsageError = TRUE;
    2426           0 :         return nullptr;
    2427             :     }
    2428             : 
    2429             :     /* -------------------------------------------------------------------- */
    2430             :     /*      Parse spatial filter SRS if needed.                             */
    2431             :     /* -------------------------------------------------------------------- */
    2432        2202 :     OGRSpatialReferenceRefCountedPtr poSpatSRS;
    2433        1101 :     if (psOptions->poSpatialFilter && !psOptions->osSpatSRSDef.empty())
    2434             :     {
    2435           4 :         if (!psOptions->osSQLStatement.empty())
    2436             :         {
    2437           0 :             CPLError(CE_Failure, CPLE_IllegalArg,
    2438             :                      "-spat_srs not compatible with -sql.");
    2439           0 :             return nullptr;
    2440             :         }
    2441           4 :         OGREnvelope sEnvelope;
    2442           4 :         psOptions->poSpatialFilter->getEnvelope(&sEnvelope);
    2443           4 :         poSpatSRS = OGRSpatialReferenceRefCountedPtr::makeInstance();
    2444           4 :         poSpatSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
    2445           4 :         if (poSpatSRS->SetFromUserInput(psOptions->osSpatSRSDef.c_str()) !=
    2446             :             OGRERR_NONE)
    2447             :         {
    2448           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2449             :                      "Failed to process SRS definition: %s",
    2450           0 :                      psOptions->osSpatSRSDef.c_str());
    2451           0 :             return nullptr;
    2452             :         }
    2453             :     }
    2454             : 
    2455        1101 :     if (!psOptions->poClipSrc && !psOptions->osClipSrcDS.empty())
    2456             :     {
    2457          10 :         psOptions->poClipSrc =
    2458          20 :             LoadGeometry(psOptions->osClipSrcDS, psOptions->osClipSrcSQL,
    2459          10 :                          psOptions->osClipSrcLayer, psOptions->osClipSrcWhere,
    2460          20 :                          psOptions->bMakeValid);
    2461          10 :         if (psOptions->poClipSrc == nullptr)
    2462             :         {
    2463           2 :             CPLError(CE_Failure, CPLE_IllegalArg,
    2464             :                      "cannot load source clip geometry");
    2465           2 :             return nullptr;
    2466             :         }
    2467             :     }
    2468        1092 :     else if (psOptions->bClipSrc && !psOptions->poClipSrc &&
    2469           1 :              psOptions->poSpatialFilter)
    2470             :     {
    2471           1 :         psOptions->poClipSrc.reset(psOptions->poSpatialFilter->clone());
    2472           1 :         if (poSpatSRS)
    2473             :         {
    2474           0 :             psOptions->poClipSrc->assignSpatialReference(poSpatSRS.get());
    2475             :         }
    2476             :     }
    2477        1090 :     else if (psOptions->bClipSrc && !psOptions->poClipSrc)
    2478             :     {
    2479           0 :         CPLError(CE_Failure, CPLE_IllegalArg,
    2480             :                  "-clipsrc must be used with -spat option or a\n"
    2481             :                  "bounding box, WKT string or datasource must be specified");
    2482           0 :         if (pbUsageError)
    2483           0 :             *pbUsageError = TRUE;
    2484           0 :         return nullptr;
    2485             :     }
    2486             : 
    2487        2198 :     std::string osReason;
    2488        1099 :     if (psOptions->poClipSrc && !psOptions->poClipSrc->IsValid(&osReason))
    2489             :     {
    2490           2 :         if (!psOptions->bMakeValid)
    2491             :         {
    2492           1 :             CPLError(
    2493             :                 CE_Failure, CPLE_IllegalArg,
    2494             :                 "-clipsrc geometry is invalid (%s). You can try to make it "
    2495             :                 "valid with -makevalid, but the results of the operation "
    2496             :                 "should be manually inspected.",
    2497             :                 osReason.c_str());
    2498           1 :             return nullptr;
    2499             :         }
    2500             :         auto poValid =
    2501           1 :             std::unique_ptr<OGRGeometry>(psOptions->poClipSrc->MakeValid());
    2502           1 :         if (!poValid)
    2503             :         {
    2504           0 :             CPLError(
    2505             :                 CE_Failure, CPLE_IllegalArg,
    2506             :                 "-clipsrc geometry is invalid (%s) and cannot be made valid.",
    2507             :                 osReason.c_str());
    2508           0 :             return nullptr;
    2509             :         }
    2510           1 :         CPLError(CE_Warning, CPLE_AppDefined,
    2511             :                  "-clipsrc geometry was invalid (%s) and has been made valid, "
    2512             :                  "but the results of the operation "
    2513             :                  "should be manually inspected.",
    2514             :                  osReason.c_str());
    2515           1 :         psOptions->poClipSrc = std::move(poValid);
    2516             :     }
    2517             : 
    2518        1098 :     if (!psOptions->osClipDstDS.empty())
    2519             :     {
    2520          10 :         psOptions->poClipDst =
    2521          20 :             LoadGeometry(psOptions->osClipDstDS, psOptions->osClipDstSQL,
    2522          10 :                          psOptions->osClipDstLayer, psOptions->osClipDstWhere,
    2523          20 :                          psOptions->bMakeValid);
    2524          10 :         if (psOptions->poClipDst == nullptr)
    2525             :         {
    2526           3 :             CPLError(CE_Failure, CPLE_IllegalArg,
    2527             :                      "cannot load dest clip geometry");
    2528           3 :             return nullptr;
    2529             :         }
    2530             :     }
    2531             : 
    2532        1095 :     if (psOptions->poClipDst && !psOptions->poClipDst->IsValid(&osReason))
    2533             :     {
    2534           2 :         if (!psOptions->bMakeValid)
    2535             :         {
    2536           1 :             CPLError(
    2537             :                 CE_Failure, CPLE_IllegalArg,
    2538             :                 "-clipdst geometry is invalid (%s). You can try to make it "
    2539             :                 "valid with -makevalid, but the results of the operation "
    2540             :                 "should be manually inspected.",
    2541             :                 osReason.c_str());
    2542           1 :             return nullptr;
    2543             :         }
    2544             :         auto poValid =
    2545           1 :             std::unique_ptr<OGRGeometry>(psOptions->poClipDst->MakeValid());
    2546           1 :         if (!poValid)
    2547             :         {
    2548           0 :             CPLError(
    2549             :                 CE_Failure, CPLE_IllegalArg,
    2550             :                 "-clipdst geometry is invalid (%s) and cannot be made valid.",
    2551             :                 osReason.c_str());
    2552           0 :             return nullptr;
    2553             :         }
    2554           1 :         CPLError(CE_Warning, CPLE_AppDefined,
    2555             :                  "-clipdst geometry was invalid (%s) and has been made valid, "
    2556             :                  "but the results of the operation "
    2557             :                  "should be manually inspected.",
    2558             :                  osReason.c_str());
    2559           1 :         psOptions->poClipDst = std::move(poValid);
    2560             :     }
    2561             : 
    2562        1094 :     GDALDataset *poDS = GDALDataset::FromHandle(hSrcDS);
    2563        1094 :     GDALDataset *poODS = nullptr;
    2564        1094 :     GDALDriver *poDriver = nullptr;
    2565        2188 :     CPLString osDestFilename;
    2566             : 
    2567        1094 :     if (hDstDS)
    2568             :     {
    2569          31 :         poODS = GDALDataset::FromHandle(hDstDS);
    2570          31 :         osDestFilename = poODS->GetDescription();
    2571             :     }
    2572             :     else
    2573             :     {
    2574        1063 :         osDestFilename = pszDest;
    2575             :     }
    2576             : 
    2577             :     /* Various tests to avoid overwriting the source layer(s) */
    2578             :     /* or to avoid appending a layer to itself */
    2579          75 :     if (bUpdate && strcmp(osDestFilename, poDS->GetDescription()) == 0 &&
    2580           6 :         !EQUAL(poDS->GetDriverName(), "MEM") &&
    2581        1169 :         !EQUAL(poDS->GetDriverName(), "Memory") && (bOverwrite || bAppend))
    2582             :     {
    2583           2 :         bool bError = false;
    2584           2 :         if (psOptions->osNewLayerName.empty())
    2585           1 :             bError = true;
    2586           1 :         else if (psOptions->aosLayers.size() == 1)
    2587           1 :             bError = strcmp(psOptions->osNewLayerName.c_str(),
    2588           1 :                             psOptions->aosLayers[0]) == 0;
    2589           0 :         else if (psOptions->osSQLStatement.empty())
    2590             :         {
    2591           0 :             if (psOptions->aosLayers.empty() && poDS->GetLayerCount() == 1)
    2592             :             {
    2593           0 :                 bError = strcmp(psOptions->osNewLayerName.c_str(),
    2594           0 :                                 poDS->GetLayer(0)->GetName()) == 0;
    2595             :             }
    2596             :             else
    2597             :             {
    2598           0 :                 bError = true;
    2599             :             }
    2600             :         }
    2601           2 :         if (bError)
    2602             :         {
    2603           1 :             if (psOptions->bInvokedFromGdalAlgorithm)
    2604             :             {
    2605           1 :                 CPLError(CE_Failure, CPLE_IllegalArg,
    2606             :                          "--output-layer name must be specified combined with "
    2607             :                          "a single source layer name and it "
    2608             :                          "must be different from an existing layer.");
    2609             :             }
    2610             :             else
    2611             :             {
    2612           0 :                 CPLError(
    2613             :                     CE_Failure, CPLE_IllegalArg,
    2614             :                     "-nln name must be specified combined with "
    2615             :                     "a single source layer name,\nor a -sql statement, and "
    2616             :                     "name must be different from an existing layer.");
    2617             :             }
    2618           1 :             return nullptr;
    2619             :         }
    2620             :     }
    2621        1377 :     else if (!bUpdate && strcmp(osDestFilename, poDS->GetDescription()) == 0 &&
    2622         143 :              (psOptions->osFormat.empty() ||
    2623         142 :               (!EQUAL(psOptions->osFormat.c_str(), "MEM") &&
    2624           0 :                !EQUAL(psOptions->osFormat.c_str(), "Memory"))))
    2625             :     {
    2626           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    2627             :                  "Source and destination datasets must be different "
    2628             :                  "in non-update mode.");
    2629           1 :         return nullptr;
    2630             :     }
    2631             : 
    2632             :     /* -------------------------------------------------------------------- */
    2633             :     /*      Try opening the output datasource as an existing, writable      */
    2634             :     /* -------------------------------------------------------------------- */
    2635        2184 :     std::vector<std::string> aoDrivers;
    2636        1092 :     if (poODS == nullptr && psOptions->osFormat.empty())
    2637             :     {
    2638         436 :         const auto nErrorCount = CPLGetErrorCounter();
    2639         436 :         aoDrivers = CPLStringList(GDALGetOutputDriversForDatasetName(
    2640             :             pszDest, GDAL_OF_VECTOR, /* bSingleMatch = */ true,
    2641         436 :             /* bWarn = */ true));
    2642         436 :         if (!bUpdate && aoDrivers.size() == 1)
    2643             :         {
    2644         388 :             GDALDriverH hDriver = GDALGetDriverByName(aoDrivers[0].c_str());
    2645         388 :             const char *pszPrefix = GDALGetMetadataItem(
    2646             :                 hDriver, GDAL_DMD_CONNECTION_PREFIX, nullptr);
    2647         388 :             if (pszPrefix && STARTS_WITH_CI(pszDest, pszPrefix))
    2648             :             {
    2649           4 :                 bUpdate = true;
    2650             :             }
    2651             :         }
    2652          49 :         else if (aoDrivers.empty() && CPLGetErrorCounter() > nErrorCount &&
    2653           1 :                  CPLGetLastErrorType() == CE_Failure)
    2654             :         {
    2655           1 :             return nullptr;
    2656             :         }
    2657             :     }
    2658             : 
    2659        1091 :     if (bUpdate && poODS == nullptr)
    2660             :     {
    2661          48 :         poODS = GDALDataset::Open(
    2662             :             osDestFilename, GDAL_OF_UPDATE | GDAL_OF_VECTOR, nullptr,
    2663          48 :             psOptions->aosDestOpenOptions.List(), nullptr);
    2664             : 
    2665          48 :         if (poODS == nullptr)
    2666             :         {
    2667           3 :             if (bOverwrite || bAppend)
    2668             :             {
    2669           3 :                 poODS = GDALDataset::Open(
    2670             :                     osDestFilename, GDAL_OF_VECTOR, nullptr,
    2671           3 :                     psOptions->aosDestOpenOptions.List(), nullptr);
    2672           3 :                 if (poODS == nullptr)
    2673             :                 {
    2674             :                     /* OK the datasource doesn't exist at all */
    2675           3 :                     bUpdate = false;
    2676             :                 }
    2677             :                 else
    2678             :                 {
    2679           0 :                     poDriver = poODS->GetDriver();
    2680           0 :                     GDALClose(poODS);
    2681           0 :                     poODS = nullptr;
    2682             :                 }
    2683             :             }
    2684             : 
    2685           3 :             if (bUpdate)
    2686             :             {
    2687           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    2688             :                          "Unable to open existing output datasource `%s'.",
    2689             :                          osDestFilename.c_str());
    2690           0 :                 return nullptr;
    2691             :             }
    2692             :         }
    2693          45 :         else if (psOptions->aosDSCO.size() > 0)
    2694             :         {
    2695           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    2696             :                      "Datasource creation options ignored since an existing "
    2697             :                      "datasource\n"
    2698             :                      "         being updated.");
    2699             :         }
    2700             :     }
    2701             : 
    2702        1091 :     if (poODS)
    2703          75 :         poDriver = poODS->GetDriver();
    2704             : 
    2705             :     /* -------------------------------------------------------------------- */
    2706             :     /*      Find the output driver.                                         */
    2707             :     /* -------------------------------------------------------------------- */
    2708        1091 :     bool bNewDataSource = false;
    2709        1091 :     if (!bUpdate)
    2710             :     {
    2711        1016 :         GDALDriverManager *poDM = GetGDALDriverManager();
    2712             : 
    2713        1016 :         if (psOptions->bNoOverwrite && !EQUAL(pszDest, ""))
    2714             :         {
    2715         191 :             const char *pszType = "";
    2716         191 :             if (GDALDoesFileOrDatasetExist(pszDest, &pszType))
    2717             :             {
    2718           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    2719             :                          "%s '%s' already exists. Specify the --overwrite "
    2720             :                          "option to overwrite it.",
    2721             :                          pszType, pszDest);
    2722           0 :                 return nullptr;
    2723             :             }
    2724             :         }
    2725             : 
    2726        1016 :         if (psOptions->osFormat.empty())
    2727             :         {
    2728         400 :             if (aoDrivers.empty())
    2729             :             {
    2730          24 :                 if (CPLGetExtensionSafe(pszDest).empty() &&
    2731          11 :                     !psOptions->bInvokedFromGdalAlgorithm)
    2732             :                 {
    2733          10 :                     psOptions->osFormat = "ESRI Shapefile";
    2734             :                 }
    2735             :                 else
    2736             :                 {
    2737           3 :                     CPLError(CE_Failure, CPLE_AppDefined,
    2738             :                              "Cannot guess driver for %s", pszDest);
    2739           3 :                     return nullptr;
    2740             :                 }
    2741             :             }
    2742             :             else
    2743             :             {
    2744         387 :                 psOptions->osFormat = aoDrivers[0];
    2745             :             }
    2746         397 :             CPLDebug("GDAL", "Using %s driver", psOptions->osFormat.c_str());
    2747             :         }
    2748             : 
    2749        1013 :         CPLString osOGRCompatFormat(psOptions->osFormat);
    2750             :         // Special processing for non-unified drivers that have the same name
    2751             :         // as GDAL and OGR drivers. GMT should become OGR_GMT.
    2752             :         // Other candidates could be VRT, SDTS and PDS, but they don't
    2753             :         // have write capabilities. But do the substitution to get a sensible
    2754             :         // error message
    2755        1013 :         if (EQUAL(osOGRCompatFormat, "GMT") ||
    2756        1012 :             EQUAL(osOGRCompatFormat, "VRT") ||
    2757        2025 :             EQUAL(osOGRCompatFormat, "SDTS") || EQUAL(osOGRCompatFormat, "PDS"))
    2758             :         {
    2759           1 :             osOGRCompatFormat = "OGR_" + osOGRCompatFormat;
    2760             :         }
    2761        1013 :         poDriver = poDM->GetDriverByName(osOGRCompatFormat);
    2762        1013 :         if (poDriver == nullptr)
    2763             :         {
    2764           0 :             CPLError(CE_Failure, CPLE_AppDefined, "Unable to find driver `%s'.",
    2765           0 :                      psOptions->osFormat.c_str());
    2766           0 :             return nullptr;
    2767             :         }
    2768             : 
    2769        1013 :         CSLConstList papszDriverMD = poDriver->GetMetadata();
    2770        1013 :         if (!CPLTestBool(
    2771             :                 CSLFetchNameValueDef(papszDriverMD, GDAL_DCAP_VECTOR, "FALSE")))
    2772             :         {
    2773           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2774             :                      "%s driver has no vector capabilities.",
    2775           0 :                      psOptions->osFormat.c_str());
    2776           0 :             return nullptr;
    2777             :         }
    2778             : 
    2779        1013 :         if (poDriver->CanVectorTranslateFrom(
    2780        1013 :                 pszDest, poDS, psOptions->aosArguments.List(), nullptr))
    2781             :         {
    2782           4 :             return poDriver->VectorTranslateFrom(
    2783           4 :                 pszDest, poDS, psOptions->aosArguments.List(),
    2784           8 :                 psOptions->pfnProgress, psOptions->pProgressData);
    2785             :         }
    2786             : 
    2787        1009 :         if (!CPLTestBool(
    2788             :                 CSLFetchNameValueDef(papszDriverMD, GDAL_DCAP_CREATE, "FALSE")))
    2789             :         {
    2790          22 :             if (CPLTestBool(CSLFetchNameValueDef(
    2791             :                     papszDriverMD, GDAL_DCAP_CREATECOPY, "FALSE")))
    2792             :             {
    2793          22 :                 poODS = GDALVectorTranslateCreateCopy(poDriver, pszDest, poDS,
    2794          22 :                                                       psOptions.get());
    2795          22 :                 return poODS;
    2796             :             }
    2797             : 
    2798           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2799             :                      "%s driver does not support data source creation.",
    2800           0 :                      psOptions->osFormat.c_str());
    2801           0 :             return nullptr;
    2802             :         }
    2803             : 
    2804         987 :         if (!psOptions->aosDestOpenOptions.empty())
    2805             :         {
    2806           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    2807             :                      "-doo ignored when creating the output datasource.");
    2808             :         }
    2809             : 
    2810             :         const bool bSingleLayer =
    2811         987 :             (!psOptions->osSQLStatement.empty() ||
    2812        1953 :              psOptions->aosLayers.size() == 1 ||
    2813         966 :              (psOptions->aosLayers.empty() && poDS->GetLayerCount() == 1));
    2814             : 
    2815             :         bool bOutputDirectory =
    2816        1070 :             !bSingleLayer && CPLGetExtensionSafe(osDestFilename).empty() &&
    2817          30 :             poDriver->GetMetadataItem(
    2818        1017 :                 GDAL_DCAP_MULTIPLE_VECTOR_LAYERS_IN_DIRECTORY);
    2819             : 
    2820             :         /* ------------------------------------------------------------------ */
    2821             :         /*   Special case to improve user experience when translating         */
    2822             :         /*   a datasource with multiple layers into a shapefile. If the       */
    2823             :         /*   user gives a target datasource with .shp and it does not exist,  */
    2824             :         /*   the shapefile driver will try to create a file, but this is not  */
    2825             :         /*   appropriate because here we have several layers, so create       */
    2826             :         /*   a directory instead.                                             */
    2827             :         /* ------------------------------------------------------------------ */
    2828             : 
    2829             :         VSIStatBufL sStat;
    2830        3102 :         if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") &&
    2831         141 :             !bSingleLayer && psOptions->osNewLayerName.empty() &&
    2832        1129 :             EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "SHP") &&
    2833           1 :             VSIStatL(osDestFilename, &sStat) != 0)
    2834             :         {
    2835           1 :             if (VSIMkdir(osDestFilename, 0755) != 0)
    2836             :             {
    2837           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    2838             :                          "Failed to create directory %s\n"
    2839             :                          "for shapefile datastore.",
    2840             :                          osDestFilename.c_str());
    2841           0 :                 return nullptr;
    2842             :             }
    2843           1 :             bOutputDirectory = true;
    2844             :         }
    2845             : 
    2846        1272 :         if (psOptions->bInvokedFromGdalAlgorithm && !bSingleLayer &&
    2847        1288 :             !bOutputDirectory &&
    2848          16 :             !poDriver->GetMetadataItem(GDAL_DCAP_MULTIPLE_VECTOR_LAYERS))
    2849             :         {
    2850           1 :             CPLError(CE_Failure, CPLE_AppDefined,
    2851             :                      "%s driver does not support multiple layers.",
    2852           1 :                      poDriver->GetDescription());
    2853           1 :             return nullptr;
    2854             :         }
    2855             : 
    2856         986 :         CPLStringList aosDSCO(psOptions->aosDSCO);
    2857             : 
    2858         986 :         if (!aosDSCO.FetchNameValue("SINGLE_LAYER"))
    2859             :         {
    2860             :             // Informs the target driver (e.g. JSONFG) if a single layer
    2861             :             // will be created
    2862             :             const char *pszCOList =
    2863         986 :                 poDriver->GetMetadataItem(GDAL_DMD_CREATIONOPTIONLIST);
    2864         986 :             if (bSingleLayer && pszCOList && strstr(pszCOList, "SINGLE_LAYER"))
    2865             :             {
    2866           4 :                 aosDSCO.SetNameValue("SINGLE_LAYER", "YES");
    2867             :             }
    2868             :         }
    2869             : 
    2870             :         // For CSV driver, automatically set *dataset* creation option GEOMETRY=AS_WKT
    2871             :         // if *layer* creation option is requested. This is required for the
    2872             :         // CSV driver to expose the ODsCCreateGeomFieldAfterCreateLayer capability
    2873         986 :         if (EQUAL(poDriver->GetDescription(), "CSV") &&
    2874        1018 :             !aosDSCO.FetchNameValue("GEOMETRY") &&
    2875          32 :             EQUAL(psOptions->aosLCO.FetchNameValueDef("GEOMETRY", ""),
    2876             :                   "AS_WKT"))
    2877             :         {
    2878          14 :             aosDSCO.SetNameValue("GEOMETRY", "AS_WKT");
    2879             :         }
    2880             : 
    2881             :         /* --------------------------------------------------------------------
    2882             :          */
    2883             :         /*      Create the output data source. */
    2884             :         /* --------------------------------------------------------------------
    2885             :          */
    2886         986 :         poODS = poDriver->Create(osDestFilename, 0, 0, 0, GDT_Unknown,
    2887         986 :                                  aosDSCO.List());
    2888         986 :         if (poODS == nullptr)
    2889             :         {
    2890           6 :             CPLError(CE_Failure, CPLE_AppDefined,
    2891             :                      "%s driver failed to create %s",
    2892           3 :                      psOptions->osFormat.c_str(), osDestFilename.c_str());
    2893           3 :             return nullptr;
    2894             :         }
    2895         983 :         bNewDataSource = true;
    2896             : 
    2897         983 :         if (psOptions->bCopyMD)
    2898             :         {
    2899        1958 :             const CPLStringList aosDomains(poDS->GetMetadataDomainList());
    2900        1025 :             for (const char *pszMD : aosDomains)
    2901             :             {
    2902          46 :                 if (CSLConstList papszMD = poDS->GetMetadata(pszMD))
    2903          10 :                     poODS->SetMetadata(papszMD, pszMD);
    2904             :             }
    2905             :         }
    2906           2 :         for (const auto &[pszKey, pszValue] :
    2907         985 :              cpl::IterateNameValue(psOptions->aosMetadataOptions))
    2908             :         {
    2909           1 :             poODS->SetMetadataItem(pszKey, pszValue);
    2910             :         }
    2911             : 
    2912             :         // When writing to GeoJSON and using -nln, set the @NAME layer
    2913             :         // creation option to avoid the GeoJSON driver to potentially reuse
    2914             :         // the source feature collection name if the input is also GeoJSON.
    2915         995 :         if (!psOptions->osNewLayerName.empty() &&
    2916          12 :             EQUAL(psOptions->osFormat.c_str(), "GeoJSON"))
    2917             :         {
    2918           1 :             psOptions->aosLCO.SetNameValue("@NAME",
    2919           1 :                                            psOptions->osNewLayerName.c_str());
    2920             :         }
    2921             :     }
    2922             :     else
    2923             :     {
    2924          79 :         if (psOptions->bUpsert &&
    2925           4 :             poDriver->GetMetadataItem(GDAL_DCAP_UPSERT) == nullptr)
    2926             :         {
    2927           2 :             CPLError(CE_Failure, CPLE_NotSupported,
    2928             :                      "%s driver does not support upsert",
    2929           2 :                      poODS->GetDriver()->GetDescription());
    2930           2 :             return nullptr;
    2931             :         }
    2932             :     }
    2933             : 
    2934             :     // Automatically close poODS on error, if it has been created by this
    2935             :     // method.
    2936        2112 :     GDALDatasetUniquePtr poODSUniquePtr(hDstDS == nullptr ? poODS : nullptr);
    2937             : 
    2938             :     // Some syntactic sugar to make "ogr2ogr [-f PostgreSQL] PG:dbname=....
    2939             :     // source [srclayer] -lco OVERWRITE=YES" work like "ogr2ogr -overwrite
    2940             :     // PG:dbname=.... source [srclayer]" The former syntax used to work at
    2941             :     // GDAL 1.1.8 time when it was documented in the PG driver, but was broken
    2942             :     // starting with GDAL 1.3.2
    2943             :     // (https://github.com/OSGeo/gdal/commit/29c108a6c9f651dfebae6d1313ba0e707a77c1aa)
    2944             :     // This could probably be generalized to other drivers that support the
    2945             :     // OVERWRITE layer creation option, but we'd need to make sure that they
    2946             :     // just do a DeleteLayer() call. The CARTO driver is an exception regarding
    2947             :     // that.
    2948        1074 :     if (EQUAL(poODS->GetDriver()->GetDescription(), "PostgreSQL") &&
    2949          18 :         CPLTestBool(psOptions->aosLCO.FetchNameValueDef("OVERWRITE", "NO")))
    2950             :     {
    2951           0 :         if (bAppend)
    2952             :         {
    2953           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2954             :                      "-append and -lco OVERWRITE=YES are mutually exclusive");
    2955           0 :             return nullptr;
    2956             :         }
    2957           0 :         bOverwrite = true;
    2958             :     }
    2959             : 
    2960             :     /* -------------------------------------------------------------------- */
    2961             :     /*      For random reading                                              */
    2962             :     /* -------------------------------------------------------------------- */
    2963             :     const bool bRandomLayerReading =
    2964        1056 :         CPL_TO_BOOL(poDS->TestCapability(ODsCRandomLayerRead));
    2965          23 :     if (bRandomLayerReading && !poODS->TestCapability(ODsCRandomLayerWrite) &&
    2966           1 :         psOptions->aosLayers.size() != 1 && psOptions->osSQLStatement.empty() &&
    2967        1079 :         poDS->GetLayerCount() > 1 && !psOptions->bQuiet)
    2968             :     {
    2969           0 :         CPLError(CE_Warning, CPLE_AppDefined,
    2970             :                  "Input datasource uses random layer reading, but "
    2971             :                  "output datasource does not support random layer writing");
    2972             :     }
    2973             : 
    2974        1056 :     if (psOptions->nLayerTransaction < 0)
    2975             :     {
    2976        1055 :         if (bRandomLayerReading)
    2977          23 :             psOptions->nLayerTransaction = FALSE;
    2978             :         else
    2979        1032 :             psOptions->nLayerTransaction =
    2980        1032 :                 !poODS->TestCapability(ODsCTransactions);
    2981             :     }
    2982           1 :     else if (psOptions->nLayerTransaction && bRandomLayerReading)
    2983             :     {
    2984           0 :         psOptions->nLayerTransaction = false;
    2985             :     }
    2986             : 
    2987             :     /* -------------------------------------------------------------------- */
    2988             :     /*      Parse the output SRS definition if possible.                    */
    2989             :     /* -------------------------------------------------------------------- */
    2990        2112 :     OGRSpatialReferenceRefCountedPtr poOutputSRS;
    2991        1056 :     if (!psOptions->osOutputSRSDef.empty())
    2992             :     {
    2993         144 :         poOutputSRS = OGRSpatialReferenceRefCountedPtr::makeInstance();
    2994         144 :         poOutputSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
    2995         144 :         if (poOutputSRS->SetFromUserInput(psOptions->osOutputSRSDef.c_str()) !=
    2996             :             OGRERR_NONE)
    2997             :         {
    2998           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    2999             :                      "Failed to process SRS definition: %s",
    3000           0 :                      psOptions->osOutputSRSDef.c_str());
    3001           0 :             return nullptr;
    3002             :         }
    3003         144 :         poOutputSRS->SetCoordinateEpoch(psOptions->dfOutputCoordinateEpoch);
    3004             :     }
    3005             : 
    3006             :     /* -------------------------------------------------------------------- */
    3007             :     /*      Parse the source SRS definition if possible.                    */
    3008             :     /* -------------------------------------------------------------------- */
    3009        2112 :     OGRSpatialReference oSourceSRS;
    3010        1056 :     OGRSpatialReference *poSourceSRS = nullptr;
    3011        1056 :     if (!psOptions->osSourceSRSDef.empty())
    3012             :     {
    3013           8 :         oSourceSRS.SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
    3014           8 :         if (oSourceSRS.SetFromUserInput(psOptions->osSourceSRSDef.c_str()) !=
    3015             :             OGRERR_NONE)
    3016             :         {
    3017           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    3018             :                      "Failed to process SRS definition: %s",
    3019           0 :                      psOptions->osSourceSRSDef.c_str());
    3020           0 :             return nullptr;
    3021             :         }
    3022           8 :         oSourceSRS.SetCoordinateEpoch(psOptions->dfSourceCoordinateEpoch);
    3023           8 :         poSourceSRS = &oSourceSRS;
    3024             :     }
    3025             : 
    3026             :     /* -------------------------------------------------------------------- */
    3027             :     /*      Create a transformation object from the source to               */
    3028             :     /*      destination coordinate system.                                  */
    3029             :     /* -------------------------------------------------------------------- */
    3030        1056 :     std::unique_ptr<GCPCoordTransformation> poGCPCoordTrans;
    3031        1056 :     if (!psOptions->asGCPs.empty())
    3032             :     {
    3033           7 :         poGCPCoordTrans = std::make_unique<GCPCoordTransformation>(
    3034           7 :             static_cast<int>(psOptions->asGCPs.size()),
    3035           7 :             gdal::GCP::c_ptr(psOptions->asGCPs), psOptions->nTransformOrder,
    3036          14 :             poSourceSRS ? poSourceSRS : poOutputSRS.get());
    3037           7 :         if (!(poGCPCoordTrans->IsValid()))
    3038             :         {
    3039           1 :             return nullptr;
    3040             :         }
    3041             :     }
    3042             : 
    3043             :     /* -------------------------------------------------------------------- */
    3044             :     /*      Create layer setup and transformer objects.                     */
    3045             :     /* -------------------------------------------------------------------- */
    3046        2110 :     SetupTargetLayer oSetup;
    3047        1055 :     oSetup.m_poSrcDS = poDS;
    3048        1055 :     oSetup.m_poDstDS = poODS;
    3049        1055 :     oSetup.m_papszLCO = psOptions->aosLCO.List();
    3050        1055 :     oSetup.m_poOutputSRS = poOutputSRS.get();
    3051        1055 :     oSetup.m_bTransform = psOptions->bTransform;
    3052        1055 :     oSetup.m_bNullifyOutputSRS = psOptions->bNullifyOutputSRS;
    3053        1055 :     oSetup.m_poUserSourceSRS = poSourceSRS;
    3054        1055 :     oSetup.m_bSelFieldsSet = psOptions->bSelFieldsSet;
    3055        1055 :     oSetup.m_papszSelFields = psOptions->aosSelFields.List();
    3056        1055 :     oSetup.m_bAppend = bAppend;
    3057        1055 :     oSetup.m_bAddMissingFields = psOptions->bAddMissingFields;
    3058        1055 :     oSetup.m_eGType = psOptions->eGType;
    3059        1055 :     oSetup.m_eGeomTypeConversion = psOptions->eGeomTypeConversion;
    3060        1055 :     oSetup.m_nCoordDim = psOptions->nCoordDim;
    3061        1055 :     oSetup.m_bOverwrite = bOverwrite;
    3062        1055 :     oSetup.m_papszFieldTypesToString = psOptions->aosFieldTypesToString.List();
    3063        1055 :     oSetup.m_papszMapFieldType = psOptions->aosMapFieldType.List();
    3064        1055 :     oSetup.m_bUnsetFieldWidth = psOptions->bUnsetFieldWidth;
    3065        1055 :     oSetup.m_bExplodeCollections = psOptions->bExplodeCollections;
    3066        1055 :     oSetup.m_pszZField =
    3067        1055 :         psOptions->osZField.empty() ? nullptr : psOptions->osZField.c_str();
    3068        1055 :     oSetup.m_papszFieldMap = psOptions->aosFieldMap.List();
    3069        1055 :     oSetup.m_pszWHERE =
    3070        1055 :         psOptions->osWHERE.empty() ? nullptr : psOptions->osWHERE.c_str();
    3071        1055 :     oSetup.m_bExactFieldNameMatch = psOptions->bExactFieldNameMatch;
    3072        1055 :     oSetup.m_bQuiet = psOptions->bQuiet;
    3073        1055 :     oSetup.m_bForceNullable = psOptions->bForceNullable;
    3074        1055 :     oSetup.m_bResolveDomains = psOptions->bResolveDomains;
    3075        1055 :     oSetup.m_bUnsetDefault = psOptions->bUnsetDefault;
    3076        1055 :     oSetup.m_bUnsetFid = psOptions->bUnsetFid;
    3077        1055 :     oSetup.m_bPreserveFID = psOptions->bPreserveFID;
    3078        1055 :     oSetup.m_bCopyMD = psOptions->bCopyMD;
    3079        1055 :     oSetup.m_bNativeData = psOptions->bNativeData;
    3080        1055 :     oSetup.m_bNewDataSource = bNewDataSource;
    3081        1055 :     oSetup.m_pszCTPipeline = psOptions->osCTPipeline.empty()
    3082        1055 :                                  ? nullptr
    3083           4 :                                  : psOptions->osCTPipeline.c_str();
    3084        1055 :     oSetup.m_aosCTOptions = psOptions->aosCTOptions;
    3085             : 
    3086        2110 :     LayerTranslator oTranslator;
    3087        1055 :     oTranslator.m_poSrcDS = poDS;
    3088        1055 :     oTranslator.m_poODS = poODS;
    3089        1055 :     oTranslator.m_bTransform = psOptions->bTransform;
    3090        1055 :     oTranslator.m_bWrapDateline = psOptions->bWrapDateline;
    3091             :     oTranslator.m_osDateLineOffset =
    3092        1055 :         CPLOPrintf("%g", psOptions->dfDateLineOffset);
    3093        1055 :     oTranslator.m_poOutputSRS = poOutputSRS.get();
    3094        1055 :     oTranslator.m_bNullifyOutputSRS = psOptions->bNullifyOutputSRS;
    3095        1055 :     oTranslator.m_poUserSourceSRS = poSourceSRS;
    3096        1055 :     oTranslator.m_poGCPCoordTrans = poGCPCoordTrans.get();
    3097        1055 :     oTranslator.m_eGType = psOptions->eGType;
    3098        1055 :     oTranslator.m_eGeomTypeConversion = psOptions->eGeomTypeConversion;
    3099        1055 :     oTranslator.m_bMakeValid = psOptions->bMakeValid;
    3100        1055 :     oTranslator.m_bSkipInvalidGeom = psOptions->bSkipInvalidGeom;
    3101        1055 :     oTranslator.m_nCoordDim = psOptions->nCoordDim;
    3102        1055 :     oTranslator.m_eGeomOp = psOptions->eGeomOp;
    3103        1055 :     oTranslator.m_dfGeomOpParam = psOptions->dfGeomOpParam;
    3104             :     // Do not emit warning if the user specified directly the clip source geom
    3105        1055 :     if (psOptions->osClipSrcDS.empty())
    3106        1047 :         oTranslator.m_bWarnedClipSrcSRS = true;
    3107        1055 :     oTranslator.m_poClipSrcOri = psOptions->poClipSrc.get();
    3108             :     // Do not emit warning if the user specified directly the clip dest geom
    3109        1055 :     if (psOptions->osClipDstDS.empty())
    3110        1048 :         oTranslator.m_bWarnedClipDstSRS = true;
    3111        1055 :     oTranslator.m_poClipDstOri = psOptions->poClipDst.get();
    3112        1055 :     oTranslator.m_bExplodeCollections = psOptions->bExplodeCollections;
    3113        1055 :     oTranslator.m_bNativeData = psOptions->bNativeData;
    3114        1055 :     oTranslator.m_nLimit = psOptions->nLimit;
    3115             : 
    3116        1055 :     if (psOptions->nGroupTransactions)
    3117             :     {
    3118        1054 :         if (!psOptions->nLayerTransaction)
    3119         198 :             poODS->StartTransaction(psOptions->bForceTransaction);
    3120             :     }
    3121             : 
    3122        1055 :     GIntBig nTotalEventsDone = 0;
    3123             : 
    3124             :     /* -------------------------------------------------------------------- */
    3125             :     /*      Special case for -sql clause.  No source layers required.       */
    3126             :     /* -------------------------------------------------------------------- */
    3127        1055 :     int nRetCode = 0;
    3128             : 
    3129        1055 :     if (!psOptions->osSQLStatement.empty())
    3130             :     {
    3131             :         /* Special case: if output=input, then we must likely destroy the */
    3132             :         /* old table before to avoid transaction issues. */
    3133          18 :         if (poDS == poODS && !psOptions->osNewLayerName.empty() && bOverwrite)
    3134           0 :             GetLayerAndOverwriteIfNecessary(
    3135           0 :                 poODS, psOptions->osNewLayerName.c_str(), bOverwrite, nullptr,
    3136             :                 nullptr, nullptr);
    3137             : 
    3138          18 :         if (!psOptions->osWHERE.empty())
    3139           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    3140             :                      "-where clause ignored in combination with -sql.");
    3141          18 :         if (psOptions->aosLayers.size() > 0)
    3142           0 :             CPLError(CE_Warning, CPLE_AppDefined,
    3143             :                      "layer names ignored in combination with -sql.");
    3144             : 
    3145          36 :         OGRLayer *poResultSet = poDS->ExecuteSQL(
    3146          18 :             psOptions->osSQLStatement.c_str(),
    3147          18 :             (!psOptions->bGeomFieldSet) ? psOptions->poSpatialFilter.get()
    3148             :                                         : nullptr,
    3149          18 :             psOptions->osDialect.empty() ? nullptr
    3150          24 :                                          : psOptions->osDialect.c_str());
    3151             : 
    3152          18 :         if (poResultSet != nullptr)
    3153             :         {
    3154          18 :             if (psOptions->poSpatialFilter && psOptions->bGeomFieldSet)
    3155             :             {
    3156           0 :                 int iGeomField = poResultSet->GetLayerDefn()->GetGeomFieldIndex(
    3157           0 :                     psOptions->osGeomField.c_str());
    3158           0 :                 if (iGeomField >= 0)
    3159           0 :                     poResultSet->SetSpatialFilter(
    3160           0 :                         iGeomField, psOptions->poSpatialFilter.get());
    3161             :                 else
    3162           0 :                     CPLError(CE_Warning, CPLE_AppDefined,
    3163             :                              "Cannot find geometry field %s.",
    3164           0 :                              psOptions->osGeomField.c_str());
    3165             :             }
    3166             : 
    3167          18 :             GIntBig nCountLayerFeatures = 0;
    3168          18 :             GDALProgressFunc pfnProgress = nullptr;
    3169          18 :             void *pProgressArg = nullptr;
    3170          18 :             if (psOptions->bDisplayProgress)
    3171             :             {
    3172           1 :                 if (bRandomLayerReading)
    3173             :                 {
    3174           1 :                     pfnProgress = psOptions->pfnProgress;
    3175           1 :                     pProgressArg = psOptions->pProgressData;
    3176             :                 }
    3177           0 :                 else if (!poResultSet->TestCapability(OLCFastFeatureCount))
    3178             :                 {
    3179           0 :                     if (!psOptions->bInvokedFromGdalAlgorithm)
    3180             :                     {
    3181           0 :                         CPLError(
    3182             :                             CE_Warning, CPLE_AppDefined,
    3183             :                             "Progress turned off as fast feature count is not "
    3184             :                             "available.");
    3185             :                     }
    3186           0 :                     psOptions->bDisplayProgress = false;
    3187             :                 }
    3188             :                 else
    3189             :                 {
    3190           0 :                     nCountLayerFeatures = poResultSet->GetFeatureCount();
    3191           0 :                     pfnProgress = psOptions->pfnProgress;
    3192           0 :                     pProgressArg = psOptions->pProgressData;
    3193             :                 }
    3194             :             }
    3195             : 
    3196          18 :             std::unique_ptr<OGRLayer> poLayerToFree;
    3197          18 :             OGRLayer *poPassedLayer = poResultSet;
    3198          18 :             if (psOptions->bSplitListFields)
    3199             :             {
    3200             :                 auto poLayer = std::make_unique<OGRSplitListFieldLayer>(
    3201           0 :                     poPassedLayer, psOptions->nMaxSplitListSubFields);
    3202           0 :                 int nRet = poLayer->BuildLayerDefn(nullptr, nullptr);
    3203           0 :                 if (nRet)
    3204             :                 {
    3205           0 :                     poLayerToFree = std::move(poLayer);
    3206           0 :                     poPassedLayer = poLayerToFree.get();
    3207             :                 }
    3208             :             }
    3209             : 
    3210             :             /* --------------------------------------------------------------------
    3211             :              */
    3212             :             /*      Special case to improve user experience when translating
    3213             :              * into   */
    3214             :             /*      single file shapefile and source has only one layer, and
    3215             :              * that   */
    3216             :             /*      the layer name isn't specified */
    3217             :             /* --------------------------------------------------------------------
    3218             :              */
    3219             :             VSIStatBufL sStat;
    3220           3 :             if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") &&
    3221           3 :                 psOptions->osNewLayerName.empty() &&
    3222           3 :                 VSIStatL(osDestFilename, &sStat) == 0 &&
    3223          21 :                 VSI_ISREG(sStat.st_mode) &&
    3224          18 :                 (EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shp") ||
    3225          18 :                  EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shz") ||
    3226          18 :                  EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "dbf")))
    3227             :             {
    3228           0 :                 psOptions->osNewLayerName = CPLGetBasenameSafe(osDestFilename);
    3229             :             }
    3230             : 
    3231             :             auto psInfo = oSetup.Setup(poPassedLayer,
    3232          18 :                                        psOptions->osNewLayerName.empty()
    3233             :                                            ? nullptr
    3234           3 :                                            : psOptions->osNewLayerName.c_str(),
    3235          57 :                                        psOptions.get(), nTotalEventsDone);
    3236             : 
    3237          18 :             poPassedLayer->ResetReading();
    3238             : 
    3239          34 :             if (psInfo == nullptr ||
    3240          34 :                 !oTranslator.Translate(nullptr, psInfo.get(),
    3241             :                                        nCountLayerFeatures, nullptr,
    3242             :                                        nTotalEventsDone, pfnProgress,
    3243          16 :                                        pProgressArg, psOptions.get()))
    3244             :             {
    3245           2 :                 CPLError(CE_Failure, CPLE_AppDefined,
    3246             :                          "Terminating translation prematurely after failed\n"
    3247             :                          "translation from sql statement.");
    3248             : 
    3249           2 :                 nRetCode = 1;
    3250             :             }
    3251             :             else
    3252             :             {
    3253          16 :                 psInfo->CheckSameCoordinateOperation();
    3254             :             }
    3255             : 
    3256          18 :             poDS->ReleaseResultSet(poResultSet);
    3257             :         }
    3258             :         else
    3259             :         {
    3260           0 :             if (CPLGetLastErrorNo() != 0)
    3261           0 :                 nRetCode = 1;
    3262             :         }
    3263             :     }
    3264             : 
    3265             :     /* -------------------------------------------------------------------- */
    3266             :     /*      Special case for layer interleaving mode.                       */
    3267             :     /* -------------------------------------------------------------------- */
    3268        1037 :     else if (bRandomLayerReading)
    3269             :     {
    3270          22 :         if (psOptions->bSplitListFields)
    3271             :         {
    3272           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    3273             :                      "-splitlistfields not supported in this mode");
    3274           0 :             return nullptr;
    3275             :         }
    3276             : 
    3277             :         // Make sure to probe all layers in case some are by default invisible
    3278          34 :         for (const char *pszLayer : psOptions->aosLayers)
    3279             :         {
    3280          12 :             OGRLayer *poLayer = poDS->GetLayerByName(pszLayer);
    3281             : 
    3282          12 :             if (poLayer == nullptr)
    3283             :             {
    3284           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    3285             :                          "Couldn't fetch requested layer %s!", pszLayer);
    3286           0 :                 return nullptr;
    3287             :             }
    3288             :         }
    3289             : 
    3290          22 :         const int nSrcLayerCount = poDS->GetLayerCount();
    3291          22 :         std::vector<AssociatedLayers> pasAssocLayers(nSrcLayerCount);
    3292             : 
    3293             :         /* --------------------------------------------------------------------
    3294             :          */
    3295             :         /*      Special case to improve user experience when translating into */
    3296             :         /*      single file shapefile and source has only one layer, and that */
    3297             :         /*      the layer name isn't specified */
    3298             :         /* --------------------------------------------------------------------
    3299             :          */
    3300             :         VSIStatBufL sStat;
    3301          71 :         if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") &&
    3302           5 :             (psOptions->aosLayers.size() == 1 || nSrcLayerCount == 1) &&
    3303           0 :             psOptions->osNewLayerName.empty() &&
    3304          27 :             VSIStatL(osDestFilename, &sStat) == 0 && VSI_ISREG(sStat.st_mode) &&
    3305          22 :             (EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shp") ||
    3306          22 :              EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shz") ||
    3307          22 :              EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "dbf")))
    3308             :         {
    3309           0 :             psOptions->osNewLayerName = CPLGetBasenameSafe(osDestFilename);
    3310             :         }
    3311             : 
    3312          22 :         GDALProgressFunc pfnProgress = nullptr;
    3313          22 :         void *pProgressArg = nullptr;
    3314          22 :         if (!psOptions->bQuiet)
    3315             :         {
    3316          22 :             pfnProgress = psOptions->pfnProgress;
    3317          22 :             pProgressArg = psOptions->pProgressData;
    3318             :         }
    3319             : 
    3320             :         /* --------------------------------------------------------------------
    3321             :          */
    3322             :         /*      If no target layer specified, use all source layers. */
    3323             :         /* --------------------------------------------------------------------
    3324             :          */
    3325          22 :         if (psOptions->aosLayers.empty())
    3326             :         {
    3327         160 :             for (int iLayer = 0; iLayer < nSrcLayerCount; iLayer++)
    3328             :             {
    3329         141 :                 OGRLayer *poLayer = poDS->GetLayer(iLayer);
    3330             : 
    3331         141 :                 if (poLayer == nullptr)
    3332             :                 {
    3333           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    3334             :                              "Couldn't fetch advertised layer %d!", iLayer);
    3335           0 :                     return nullptr;
    3336             :                 }
    3337             : 
    3338         141 :                 psOptions->aosLayers.AddString(poLayer->GetName());
    3339             :             }
    3340             :         }
    3341             :         else
    3342             :         {
    3343           3 :             const bool bSrcIsOSM = (strcmp(poDS->GetDriverName(), "OSM") == 0);
    3344           3 :             if (bSrcIsOSM)
    3345             :             {
    3346           6 :                 CPLString osInterestLayers = "SET interest_layers =";
    3347          15 :                 for (int iLayer = 0; iLayer < psOptions->aosLayers.size();
    3348             :                      iLayer++)
    3349             :                 {
    3350          12 :                     if (iLayer != 0)
    3351           9 :                         osInterestLayers += ",";
    3352          12 :                     osInterestLayers += psOptions->aosLayers[iLayer];
    3353             :                 }
    3354             : 
    3355           3 :                 poDS->ExecuteSQL(osInterestLayers.c_str(), nullptr, nullptr);
    3356             :             }
    3357             :         }
    3358             : 
    3359             :         /* --------------------------------------------------------------------
    3360             :          */
    3361             :         /*      First pass to set filters. */
    3362             :         /* --------------------------------------------------------------------
    3363             :          */
    3364          22 :         std::map<OGRLayer *, int> oMapLayerToIdx;
    3365             : 
    3366         178 :         for (int iLayer = 0; iLayer < nSrcLayerCount; iLayer++)
    3367             :         {
    3368         156 :             OGRLayer *poLayer = poDS->GetLayer(iLayer);
    3369         156 :             if (poLayer == nullptr)
    3370             :             {
    3371           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    3372             :                          "Couldn't fetch advertised layer %d!", iLayer);
    3373           0 :                 return nullptr;
    3374             :             }
    3375             : 
    3376         156 :             pasAssocLayers[iLayer].poSrcLayer = poLayer;
    3377             : 
    3378         156 :             if (psOptions->aosLayers.FindString(poLayer->GetName()) >= 0)
    3379             :             {
    3380         153 :                 if (!psOptions->osWHERE.empty())
    3381             :                 {
    3382           0 :                     if (poLayer->SetAttributeFilter(
    3383           0 :                             psOptions->osWHERE.c_str()) != OGRERR_NONE)
    3384             :                     {
    3385           0 :                         CPLError(CE_Failure, CPLE_AppDefined,
    3386             :                                  "SetAttributeFilter(%s) on layer '%s' failed.",
    3387           0 :                                  psOptions->osWHERE.c_str(),
    3388           0 :                                  poLayer->GetName());
    3389           0 :                         if (!psOptions->bSkipFailures)
    3390             :                         {
    3391           0 :                             return nullptr;
    3392             :                         }
    3393             :                     }
    3394             :                 }
    3395             : 
    3396         306 :                 ApplySpatialFilter(
    3397         153 :                     poLayer, psOptions->poSpatialFilter.get(), poSpatSRS.get(),
    3398         153 :                     psOptions->bGeomFieldSet ? psOptions->osGeomField.c_str()
    3399             :                                              : nullptr,
    3400             :                     poSourceSRS);
    3401             : 
    3402         153 :                 oMapLayerToIdx[poLayer] = iLayer;
    3403             :             }
    3404             :         }
    3405             : 
    3406             :         /* --------------------------------------------------------------------
    3407             :          */
    3408             :         /*      Second pass to process features in a interleaved layer mode. */
    3409             :         /* --------------------------------------------------------------------
    3410             :          */
    3411          22 :         bool bTargetLayersHaveBeenCreated = false;
    3412             :         while (true)
    3413             :         {
    3414        1003 :             OGRLayer *poFeatureLayer = nullptr;
    3415             :             auto poFeature = std::unique_ptr<OGRFeature>(poDS->GetNextFeature(
    3416        1003 :                 &poFeatureLayer, nullptr, pfnProgress, pProgressArg));
    3417        1003 :             if (poFeature == nullptr)
    3418          22 :                 break;
    3419             :             std::map<OGRLayer *, int>::const_iterator oIter =
    3420         981 :                 oMapLayerToIdx.find(poFeatureLayer);
    3421         981 :             if (oIter == oMapLayerToIdx.end())
    3422             :             {
    3423             :                 // Feature in a layer that is not a layer of interest.
    3424             :                 // nothing to do
    3425             :             }
    3426             :             else
    3427             :             {
    3428         981 :                 if (!bTargetLayersHaveBeenCreated)
    3429             :                 {
    3430             :                     // We defer target layer creation at the first feature
    3431             :                     // retrieved since getting the layer definition can be
    3432             :                     // costly (case of the GMLAS driver) and thus we'd better
    3433             :                     // taking advantage from the progress callback of
    3434             :                     // GetNextFeature.
    3435          21 :                     bTargetLayersHaveBeenCreated = true;
    3436         172 :                     for (int iLayer = 0; iLayer < nSrcLayerCount; iLayer++)
    3437             :                     {
    3438         151 :                         OGRLayer *poLayer = poDS->GetLayer(iLayer);
    3439         302 :                         if (psOptions->aosLayers.FindString(
    3440         302 :                                 poLayer->GetName()) < 0)
    3441           3 :                             continue;
    3442             : 
    3443             :                         auto psInfo = oSetup.Setup(
    3444             :                             poLayer,
    3445         148 :                             psOptions->osNewLayerName.empty()
    3446             :                                 ? nullptr
    3447           0 :                                 : psOptions->osNewLayerName.c_str(),
    3448         296 :                             psOptions.get(), nTotalEventsDone);
    3449             : 
    3450         148 :                         if (psInfo == nullptr && !psOptions->bSkipFailures)
    3451             :                         {
    3452           0 :                             return nullptr;
    3453             :                         }
    3454             : 
    3455         148 :                         pasAssocLayers[iLayer].psInfo = std::move(psInfo);
    3456             :                     }
    3457             :                 }
    3458             : 
    3459         981 :                 int iLayer = oIter->second;
    3460         981 :                 TargetLayerInfo *psInfo = pasAssocLayers[iLayer].psInfo.get();
    3461        2941 :                 if ((psInfo == nullptr ||
    3462        1961 :                      !oTranslator.Translate(std::move(poFeature), psInfo, 0,
    3463             :                                             nullptr, nTotalEventsDone, nullptr,
    3464        1962 :                                             nullptr, psOptions.get())) &&
    3465           1 :                     !psOptions->bSkipFailures)
    3466             :                 {
    3467           0 :                     if (psOptions->bInvokedFromGdalAlgorithm)
    3468             :                     {
    3469           0 :                         CPLError(
    3470             :                             CE_Failure, CPLE_AppDefined,
    3471             :                             "Failed to write layer '%s'. Use --skip-errors to "
    3472             :                             "ignore errors and continue writing.",
    3473           0 :                             poFeatureLayer->GetName());
    3474             :                     }
    3475             :                     else
    3476             :                     {
    3477           0 :                         CPLError(
    3478             :                             CE_Failure, CPLE_AppDefined,
    3479             :                             "Terminating translation prematurely after failed\n"
    3480             :                             "translation of layer %s (use -skipfailures to "
    3481             :                             "skip "
    3482             :                             "errors)",
    3483           0 :                             poFeatureLayer->GetName());
    3484             :                     }
    3485             : 
    3486           0 :                     nRetCode = 1;
    3487           0 :                     break;
    3488             :                 }
    3489             :             }
    3490         981 :         }  // while true
    3491             : 
    3492          22 :         if (pfnProgress)
    3493             :         {
    3494           6 :             pfnProgress(1.0, "", pProgressArg);
    3495             :         }
    3496             : 
    3497         178 :         for (int iLayer = 0; iLayer < nSrcLayerCount; iLayer++)
    3498             :         {
    3499         156 :             if (pasAssocLayers[iLayer].psInfo)
    3500         147 :                 pasAssocLayers[iLayer].psInfo->CheckSameCoordinateOperation();
    3501             :         }
    3502             : 
    3503          22 :         if (!bTargetLayersHaveBeenCreated)
    3504             :         {
    3505             :             // bTargetLayersHaveBeenCreated not used after here.
    3506             :             // bTargetLayersHaveBeenCreated = true;
    3507           6 :             for (int iLayer = 0; iLayer < nSrcLayerCount; iLayer++)
    3508             :             {
    3509           5 :                 OGRLayer *poLayer = poDS->GetLayer(iLayer);
    3510           5 :                 if (psOptions->aosLayers.FindString(poLayer->GetName()) < 0)
    3511           0 :                     continue;
    3512             : 
    3513             :                 auto psInfo =
    3514             :                     oSetup.Setup(poLayer,
    3515           5 :                                  psOptions->osNewLayerName.empty()
    3516             :                                      ? nullptr
    3517           0 :                                      : psOptions->osNewLayerName.c_str(),
    3518          10 :                                  psOptions.get(), nTotalEventsDone);
    3519             : 
    3520           5 :                 if (psInfo == nullptr && !psOptions->bSkipFailures)
    3521             :                 {
    3522           0 :                     return nullptr;
    3523             :                 }
    3524             : 
    3525           5 :                 pasAssocLayers[iLayer].psInfo = std::move(psInfo);
    3526             :             }
    3527             :         }
    3528             :     }
    3529             : 
    3530             :     else
    3531             :     {
    3532        1015 :         std::vector<OGRLayer *> apoLayers;
    3533             : 
    3534             :         /* --------------------------------------------------------------------
    3535             :          */
    3536             :         /*      Process each data source layer. */
    3537             :         /* --------------------------------------------------------------------
    3538             :          */
    3539        1015 :         if (psOptions->aosLayers.empty())
    3540             :         {
    3541        1003 :             const int nLayerCount = poDS->GetLayerCount();
    3542             : 
    3543        2075 :             for (int iLayer = 0; iLayer < nLayerCount; iLayer++)
    3544             :             {
    3545        1072 :                 OGRLayer *poLayer = poDS->GetLayer(iLayer);
    3546             : 
    3547        1072 :                 if (poLayer == nullptr)
    3548             :                 {
    3549           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    3550             :                              "Couldn't fetch advertised layer %d!", iLayer);
    3551           0 :                     return nullptr;
    3552             :                 }
    3553        1072 :                 if (!poDS->IsLayerPrivate(iLayer))
    3554             :                 {
    3555        1072 :                     apoLayers.push_back(poLayer);
    3556             :                 }
    3557             :             }
    3558             :         }
    3559             :         /* --------------------------------------------------------------------
    3560             :          */
    3561             :         /*      Process specified data source layers. */
    3562             :         /* --------------------------------------------------------------------
    3563             :          */
    3564             :         else
    3565             :         {
    3566             : 
    3567          33 :             for (int iLayer = 0; psOptions->aosLayers[iLayer] != nullptr;
    3568             :                  iLayer++)
    3569             :             {
    3570             :                 OGRLayer *poLayer =
    3571          21 :                     poDS->GetLayerByName(psOptions->aosLayers[iLayer]);
    3572             : 
    3573          21 :                 if (poLayer == nullptr)
    3574             :                 {
    3575           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    3576             :                              "Couldn't fetch requested layer '%s'!",
    3577           0 :                              psOptions->aosLayers[iLayer]);
    3578           0 :                     if (!psOptions->bSkipFailures)
    3579             :                     {
    3580           0 :                         return nullptr;
    3581             :                     }
    3582             :                 }
    3583             : 
    3584          21 :                 apoLayers.emplace_back(poLayer);
    3585             :             }
    3586             :         }
    3587             : 
    3588             :         /* --------------------------------------------------------------------
    3589             :          */
    3590             :         /*      Special case to improve user experience when translating into */
    3591             :         /*      single file shapefile and source has only one layer, and that */
    3592             :         /*      the layer name isn't specified */
    3593             :         /* --------------------------------------------------------------------
    3594             :          */
    3595             :         VSIStatBufL sStat;
    3596        1015 :         const int nLayerCount = static_cast<int>(apoLayers.size());
    3597         155 :         if (EQUAL(poDriver->GetDescription(), "ESRI Shapefile") &&
    3598         151 :             nLayerCount == 1 && psOptions->osNewLayerName.empty() &&
    3599        1181 :             VSIStatL(osDestFilename, &sStat) == 0 && VSI_ISREG(sStat.st_mode) &&
    3600        1026 :             (EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shp") ||
    3601        1017 :              EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "shz") ||
    3602        1016 :              EQUAL(CPLGetExtensionSafe(osDestFilename).c_str(), "dbf")))
    3603             :         {
    3604          10 :             psOptions->osNewLayerName = CPLGetBasenameSafe(osDestFilename);
    3605             :         }
    3606             : 
    3607        1015 :         std::vector<GIntBig> anLayerCountFeatures(nLayerCount);
    3608        1015 :         GIntBig nCountLayersFeatures = 0;
    3609        1015 :         GIntBig nAccCountFeatures = 0;
    3610             : 
    3611             :         /* First pass to apply filters and count all features if necessary */
    3612        2108 :         for (int iLayer = 0; iLayer < nLayerCount; iLayer++)
    3613             :         {
    3614        1093 :             OGRLayer *poLayer = apoLayers[iLayer];
    3615        1093 :             if (poLayer == nullptr)
    3616           0 :                 continue;
    3617             : 
    3618        1093 :             if (!psOptions->osWHERE.empty())
    3619             :             {
    3620           8 :                 if (poLayer->SetAttributeFilter(psOptions->osWHERE.c_str()) !=
    3621             :                     OGRERR_NONE)
    3622             :                 {
    3623           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    3624             :                              "SetAttributeFilter(%s) on layer '%s' failed.",
    3625           0 :                              psOptions->osWHERE.c_str(), poLayer->GetName());
    3626           0 :                     if (!psOptions->bSkipFailures)
    3627             :                     {
    3628           0 :                         return nullptr;
    3629             :                     }
    3630             :                 }
    3631             :             }
    3632             : 
    3633        2185 :             ApplySpatialFilter(
    3634        1093 :                 poLayer, psOptions->poSpatialFilter.get(), poSpatSRS.get(),
    3635        1093 :                 psOptions->bGeomFieldSet ? psOptions->osGeomField.c_str()
    3636             :                                          : nullptr,
    3637             :                 poSourceSRS);
    3638             : 
    3639        1093 :             if (psOptions->bDisplayProgress)
    3640             :             {
    3641          21 :                 if (!poLayer->TestCapability(OLCFastFeatureCount))
    3642             :                 {
    3643           1 :                     if (!psOptions->bInvokedFromGdalAlgorithm)
    3644             :                     {
    3645           0 :                         CPLError(
    3646             :                             CE_Warning, CPLE_NotSupported,
    3647             :                             "Progress turned off as fast feature count is not "
    3648             :                             "available.");
    3649             :                     }
    3650           1 :                     psOptions->bDisplayProgress = false;
    3651             :                 }
    3652             :                 else
    3653             :                 {
    3654          20 :                     anLayerCountFeatures[iLayer] = poLayer->GetFeatureCount();
    3655          20 :                     if (psOptions->nLimit >= 0)
    3656           0 :                         anLayerCountFeatures[iLayer] = std::min(
    3657           0 :                             anLayerCountFeatures[iLayer], psOptions->nLimit);
    3658          40 :                     if (anLayerCountFeatures[iLayer] >= 0 &&
    3659          20 :                         anLayerCountFeatures[iLayer] <=
    3660          20 :                             std::numeric_limits<GIntBig>::max() -
    3661             :                                 nCountLayersFeatures)
    3662             :                     {
    3663          19 :                         nCountLayersFeatures += anLayerCountFeatures[iLayer];
    3664             :                     }
    3665             :                     else
    3666             :                     {
    3667           1 :                         nCountLayersFeatures = 0;
    3668           1 :                         psOptions->bDisplayProgress = false;
    3669             :                     }
    3670             :                 }
    3671             :             }
    3672             :         }
    3673             : 
    3674             :         /* Second pass to do the real job */
    3675        2108 :         for (int iLayer = 0; iLayer < nLayerCount && nRetCode == 0; iLayer++)
    3676             :         {
    3677        1093 :             OGRLayer *poLayer = apoLayers[iLayer];
    3678        1093 :             if (poLayer == nullptr)
    3679           0 :                 continue;
    3680             : 
    3681        1093 :             std::unique_ptr<OGRLayer> poLayerToFree;
    3682        1093 :             OGRLayer *poPassedLayer = poLayer;
    3683        1093 :             if (psOptions->bSplitListFields)
    3684             :             {
    3685             :                 auto poSLFLayer = std::make_unique<OGRSplitListFieldLayer>(
    3686           2 :                     poPassedLayer, psOptions->nMaxSplitListSubFields);
    3687             : 
    3688           1 :                 GDALProgressFunc pfnProgress = nullptr;
    3689             :                 std::unique_ptr<void, decltype(&GDALDestroyScaledProgress)>
    3690           2 :                     pProgressArg(nullptr, GDALDestroyScaledProgress);
    3691             : 
    3692           1 :                 if (psOptions->bDisplayProgress &&
    3693           1 :                     psOptions->nMaxSplitListSubFields != 1 &&
    3694             :                     nCountLayersFeatures != 0)
    3695             :                 {
    3696           0 :                     pfnProgress = GDALScaledProgress;
    3697           0 :                     pProgressArg.reset(GDALCreateScaledProgress(
    3698             :                         nAccCountFeatures * 1.0 / nCountLayersFeatures,
    3699           0 :                         (nAccCountFeatures + anLayerCountFeatures[iLayer] / 2) *
    3700             :                             1.0 / nCountLayersFeatures,
    3701           0 :                         psOptions->pfnProgress, psOptions->pProgressData));
    3702             :                 }
    3703             : 
    3704             :                 int nRet =
    3705           1 :                     poSLFLayer->BuildLayerDefn(pfnProgress, pProgressArg.get());
    3706           1 :                 if (nRet)
    3707             :                 {
    3708           1 :                     poLayerToFree = std::move(poSLFLayer);
    3709           1 :                     poPassedLayer = poLayerToFree.get();
    3710             :                 }
    3711             :             }
    3712             : 
    3713        1093 :             GDALProgressFunc pfnProgress = nullptr;
    3714             :             std::unique_ptr<void, decltype(&GDALDestroyScaledProgress)>
    3715        2186 :                 pProgressArg(nullptr, GDALDestroyScaledProgress);
    3716             : 
    3717        1093 :             if (psOptions->bDisplayProgress)
    3718             :             {
    3719          18 :                 if (nCountLayersFeatures != 0)
    3720             :                 {
    3721          18 :                     pfnProgress = GDALScaledProgress;
    3722          18 :                     GIntBig nStart = 0;
    3723          18 :                     if (poPassedLayer != poLayer &&
    3724           0 :                         psOptions->nMaxSplitListSubFields != 1)
    3725           0 :                         nStart = anLayerCountFeatures[iLayer] / 2;
    3726          18 :                     pProgressArg.reset(GDALCreateScaledProgress(
    3727          18 :                         (nAccCountFeatures + nStart) * 1.0 /
    3728             :                             nCountLayersFeatures,
    3729          18 :                         (nAccCountFeatures + anLayerCountFeatures[iLayer]) *
    3730             :                             1.0 / nCountLayersFeatures,
    3731          18 :                         psOptions->pfnProgress, psOptions->pProgressData));
    3732             :                 }
    3733             : 
    3734          18 :                 nAccCountFeatures += anLayerCountFeatures[iLayer];
    3735             :             }
    3736             : 
    3737             :             auto psInfo = oSetup.Setup(poPassedLayer,
    3738        1093 :                                        psOptions->osNewLayerName.empty()
    3739             :                                            ? nullptr
    3740          37 :                                            : psOptions->osNewLayerName.c_str(),
    3741        3316 :                                        psOptions.get(), nTotalEventsDone);
    3742             : 
    3743        1093 :             poPassedLayer->ResetReading();
    3744             : 
    3745        4366 :             if ((psInfo == nullptr ||
    3746        3273 :                  !oTranslator.Translate(nullptr, psInfo.get(),
    3747        1090 :                                         anLayerCountFeatures[iLayer], nullptr,
    3748             :                                         nTotalEventsDone, pfnProgress,
    3749        2186 :                                         pProgressArg.get(), psOptions.get())) &&
    3750          25 :                 !psOptions->bSkipFailures)
    3751             :             {
    3752          24 :                 if (psOptions->bInvokedFromGdalAlgorithm)
    3753             :                 {
    3754          16 :                     CPLError(CE_Failure, CPLE_AppDefined,
    3755             :                              "Failed to write layer '%s'. Use --skip-errors to "
    3756             :                              "ignore errors and continue writing.",
    3757          16 :                              poLayer->GetName());
    3758             :                 }
    3759             :                 else
    3760             :                 {
    3761           8 :                     CPLError(
    3762             :                         CE_Failure, CPLE_AppDefined,
    3763             :                         "Terminating translation prematurely after failed\n"
    3764             :                         "translation of layer %s (use -skipfailures to skip "
    3765             :                         "errors)",
    3766           8 :                         poLayer->GetName());
    3767             :                 }
    3768             : 
    3769          24 :                 nRetCode = 1;
    3770             :             }
    3771             : 
    3772        1093 :             if (psInfo)
    3773        1090 :                 psInfo->CheckSameCoordinateOperation();
    3774             :         }
    3775             :     }
    3776             : 
    3777        1055 :     CopyRelationships(poODS, poDS);
    3778             : 
    3779             :     /* -------------------------------------------------------------------- */
    3780             :     /*      Process DS style table                                          */
    3781             :     /* -------------------------------------------------------------------- */
    3782             : 
    3783        1055 :     poODS->SetStyleTable(poDS->GetStyleTable());
    3784             : 
    3785        1055 :     if (psOptions->nGroupTransactions)
    3786             :     {
    3787        1054 :         if (!psOptions->nLayerTransaction)
    3788             :         {
    3789         198 :             if (nRetCode != 0 && !psOptions->bSkipFailures)
    3790           8 :                 poODS->RollbackTransaction();
    3791             :             else
    3792             :             {
    3793         190 :                 OGRErr eRet = poODS->CommitTransaction();
    3794         190 :                 if (eRet != OGRERR_NONE && eRet != OGRERR_UNSUPPORTED_OPERATION)
    3795             :                 {
    3796           1 :                     nRetCode = 1;
    3797             :                 }
    3798             :             }
    3799             :         }
    3800             :     }
    3801             : 
    3802             :     // Note: this guarantees that the file can be opened in a consistent state,
    3803             :     // without requiring to close poODS, only if the driver declares
    3804             :     // DCAP_FLUSHCACHE_CONSISTENT_STATE
    3805        1055 :     if (poODS->FlushCache() != CE_None)
    3806           0 :         nRetCode = 1;
    3807             : 
    3808        1055 :     if (nRetCode == 0)
    3809             :     {
    3810        1028 :         if (hDstDS)
    3811          28 :             return hDstDS;
    3812             :         else
    3813        1000 :             return GDALDataset::ToHandle(poODSUniquePtr.release());
    3814             :     }
    3815             : 
    3816          27 :     return nullptr;
    3817             : }
    3818             : 
    3819             : /************************************************************************/
    3820             : /*                                SetZ()                                */
    3821             : /************************************************************************/
    3822             : 
    3823             : namespace
    3824             : {
    3825             : class SetZVisitor : public OGRDefaultGeometryVisitor
    3826             : {
    3827             :     double m_dfZ;
    3828             : 
    3829             :   public:
    3830          30 :     explicit SetZVisitor(double dfZ) : m_dfZ(dfZ)
    3831             :     {
    3832          30 :     }
    3833             : 
    3834             :     using OGRDefaultGeometryVisitor::visit;
    3835             : 
    3836         735 :     void visit(OGRPoint *poPoint) override
    3837             :     {
    3838         735 :         poPoint->setZ(m_dfZ);
    3839         735 :     }
    3840             : };
    3841             : }  // namespace
    3842             : 
    3843          30 : static void SetZ(OGRGeometry *poGeom, double dfZ)
    3844             : {
    3845          30 :     if (poGeom == nullptr)
    3846           0 :         return;
    3847          60 :     SetZVisitor visitor(dfZ);
    3848          30 :     poGeom->set3D(true);
    3849          30 :     poGeom->accept(&visitor);
    3850             : }
    3851             : 
    3852             : /************************************************************************/
    3853             : /*                        ForceCoordDimension()                         */
    3854             : /************************************************************************/
    3855             : 
    3856        1409 : static int ForceCoordDimension(int eGType, int nCoordDim)
    3857             : {
    3858        1409 :     if (nCoordDim == 2 && eGType != wkbNone)
    3859           3 :         return wkbFlatten(eGType);
    3860        1406 :     else if (nCoordDim == 3 && eGType != wkbNone)
    3861           3 :         return wkbSetZ(wkbFlatten(eGType));
    3862        1403 :     else if (nCoordDim == COORD_DIM_XYM && eGType != wkbNone)
    3863           2 :         return wkbSetM(wkbFlatten(eGType));
    3864        1401 :     else if (nCoordDim == 4 && eGType != wkbNone)
    3865           2 :         return OGR_GT_SetModifier(static_cast<OGRwkbGeometryType>(eGType), TRUE,
    3866           2 :                                   TRUE);
    3867             :     else
    3868        1399 :         return eGType;
    3869             : }
    3870             : 
    3871             : /************************************************************************/
    3872             : /*                  GetLayerAndOverwriteIfNecessary()                   */
    3873             : /************************************************************************/
    3874             : 
    3875        1263 : static OGRLayer *GetLayerAndOverwriteIfNecessary(GDALDataset *poDstDS,
    3876             :                                                  const char *pszNewLayerName,
    3877             :                                                  bool bOverwrite,
    3878             :                                                  bool *pbErrorOccurred,
    3879             :                                                  bool *pbOverwriteActuallyDone,
    3880             :                                                  bool *pbAddOverwriteLCO)
    3881             : {
    3882        1263 :     if (pbErrorOccurred)
    3883        1263 :         *pbErrorOccurred = false;
    3884        1263 :     if (pbOverwriteActuallyDone)
    3885        1263 :         *pbOverwriteActuallyDone = false;
    3886        1263 :     if (pbAddOverwriteLCO)
    3887        1263 :         *pbAddOverwriteLCO = false;
    3888             : 
    3889             :     /* GetLayerByName() can instantiate layers that would have been */
    3890             :     /* 'hidden' otherwise, for example, non-spatial tables in a */
    3891             :     /* PostGIS-enabled database, so this apparently useless command is */
    3892             :     /* not useless. (#4012) */
    3893        1263 :     CPLPushErrorHandler(CPLQuietErrorHandler);
    3894        1263 :     OGRLayer *poDstLayer = poDstDS->GetLayerByName(pszNewLayerName);
    3895        1263 :     CPLPopErrorHandler();
    3896        1263 :     CPLErrorReset();
    3897             : 
    3898        1263 :     int iLayer = -1;
    3899        1263 :     if (poDstLayer != nullptr)
    3900             :     {
    3901          65 :         const int nLayerCount = poDstDS->GetLayerCount();
    3902         379 :         for (iLayer = 0; iLayer < nLayerCount; iLayer++)
    3903             :         {
    3904         379 :             OGRLayer *poLayer = poDstDS->GetLayer(iLayer);
    3905         379 :             if (poLayer == poDstLayer)
    3906          65 :                 break;
    3907             :         }
    3908             : 
    3909          65 :         if (iLayer == nLayerCount)
    3910             :             /* should not happen with an ideal driver */
    3911           0 :             poDstLayer = nullptr;
    3912             :     }
    3913             : 
    3914             :     /* -------------------------------------------------------------------- */
    3915             :     /*      If the user requested overwrite, and we have the layer in       */
    3916             :     /*      question we need to delete it now so it will get recreated      */
    3917             :     /*      (overwritten).                                                  */
    3918             :     /* -------------------------------------------------------------------- */
    3919        1263 :     if (poDstLayer != nullptr && bOverwrite)
    3920             :     {
    3921             :         /* When using the CARTO driver we don't want to delete the layer if */
    3922             :         /* it's going to be recreated. Instead we mark it to be overwritten */
    3923             :         /* when the new creation is requested */
    3924          16 :         if (poDstDS->GetDriver()->GetMetadataItem(
    3925          32 :                 GDAL_DS_LAYER_CREATIONOPTIONLIST) != nullptr &&
    3926          32 :             strstr(poDstDS->GetDriver()->GetMetadataItem(
    3927          16 :                        GDAL_DS_LAYER_CREATIONOPTIONLIST),
    3928             :                    "CARTODBFY") != nullptr)
    3929             :         {
    3930           0 :             if (pbAddOverwriteLCO)
    3931           0 :                 *pbAddOverwriteLCO = true;
    3932           0 :             if (pbOverwriteActuallyDone)
    3933           0 :                 *pbOverwriteActuallyDone = true;
    3934             :         }
    3935          16 :         else if (poDstDS->DeleteLayer(iLayer) != OGRERR_NONE)
    3936             :         {
    3937           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    3938             :                      "DeleteLayer() failed when overwrite requested.");
    3939           0 :             if (pbErrorOccurred)
    3940           0 :                 *pbErrorOccurred = true;
    3941             :         }
    3942             :         else
    3943             :         {
    3944          16 :             if (pbOverwriteActuallyDone)
    3945          16 :                 *pbOverwriteActuallyDone = true;
    3946             :         }
    3947          16 :         poDstLayer = nullptr;
    3948             :     }
    3949             : 
    3950        1263 :     return poDstLayer;
    3951             : }
    3952             : 
    3953             : /************************************************************************/
    3954             : /*                            ConvertType()                             */
    3955             : /************************************************************************/
    3956             : 
    3957        1400 : static OGRwkbGeometryType ConvertType(GeomTypeConversion eGeomTypeConversion,
    3958             :                                       OGRwkbGeometryType eGType)
    3959             : {
    3960        1400 :     OGRwkbGeometryType eRetType = eGType;
    3961             : 
    3962        1400 :     if (eGeomTypeConversion == GTC_CONVERT_TO_LINEAR ||
    3963             :         eGeomTypeConversion == GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR)
    3964             :     {
    3965          13 :         eRetType = OGR_GT_GetLinear(eRetType);
    3966             :     }
    3967             : 
    3968        1400 :     if (eGeomTypeConversion == GTC_PROMOTE_TO_MULTI ||
    3969             :         eGeomTypeConversion == GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR)
    3970             :     {
    3971          12 :         if (eRetType == wkbTriangle || eRetType == wkbTIN ||
    3972             :             eRetType == wkbPolyhedralSurface)
    3973             :         {
    3974           0 :             eRetType = wkbMultiPolygon;
    3975             :         }
    3976          12 :         else if (!OGR_GT_IsSubClassOf(eRetType, wkbGeometryCollection))
    3977             :         {
    3978           4 :             eRetType = OGR_GT_GetCollection(eRetType);
    3979             :         }
    3980             :     }
    3981             : 
    3982        1400 :     if (eGeomTypeConversion == GTC_CONVERT_TO_CURVE)
    3983           2 :         eRetType = OGR_GT_GetCurve(eRetType);
    3984             : 
    3985        1400 :     return eRetType;
    3986             : }
    3987             : 
    3988             : /************************************************************************/
    3989             : /*                       DoFieldTypeConversion()                        */
    3990             : /************************************************************************/
    3991             : 
    3992        3897 : static void DoFieldTypeConversion(GDALDataset *poDstDS,
    3993             :                                   OGRFieldDefn &oFieldDefn,
    3994             :                                   CSLConstList papszFieldTypesToString,
    3995             :                                   CSLConstList papszMapFieldType,
    3996             :                                   bool bUnsetFieldWidth, bool bQuiet,
    3997             :                                   bool bForceNullable, bool bUnsetDefault)
    3998             : {
    3999        3897 :     if (papszFieldTypesToString != nullptr)
    4000             :     {
    4001           0 :         CPLString osLookupString;
    4002             :         osLookupString.Printf(
    4003             :             "%s(%s)", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4004           0 :             OGRFieldDefn::GetFieldSubTypeName(oFieldDefn.GetSubType()));
    4005             : 
    4006           0 :         int iIdx = CSLFindString(papszFieldTypesToString, osLookupString);
    4007           0 :         if (iIdx < 0)
    4008           0 :             iIdx = CSLFindString(
    4009             :                 papszFieldTypesToString,
    4010             :                 OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()));
    4011           0 :         if (iIdx < 0)
    4012           0 :             iIdx = CSLFindString(papszFieldTypesToString, "All");
    4013           0 :         if (iIdx >= 0)
    4014             :         {
    4015           0 :             oFieldDefn.SetSubType(OFSTNone);
    4016           0 :             oFieldDefn.SetType(OFTString);
    4017             :         }
    4018             :     }
    4019        3897 :     else if (papszMapFieldType != nullptr)
    4020             :     {
    4021          28 :         CPLString osLookupString;
    4022             :         osLookupString.Printf(
    4023             :             "%s(%s)", OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4024          14 :             OGRFieldDefn::GetFieldSubTypeName(oFieldDefn.GetSubType()));
    4025             : 
    4026             :         const char *pszType =
    4027          14 :             CSLFetchNameValue(papszMapFieldType, osLookupString);
    4028          14 :         if (pszType == nullptr)
    4029          13 :             pszType = CSLFetchNameValue(
    4030             :                 papszMapFieldType,
    4031             :                 OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()));
    4032          14 :         if (pszType == nullptr)
    4033          10 :             pszType = CSLFetchNameValue(papszMapFieldType, "All");
    4034          14 :         if (pszType != nullptr)
    4035             :         {
    4036             :             int iSubType;
    4037           4 :             int iType = GetFieldType(pszType, &iSubType);
    4038           4 :             if (iType >= 0 && iSubType >= 0)
    4039             :             {
    4040           4 :                 oFieldDefn.SetSubType(OFSTNone);
    4041           4 :                 oFieldDefn.SetType(static_cast<OGRFieldType>(iType));
    4042           4 :                 oFieldDefn.SetSubType(static_cast<OGRFieldSubType>(iSubType));
    4043           4 :                 if (iType == OFTInteger)
    4044           1 :                     oFieldDefn.SetWidth(0);
    4045             :             }
    4046             :         }
    4047             :     }
    4048        3897 :     if (bUnsetFieldWidth)
    4049             :     {
    4050           6 :         oFieldDefn.SetWidth(0);
    4051           6 :         oFieldDefn.SetPrecision(0);
    4052             :     }
    4053        3897 :     if (bForceNullable)
    4054           4 :         oFieldDefn.SetNullable(TRUE);
    4055        3897 :     if (bUnsetDefault)
    4056           2 :         oFieldDefn.SetDefault(nullptr);
    4057             : 
    4058        3897 :     const auto poDstDriver = poDstDS->GetDriver();
    4059             :     const char *pszCreationFieldDataTypes =
    4060             :         poDstDriver
    4061        3897 :             ? poDstDriver->GetMetadataItem(GDAL_DMD_CREATIONFIELDDATATYPES)
    4062        3897 :             : nullptr;
    4063             :     const char *pszCreationFieldDataSubtypes =
    4064             :         poDstDriver
    4065        3897 :             ? poDstDriver->GetMetadataItem(GDAL_DMD_CREATIONFIELDDATASUBTYPES)
    4066        3897 :             : nullptr;
    4067        7679 :     if (pszCreationFieldDataTypes &&
    4068        3782 :         strstr(pszCreationFieldDataTypes,
    4069             :                OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType())) == nullptr)
    4070             :     {
    4071          30 :         if (pszCreationFieldDataSubtypes &&
    4072          58 :             (oFieldDefn.GetType() == OFTIntegerList ||
    4073          55 :              oFieldDefn.GetType() == OFTInteger64List ||
    4074          53 :              oFieldDefn.GetType() == OFTRealList ||
    4075          88 :              oFieldDefn.GetType() == OFTStringList) &&
    4076          25 :             strstr(pszCreationFieldDataSubtypes, "JSON"))
    4077             :         {
    4078           5 :             if (!bQuiet)
    4079             :             {
    4080           5 :                 CPLError(
    4081             :                     CE_Warning, CPLE_AppDefined,
    4082             :                     "The output driver does not seem to natively support %s "
    4083             :                     "type for field %s. Converting it to String(JSON) instead. "
    4084             :                     "-mapFieldType can be used to control field type "
    4085             :                     "conversion.",
    4086             :                     OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4087             :                     oFieldDefn.GetNameRef());
    4088             :             }
    4089           5 :             oFieldDefn.SetSubType(OFSTNone);
    4090           5 :             oFieldDefn.SetType(OFTString);
    4091           5 :             oFieldDefn.SetSubType(OFSTJSON);
    4092             :         }
    4093          27 :         else if (oFieldDefn.GetType() == OFTInteger64)
    4094             :         {
    4095           1 :             if (!bQuiet)
    4096             :             {
    4097           1 :                 CPLError(
    4098             :                     CE_Warning, CPLE_AppDefined,
    4099             :                     "The output driver does not seem to natively support %s "
    4100             :                     "type for field %s. Converting it to Real instead. "
    4101             :                     "-mapFieldType can be used to control field type "
    4102             :                     "conversion.",
    4103             :                     OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4104             :                     oFieldDefn.GetNameRef());
    4105             :             }
    4106           1 :             oFieldDefn.SetType(OFTReal);
    4107             :         }
    4108          30 :         else if (oFieldDefn.GetType() == OFTDateTime && poDstDriver &&
    4109           4 :                  EQUAL(poDstDriver->GetDescription(), "ESRI Shapefile"))
    4110             :         {
    4111             :             // Just be silent. The shapefile driver will itself emit a
    4112             :             // warning mentioning it converts DateTime to String.
    4113             :         }
    4114          25 :         else if (!bQuiet)
    4115             :         {
    4116          25 :             CPLError(
    4117             :                 CE_Warning, CPLE_AppDefined,
    4118             :                 "The output driver does not natively support %s type for "
    4119             :                 "field %s. Misconversion can happen. "
    4120             :                 "-mapFieldType can be used to control field type conversion.",
    4121             :                 OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4122             :                 oFieldDefn.GetNameRef());
    4123             :         }
    4124             :     }
    4125        3865 :     else if (!pszCreationFieldDataTypes)
    4126             :     {
    4127             :         // All drivers supporting OFTInteger64 should advertise it theoretically
    4128         115 :         if (oFieldDefn.GetType() == OFTInteger64)
    4129             :         {
    4130           1 :             if (!bQuiet)
    4131             :             {
    4132           1 :                 CPLError(CE_Warning, CPLE_AppDefined,
    4133             :                          "The output driver does not seem to natively support "
    4134             :                          "%s type "
    4135             :                          "for field %s. Converting it to Real instead. "
    4136             :                          "-mapFieldType can be used to control field type "
    4137             :                          "conversion.",
    4138             :                          OGRFieldDefn::GetFieldTypeName(oFieldDefn.GetType()),
    4139             :                          oFieldDefn.GetNameRef());
    4140             :             }
    4141           1 :             oFieldDefn.SetType(OFTReal);
    4142             :         }
    4143             :     }
    4144        3897 : }
    4145             : 
    4146             : /************************************************************************/
    4147             : /*                       GetArrowGeomFieldIndex()                       */
    4148             : /************************************************************************/
    4149             : 
    4150          24 : static int GetArrowGeomFieldIndex(const struct ArrowSchema *psLayerSchema,
    4151             :                                   const char *pszFieldName)
    4152             : {
    4153          24 :     if (strcmp(psLayerSchema->format, "+s") == 0)  // struct
    4154             :     {
    4155          82 :         for (int i = 0; i < psLayerSchema->n_children; ++i)
    4156             :         {
    4157          82 :             const auto psSchema = psLayerSchema->children[i];
    4158          82 :             if (strcmp(psSchema->format, "z") == 0)  // binary
    4159             :             {
    4160          24 :                 if (strcmp(psSchema->name, pszFieldName) == 0)
    4161             :                 {
    4162          22 :                     return i;
    4163             :                 }
    4164             :                 else
    4165             :                 {
    4166             :                     // Check if ARROW:extension:name = ogc.wkb or geoarrow.wkb
    4167           2 :                     const char *pabyMetadata = psSchema->metadata;
    4168           2 :                     if (pabyMetadata)
    4169             :                     {
    4170             :                         const auto oMetadata =
    4171           2 :                             OGRParseArrowMetadata(pabyMetadata);
    4172           2 :                         auto oIter = oMetadata.find(ARROW_EXTENSION_NAME_KEY);
    4173           4 :                         if (oIter != oMetadata.end() &&
    4174           2 :                             (oIter->second == EXTENSION_NAME_OGC_WKB ||
    4175           0 :                              oIter->second == EXTENSION_NAME_GEOARROW_WKB))
    4176             :                         {
    4177           2 :                             return i;
    4178             :                         }
    4179             :                     }
    4180             :                 }
    4181             :             }
    4182             :         }
    4183             :     }
    4184           0 :     return -1;
    4185             : }
    4186             : 
    4187             : /************************************************************************/
    4188             : /*                     BuildGetArrowStreamOptions()                     */
    4189             : /************************************************************************/
    4190             : 
    4191             : static CPLStringList
    4192         174 : BuildGetArrowStreamOptions(OGRLayer *poSrcLayer, OGRLayer *poDstLayer,
    4193             :                            const GDALVectorTranslateOptions *psOptions,
    4194             :                            bool bPreserveFID)
    4195             : {
    4196         174 :     CPLStringList aosOptionsGetArrowStream;
    4197         174 :     aosOptionsGetArrowStream.SetNameValue("SILENCE_GET_SCHEMA_ERROR", "YES");
    4198         174 :     aosOptionsGetArrowStream.SetNameValue("GEOMETRY_ENCODING", "WKB");
    4199         174 :     if (!bPreserveFID)
    4200         139 :         aosOptionsGetArrowStream.SetNameValue("INCLUDE_FID", "NO");
    4201         174 :     if (psOptions->nLimit >= 0)
    4202             :     {
    4203             :         aosOptionsGetArrowStream.SetNameValue(
    4204             :             "MAX_FEATURES_IN_BATCH",
    4205             :             CPLSPrintf(CPL_FRMT_GIB,
    4206           2 :                        std::min<GIntBig>(psOptions->nLimit,
    4207           2 :                                          (psOptions->nGroupTransactions > 0
    4208           4 :                                               ? psOptions->nGroupTransactions
    4209           2 :                                               : 65536))));
    4210             :     }
    4211         172 :     else if (psOptions->nGroupTransactions > 0)
    4212             :     {
    4213             :         aosOptionsGetArrowStream.SetNameValue(
    4214             :             "MAX_FEATURES_IN_BATCH",
    4215         172 :             CPLSPrintf("%d", psOptions->nGroupTransactions));
    4216             :     }
    4217             : 
    4218         174 :     auto poSrcDS = poSrcLayer->GetDataset();
    4219         174 :     auto poDstDS = poDstLayer->GetDataset();
    4220         174 :     if (poSrcDS && poDstDS)
    4221             :     {
    4222         170 :         auto poSrcDriver = poSrcDS->GetDriver();
    4223         170 :         auto poDstDriver = poDstDS->GetDriver();
    4224             : 
    4225         220 :         const auto IsArrowNativeDriver = [](GDALDriver *poDriver)
    4226             :         {
    4227         220 :             return EQUAL(poDriver->GetDescription(), "ARROW") ||
    4228         317 :                    EQUAL(poDriver->GetDescription(), "PARQUET") ||
    4229         317 :                    EQUAL(poDriver->GetDescription(), "ADBC");
    4230             :         };
    4231             : 
    4232         220 :         if (poSrcDriver && poDstDriver && !IsArrowNativeDriver(poSrcDriver) &&
    4233          50 :             !IsArrowNativeDriver(poDstDriver))
    4234             :         {
    4235             :             // For non-Arrow-native drivers, request DateTime as string, to
    4236             :             // allow mix of timezones
    4237             :             aosOptionsGetArrowStream.SetNameValue(GAS_OPT_DATETIME_AS_STRING,
    4238          47 :                                                   "YES");
    4239             :         }
    4240             :     }
    4241             : 
    4242         174 :     return aosOptionsGetArrowStream;
    4243             : }
    4244             : 
    4245             : /************************************************************************/
    4246             : /*              SetupTargetLayer::CanUseWriteArrowBatch()               */
    4247             : /************************************************************************/
    4248             : 
    4249        1259 : bool SetupTargetLayer::CanUseWriteArrowBatch(
    4250             :     OGRLayer *poSrcLayer, OGRLayer *poDstLayer, bool bJustCreatedLayer,
    4251             :     const GDALVectorTranslateOptions *psOptions, bool bPreserveFID,
    4252             :     OGRArrowArrayStream &streamSrc)
    4253             : {
    4254             :     // Check if we can use the Arrow interface to get and write features
    4255             :     // as it will be faster if the input driver has a fast
    4256             :     // implementation of GetArrowStream().
    4257             :     // We also can only do that only if using ogr2ogr without options that
    4258             :     // alter features.
    4259             :     // OGR2OGR_USE_ARROW_API config option is mostly for testing purposes
    4260             :     // or as a safety belt if things turned bad...
    4261        1259 :     bool bUseWriteArrowBatch = false;
    4262        1259 :     if (((poSrcLayer->TestCapability(OLCFastGetArrowStream) &&
    4263             :           // As we don't control the input array size when the input or output
    4264             :           // drivers are Arrow/Parquet (as they don't use the generic
    4265             :           // implementation), we can't guarantee that ROW_GROUP_SIZE/BATCH_SIZE
    4266             :           // layer creation options will be honored.
    4267         182 :           !psOptions->aosLCO.FetchNameValue("ROW_GROUP_SIZE") &&
    4268         180 :           !psOptions->aosLCO.FetchNameValue("BATCH_SIZE") &&
    4269         177 :           CPLTestBool(CPLGetConfigOption("OGR2OGR_USE_ARROW_API", "YES"))) ||
    4270        1083 :          CPLTestBool(CPLGetConfigOption("OGR2OGR_USE_ARROW_API", "NO"))) &&
    4271         187 :         !psOptions->bUpsert && !psOptions->bSkipFailures &&
    4272         362 :         !psOptions->poClipSrc && !psOptions->poClipDst &&
    4273         354 :         psOptions->asGCPs.empty() && !psOptions->bWrapDateline &&
    4274         177 :         !m_bAddMissingFields && m_eGType == GEOMTYPE_UNCHANGED &&
    4275         176 :         psOptions->eGeomOp == GEOMOP_NONE &&
    4276         176 :         m_eGeomTypeConversion == GTC_DEFAULT && m_nCoordDim < 0 &&
    4277         176 :         !m_papszFieldTypesToString && !m_papszMapFieldType &&
    4278         176 :         !m_bUnsetFieldWidth && !m_bExplodeCollections && !m_pszZField &&
    4279         175 :         m_bExactFieldNameMatch && !m_bForceNullable && !m_bResolveDomains &&
    4280         175 :         !m_bUnsetDefault && psOptions->nFIDToFetch == OGRNullFID &&
    4281         175 :         psOptions->dfXYRes == OGRGeomCoordinatePrecision::UNKNOWN &&
    4282        2518 :         !psOptions->bMakeValid && !psOptions->bSkipInvalidGeom)
    4283             :     {
    4284         175 :         if (psOptions->bTransform)
    4285             :         {
    4286             :             // To simplify implementation for now
    4287          26 :             if (poSrcLayer->GetLayerDefn()->GetGeomFieldCount() != 1 ||
    4288          13 :                 poDstLayer->GetLayerDefn()->GetGeomFieldCount() != 1)
    4289             :             {
    4290           1 :                 return false;
    4291             :             }
    4292          13 :             const auto poSrcSRS = m_poUserSourceSRS ? m_poUserSourceSRS
    4293          12 :                                                     : poSrcLayer->GetLayerDefn()
    4294          12 :                                                           ->GetGeomFieldDefn(0)
    4295          12 :                                                           ->GetSpatialRef();
    4296          13 :             if (!OGRGeometryFactory::isTransformWithOptionsRegularTransform(
    4297             :                     poSrcSRS, m_poOutputSRS, nullptr))
    4298             :             {
    4299           1 :                 return false;
    4300             :             }
    4301             :         }
    4302             : 
    4303         174 :         if (m_bSelFieldsSet)
    4304             :         {
    4305           2 :             SetIgnoredFields(poSrcLayer);
    4306             :         }
    4307             : 
    4308             :         const CPLStringList aosGetArrowStreamOptions(BuildGetArrowStreamOptions(
    4309         174 :             poSrcLayer, poDstLayer, psOptions, bPreserveFID));
    4310         174 :         if (poSrcLayer->GetArrowStream(streamSrc.get(),
    4311         174 :                                        aosGetArrowStreamOptions.List()))
    4312             :         {
    4313             :             struct ArrowSchema schemaSrc;
    4314         174 :             if (streamSrc.get_schema(&schemaSrc) == 0)
    4315             :             {
    4316         186 :                 if (psOptions->bTransform &&
    4317          12 :                     GetArrowGeomFieldIndex(&schemaSrc,
    4318          12 :                                            poSrcLayer->GetGeometryColumn()) < 0)
    4319             :                 {
    4320           0 :                     schemaSrc.release(&schemaSrc);
    4321           0 :                     streamSrc.clear();
    4322           0 :                     return false;
    4323             :                 }
    4324             : 
    4325         174 :                 std::string osErrorMsg;
    4326         174 :                 if (poDstLayer->IsArrowSchemaSupported(&schemaSrc, nullptr,
    4327         174 :                                                        osErrorMsg))
    4328             :                 {
    4329             :                     const OGRFeatureDefn *poSrcFDefn =
    4330         174 :                         poSrcLayer->GetLayerDefn();
    4331             :                     const OGRFeatureDefn *poDstFDefn =
    4332         174 :                         poDstLayer->GetLayerDefn();
    4333         172 :                     if (bJustCreatedLayer && poDstFDefn &&
    4334         518 :                         poDstFDefn->GetFieldCount() == 0 &&
    4335         172 :                         poDstFDefn->GetGeomFieldCount() ==
    4336         172 :                             poSrcFDefn->GetGeomFieldCount())
    4337             :                     {
    4338             :                         // Create output fields using CreateFieldFromArrowSchema()
    4339        1313 :                         for (int i = 0; i < schemaSrc.n_children; ++i)
    4340             :                         {
    4341        1141 :                             const char *pszFieldName =
    4342        1141 :                                 schemaSrc.children[i]->name;
    4343             : 
    4344             :                             const auto iSrcField =
    4345        1141 :                                 poSrcFDefn->GetFieldIndex(pszFieldName);
    4346        1141 :                             if (iSrcField >= 0)
    4347             :                             {
    4348             :                                 const auto poSrcFieldDefn =
    4349         931 :                                     poSrcFDefn->GetFieldDefn(iSrcField);
    4350             :                                 // Create field domain in output dataset if not already existing.
    4351             :                                 const std::string osDomainName(
    4352        1862 :                                     poSrcFieldDefn->GetDomainName());
    4353         931 :                                 if (!osDomainName.empty())
    4354             :                                 {
    4355          33 :                                     if (m_poDstDS->TestCapability(
    4356          22 :                                             ODsCAddFieldDomain) &&
    4357          11 :                                         m_poDstDS->GetFieldDomain(
    4358          11 :                                             osDomainName) == nullptr)
    4359             :                                     {
    4360             :                                         const auto poSrcDomain =
    4361          22 :                                             m_poSrcDS->GetFieldDomain(
    4362          11 :                                                 osDomainName);
    4363          11 :                                         if (poSrcDomain)
    4364             :                                         {
    4365          22 :                                             std::string failureReason;
    4366          11 :                                             if (!m_poDstDS->AddFieldDomain(
    4367          22 :                                                     std::unique_ptr<
    4368             :                                                         OGRFieldDomain>(
    4369          11 :                                                         poSrcDomain->Clone()),
    4370          11 :                                                     failureReason))
    4371             :                                             {
    4372           0 :                                                 CPLDebug("OGR2OGR",
    4373             :                                                          "Cannot create domain "
    4374             :                                                          "%s: %s",
    4375             :                                                          osDomainName.c_str(),
    4376             :                                                          failureReason.c_str());
    4377             :                                             }
    4378             :                                         }
    4379             :                                         else
    4380             :                                         {
    4381           0 :                                             CPLDebug("OGR2OGR",
    4382             :                                                      "Cannot find domain %s in "
    4383             :                                                      "source dataset",
    4384             :                                                      osDomainName.c_str());
    4385             :                                         }
    4386             :                                     }
    4387             :                                 }
    4388             :                             }
    4389             : 
    4390        3423 :                             if (!EQUAL(pszFieldName, "OGC_FID") &&
    4391        1141 :                                 !EQUAL(pszFieldName, "wkb_geometry") &&
    4392        1133 :                                 !EQUAL(pszFieldName,
    4393        1098 :                                        poSrcLayer->GetFIDColumn()) &&
    4394        1098 :                                 poSrcFDefn->GetGeomFieldIndex(pszFieldName) <
    4395        2282 :                                     0 &&
    4396         940 :                                 !poDstLayer->CreateFieldFromArrowSchema(
    4397         940 :                                     schemaSrc.children[i], nullptr))
    4398             :                             {
    4399           0 :                                 CPLError(CE_Failure, CPLE_AppDefined,
    4400             :                                          "Cannot create field %s",
    4401             :                                          pszFieldName);
    4402           0 :                                 schemaSrc.release(&schemaSrc);
    4403           0 :                                 streamSrc.clear();
    4404           0 :                                 return false;
    4405             :                             }
    4406             :                         }
    4407         172 :                         bUseWriteArrowBatch = true;
    4408             :                     }
    4409           2 :                     else if (!bJustCreatedLayer)
    4410             :                     {
    4411             :                         // If the layer already exist, get its schema, and
    4412             :                         // check that it looks to be the same as the source
    4413             :                         // one
    4414             :                         struct ArrowArrayStream streamDst;
    4415           2 :                         if (poDstLayer->GetArrowStream(
    4416           2 :                                 &streamDst, aosGetArrowStreamOptions.List()))
    4417             :                         {
    4418             :                             struct ArrowSchema schemaDst;
    4419           2 :                             if (streamDst.get_schema(&streamDst, &schemaDst) ==
    4420             :                                 0)
    4421             :                             {
    4422           2 :                                 if (schemaDst.n_children ==
    4423           2 :                                     schemaSrc.n_children)
    4424             :                                 {
    4425           2 :                                     bUseWriteArrowBatch = true;
    4426             :                                 }
    4427           2 :                                 schemaDst.release(&schemaDst);
    4428             :                             }
    4429           2 :                             streamDst.release(&streamDst);
    4430             :                         }
    4431             :                     }
    4432         174 :                     if (bUseWriteArrowBatch)
    4433             :                     {
    4434         174 :                         CPLDebug("OGR2OGR", "Using WriteArrowBatch()");
    4435             :                     }
    4436             :                 }
    4437             :                 else
    4438             :                 {
    4439           0 :                     CPLDebug("OGR2OGR",
    4440             :                              "Cannot use WriteArrowBatch() because "
    4441             :                              "input layer schema is not supported by output "
    4442             :                              "layer: %s",
    4443             :                              osErrorMsg.c_str());
    4444             :                 }
    4445         174 :                 schemaSrc.release(&schemaSrc);
    4446             :             }
    4447         174 :             if (!bUseWriteArrowBatch)
    4448           0 :                 streamSrc.clear();
    4449             :         }
    4450             :     }
    4451        1258 :     return bUseWriteArrowBatch;
    4452             : }
    4453             : 
    4454             : /************************************************************************/
    4455             : /*                 SetupTargetLayer::SetIgnoredFields()                 */
    4456             : /************************************************************************/
    4457             : 
    4458          12 : void SetupTargetLayer::SetIgnoredFields(OGRLayer *poSrcLayer)
    4459             : {
    4460          12 :     bool bUseIgnoredFields = true;
    4461          24 :     CPLStringList aosWHEREUsedFields;
    4462          12 :     const auto poSrcFDefn = poSrcLayer->GetLayerDefn();
    4463             : 
    4464          12 :     if (m_pszWHERE)
    4465             :     {
    4466             :         /* We must not ignore fields used in the -where expression
    4467             :          * (#4015) */
    4468           4 :         OGRFeatureQuery oFeatureQuery;
    4469           2 :         if (oFeatureQuery.Compile(poSrcFDefn, m_pszWHERE, FALSE, nullptr) ==
    4470             :             OGRERR_NONE)
    4471             :         {
    4472           0 :             aosWHEREUsedFields = oFeatureQuery.GetUsedFields();
    4473             :         }
    4474             :         else
    4475             :         {
    4476           2 :             bUseIgnoredFields = false;
    4477             :         }
    4478             :     }
    4479             : 
    4480          24 :     CPLStringList aosIgnoredFields;
    4481          40 :     for (int iSrcField = 0;
    4482          40 :          bUseIgnoredFields && iSrcField < poSrcFDefn->GetFieldCount();
    4483             :          iSrcField++)
    4484             :     {
    4485             :         const char *pszFieldName =
    4486          28 :             poSrcFDefn->GetFieldDefn(iSrcField)->GetNameRef();
    4487             :         bool bFieldRequested =
    4488          28 :             CSLFindString(m_papszSelFields, pszFieldName) >= 0;
    4489          28 :         bFieldRequested |= aosWHEREUsedFields.FindString(pszFieldName) >= 0;
    4490          28 :         bFieldRequested |=
    4491          28 :             (m_pszZField != nullptr && EQUAL(pszFieldName, m_pszZField));
    4492             : 
    4493             :         // If the source field is not requested, add it to the list of ignored
    4494             :         // fields.
    4495          28 :         if (!bFieldRequested)
    4496          15 :             aosIgnoredFields.push_back(pszFieldName);
    4497             :     }
    4498          12 :     if (bUseIgnoredFields)
    4499          10 :         poSrcLayer->SetIgnoredFields(
    4500          10 :             const_cast<const char **>(aosIgnoredFields.List()));
    4501          12 : }
    4502             : 
    4503             : /************************************************************************/
    4504             : /*                      SetupTargetLayer::Setup()                       */
    4505             : /************************************************************************/
    4506             : 
    4507             : std::unique_ptr<TargetLayerInfo>
    4508        1264 : SetupTargetLayer::Setup(OGRLayer *poSrcLayer, const char *pszNewLayerName,
    4509             :                         GDALVectorTranslateOptions *psOptions,
    4510             :                         GIntBig &nTotalEventsDone)
    4511             : {
    4512        1264 :     int eGType = m_eGType;
    4513        1264 :     bool bPreserveFID = m_bPreserveFID;
    4514        1264 :     bool bAppend = m_bAppend;
    4515             : 
    4516        1264 :     if (pszNewLayerName == nullptr)
    4517        1224 :         pszNewLayerName = poSrcLayer->GetName();
    4518             : 
    4519             :     /* -------------------------------------------------------------------- */
    4520             :     /*      Get other info.                                                 */
    4521             :     /* -------------------------------------------------------------------- */
    4522             : 
    4523             :     // Capture errors from VRT layers such as WFS
    4524             :     // (see issue GH # https://github.com/OSGeo/gdal/issues/14826)
    4525        1264 :     const auto errorCount{CPLGetErrorCounter()};
    4526        1264 :     const OGRFeatureDefn *poSrcFDefn = poSrcLayer->GetLayerDefn();
    4527        1264 :     if (CPLGetErrorCounter() != errorCount)
    4528             :     {
    4529           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    4530             :                  "Error retrieving the source layer definition");
    4531           1 :         return nullptr;
    4532             :     }
    4533             : 
    4534             :     /* -------------------------------------------------------------------- */
    4535             :     /*      Find requested geometry fields.                                 */
    4536             :     /* -------------------------------------------------------------------- */
    4537        2526 :     std::vector<int> anRequestedGeomFields;
    4538        1263 :     const int nSrcGeomFieldCount = poSrcFDefn->GetGeomFieldCount();
    4539        1263 :     if (m_bSelFieldsSet && !bAppend)
    4540             :     {
    4541          44 :         for (int iField = 0; m_papszSelFields && m_papszSelFields[iField];
    4542             :              iField++)
    4543             :         {
    4544          27 :             int iSrcField = poSrcFDefn->GetFieldIndex(m_papszSelFields[iField]);
    4545          27 :             if (iSrcField >= 0)
    4546             :             {
    4547             :                 /* do nothing */
    4548             :             }
    4549             :             else
    4550             :             {
    4551           3 :                 iSrcField =
    4552           3 :                     poSrcFDefn->GetGeomFieldIndex(m_papszSelFields[iField]);
    4553           3 :                 if (iSrcField >= 0)
    4554             :                 {
    4555           3 :                     anRequestedGeomFields.push_back(iSrcField);
    4556             :                 }
    4557             :                 else
    4558             :                 {
    4559           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    4560             :                              "Field '%s' not found in source layer.",
    4561           0 :                              m_papszSelFields[iField]);
    4562           0 :                     if (!psOptions->bSkipFailures)
    4563           0 :                         return nullptr;
    4564             :                 }
    4565             :             }
    4566             :         }
    4567             : 
    4568          18 :         if (anRequestedGeomFields.size() > 1 &&
    4569           1 :             !m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer))
    4570             :         {
    4571           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    4572             :                      "Several geometry fields requested, but output "
    4573             :                      "datasource does not support multiple geometry "
    4574             :                      "fields.");
    4575           0 :             if (!psOptions->bSkipFailures)
    4576           0 :                 return nullptr;
    4577             :             else
    4578           0 :                 anRequestedGeomFields.resize(0);
    4579             :         }
    4580             :     }
    4581             : 
    4582        1263 :     const OGRSpatialReference *poOutputSRS = m_poOutputSRS;
    4583        1263 :     if (poOutputSRS == nullptr && !m_bNullifyOutputSRS)
    4584             :     {
    4585        1115 :         if (nSrcGeomFieldCount == 1 || anRequestedGeomFields.empty())
    4586        1113 :             poOutputSRS = poSrcLayer->GetSpatialRef();
    4587           2 :         else if (anRequestedGeomFields.size() == 1)
    4588             :         {
    4589           1 :             int iSrcGeomField = anRequestedGeomFields[0];
    4590             :             poOutputSRS =
    4591           1 :                 poSrcFDefn->GetGeomFieldDefn(iSrcGeomField)->GetSpatialRef();
    4592             :         }
    4593             :     }
    4594             : 
    4595        1263 :     int iSrcZField = -1;
    4596        1263 :     if (m_pszZField != nullptr)
    4597             :     {
    4598           4 :         iSrcZField = poSrcFDefn->GetFieldIndex(m_pszZField);
    4599           4 :         if (iSrcZField < 0)
    4600             :         {
    4601           1 :             CPLError(CE_Warning, CPLE_AppDefined,
    4602             :                      "zfield '%s' does not exist in layer %s", m_pszZField,
    4603           1 :                      poSrcLayer->GetName());
    4604             :         }
    4605             :     }
    4606             : 
    4607             :     /* -------------------------------------------------------------------- */
    4608             :     /*      Find the layer.                                                 */
    4609             :     /* -------------------------------------------------------------------- */
    4610             : 
    4611             :     bool bErrorOccurred;
    4612             :     bool bOverwriteActuallyDone;
    4613             :     bool bAddOverwriteLCO;
    4614        2526 :     OGRLayer *poDstLayer = GetLayerAndOverwriteIfNecessary(
    4615        1263 :         m_poDstDS, pszNewLayerName, m_bOverwrite, &bErrorOccurred,
    4616             :         &bOverwriteActuallyDone, &bAddOverwriteLCO);
    4617        1263 :     const bool bJustCreatedLayer = (poDstLayer == nullptr);
    4618        1263 :     if (bErrorOccurred)
    4619           0 :         return nullptr;
    4620             : 
    4621             :     /* -------------------------------------------------------------------- */
    4622             :     /*      If the layer does not exist, then create it.                    */
    4623             :     /* -------------------------------------------------------------------- */
    4624        1263 :     if (poDstLayer == nullptr)
    4625             :     {
    4626        1214 :         if (!m_poDstDS->TestCapability(ODsCCreateLayer))
    4627             :         {
    4628           0 :             CPLError(
    4629             :                 CE_Failure, CPLE_AppDefined,
    4630             :                 "Layer '%s' does not already exist in the output dataset, and "
    4631             :                 "cannot be created by the output driver.",
    4632             :                 pszNewLayerName);
    4633           4 :             return nullptr;
    4634             :         }
    4635             : 
    4636        1214 :         bool bForceGType = (eGType != GEOMTYPE_UNCHANGED);
    4637        1214 :         if (!bForceGType)
    4638             :         {
    4639        1194 :             if (anRequestedGeomFields.empty())
    4640             :             {
    4641        1192 :                 eGType = poSrcFDefn->GetGeomType();
    4642             :             }
    4643           2 :             else if (anRequestedGeomFields.size() == 1)
    4644             :             {
    4645           1 :                 int iSrcGeomField = anRequestedGeomFields[0];
    4646           1 :                 eGType = poSrcFDefn->GetGeomFieldDefn(iSrcGeomField)->GetType();
    4647             :             }
    4648             :             else
    4649             :             {
    4650           1 :                 eGType = wkbNone;
    4651             :             }
    4652             : 
    4653        1194 :             const bool bHasZ = wkbHasZ(static_cast<OGRwkbGeometryType>(eGType));
    4654        1194 :             eGType = ConvertType(m_eGeomTypeConversion,
    4655             :                                  static_cast<OGRwkbGeometryType>(eGType));
    4656             : 
    4657        1194 :             if (m_bExplodeCollections)
    4658             :             {
    4659          12 :                 const OGRwkbGeometryType eFGType = wkbFlatten(eGType);
    4660          12 :                 if (eFGType == wkbMultiPoint)
    4661             :                 {
    4662           1 :                     eGType = wkbPoint;
    4663             :                 }
    4664          11 :                 else if (eFGType == wkbMultiLineString)
    4665             :                 {
    4666           0 :                     eGType = wkbLineString;
    4667             :                 }
    4668          11 :                 else if (eFGType == wkbMultiPolygon)
    4669             :                 {
    4670           0 :                     eGType = wkbPolygon;
    4671             :                 }
    4672          11 :                 else if (eFGType == wkbGeometryCollection ||
    4673          11 :                          eFGType == wkbMultiCurve || eFGType == wkbMultiSurface)
    4674             :                 {
    4675           0 :                     eGType = wkbUnknown;
    4676             :                 }
    4677             :             }
    4678             : 
    4679        1194 :             if (bHasZ || (iSrcZField >= 0 && eGType != wkbNone))
    4680         114 :                 eGType = wkbSetZ(static_cast<OGRwkbGeometryType>(eGType));
    4681             :         }
    4682             : 
    4683        1214 :         eGType = ForceCoordDimension(eGType, m_nCoordDim);
    4684             : 
    4685        1214 :         CPLErrorReset();
    4686             : 
    4687        1214 :         CPLStringList aosLCOTemp(CSLDuplicate(m_papszLCO));
    4688             :         const char *pszDestCreationOptions =
    4689        1214 :             m_poDstDS->GetDriver()->GetMetadataItem(
    4690        1214 :                 GDAL_DS_LAYER_CREATIONOPTIONLIST);
    4691             : 
    4692        1214 :         int eGCreateLayerType = eGType;
    4693        1234 :         if (anRequestedGeomFields.empty() && nSrcGeomFieldCount > 1 &&
    4694          20 :             m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer))
    4695             :         {
    4696          19 :             eGCreateLayerType = wkbNone;
    4697             :         }
    4698             :         // If the source layer has a single geometry column that is not nullable
    4699             :         // and that ODsCCreateGeomFieldAfterCreateLayer is available, use it
    4700             :         // so as to be able to set the not null constraint (if the driver
    4701             :         // supports it) and that the output driver has no GEOMETRY_NULLABLE
    4702             :         // layer creation option. Same if the source geometry column has a non
    4703             :         // empty name that is not overridden, and that the output driver has no
    4704             :         // GEOMETRY_NAME layer creation option, but no LAUNDER option (if
    4705             :         // laundering is available, then we might want to launder the geometry
    4706             :         // column name as well)
    4707         986 :         else if (eGType != wkbNone && anRequestedGeomFields.empty() &&
    4708         982 :                  nSrcGeomFieldCount == 1 &&
    4709         982 :                  m_poDstDS->TestCapability(
    4710        3485 :                      ODsCCreateGeomFieldAfterCreateLayer) &&
    4711         322 :                  ((!poSrcFDefn->GetGeomFieldDefn(0)->IsNullable() &&
    4712           2 :                    CSLFetchNameValue(m_papszLCO, "GEOMETRY_NULLABLE") ==
    4713           2 :                        nullptr &&
    4714           2 :                    (pszDestCreationOptions == nullptr ||
    4715           2 :                     strstr(pszDestCreationOptions, "GEOMETRY_NULLABLE") !=
    4716           0 :                         nullptr) &&
    4717           0 :                    !m_bForceNullable) ||
    4718         322 :                   (poSrcLayer->GetGeometryColumn() != nullptr &&
    4719         322 :                    CSLFetchNameValue(m_papszLCO, "GEOMETRY_NAME") == nullptr &&
    4720         322 :                    !EQUAL(poSrcLayer->GetGeometryColumn(), "") &&
    4721          49 :                    (pszDestCreationOptions == nullptr ||
    4722          49 :                     strstr(pszDestCreationOptions, "GEOMETRY_NAME") ==
    4723           8 :                         nullptr ||
    4724           8 :                     strstr(pszDestCreationOptions, "LAUNDER") != nullptr) &&
    4725          49 :                    poSrcFDefn->GetFieldIndex(poSrcLayer->GetGeometryColumn()) <
    4726             :                        0)))
    4727             :         {
    4728          49 :             anRequestedGeomFields.push_back(0);
    4729          49 :             eGCreateLayerType = wkbNone;
    4730             :         }
    4731        1147 :         else if (anRequestedGeomFields.size() == 1 &&
    4732           1 :                  m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer))
    4733             :         {
    4734           0 :             eGCreateLayerType = wkbNone;
    4735             :         }
    4736             : 
    4737        1214 :         OGRGeomCoordinatePrecision oCoordPrec;
    4738        1214 :         std::string osGeomFieldName;
    4739        1214 :         bool bGeomFieldNullable = true;
    4740             : 
    4741             :         {
    4742        1214 :             int iSrcGeomField = -1;
    4743        1444 :             if (anRequestedGeomFields.empty() &&
    4744         230 :                 (nSrcGeomFieldCount == 1 ||
    4745         230 :                  (!m_poDstDS->TestCapability(
    4746         299 :                       ODsCCreateGeomFieldAfterCreateLayer) &&
    4747             :                   nSrcGeomFieldCount > 1)))
    4748             :             {
    4749         934 :                 iSrcGeomField = 0;
    4750             :             }
    4751         280 :             else if (anRequestedGeomFields.size() == 1)
    4752             :             {
    4753          50 :                 iSrcGeomField = anRequestedGeomFields[0];
    4754             :             }
    4755             : 
    4756        1214 :             if (iSrcGeomField >= 0)
    4757             :             {
    4758             :                 const auto poSrcGeomFieldDefn =
    4759         984 :                     poSrcFDefn->GetGeomFieldDefn(iSrcGeomField);
    4760         984 :                 if (!psOptions->bUnsetCoordPrecision)
    4761             :                 {
    4762         983 :                     oCoordPrec = poSrcGeomFieldDefn->GetCoordinatePrecision()
    4763        1966 :                                      .ConvertToOtherSRS(
    4764         983 :                                          poSrcGeomFieldDefn->GetSpatialRef(),
    4765         983 :                                          poOutputSRS);
    4766             :                 }
    4767             : 
    4768             :                 bGeomFieldNullable =
    4769         984 :                     CPL_TO_BOOL(poSrcGeomFieldDefn->IsNullable());
    4770             : 
    4771         984 :                 const char *pszGFldName = poSrcGeomFieldDefn->GetNameRef();
    4772        1233 :                 if (pszGFldName != nullptr && !EQUAL(pszGFldName, "") &&
    4773         249 :                     poSrcFDefn->GetFieldIndex(pszGFldName) < 0)
    4774             :                 {
    4775         248 :                     osGeomFieldName = pszGFldName;
    4776             : 
    4777             :                     // Use source geometry field name as much as possible
    4778         248 :                     if (eGType != wkbNone && pszDestCreationOptions &&
    4779         248 :                         strstr(pszDestCreationOptions, "GEOMETRY_NAME") !=
    4780         496 :                             nullptr &&
    4781         179 :                         CSLFetchNameValue(m_papszLCO, "GEOMETRY_NAME") ==
    4782             :                             nullptr)
    4783             :                     {
    4784         179 :                         aosLCOTemp.SetNameValue("GEOMETRY_NAME", pszGFldName);
    4785             :                     }
    4786             :                 }
    4787             :             }
    4788             :         }
    4789             : 
    4790             :         // If the source feature first geometry column is not nullable
    4791             :         // and that GEOMETRY_NULLABLE creation option is available, use it
    4792             :         // so as to be able to set the not null constraint (if the driver
    4793             :         // supports it)
    4794        1005 :         if (eGType != wkbNone && anRequestedGeomFields.empty() &&
    4795         953 :             nSrcGeomFieldCount >= 1 &&
    4796         953 :             !poSrcFDefn->GetGeomFieldDefn(0)->IsNullable() &&
    4797           0 :             pszDestCreationOptions != nullptr &&
    4798           0 :             strstr(pszDestCreationOptions, "GEOMETRY_NULLABLE") != nullptr &&
    4799        2219 :             CSLFetchNameValue(m_papszLCO, "GEOMETRY_NULLABLE") == nullptr &&
    4800           0 :             !m_bForceNullable)
    4801             :         {
    4802           0 :             bGeomFieldNullable = false;
    4803           0 :             aosLCOTemp.SetNameValue("GEOMETRY_NULLABLE", "NO");
    4804           0 :             CPLDebug("GDALVectorTranslate", "Using GEOMETRY_NULLABLE=NO");
    4805             :         }
    4806             : 
    4807        1214 :         if (psOptions->dfXYRes != OGRGeomCoordinatePrecision::UNKNOWN)
    4808             :         {
    4809           7 :             if (m_poDstDS->GetDriver()->GetMetadataItem(
    4810           8 :                     GDAL_DCAP_HONOR_GEOM_COORDINATE_PRECISION) == nullptr &&
    4811           1 :                 !OGRGeometryFactory::haveGEOS())
    4812             :             {
    4813           0 :                 CPLError(CE_Warning, CPLE_AppDefined,
    4814             :                          "-xyRes specified, but driver does not expose the "
    4815             :                          "DCAP_HONOR_GEOM_COORDINATE_PRECISION capability, "
    4816             :                          "and this build has no GEOS support");
    4817             :             }
    4818             : 
    4819           7 :             oCoordPrec.dfXYResolution = psOptions->dfXYRes;
    4820           7 :             if (!psOptions->osXYResUnit.empty())
    4821             :             {
    4822           5 :                 if (!poOutputSRS)
    4823             :                 {
    4824           1 :                     CPLError(CE_Failure, CPLE_AppDefined,
    4825             :                              "Unit suffix for -xyRes cannot be used with an "
    4826             :                              "unknown destination SRS");
    4827           1 :                     return nullptr;
    4828             :                 }
    4829             : 
    4830           4 :                 if (psOptions->osXYResUnit == "mm")
    4831             :                 {
    4832           1 :                     oCoordPrec.dfXYResolution *= 1e-3;
    4833             :                 }
    4834           3 :                 else if (psOptions->osXYResUnit == "deg")
    4835             :                 {
    4836             :                     double dfFactorDegToMeter =
    4837           2 :                         poOutputSRS->GetSemiMajor(nullptr) * M_PI / 180;
    4838           2 :                     oCoordPrec.dfXYResolution *= dfFactorDegToMeter;
    4839             :                 }
    4840             :                 else
    4841             :                 {
    4842             :                     // Checked at argument parsing time
    4843           1 :                     CPLAssert(psOptions->osXYResUnit == "m");
    4844             :                 }
    4845             : 
    4846           4 :                 OGRGeomCoordinatePrecision tmp;
    4847           4 :                 tmp.SetFromMeter(poOutputSRS, oCoordPrec.dfXYResolution, 0, 0);
    4848           4 :                 oCoordPrec.dfXYResolution = tmp.dfXYResolution;
    4849             :             }
    4850             :         }
    4851             : 
    4852        1213 :         if (psOptions->dfZRes != OGRGeomCoordinatePrecision::UNKNOWN)
    4853             :         {
    4854           4 :             if (m_poDstDS->GetDriver()->GetMetadataItem(
    4855           4 :                     GDAL_DCAP_HONOR_GEOM_COORDINATE_PRECISION) == nullptr)
    4856             :             {
    4857           0 :                 CPLError(CE_Warning, CPLE_AppDefined,
    4858             :                          "-zRes specified, but driver does not expose the "
    4859             :                          "DCAP_HONOR_GEOM_COORDINATE_PRECISION capability");
    4860             :             }
    4861             : 
    4862           4 :             oCoordPrec.dfZResolution = psOptions->dfZRes;
    4863           4 :             if (!psOptions->osZResUnit.empty())
    4864             :             {
    4865           3 :                 if (!poOutputSRS)
    4866             :                 {
    4867           1 :                     CPLError(CE_Failure, CPLE_AppDefined,
    4868             :                              "Unit suffix for -zRes cannot be used with an "
    4869             :                              "unknown destination SRS");
    4870           1 :                     return nullptr;
    4871             :                 }
    4872             : 
    4873           2 :                 if (psOptions->osZResUnit == "mm")
    4874             :                 {
    4875           1 :                     oCoordPrec.dfZResolution *= 1e-3;
    4876             :                 }
    4877             :                 else
    4878             :                 {
    4879             :                     // Checked at argument parsing time
    4880           1 :                     CPLAssert(psOptions->osZResUnit == "m");
    4881             :                 }
    4882             : 
    4883           2 :                 OGRGeomCoordinatePrecision tmp;
    4884           2 :                 tmp.SetFromMeter(poOutputSRS, 0, oCoordPrec.dfZResolution, 0);
    4885           2 :                 oCoordPrec.dfZResolution = tmp.dfZResolution;
    4886             :             }
    4887             :         }
    4888             : 
    4889        1212 :         if (psOptions->dfMRes != OGRGeomCoordinatePrecision::UNKNOWN)
    4890             :         {
    4891           3 :             if (m_poDstDS->GetDriver()->GetMetadataItem(
    4892           3 :                     GDAL_DCAP_HONOR_GEOM_COORDINATE_PRECISION) == nullptr)
    4893             :             {
    4894           0 :                 CPLError(CE_Warning, CPLE_AppDefined,
    4895             :                          "-mRes specified, but driver does not expose the "
    4896             :                          "DCAP_HONOR_GEOM_COORDINATE_PRECISION capability");
    4897             :             }
    4898             : 
    4899           3 :             oCoordPrec.dfMResolution = psOptions->dfMRes;
    4900             :         }
    4901             : 
    4902             :         // For JSONFG
    4903        1212 :         CSLConstList papszMeasures = poSrcLayer->GetMetadata("MEASURES");
    4904        1212 :         if (papszMeasures && pszDestCreationOptions)
    4905             :         {
    4906           6 :             for (const char *pszItem : {"UNIT", "DESCRIPTION"})
    4907             :             {
    4908             :                 const char *pszValue =
    4909           4 :                     CSLFetchNameValue(papszMeasures, pszItem);
    4910           4 :                 if (pszValue)
    4911             :                 {
    4912             :                     const std::string osOptionName =
    4913          12 :                         std::string("MEASURE_").append(pszItem);
    4914           8 :                     if (strstr(pszDestCreationOptions, osOptionName.c_str()) &&
    4915           4 :                         CSLFetchNameValue(m_papszLCO, osOptionName.c_str()) ==
    4916             :                             nullptr)
    4917             :                     {
    4918           4 :                         aosLCOTemp.SetNameValue(osOptionName.c_str(), pszValue);
    4919             :                     }
    4920             :                 }
    4921             :             }
    4922             :         }
    4923             : 
    4924        1212 :         auto poSrcDriver = m_poSrcDS->GetDriver();
    4925             : 
    4926             :         // Force FID column as 64 bit if the source feature has a 64 bit FID,
    4927             :         // the target driver supports 64 bit FID and the user didn't set it
    4928             :         // manually.
    4929        1212 :         if (poSrcLayer->GetMetadataItem(OLMD_FID64) != nullptr &&
    4930           2 :             EQUAL(poSrcLayer->GetMetadataItem(OLMD_FID64), "YES") &&
    4931           2 :             pszDestCreationOptions &&
    4932        1214 :             strstr(pszDestCreationOptions, "FID64") != nullptr &&
    4933           0 :             CSLFetchNameValue(m_papszLCO, "FID64") == nullptr)
    4934             :         {
    4935           0 :             aosLCOTemp.SetNameValue("FID64", "YES");
    4936           0 :             CPLDebug("GDALVectorTranslate", "Using FID64=YES");
    4937             :         }
    4938             : 
    4939             :         // If output driver supports FID layer creation option, set it with
    4940             :         // the FID column name of the source layer
    4941        1210 :         if (!m_bUnsetFid && !bAppend && poSrcLayer->GetFIDColumn() != nullptr &&
    4942        1208 :             !EQUAL(poSrcLayer->GetFIDColumn(), "") &&
    4943          80 :             pszDestCreationOptions != nullptr &&
    4944          80 :             (strstr(pszDestCreationOptions, "='FID'") != nullptr ||
    4945        2424 :              strstr(pszDestCreationOptions, "=\"FID\"") != nullptr) &&
    4946          71 :             CSLFetchNameValue(m_papszLCO, "FID") == nullptr)
    4947             :         {
    4948          71 :             aosLCOTemp.SetNameValue("FID", poSrcLayer->GetFIDColumn());
    4949          71 :             if (!psOptions->bExplodeCollections)
    4950             :             {
    4951          70 :                 CPLDebug("GDALVectorTranslate",
    4952             :                          "Using FID=%s and -preserve_fid",
    4953          70 :                          poSrcLayer->GetFIDColumn());
    4954          70 :                 bPreserveFID = true;
    4955             :             }
    4956             :             else
    4957             :             {
    4958           1 :                 CPLDebug("GDALVectorTranslate",
    4959             :                          "Using FID=%s and disable -preserve_fid because not "
    4960             :                          "compatible with -explodecollection",
    4961           1 :                          poSrcLayer->GetFIDColumn());
    4962           1 :                 bPreserveFID = false;
    4963             :             }
    4964             :         }
    4965             :         // Detect scenario of converting from GPX to a format like GPKG
    4966             :         // Cf https://github.com/OSGeo/gdal/issues/9225
    4967        1136 :         else if (!bPreserveFID && !m_bUnsetFid && !bAppend && poSrcDriver &&
    4968         914 :                  EQUAL(poSrcDriver->GetDescription(), "GPX") &&
    4969           5 :                  pszDestCreationOptions &&
    4970           5 :                  (strstr(pszDestCreationOptions, "='FID'") != nullptr ||
    4971        2277 :                   strstr(pszDestCreationOptions, "=\"FID\"") != nullptr) &&
    4972           5 :                  CSLFetchNameValue(m_papszLCO, "FID") == nullptr)
    4973             :         {
    4974           5 :             CPLDebug("GDALVectorTranslate",
    4975             :                      "Forcing -preserve_fid because source is GPX and layers "
    4976             :                      "have FID cross references");
    4977           5 :             bPreserveFID = true;
    4978             :         }
    4979             :         // Detect scenario of converting GML2 with fid attribute to GPKG
    4980        1241 :         else if (EQUAL(m_poDstDS->GetDriver()->GetDescription(), "GPKG") &&
    4981         105 :                  CSLFetchNameValue(m_papszLCO, "FID") == nullptr)
    4982             :         {
    4983         103 :             int nFieldIdx = poSrcLayer->GetLayerDefn()->GetFieldIndex("fid");
    4984         104 :             if (nFieldIdx >= 0 && poSrcLayer->GetLayerDefn()
    4985           1 :                                           ->GetFieldDefn(nFieldIdx)
    4986           1 :                                           ->GetType() == OFTString)
    4987             :             {
    4988           1 :                 CPLDebug("GDALVectorTranslate",
    4989             :                          "Source layer has a non-string 'fid' column. Using "
    4990             :                          "FID=gpkg_fid for GeoPackage");
    4991           1 :                 aosLCOTemp.SetNameValue("FID", "gpkg_fid");
    4992             :             }
    4993             :         }
    4994             : 
    4995             :         // For a MapInfo -> MapInfo translation, preserve the layer bounds.
    4996        1212 :         if (m_poSrcDS->GetDriver() == m_poDstDS->GetDriver() &&
    4997         448 :             EQUAL(m_poDstDS->GetDriver()->GetDescription(), "MapInfo File") &&
    4998        1663 :             (m_poOutputSRS == nullptr || !m_bTransform) &&
    4999           3 :             CSLFetchNameValue(m_papszLCO, "BOUNDS") == nullptr)
    5000             :         {
    5001           3 :             if (const char *pszBounds = poSrcLayer->GetMetadataItem("BOUNDS"))
    5002             :             {
    5003           3 :                 CPLDebug("GDALVectorTranslate", "Setting -lco BOUNDS=%s",
    5004             :                          pszBounds);
    5005           3 :                 aosLCOTemp.SetNameValue("BOUNDS", pszBounds);
    5006             :             }
    5007             :         }
    5008             : 
    5009             :         // If bAddOverwriteLCO is ON (set up when overwriting a CARTO layer),
    5010             :         // set OVERWRITE to YES so the new layer overwrites the old one
    5011        1212 :         if (bAddOverwriteLCO)
    5012             :         {
    5013           0 :             aosLCOTemp.SetNameValue("OVERWRITE", "ON");
    5014           0 :             CPLDebug("GDALVectorTranslate", "Using OVERWRITE=ON");
    5015             :         }
    5016             : 
    5017        3635 :         if (m_bNativeData &&
    5018        1211 :             poSrcLayer->GetMetadataItem("NATIVE_DATA", "NATIVE_DATA") !=
    5019          27 :                 nullptr &&
    5020          27 :             poSrcLayer->GetMetadataItem("NATIVE_MEDIA_TYPE", "NATIVE_DATA") !=
    5021          27 :                 nullptr &&
    5022          27 :             pszDestCreationOptions != nullptr &&
    5023        2450 :             strstr(pszDestCreationOptions, "NATIVE_DATA") != nullptr &&
    5024          27 :             strstr(pszDestCreationOptions, "NATIVE_MEDIA_TYPE") != nullptr)
    5025             :         {
    5026             :             aosLCOTemp.SetNameValue(
    5027             :                 "NATIVE_DATA",
    5028          27 :                 poSrcLayer->GetMetadataItem("NATIVE_DATA", "NATIVE_DATA"));
    5029             :             aosLCOTemp.SetNameValue("NATIVE_MEDIA_TYPE",
    5030             :                                     poSrcLayer->GetMetadataItem(
    5031          27 :                                         "NATIVE_MEDIA_TYPE", "NATIVE_DATA"));
    5032          27 :             CPLDebug("GDALVectorTranslate", "Transferring layer NATIVE_DATA");
    5033             :         }
    5034             : 
    5035             :         // For FileGeodatabase, automatically set
    5036             :         // CREATE_SHAPE_AREA_AND_LENGTH_FIELDS=YES creation option if the source
    5037             :         // layer has a Shape_Area/Shape_Length field
    5038        2401 :         if (pszDestCreationOptions &&
    5039        1189 :             strstr(pszDestCreationOptions,
    5040        2401 :                    "CREATE_SHAPE_AREA_AND_LENGTH_FIELDS") != nullptr &&
    5041          28 :             CSLFetchNameValue(m_papszLCO,
    5042             :                               "CREATE_SHAPE_AREA_AND_LENGTH_FIELDS") == nullptr)
    5043             :         {
    5044          28 :             const auto poSrcLayerDefn = poSrcLayer->GetLayerDefn();
    5045             :             const int nIdxShapeArea =
    5046          28 :                 poSrcLayerDefn->GetFieldIndex("Shape_Area");
    5047             :             const int nIdxShapeLength =
    5048          28 :                 poSrcLayerDefn->GetFieldIndex("Shape_Length");
    5049          30 :             if ((nIdxShapeArea >= 0 &&
    5050           2 :                  poSrcLayerDefn->GetFieldDefn(nIdxShapeArea)->GetDefault() !=
    5051           2 :                      nullptr &&
    5052           2 :                  EQUAL(
    5053             :                      poSrcLayerDefn->GetFieldDefn(nIdxShapeArea)->GetDefault(),
    5054           2 :                      "FILEGEODATABASE_SHAPE_AREA") &&
    5055           2 :                  (m_papszSelFields == nullptr ||
    5056          31 :                   CSLFindString(m_papszSelFields, "Shape_Area") >= 0)) ||
    5057           1 :                 (nIdxShapeLength >= 0 &&
    5058           1 :                  poSrcLayerDefn->GetFieldDefn(nIdxShapeLength)->GetDefault() !=
    5059           1 :                      nullptr &&
    5060           1 :                  EQUAL(poSrcLayerDefn->GetFieldDefn(nIdxShapeLength)
    5061             :                            ->GetDefault(),
    5062           1 :                        "FILEGEODATABASE_SHAPE_LENGTH") &&
    5063           1 :                  (m_papszSelFields == nullptr ||
    5064           0 :                   CSLFindString(m_papszSelFields, "Shape_Length") >= 0)))
    5065             :             {
    5066             :                 aosLCOTemp.SetNameValue("CREATE_SHAPE_AREA_AND_LENGTH_FIELDS",
    5067           3 :                                         "YES");
    5068           3 :                 CPLDebug("GDALVectorTranslate",
    5069             :                          "Setting CREATE_SHAPE_AREA_AND_LENGTH_FIELDS=YES");
    5070             :             }
    5071             :         }
    5072             : 
    5073             :         // Use case of https://github.com/OSGeo/gdal/issues/11057#issuecomment-2495479779
    5074             :         // Conversion from GPKG to OCI.
    5075             :         // OCI distinguishes between TIMESTAMP and TIMESTAMP WITH TIME ZONE
    5076             :         // GeoPackage is supposed to have DateTime in UTC, so we set
    5077             :         // TIMESTAMP_WITH_TIME_ZONE=YES
    5078         991 :         if (poSrcDriver && pszDestCreationOptions &&
    5079         968 :             strstr(pszDestCreationOptions, "TIMESTAMP_WITH_TIME_ZONE") &&
    5080           0 :             CSLFetchNameValue(m_papszLCO, "TIMESTAMP_WITH_TIME_ZONE") ==
    5081        2203 :                 nullptr &&
    5082           0 :             EQUAL(poSrcDriver->GetDescription(), "GPKG"))
    5083             :         {
    5084           0 :             aosLCOTemp.SetNameValue("TIMESTAMP_WITH_TIME_ZONE", "YES");
    5085           0 :             CPLDebug("GDALVectorTranslate",
    5086             :                      "Setting TIMESTAMP_WITH_TIME_ZONE=YES");
    5087             :         }
    5088             : 
    5089             :         OGRGeomFieldDefn oGeomFieldDefn(
    5090             :             osGeomFieldName.c_str(),
    5091        1212 :             static_cast<OGRwkbGeometryType>(eGCreateLayerType));
    5092        1212 :         oGeomFieldDefn.SetSpatialRef(poOutputSRS);
    5093        1212 :         oGeomFieldDefn.SetCoordinatePrecision(oCoordPrec);
    5094        1212 :         oGeomFieldDefn.SetNullable(bGeomFieldNullable);
    5095        1212 :         poDstLayer = m_poDstDS->CreateLayer(
    5096             :             pszNewLayerName,
    5097             :             eGCreateLayerType == wkbNone ? nullptr : &oGeomFieldDefn,
    5098        1212 :             aosLCOTemp.List());
    5099             : 
    5100        1212 :         if (poDstLayer == nullptr)
    5101             :         {
    5102           2 :             return nullptr;
    5103             :         }
    5104             : 
    5105             :         // Cf https://github.com/OSGeo/gdal/issues/6859
    5106             :         // warn if the user requests -t_srs but the driver uses a different SRS.
    5107        1246 :         if (m_poOutputSRS != nullptr && m_bTransform && !psOptions->bQuiet &&
    5108             :             // MapInfo is somewhat lossy regarding SRS, so do not warn
    5109          36 :             !EQUAL(m_poDstDS->GetDriver()->GetDescription(), "MapInfo File"))
    5110             :         {
    5111          35 :             auto poCreatedSRS = poDstLayer->GetSpatialRef();
    5112          35 :             if (poCreatedSRS != nullptr)
    5113             :             {
    5114          21 :                 const char *const apszOptions[] = {
    5115             :                     "IGNORE_DATA_AXIS_TO_SRS_AXIS_MAPPING=YES",
    5116             :                     "CRITERION=EQUIVALENT", nullptr};
    5117          21 :                 if (!poCreatedSRS->IsSame(m_poOutputSRS, apszOptions))
    5118             :                 {
    5119           1 :                     const char *pszTargetSRSName = m_poOutputSRS->GetName();
    5120           1 :                     const char *pszCreatedSRSName = poCreatedSRS->GetName();
    5121           1 :                     CPLError(CE_Warning, CPLE_AppDefined,
    5122             :                              "Target SRS %s not taken into account as target "
    5123             :                              "driver likely implements on-the-fly reprojection "
    5124             :                              "to %s",
    5125             :                              pszTargetSRSName ? pszTargetSRSName : "",
    5126             :                              pszCreatedSRSName ? pszCreatedSRSName : "");
    5127             :                 }
    5128             :             }
    5129             :         }
    5130             : 
    5131        1210 :         if (m_bCopyMD)
    5132             :         {
    5133        2412 :             const CPLStringList aosDomains(poSrcLayer->GetMetadataDomainList());
    5134        1813 :             for (const char *pszMD : aosDomains)
    5135             :             {
    5136         607 :                 if (!EQUAL(pszMD, GDAL_MDD_IMAGE_STRUCTURE) &&
    5137         607 :                     !EQUAL(pszMD, GDAL_MDD_SUBDATASETS))
    5138             :                 {
    5139         607 :                     if (CSLConstList papszMD = poSrcLayer->GetMetadata(pszMD))
    5140             :                     {
    5141             :                         // MapInfo: Avoid overwriting the "BOUNDS" metadata on the output layer
    5142             :                         // with the value from the source layer. If the value should be
    5143             :                         // propagated, it will have been done via a layer creation option already.
    5144         799 :                         if (pszMD[0] == '\0' &&
    5145         267 :                             EQUAL(m_poDstDS->GetDriverName(), "MapInfo File"))
    5146             :                         {
    5147             :                             const char *pszBounds =
    5148           8 :                                 aosLCOTemp.FetchNameValue("BOUNDS");
    5149          16 :                             CPLStringList aosTmpMD(CSLDuplicate(papszMD), true);
    5150           8 :                             aosTmpMD.SetNameValue("BOUNDS", pszBounds);
    5151           8 :                             poDstLayer->SetMetadata(aosTmpMD.List(), pszMD);
    5152             :                         }
    5153             :                         else
    5154             :                         {
    5155         524 :                             poDstLayer->SetMetadata(papszMD, pszMD);
    5156             :                         }
    5157             :                     }
    5158             :                 }
    5159             :             }
    5160             :         }
    5161             : 
    5162        1230 :         if (anRequestedGeomFields.empty() && nSrcGeomFieldCount > 1 &&
    5163          20 :             m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer))
    5164             :         {
    5165         164 :             for (int i = 0; i < nSrcGeomFieldCount; i++)
    5166             :             {
    5167         145 :                 anRequestedGeomFields.push_back(i);
    5168             :             }
    5169             :         }
    5170             : 
    5171        2450 :         if (anRequestedGeomFields.size() > 1 ||
    5172        1190 :             (anRequestedGeomFields.size() == 1 &&
    5173          50 :              m_poDstDS->TestCapability(ODsCCreateGeomFieldAfterCreateLayer)))
    5174             :         {
    5175         265 :             for (int i = 0; i < static_cast<int>(anRequestedGeomFields.size());
    5176             :                  i++)
    5177             :             {
    5178         196 :                 const int iSrcGeomField = anRequestedGeomFields[i];
    5179             :                 OGRGeomFieldDefn oGFldDefn(
    5180         392 :                     poSrcFDefn->GetGeomFieldDefn(iSrcGeomField));
    5181         196 :                 if (m_poOutputSRS != nullptr)
    5182             :                 {
    5183             :                     auto poOutputSRSClone =
    5184             :                         OGRSpatialReferenceRefCountedPtr::makeClone(
    5185          26 :                             m_poOutputSRS);
    5186          13 :                     oGFldDefn.SetSpatialRef(poOutputSRSClone.get());
    5187             :                 }
    5188         196 :                 if (bForceGType)
    5189             :                 {
    5190           1 :                     oGFldDefn.SetType(static_cast<OGRwkbGeometryType>(eGType));
    5191             :                 }
    5192             :                 else
    5193             :                 {
    5194         195 :                     eGType = oGFldDefn.GetType();
    5195         195 :                     eGType =
    5196         195 :                         ConvertType(m_eGeomTypeConversion,
    5197             :                                     static_cast<OGRwkbGeometryType>(eGType));
    5198         195 :                     eGType = ForceCoordDimension(eGType, m_nCoordDim);
    5199         195 :                     oGFldDefn.SetType(static_cast<OGRwkbGeometryType>(eGType));
    5200             :                 }
    5201         196 :                 if (m_bForceNullable)
    5202           2 :                     oGFldDefn.SetNullable(TRUE);
    5203         196 :                 poDstLayer->CreateGeomField(&oGFldDefn);
    5204             :             }
    5205             :         }
    5206             : 
    5207        1210 :         bAppend = false;
    5208             :     }
    5209             : 
    5210             :     /* -------------------------------------------------------------------- */
    5211             :     /*      Otherwise we will append to it, if append was requested.        */
    5212             :     /* -------------------------------------------------------------------- */
    5213          49 :     else if (!bAppend && !m_bNewDataSource)
    5214             :     {
    5215           0 :         if (psOptions->bInvokedFromGdalAlgorithm)
    5216             :         {
    5217           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    5218             :                      "Layer %s already exists, and --append not specified. "
    5219             :                      "Consider using --append, or --overwrite-layer.",
    5220             :                      pszNewLayerName);
    5221             :         }
    5222             :         else
    5223             :         {
    5224           0 :             CPLError(CE_Failure, CPLE_AppDefined,
    5225             :                      "Layer %s already exists, and -append not specified.\n"
    5226             :                      "        Consider using -append, or -overwrite.",
    5227             :                      pszNewLayerName);
    5228             :         }
    5229           0 :         return nullptr;
    5230             :     }
    5231             :     else
    5232             :     {
    5233          49 :         if (CSLCount(m_papszLCO) > 0)
    5234             :         {
    5235           0 :             CPLError(
    5236             :                 CE_Warning, CPLE_AppDefined,
    5237             :                 "Layer creation options ignored since an existing layer is\n"
    5238             :                 "         being appended to.");
    5239             :         }
    5240             :     }
    5241             : 
    5242             :     /* -------------------------------------------------------------------- */
    5243             :     /*      Process Layer style table                                       */
    5244             :     /* -------------------------------------------------------------------- */
    5245             : 
    5246        1259 :     poDstLayer->SetStyleTable(poSrcLayer->GetStyleTable());
    5247             :     /* -------------------------------------------------------------------- */
    5248             :     /*      Add fields.  Default to copy all field.                         */
    5249             :     /*      If only a subset of all fields requested, then output only      */
    5250             :     /*      the selected fields, and in the order that they were            */
    5251             :     /*      selected.                                                       */
    5252             :     /* -------------------------------------------------------------------- */
    5253        1259 :     const int nSrcFieldCount = poSrcFDefn->GetFieldCount();
    5254        1259 :     int iSrcFIDField = -1;
    5255             : 
    5256             :     // Initialize the index-to-index map to -1's
    5257        2518 :     std::vector<int> anMap(nSrcFieldCount, -1);
    5258             : 
    5259        2518 :     std::map<int, TargetLayerInfo::ResolvedInfo> oMapResolved;
    5260             : 
    5261             :     /* Determine if NUMERIC field width narrowing is allowed */
    5262        1259 :     auto poSrcDriver = m_poSrcDS->GetDriver();
    5263             :     const char *pszSrcWidthIncludesDecimalSeparator{
    5264        2296 :         poSrcDriver ? poSrcDriver->GetMetadataItem(
    5265        1037 :                           "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_DECIMAL_SEPARATOR")
    5266        1259 :                     : nullptr};
    5267        1259 :     const bool bSrcWidthIncludesDecimalSeparator{
    5268        1579 :         pszSrcWidthIncludesDecimalSeparator &&
    5269         320 :         EQUAL(pszSrcWidthIncludesDecimalSeparator, "YES")};
    5270             :     const char *pszDstWidthIncludesDecimalSeparator{
    5271        1259 :         m_poDstDS->GetDriver()->GetMetadataItem(
    5272        1259 :             "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_DECIMAL_SEPARATOR")};
    5273        1259 :     const bool bDstWidthIncludesDecimalSeparator{
    5274        1494 :         pszDstWidthIncludesDecimalSeparator &&
    5275         235 :         EQUAL(pszDstWidthIncludesDecimalSeparator, "YES")};
    5276             :     const char *pszSrcWidthIncludesMinusSign{
    5277        2296 :         poSrcDriver ? poSrcDriver->GetMetadataItem(
    5278        1037 :                           "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_SIGN")
    5279        1259 :                     : nullptr};
    5280        1259 :     const bool bSrcWidthIncludesMinusSign{
    5281        1579 :         pszSrcWidthIncludesMinusSign &&
    5282         320 :         EQUAL(pszSrcWidthIncludesMinusSign, "YES")};
    5283             :     const char *pszDstWidthIncludesMinusSign{
    5284        1259 :         m_poDstDS->GetDriver()->GetMetadataItem(
    5285        1259 :             "DMD_NUMERIC_FIELD_WIDTH_INCLUDES_SIGN")};
    5286        1259 :     const bool bDstWidthIncludesMinusSign{
    5287        1494 :         pszDstWidthIncludesMinusSign &&
    5288         235 :         EQUAL(pszDstWidthIncludesMinusSign, "YES")};
    5289             : 
    5290             :     // Calculate width delta
    5291        1259 :     int iChangeWidthBy{0};
    5292             : 
    5293        1259 :     if (bSrcWidthIncludesDecimalSeparator && !bDstWidthIncludesDecimalSeparator)
    5294             :     {
    5295         192 :         iChangeWidthBy--;
    5296             :     }
    5297        1067 :     else if (!bSrcWidthIncludesDecimalSeparator &&
    5298             :              bDstWidthIncludesDecimalSeparator)
    5299             :     {
    5300         107 :         iChangeWidthBy++;
    5301             :     }
    5302             : 
    5303             :     // We cannot assume there is no minus sign, we can only inflate here
    5304        1259 :     if (!bSrcWidthIncludesMinusSign && bDstWidthIncludesMinusSign)
    5305             :     {
    5306         107 :         iChangeWidthBy++;
    5307             :     }
    5308             : 
    5309        2518 :     OGRArrowArrayStream streamSrc;
    5310             : 
    5311             :     const bool bUseWriteArrowBatch =
    5312        2518 :         !EQUAL(m_poDstDS->GetDriver()->GetDescription(), "OCI") &&
    5313        1259 :         CanUseWriteArrowBatch(poSrcLayer, poDstLayer, bJustCreatedLayer,
    5314        1259 :                               psOptions, bPreserveFID, streamSrc);
    5315             : 
    5316             :     /* Caution : at the time of writing, the MapInfo driver */
    5317             :     /* returns NULL until a field has been added */
    5318        1259 :     OGRFeatureDefn *poDstFDefn = poDstLayer->GetLayerDefn();
    5319             : 
    5320        1259 :     if (bUseWriteArrowBatch)
    5321             :     {
    5322             :         // Fields created above
    5323             :     }
    5324        1085 :     else if (m_papszFieldMap && bAppend)
    5325             :     {
    5326           2 :         bool bIdentity = false;
    5327             : 
    5328           2 :         if (EQUAL(m_papszFieldMap[0], "identity"))
    5329           1 :             bIdentity = true;
    5330           1 :         else if (CSLCount(m_papszFieldMap) != nSrcFieldCount)
    5331             :         {
    5332           0 :             CPLError(
    5333             :                 CE_Failure, CPLE_AppDefined,
    5334             :                 "Field map should contain the value 'identity' or "
    5335             :                 "the same number of integer values as the source field count.");
    5336           0 :             return nullptr;
    5337             :         }
    5338             : 
    5339          32 :         for (int iField = 0; iField < nSrcFieldCount; iField++)
    5340             :         {
    5341          30 :             anMap[iField] = bIdentity ? iField : atoi(m_papszFieldMap[iField]);
    5342          30 :             if (anMap[iField] >= poDstFDefn->GetFieldCount())
    5343             :             {
    5344           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    5345           0 :                          "Invalid destination field index %d.", anMap[iField]);
    5346           0 :                 return nullptr;
    5347             :             }
    5348           2 :         }
    5349             :     }
    5350        1083 :     else if (m_bSelFieldsSet && !bAppend)
    5351             :     {
    5352          15 :         int nDstFieldCount = poDstFDefn ? poDstFDefn->GetFieldCount() : 0;
    5353          40 :         for (int iField = 0; m_papszSelFields && m_papszSelFields[iField];
    5354             :              iField++)
    5355             :         {
    5356             :             const int iSrcField =
    5357          25 :                 poSrcFDefn->GetFieldIndex(m_papszSelFields[iField]);
    5358          25 :             if (iSrcField >= 0)
    5359             :             {
    5360             :                 const OGRFieldDefn *poSrcFieldDefn =
    5361          22 :                     poSrcFDefn->GetFieldDefn(iSrcField);
    5362          22 :                 OGRFieldDefn oFieldDefn(poSrcFieldDefn);
    5363             : 
    5364          22 :                 DoFieldTypeConversion(
    5365             :                     m_poDstDS, oFieldDefn, m_papszFieldTypesToString,
    5366          22 :                     m_papszMapFieldType, m_bUnsetFieldWidth, psOptions->bQuiet,
    5367          22 :                     m_bForceNullable, m_bUnsetDefault);
    5368             : 
    5369          22 :                 if (iChangeWidthBy != 0 && oFieldDefn.GetType() == OFTReal &&
    5370           0 :                     oFieldDefn.GetWidth() != 0)
    5371             :                 {
    5372           0 :                     oFieldDefn.SetWidth(oFieldDefn.GetWidth() + iChangeWidthBy);
    5373             :                 }
    5374             : 
    5375             :                 /* The field may have been already created at layer creation */
    5376             :                 const int iDstField =
    5377             :                     poDstFDefn
    5378          22 :                         ? poDstFDefn->GetFieldIndex(oFieldDefn.GetNameRef())
    5379          22 :                         : -1;
    5380          22 :                 if (iDstField >= 0)
    5381             :                 {
    5382           0 :                     anMap[iSrcField] = iDstField;
    5383             :                 }
    5384          22 :                 else if (poDstLayer->CreateField(&oFieldDefn) == OGRERR_NONE)
    5385             :                 {
    5386             :                     /* now that we've created a field, GetLayerDefn() won't
    5387             :                      * return NULL */
    5388          22 :                     if (poDstFDefn == nullptr)
    5389           0 :                         poDstFDefn = poDstLayer->GetLayerDefn();
    5390             : 
    5391             :                     /* Sanity check : if it fails, the driver is buggy */
    5392          44 :                     if (poDstFDefn != nullptr &&
    5393          22 :                         poDstFDefn->GetFieldCount() != nDstFieldCount + 1)
    5394             :                     {
    5395           0 :                         CPLError(CE_Warning, CPLE_AppDefined,
    5396             :                                  "The output driver has claimed to have added "
    5397             :                                  "the %s field, but it did not!",
    5398             :                                  oFieldDefn.GetNameRef());
    5399             :                     }
    5400             :                     else
    5401             :                     {
    5402          22 :                         anMap[iSrcField] = nDstFieldCount;
    5403          22 :                         nDstFieldCount++;
    5404             :                     }
    5405             :                 }
    5406           0 :                 else if (!psOptions->bSkipFailures)
    5407           0 :                     return nullptr;
    5408             :             }
    5409             :         }
    5410             : 
    5411             :         /* --------------------------------------------------------------------
    5412             :          */
    5413             :         /* Use SetIgnoredFields() on source layer if available */
    5414             :         /* --------------------------------------------------------------------
    5415             :          */
    5416          15 :         if (m_bSelFieldsSet && poSrcLayer->TestCapability(OLCIgnoreFields))
    5417             :         {
    5418          10 :             SetIgnoredFields(poSrcLayer);
    5419          15 :         }
    5420             :     }
    5421        1068 :     else if (!bAppend || m_bAddMissingFields)
    5422             :     {
    5423        1033 :         int nDstFieldCount = poDstFDefn ? poDstFDefn->GetFieldCount() : 0;
    5424             : 
    5425             :         const bool caseInsensitive =
    5426        1033 :             !EQUAL(m_poDstDS->GetDriver()->GetDescription(), "GeoJSON");
    5427       15398 :         const auto formatName = [caseInsensitive](const char *name)
    5428             :         {
    5429       15398 :             if (caseInsensitive)
    5430             :             {
    5431       29940 :                 return CPLString(name).toupper();
    5432             :             }
    5433             :             else
    5434             :             {
    5435         428 :                 return CPLString(name);
    5436             :             }
    5437        1033 :         };
    5438             : 
    5439             :         /* Save the map of existing fields, before creating new ones */
    5440             :         /* This helps when converting a source layer that has duplicated field
    5441             :          * names */
    5442             :         /* which is a bad idea */
    5443        1033 :         std::map<CPLString, int> oMapPreExistingFields;
    5444        1033 :         std::unordered_set<std::string> oSetDstFieldNames;
    5445        1191 :         for (int iField = 0; iField < nDstFieldCount; iField++)
    5446             :         {
    5447             :             const char *pszFieldName =
    5448         158 :                 poDstFDefn->GetFieldDefn(iField)->GetNameRef();
    5449         316 :             CPLString osUpperFieldName(formatName(pszFieldName));
    5450         158 :             oSetDstFieldNames.insert(osUpperFieldName);
    5451         158 :             if (oMapPreExistingFields.find(osUpperFieldName) ==
    5452         316 :                 oMapPreExistingFields.end())
    5453         158 :                 oMapPreExistingFields[osUpperFieldName] = iField;
    5454             :             /*else
    5455             :                 CPLError(CE_Warning, CPLE_AppDefined,
    5456             :                          "The target layer has already a duplicated field name
    5457             :                '%s' before " "adding the fields of the source layer",
    5458             :                pszFieldName); */
    5459             :         }
    5460             : 
    5461        1033 :         const char *pszFIDColumn = poDstLayer->GetFIDColumn();
    5462             : 
    5463        1033 :         std::vector<int> anSrcFieldIndices;
    5464        1033 :         if (m_bSelFieldsSet)
    5465             :         {
    5466           2 :             for (int iField = 0; m_papszSelFields && m_papszSelFields[iField];
    5467             :                  iField++)
    5468             :             {
    5469             :                 const int iSrcField =
    5470           1 :                     poSrcFDefn->GetFieldIndex(m_papszSelFields[iField]);
    5471           1 :                 if (iSrcField >= 0)
    5472             :                 {
    5473           1 :                     anSrcFieldIndices.push_back(iSrcField);
    5474             :                 }
    5475             :             }
    5476             :         }
    5477             :         else
    5478             :         {
    5479        4907 :             for (int iField = 0; iField < nSrcFieldCount; iField++)
    5480             :             {
    5481        3875 :                 anSrcFieldIndices.push_back(iField);
    5482             :             }
    5483             :         }
    5484             : 
    5485        1033 :         std::unordered_set<std::string> oSetSrcFieldNames;
    5486        4910 :         for (int i = 0; i < poSrcFDefn->GetFieldCount(); i++)
    5487             :         {
    5488             :             oSetSrcFieldNames.insert(
    5489        3877 :                 formatName(poSrcFDefn->GetFieldDefn(i)->GetNameRef()));
    5490             :         }
    5491             : 
    5492             :         // For each source field name, memorize the last number suffix to have
    5493             :         // unique field names in the target. Let's imagine we have a source
    5494             :         // layer with the field name foo repeated twice After dealing the first
    5495             :         // field, oMapFieldNameToLastSuffix["foo"] will be 1, so when starting a
    5496             :         // unique name for the second field, we'll be able to start at 2. This
    5497             :         // avoids quadratic complexity if a big number of source field names are
    5498             :         // identical. Like in
    5499             :         // https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=37768
    5500        1033 :         std::map<std::string, int> oMapFieldNameToLastSuffix;
    5501             : 
    5502        4907 :         for (size_t i = 0; i < anSrcFieldIndices.size(); i++)
    5503             :         {
    5504        3876 :             const int iField = anSrcFieldIndices[i];
    5505             :             const OGRFieldDefn *poSrcFieldDefn =
    5506        3876 :                 poSrcFDefn->GetFieldDefn(iField);
    5507        3876 :             OGRFieldDefn oFieldDefn(poSrcFieldDefn);
    5508             : 
    5509             :             // Avoid creating a field with the same name as the FID column
    5510        7753 :             if (pszFIDColumn != nullptr &&
    5511        3877 :                 EQUAL(pszFIDColumn, oFieldDefn.GetNameRef()) &&
    5512           1 :                 (oFieldDefn.GetType() == OFTInteger ||
    5513           0 :                  oFieldDefn.GetType() == OFTInteger64))
    5514             :             {
    5515           1 :                 iSrcFIDField = iField;
    5516           1 :                 continue;
    5517             :             }
    5518             : 
    5519        3875 :             DoFieldTypeConversion(
    5520             :                 m_poDstDS, oFieldDefn, m_papszFieldTypesToString,
    5521        3875 :                 m_papszMapFieldType, m_bUnsetFieldWidth, psOptions->bQuiet,
    5522        3875 :                 m_bForceNullable, m_bUnsetDefault);
    5523             : 
    5524        4105 :             if (iChangeWidthBy != 0 && oFieldDefn.GetType() == OFTReal &&
    5525         230 :                 oFieldDefn.GetWidth() != 0)
    5526             :             {
    5527         177 :                 oFieldDefn.SetWidth(oFieldDefn.GetWidth() + iChangeWidthBy);
    5528             :             }
    5529             : 
    5530             :             /* The field may have been already created at layer creation */
    5531             :             {
    5532             :                 const auto oIter = oMapPreExistingFields.find(
    5533        3875 :                     formatName(oFieldDefn.GetNameRef()));
    5534        3875 :                 if (oIter != oMapPreExistingFields.end())
    5535             :                 {
    5536         120 :                     anMap[iField] = oIter->second;
    5537         120 :                     continue;
    5538             :                 }
    5539             :             }
    5540             : 
    5541        3755 :             bool bHasRenamed = false;
    5542             :             /* In case the field name already exists in the target layer, */
    5543             :             /* build a unique field name */
    5544        3755 :             if (oSetDstFieldNames.find(formatName(oFieldDefn.GetNameRef())) !=
    5545        7510 :                 oSetDstFieldNames.end())
    5546             :             {
    5547             :                 const CPLString osTmpNameRaddixUC(
    5548           4 :                     formatName(oFieldDefn.GetNameRef()));
    5549           2 :                 int nTry = 1;
    5550             :                 const auto oIter =
    5551           2 :                     oMapFieldNameToLastSuffix.find(osTmpNameRaddixUC);
    5552           2 :                 if (oIter != oMapFieldNameToLastSuffix.end())
    5553           1 :                     nTry = oIter->second;
    5554           2 :                 CPLString osTmpNameUC = osTmpNameRaddixUC;
    5555           2 :                 osTmpNameUC.reserve(osTmpNameUC.size() + 10);
    5556             :                 while (true)
    5557             :                 {
    5558           3 :                     ++nTry;
    5559             :                     char szTry[32];
    5560           3 :                     snprintf(szTry, sizeof(szTry), "%d", nTry);
    5561             :                     osTmpNameUC.replace(osTmpNameRaddixUC.size(),
    5562           3 :                                         std::string::npos, szTry);
    5563             : 
    5564             :                     /* Check that the proposed name doesn't exist either in the
    5565             :                      * already */
    5566             :                     /* created fields or in the source fields */
    5567           3 :                     if (oSetDstFieldNames.find(osTmpNameUC) ==
    5568           9 :                             oSetDstFieldNames.end() &&
    5569           3 :                         oSetSrcFieldNames.find(osTmpNameUC) ==
    5570           6 :                             oSetSrcFieldNames.end())
    5571             :                     {
    5572           2 :                         bHasRenamed = true;
    5573           2 :                         oFieldDefn.SetName(
    5574           4 :                             (CPLString(oFieldDefn.GetNameRef()) + szTry)
    5575             :                                 .c_str());
    5576           2 :                         oMapFieldNameToLastSuffix[osTmpNameRaddixUC] = nTry;
    5577           2 :                         break;
    5578             :                     }
    5579           1 :                 }
    5580             :             }
    5581             : 
    5582             :             // Create field domain in output dataset if not already existing.
    5583        3755 :             const std::string osDomainName(oFieldDefn.GetDomainName());
    5584        3755 :             if (!osDomainName.empty())
    5585             :             {
    5586          26 :                 if (m_poDstDS->TestCapability(ODsCAddFieldDomain) &&
    5587          13 :                     m_poDstDS->GetFieldDomain(osDomainName) == nullptr)
    5588             :                 {
    5589             :                     const auto poSrcDomain =
    5590          13 :                         m_poSrcDS->GetFieldDomain(osDomainName);
    5591          13 :                     if (poSrcDomain)
    5592             :                     {
    5593          22 :                         std::string failureReason;
    5594          11 :                         if (!m_poDstDS->AddFieldDomain(
    5595          22 :                                 std::unique_ptr<OGRFieldDomain>(
    5596          11 :                                     poSrcDomain->Clone()),
    5597          11 :                                 failureReason))
    5598             :                         {
    5599           0 :                             oFieldDefn.SetDomainName(std::string());
    5600           0 :                             CPLDebug("OGR2OGR", "Cannot create domain %s: %s",
    5601             :                                      osDomainName.c_str(),
    5602             :                                      failureReason.c_str());
    5603             :                         }
    5604             :                     }
    5605             :                     else
    5606             :                     {
    5607           2 :                         CPLDebug("OGR2OGR",
    5608             :                                  "Cannot find domain %s in source dataset",
    5609             :                                  osDomainName.c_str());
    5610             :                     }
    5611             :                 }
    5612          13 :                 if (m_poDstDS->GetFieldDomain(osDomainName) == nullptr)
    5613             :                 {
    5614           2 :                     oFieldDefn.SetDomainName(std::string());
    5615             :                 }
    5616             :             }
    5617             : 
    5618        3755 :             if (poDstLayer->CreateField(&oFieldDefn) == OGRERR_NONE)
    5619             :             {
    5620             :                 /* now that we've created a field, GetLayerDefn() won't return
    5621             :                  * NULL */
    5622        3731 :                 if (poDstFDefn == nullptr)
    5623           0 :                     poDstFDefn = poDstLayer->GetLayerDefn();
    5624             : 
    5625             :                 /* Sanity check : if it fails, the driver is buggy */
    5626        7462 :                 if (poDstFDefn != nullptr &&
    5627        3731 :                     poDstFDefn->GetFieldCount() != nDstFieldCount + 1)
    5628             :                 {
    5629           0 :                     CPLError(CE_Warning, CPLE_AppDefined,
    5630             :                              "The output driver has claimed to have added the "
    5631             :                              "%s field, but it did not!",
    5632             :                              oFieldDefn.GetNameRef());
    5633             :                 }
    5634             :                 else
    5635             :                 {
    5636        3731 :                     if (poDstFDefn != nullptr)
    5637             :                     {
    5638             :                         const char *pszNewFieldName =
    5639        3731 :                             poDstFDefn->GetFieldDefn(nDstFieldCount)
    5640        3731 :                                 ->GetNameRef();
    5641        3731 :                         if (bHasRenamed)
    5642             :                         {
    5643           2 :                             CPLError(CE_Warning, CPLE_AppDefined,
    5644             :                                      "Field '%s' already exists. Renaming it "
    5645             :                                      "as '%s'",
    5646             :                                      poSrcFieldDefn->GetNameRef(),
    5647             :                                      pszNewFieldName);
    5648             :                         }
    5649        3731 :                         oSetDstFieldNames.insert(formatName(pszNewFieldName));
    5650             :                     }
    5651             : 
    5652        3731 :                     anMap[iField] = nDstFieldCount;
    5653        3731 :                     nDstFieldCount++;
    5654             :                 }
    5655             :             }
    5656          24 :             else if (!psOptions->bSkipFailures)
    5657           2 :                 return nullptr;
    5658             : 
    5659        3753 :             if (m_bResolveDomains && !osDomainName.empty())
    5660             :             {
    5661             :                 const auto poSrcDomain =
    5662           3 :                     m_poSrcDS->GetFieldDomain(osDomainName);
    5663           3 :                 if (poSrcDomain && poSrcDomain->GetDomainType() == OFDT_CODED)
    5664             :                 {
    5665             :                     OGRFieldDefn oResolvedField(
    5666             :                         CPLSPrintf("%s_resolved", oFieldDefn.GetNameRef()),
    5667           1 :                         OFTString);
    5668           1 :                     if (poDstLayer->CreateField(&oResolvedField) == OGRERR_NONE)
    5669             :                     {
    5670             :                         TargetLayerInfo::ResolvedInfo resolvedInfo;
    5671           1 :                         resolvedInfo.nSrcField = iField;
    5672           1 :                         resolvedInfo.poDomain = poSrcDomain;
    5673           1 :                         oMapResolved[nDstFieldCount] = resolvedInfo;
    5674           1 :                         nDstFieldCount++;
    5675             :                     }
    5676           0 :                     else if (!psOptions->bSkipFailures)
    5677           0 :                         return nullptr;
    5678             :                 }
    5679             :             }
    5680        1031 :         }
    5681             :     }
    5682             :     else
    5683             :     {
    5684             :         /* For an existing layer, build the map by fetching the index in the
    5685             :          * destination */
    5686             :         /* layer for each source field */
    5687          35 :         if (poDstFDefn == nullptr)
    5688             :         {
    5689           0 :             CPLError(CE_Failure, CPLE_AppDefined, "poDstFDefn == NULL.");
    5690           0 :             return nullptr;
    5691             :         }
    5692             : 
    5693         118 :         for (int iField = 0; iField < nSrcFieldCount; iField++)
    5694             :         {
    5695             :             const OGRFieldDefn *poSrcFieldDefn =
    5696          83 :                 poSrcFDefn->GetFieldDefn(iField);
    5697          83 :             const int iDstField = poDstLayer->FindFieldIndex(
    5698          83 :                 poSrcFieldDefn->GetNameRef(), m_bExactFieldNameMatch);
    5699          83 :             if (iDstField >= 0)
    5700          79 :                 anMap[iField] = iDstField;
    5701             :             else
    5702             :             {
    5703           4 :                 if (m_bExactFieldNameMatch)
    5704             :                 {
    5705           4 :                     const int iDstFieldCandidate = poDstLayer->FindFieldIndex(
    5706           4 :                         poSrcFieldDefn->GetNameRef(), false);
    5707           4 :                     if (iDstFieldCandidate >= 0)
    5708             :                     {
    5709           1 :                         CPLError(CE_Warning, CPLE_AppDefined,
    5710             :                                  "Source field '%s' could have been identified "
    5711             :                                  "with existing field '%s' of destination "
    5712             :                                  "layer '%s' if the -relaxedFieldNameMatch "
    5713             :                                  "option had been specified.",
    5714             :                                  poSrcFieldDefn->GetNameRef(),
    5715           1 :                                  poDstLayer->GetLayerDefn()
    5716           1 :                                      ->GetFieldDefn(iDstFieldCandidate)
    5717             :                                      ->GetNameRef(),
    5718           1 :                                  poDstLayer->GetName());
    5719             :                     }
    5720             :                 }
    5721             : 
    5722           4 :                 CPLDebug(
    5723             :                     "GDALVectorTranslate",
    5724             :                     "Skipping field '%s' not found in destination layer '%s'.",
    5725           4 :                     poSrcFieldDefn->GetNameRef(), poDstLayer->GetName());
    5726             :             }
    5727             :         }
    5728             :     }
    5729             : 
    5730          16 :     if (bOverwriteActuallyDone && !bAddOverwriteLCO &&
    5731          16 :         EQUAL(m_poDstDS->GetDriver()->GetDescription(), "PostgreSQL") &&
    5732        1279 :         !psOptions->nLayerTransaction && psOptions->nGroupTransactions > 0 &&
    5733           6 :         CPLTestBool(CPLGetConfigOption("PG_COMMIT_WHEN_OVERWRITING", "YES")))
    5734             :     {
    5735           6 :         CPLDebug("GDALVectorTranslate",
    5736             :                  "Forcing transaction commit as table overwriting occurred");
    5737             :         // Commit when overwriting as this consumes a lot of PG resources
    5738             :         // and could result in """out of shared memory.
    5739             :         // You might need to increase max_locks_per_transaction."""" errors
    5740          12 :         if (m_poDstDS->CommitTransaction() == OGRERR_FAILURE ||
    5741           6 :             m_poDstDS->StartTransaction(psOptions->bForceTransaction) ==
    5742             :                 OGRERR_FAILURE)
    5743             :         {
    5744           0 :             return nullptr;
    5745             :         }
    5746           6 :         nTotalEventsDone = 0;
    5747             :     }
    5748             : 
    5749        2514 :     auto psInfo = std::make_unique<TargetLayerInfo>();
    5750        1257 :     psInfo->m_bUseWriteArrowBatch = bUseWriteArrowBatch;
    5751        1257 :     psInfo->m_nFeaturesRead = 0;
    5752        1257 :     psInfo->m_bPerFeatureCT = false;
    5753        1257 :     psInfo->m_poSrcLayer = poSrcLayer;
    5754        1257 :     psInfo->m_poDstLayer = poDstLayer;
    5755        1257 :     psInfo->m_aoReprojectionInfo.resize(
    5756        1257 :         poDstLayer->GetLayerDefn()->GetGeomFieldCount());
    5757        1257 :     psInfo->m_anMap = std::move(anMap);
    5758        1257 :     psInfo->m_iSrcZField = iSrcZField;
    5759        1257 :     psInfo->m_iSrcFIDField = iSrcFIDField;
    5760        1257 :     if (anRequestedGeomFields.size() == 1)
    5761          50 :         psInfo->m_iRequestedSrcGeomField = anRequestedGeomFields[0];
    5762             :     else
    5763        1207 :         psInfo->m_iRequestedSrcGeomField = -1;
    5764        1257 :     psInfo->m_bPreserveFID = bPreserveFID;
    5765        1257 :     psInfo->m_pszCTPipeline = m_pszCTPipeline;
    5766        1257 :     psInfo->m_aosCTOptions = m_aosCTOptions;
    5767        1257 :     psInfo->m_oMapResolved = std::move(oMapResolved);
    5768        1258 :     for (const auto &kv : psInfo->m_oMapResolved)
    5769             :     {
    5770           1 :         const auto poDomain = kv.second.poDomain;
    5771             :         const auto poCodedDomain =
    5772           1 :             cpl::down_cast<const OGRCodedFieldDomain *>(poDomain);
    5773           1 :         const auto enumeration = poCodedDomain->GetEnumeration();
    5774           2 :         std::map<std::string, std::string> oMapCodeValue;
    5775           4 :         for (int i = 0; enumeration[i].pszCode != nullptr; ++i)
    5776             :         {
    5777           6 :             oMapCodeValue[enumeration[i].pszCode] =
    5778           6 :                 enumeration[i].pszValue ? enumeration[i].pszValue : "";
    5779             :         }
    5780           1 :         psInfo->m_oMapDomainToKV[poDomain] = std::move(oMapCodeValue);
    5781             :     }
    5782             : 
    5783             :     // Detect if we can directly pass the source feature to the CreateFeature()
    5784             :     // method of the target layer, without doing any copying of field content.
    5785        1257 :     psInfo->m_bCanAvoidSetFrom = false;
    5786        1257 :     if (!m_bExplodeCollections && iSrcZField == -1 && poDstFDefn != nullptr)
    5787             :     {
    5788        1242 :         psInfo->m_bCanAvoidSetFrom = true;
    5789        1242 :         const int nDstGeomFieldCount = poDstFDefn->GetGeomFieldCount();
    5790        1242 :         if (nSrcFieldCount != poDstFDefn->GetFieldCount() ||
    5791             :             nSrcGeomFieldCount != nDstGeomFieldCount)
    5792             :         {
    5793         170 :             psInfo->m_bCanAvoidSetFrom = false;
    5794             :         }
    5795             :         else
    5796             :         {
    5797        4581 :             for (int i = 0; i < nSrcFieldCount; ++i)
    5798             :             {
    5799        3558 :                 auto poSrcFieldDefn = poSrcFDefn->GetFieldDefn(i);
    5800        3558 :                 auto poDstFieldDefn = poDstFDefn->GetFieldDefn(i);
    5801        7106 :                 if (poSrcFieldDefn->GetType() != poDstFieldDefn->GetType() ||
    5802        3548 :                     psInfo->m_anMap[i] != i)
    5803             :                 {
    5804          49 :                     psInfo->m_bCanAvoidSetFrom = false;
    5805          49 :                     break;
    5806             :                 }
    5807             :             }
    5808        1072 :             if (!psInfo->m_bCanAvoidSetFrom && nSrcGeomFieldCount > 1)
    5809             :             {
    5810           4 :                 for (int i = 0; i < nSrcGeomFieldCount; ++i)
    5811             :                 {
    5812           3 :                     auto poSrcGeomFieldDefn = poSrcFDefn->GetGeomFieldDefn(i);
    5813           3 :                     auto poDstGeomFieldDefn = poDstFDefn->GetGeomFieldDefn(i);
    5814           3 :                     if (!EQUAL(poSrcGeomFieldDefn->GetNameRef(),
    5815             :                                poDstGeomFieldDefn->GetNameRef()))
    5816             :                     {
    5817           1 :                         psInfo->m_bCanAvoidSetFrom = false;
    5818           1 :                         break;
    5819             :                     }
    5820             :                 }
    5821             :             }
    5822             :         }
    5823             :     }
    5824             : 
    5825        2514 :     psInfo->m_pszSpatSRSDef = psOptions->osSpatSRSDef.empty()
    5826        1257 :                                   ? nullptr
    5827           4 :                                   : psOptions->osSpatSRSDef.c_str();
    5828        1257 :     psInfo->m_hSpatialFilter =
    5829        1257 :         OGRGeometry::ToHandle(psOptions->poSpatialFilter.get());
    5830        1257 :     psInfo->m_pszGeomField =
    5831        1257 :         psOptions->bGeomFieldSet ? psOptions->osGeomField.c_str() : nullptr;
    5832             : 
    5833        1257 :     if (psOptions->nTZOffsetInSec != TZ_OFFSET_INVALID && poDstFDefn)
    5834             :     {
    5835          15 :         for (int i = 0; i < poDstFDefn->GetFieldCount(); ++i)
    5836             :         {
    5837          10 :             if (poDstFDefn->GetFieldDefn(i)->GetType() == OFTDateTime)
    5838             :             {
    5839           5 :                 psInfo->m_anDateTimeFieldIdx.push_back(i);
    5840             :             }
    5841             :         }
    5842             :     }
    5843             : 
    5844        1257 :     psInfo->m_bSupportCurves =
    5845        1257 :         CPL_TO_BOOL(poDstLayer->TestCapability(OLCCurveGeometries));
    5846        1257 :     psInfo->m_bSupportZ =
    5847        1257 :         CPL_TO_BOOL(poDstLayer->TestCapability(OLCZGeometries));
    5848        1257 :     psInfo->m_bSupportM =
    5849        1257 :         CPL_TO_BOOL(poDstLayer->TestCapability(OLCMeasuredGeometries));
    5850             : 
    5851        1257 :     psInfo->m_sArrowArrayStream = std::move(streamSrc);
    5852             : 
    5853        1257 :     return psInfo;
    5854             : }
    5855             : 
    5856             : /************************************************************************/
    5857             : /*                              SetupCT()                               */
    5858             : /************************************************************************/
    5859             : 
    5860             : static bool
    5861        1009 : SetupCT(TargetLayerInfo *psInfo, OGRLayer *poSrcLayer, bool bTransform,
    5862             :         bool bWrapDateline, const CPLString &osDateLineOffset,
    5863             :         const OGRSpatialReference *poUserSourceSRS, OGRFeature *poFeature,
    5864             :         const OGRSpatialReference *poOutputSRS,
    5865             :         OGRCoordinateTransformation *poGCPCoordTrans, bool bVerboseError)
    5866             : {
    5867        1009 :     OGRLayer *poDstLayer = psInfo->m_poDstLayer;
    5868             :     const int nDstGeomFieldCount =
    5869        1009 :         poDstLayer->GetLayerDefn()->GetGeomFieldCount();
    5870        1949 :     for (int iGeom = 0; iGeom < nDstGeomFieldCount; iGeom++)
    5871             :     {
    5872             :         /* --------------------------------------------------------------------
    5873             :          */
    5874             :         /*      Setup coordinate transformation if we need it. */
    5875             :         /* --------------------------------------------------------------------
    5876             :          */
    5877         941 :         const OGRSpatialReference *poSourceSRS = nullptr;
    5878         941 :         OGRCoordinateTransformation *poCT = nullptr;
    5879         941 :         char **papszTransformOptions = nullptr;
    5880             : 
    5881             :         int iSrcGeomField;
    5882             :         auto poDstGeomFieldDefn =
    5883         941 :             poDstLayer->GetLayerDefn()->GetGeomFieldDefn(iGeom);
    5884         941 :         if (psInfo->m_iRequestedSrcGeomField >= 0)
    5885             :         {
    5886          39 :             iSrcGeomField = psInfo->m_iRequestedSrcGeomField;
    5887             :         }
    5888             :         else
    5889             :         {
    5890        1804 :             iSrcGeomField = poSrcLayer->GetLayerDefn()->GetGeomFieldIndex(
    5891         902 :                 poDstGeomFieldDefn->GetNameRef());
    5892         902 :             if (iSrcGeomField < 0)
    5893             :             {
    5894         390 :                 if (nDstGeomFieldCount == 1 &&
    5895         195 :                     poSrcLayer->GetLayerDefn()->GetGeomFieldCount() > 0)
    5896             :                 {
    5897         187 :                     iSrcGeomField = 0;
    5898             :                 }
    5899             :                 else
    5900             :                 {
    5901           8 :                     continue;
    5902             :                 }
    5903             :             }
    5904             :         }
    5905             : 
    5906         933 :         if (psInfo->m_nFeaturesRead == 0)
    5907             :         {
    5908         932 :             poSourceSRS = poUserSourceSRS;
    5909         932 :             if (poSourceSRS == nullptr)
    5910             :             {
    5911         924 :                 if (iSrcGeomField > 0)
    5912         126 :                     poSourceSRS = poSrcLayer->GetLayerDefn()
    5913         126 :                                       ->GetGeomFieldDefn(iSrcGeomField)
    5914         126 :                                       ->GetSpatialRef();
    5915             :                 else
    5916         798 :                     poSourceSRS = poSrcLayer->GetSpatialRef();
    5917             :             }
    5918             :         }
    5919         933 :         if (poSourceSRS == nullptr)
    5920             :         {
    5921         379 :             if (poFeature == nullptr)
    5922             :             {
    5923           1 :                 if (bVerboseError)
    5924             :                 {
    5925           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    5926             :                              "Non-null feature expected to set transformation");
    5927             :                 }
    5928           1 :                 return false;
    5929             :             }
    5930             :             OGRGeometry *poSrcGeometry =
    5931         378 :                 poFeature->GetGeomFieldRef(iSrcGeomField);
    5932         378 :             if (poSrcGeometry)
    5933         305 :                 poSourceSRS = poSrcGeometry->getSpatialReference();
    5934         378 :             psInfo->m_bPerFeatureCT = (bTransform || bWrapDateline);
    5935             :         }
    5936             : 
    5937         932 :         if (bTransform)
    5938             :         {
    5939          39 :             if (poSourceSRS == nullptr && psInfo->m_pszCTPipeline == nullptr)
    5940             :             {
    5941           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    5942             :                          "Can't transform coordinates, source layer has no\n"
    5943             :                          "coordinate system.  Use -s_srs to set one.");
    5944             : 
    5945           0 :                 return false;
    5946             :             }
    5947             : 
    5948          39 :             if (psInfo->m_pszCTPipeline == nullptr)
    5949             :             {
    5950          35 :                 CPLAssert(nullptr != poSourceSRS);
    5951          35 :                 CPLAssert(nullptr != poOutputSRS);
    5952             :             }
    5953             : 
    5954          39 :             if (psInfo->m_nFeaturesRead == 0 && !psInfo->m_bPerFeatureCT)
    5955             :             {
    5956             :                 const auto &supportedSRSList =
    5957          37 :                     poSrcLayer->GetSupportedSRSList(iGeom);
    5958          37 :                 if (!supportedSRSList.empty())
    5959             :                 {
    5960           1 :                     const char *const apszOptions[] = {
    5961             :                         "IGNORE_DATA_AXIS_TO_SRS_AXIS_MAPPING=YES", nullptr};
    5962           1 :                     for (const auto &poSRS : supportedSRSList)
    5963             :                     {
    5964           1 :                         if (poSRS->IsSame(poOutputSRS, apszOptions))
    5965             :                         {
    5966           2 :                             OGRSpatialReference oSourceSRSBackup;
    5967           1 :                             if (poSourceSRS)
    5968           1 :                                 oSourceSRSBackup = *poSourceSRS;
    5969           1 :                             if (poSrcLayer->SetActiveSRS(iGeom, poSRS.get()) ==
    5970             :                                 OGRERR_NONE)
    5971             :                             {
    5972           1 :                                 CPLDebug("ogr2ogr",
    5973             :                                          "Switching layer active SRS to %s",
    5974             :                                          poSRS->GetName());
    5975             : 
    5976           1 :                                 if (psInfo->m_hSpatialFilter != nullptr &&
    5977           0 :                                     ((psInfo->m_iRequestedSrcGeomField < 0 &&
    5978           0 :                                       iGeom == 0) ||
    5979             :                                      (iGeom ==
    5980           0 :                                       psInfo->m_iRequestedSrcGeomField)))
    5981             :                                 {
    5982           0 :                                     OGRSpatialReference oSpatSRS;
    5983           0 :                                     oSpatSRS.SetAxisMappingStrategy(
    5984             :                                         OAMS_TRADITIONAL_GIS_ORDER);
    5985           0 :                                     if (psInfo->m_pszSpatSRSDef)
    5986           0 :                                         oSpatSRS.SetFromUserInput(
    5987             :                                             psInfo->m_pszSpatSRSDef);
    5988           0 :                                     ApplySpatialFilter(
    5989             :                                         poSrcLayer,
    5990             :                                         OGRGeometry::FromHandle(
    5991             :                                             psInfo->m_hSpatialFilter),
    5992           0 :                                         !oSpatSRS.IsEmpty() ? &oSpatSRS
    5993           0 :                                         : !oSourceSRSBackup.IsEmpty()
    5994             :                                             ? &oSourceSRSBackup
    5995             :                                             : nullptr,
    5996             :                                         psInfo->m_pszGeomField, poOutputSRS);
    5997             :                                 }
    5998             : 
    5999           1 :                                 bTransform = false;
    6000             :                             }
    6001           1 :                             break;
    6002             :                         }
    6003             :                     }
    6004             :                 }
    6005             :             }
    6006             : 
    6007          39 :             if (!bTransform)
    6008             :             {
    6009             :                 // do nothing
    6010             :             }
    6011          39 :             else if (psInfo->m_aoReprojectionInfo[iGeom].m_poCT != nullptr &&
    6012           1 :                      psInfo->m_aoReprojectionInfo[iGeom]
    6013           1 :                              .m_poCT->GetSourceCS() == poSourceSRS)
    6014             :             {
    6015           0 :                 poCT = psInfo->m_aoReprojectionInfo[iGeom].m_poCT.get();
    6016             :             }
    6017             :             else
    6018             :             {
    6019          38 :                 OGRCoordinateTransformationOptions options;
    6020          38 :                 if (psInfo->m_pszCTPipeline)
    6021             :                 {
    6022           4 :                     options.SetCoordinateOperation(psInfo->m_pszCTPipeline,
    6023             :                                                    false);
    6024             :                 }
    6025             : 
    6026             :                 bool bWarnAboutDifferentCoordinateOperations =
    6027          75 :                     poGCPCoordTrans == nullptr &&
    6028          37 :                     !(poSourceSRS && poSourceSRS->IsGeocentric());
    6029             : 
    6030           0 :                 for (const auto &[key, value] :
    6031          38 :                      cpl::IterateNameValue(psInfo->m_aosCTOptions))
    6032             :                 {
    6033           0 :                     if (EQUAL(key, "ALLOW_BALLPARK"))
    6034             :                     {
    6035           0 :                         options.SetBallparkAllowed(CPLTestBool(value));
    6036             :                     }
    6037           0 :                     else if (EQUAL(key, "ONLY_BEST"))
    6038             :                     {
    6039           0 :                         options.SetOnlyBest(CPLTestBool(value));
    6040             :                     }
    6041           0 :                     else if (EQUAL(key, "WARN_ABOUT_DIFFERENT_COORD_OP"))
    6042             :                     {
    6043           0 :                         if (!CPLTestBool(value))
    6044           0 :                             bWarnAboutDifferentCoordinateOperations = false;
    6045             :                     }
    6046             :                     else
    6047             :                     {
    6048           0 :                         CPLError(CE_Warning, CPLE_AppDefined,
    6049             :                                  "Unknown coordinate transform option: %s",
    6050             :                                  key);
    6051             :                     }
    6052             :                 }
    6053             : 
    6054             :                 auto poNewCT = std::unique_ptr<OGRCoordinateTransformation>(
    6055             :                     OGRCreateCoordinateTransformation(poSourceSRS, poOutputSRS,
    6056          38 :                                                       options));
    6057          38 :                 if (poNewCT == nullptr)
    6058             :                 {
    6059           0 :                     char *pszWKT = nullptr;
    6060             : 
    6061           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    6062             :                              "Failed to create coordinate transformation "
    6063             :                              "between the\n"
    6064             :                              "following coordinate systems.  This may be "
    6065             :                              "because they\n"
    6066             :                              "are not transformable.");
    6067             : 
    6068           0 :                     if (poSourceSRS)
    6069             :                     {
    6070           0 :                         poSourceSRS->exportToPrettyWkt(&pszWKT, FALSE);
    6071           0 :                         CPLError(CE_Failure, CPLE_AppDefined, "Source:\n%s",
    6072             :                                  pszWKT);
    6073           0 :                         CPLFree(pszWKT);
    6074             :                     }
    6075             : 
    6076           0 :                     if (poOutputSRS)
    6077             :                     {
    6078           0 :                         poOutputSRS->exportToPrettyWkt(&pszWKT, FALSE);
    6079           0 :                         CPLError(CE_Failure, CPLE_AppDefined, "Target:\n%s",
    6080             :                                  pszWKT);
    6081           0 :                         CPLFree(pszWKT);
    6082             :                     }
    6083             : 
    6084           0 :                     return false;
    6085             :                 }
    6086          38 :                 if (poGCPCoordTrans)
    6087             :                 {
    6088           2 :                     poNewCT = std::make_unique<CompositeCT>(poGCPCoordTrans,
    6089           2 :                                                             std::move(poNewCT));
    6090             :                 }
    6091             :                 else
    6092             :                 {
    6093          37 :                     psInfo->m_aoReprojectionInfo[iGeom]
    6094          37 :                         .m_bWarnAboutDifferentCoordinateOperations =
    6095             :                         bWarnAboutDifferentCoordinateOperations;
    6096             :                 }
    6097          38 :                 psInfo->m_aoReprojectionInfo[iGeom].m_poCT = std::move(poNewCT);
    6098          38 :                 poCT = psInfo->m_aoReprojectionInfo[iGeom].m_poCT.get();
    6099          38 :                 psInfo->m_aoReprojectionInfo[iGeom].m_bCanInvalidateValidity =
    6100          75 :                     !(poGCPCoordTrans == nullptr && poSourceSRS &&
    6101          37 :                       poSourceSRS->IsGeographic() && poOutputSRS &&
    6102           4 :                       poOutputSRS->IsGeographic());
    6103             :             }
    6104             :         }
    6105             :         else
    6106             :         {
    6107         893 :             const char *const apszOptions[] = {
    6108             :                 "IGNORE_DATA_AXIS_TO_SRS_AXIS_MAPPING=YES",
    6109             :                 "CRITERION=EQUIVALENT", nullptr};
    6110             :             auto poDstGeomFieldDefnSpatialRef =
    6111         893 :                 poDstGeomFieldDefn->GetSpatialRef();
    6112         517 :             if (poSourceSRS && poDstGeomFieldDefnSpatialRef &&
    6113         426 :                 poSourceSRS->GetDataAxisToSRSAxisMapping() !=
    6114             :                     poDstGeomFieldDefnSpatialRef
    6115        1410 :                         ->GetDataAxisToSRSAxisMapping() &&
    6116           3 :                 poSourceSRS->IsSame(poDstGeomFieldDefnSpatialRef, apszOptions))
    6117             :             {
    6118           0 :                 psInfo->m_aoReprojectionInfo[iGeom].m_poCT =
    6119           0 :                     std::make_unique<CompositeCT>(
    6120           0 :                         std::make_unique<AxisMappingCoordinateTransformation>(
    6121             :                             poSourceSRS->GetDataAxisToSRSAxisMapping(),
    6122             :                             poDstGeomFieldDefnSpatialRef
    6123             :                                 ->GetDataAxisToSRSAxisMapping()),
    6124           0 :                         poGCPCoordTrans);
    6125           0 :                 poCT = psInfo->m_aoReprojectionInfo[iGeom].m_poCT.get();
    6126             :             }
    6127         893 :             else if (poGCPCoordTrans)
    6128             :             {
    6129           5 :                 psInfo->m_aoReprojectionInfo[iGeom].m_poCT =
    6130          10 :                     std::make_unique<CompositeCT>(poGCPCoordTrans, nullptr);
    6131           5 :                 poCT = psInfo->m_aoReprojectionInfo[iGeom].m_poCT.get();
    6132             :             }
    6133             :         }
    6134             : 
    6135         932 :         if (bWrapDateline)
    6136             :         {
    6137           2 :             if (bTransform && poCT != nullptr && poOutputSRS != nullptr &&
    6138           8 :                 poOutputSRS->IsGeographic() &&
    6139           1 :                 !poOutputSRS->IsDerivedGeographic())
    6140             :             {
    6141             :                 papszTransformOptions =
    6142           1 :                     CSLAddString(papszTransformOptions, "WRAPDATELINE=YES");
    6143           1 :                 if (!osDateLineOffset.empty())
    6144             :                 {
    6145           1 :                     CPLString soOffset("DATELINEOFFSET=");
    6146           1 :                     soOffset += osDateLineOffset;
    6147             :                     papszTransformOptions =
    6148           1 :                         CSLAddString(papszTransformOptions, soOffset);
    6149             :                 }
    6150             :             }
    6151           8 :             else if (poSourceSRS != nullptr && poSourceSRS->IsGeographic() &&
    6152           4 :                      !poSourceSRS->IsDerivedGeographic())
    6153             :             {
    6154             :                 papszTransformOptions =
    6155           4 :                     CSLAddString(papszTransformOptions, "WRAPDATELINE=YES");
    6156           4 :                 if (!osDateLineOffset.empty())
    6157             :                 {
    6158           4 :                     CPLString soOffset("DATELINEOFFSET=");
    6159           4 :                     soOffset += osDateLineOffset;
    6160             :                     papszTransformOptions =
    6161           4 :                         CSLAddString(papszTransformOptions, soOffset);
    6162             :                 }
    6163             :             }
    6164             :             else
    6165             :             {
    6166           0 :                 CPLErrorOnce(CE_Failure, CPLE_IllegalArg,
    6167             :                              "-wrapdateline option only works when "
    6168             :                              "reprojecting to a geographic SRS");
    6169             :             }
    6170             : 
    6171           5 :             psInfo->m_aoReprojectionInfo[iGeom].m_aosTransformOptions.Assign(
    6172           5 :                 papszTransformOptions);
    6173             :         }
    6174             :     }
    6175        1008 :     return true;
    6176             : }
    6177             : 
    6178             : /************************************************************************/
    6179             : /*                  LayerTranslator::TranslateArrow()                   */
    6180             : /************************************************************************/
    6181             : 
    6182         174 : bool LayerTranslator::TranslateArrow(
    6183             :     TargetLayerInfo *psInfo, GIntBig nCountLayerFeatures,
    6184             :     GIntBig *pnReadFeatureCount, GDALProgressFunc pfnProgress,
    6185             :     void *pProgressArg, const GDALVectorTranslateOptions *psOptions)
    6186             : {
    6187             :     struct ArrowSchema schema;
    6188         348 :     CPLStringList aosOptionsWriteArrowBatch;
    6189         174 :     if (psInfo->m_bPreserveFID)
    6190             :     {
    6191             :         aosOptionsWriteArrowBatch.SetNameValue(
    6192          35 :             "FID", psInfo->m_poSrcLayer->GetFIDColumn());
    6193             :         aosOptionsWriteArrowBatch.SetNameValue("IF_FID_NOT_PRESERVED",
    6194          35 :                                                "WARNING");
    6195             :     }
    6196             : 
    6197         174 :     if (psInfo->m_sArrowArrayStream.get_schema(&schema) != 0)
    6198             :     {
    6199           0 :         CPLError(CE_Failure, CPLE_AppDefined, "stream.get_schema() failed");
    6200           0 :         return false;
    6201             :     }
    6202             : 
    6203         174 :     int iArrowGeomFieldIndex = -1;
    6204         174 :     if (m_bTransform)
    6205             :     {
    6206          12 :         iArrowGeomFieldIndex = GetArrowGeomFieldIndex(
    6207          12 :             &schema, psInfo->m_poSrcLayer->GetGeometryColumn());
    6208          12 :         if (!SetupCT(psInfo, psInfo->m_poSrcLayer, m_bTransform,
    6209          12 :                      m_bWrapDateline, m_osDateLineOffset, m_poUserSourceSRS,
    6210             :                      nullptr, m_poOutputSRS, m_poGCPCoordTrans, false))
    6211             :         {
    6212           0 :             return false;
    6213             :         }
    6214             :     }
    6215             : 
    6216         174 :     bool bRet = true;
    6217             : 
    6218         174 :     GIntBig nCount = 0;
    6219         174 :     bool bGoOn = true;
    6220         174 :     std::vector<GByte> abyModifiedWKB;
    6221         174 :     const int nNumReprojectionThreads = []()
    6222             :     {
    6223         174 :         const char *pszNumThreads = nullptr;
    6224             :         int nVal =
    6225         174 :             GDALGetNumThreads(GDAL_DEFAULT_MAX_THREAD_COUNT,
    6226             :                               /* bDefaultToAllCPUs = */ false, &pszNumThreads);
    6227         174 :         if (!pszNumThreads)
    6228           0 :             nVal = std::max(1, CPLGetNumCPUs() / 2);
    6229         174 :         return nVal;
    6230         174 :     }();
    6231             : 
    6232             :     // Somewhat arbitrary threshold (config option only/mostly for autotest purposes)
    6233         174 :     const int MIN_FEATURES_FOR_THREADED_REPROJ = atoi(CPLGetConfigOption(
    6234             :         "OGR2OGR_MIN_FEATURES_FOR_THREADED_REPROJ", "10000"));
    6235             : 
    6236         339 :     while (bGoOn)
    6237             :     {
    6238             :         struct ArrowArray array;
    6239             :         // Acquire source batch
    6240         337 :         if (psInfo->m_sArrowArrayStream.get_next(&array) != 0)
    6241             :         {
    6242           0 :             CPLError(CE_Failure, CPLE_AppDefined, "stream.get_next() failed");
    6243           0 :             bRet = false;
    6244         172 :             break;
    6245             :         }
    6246             : 
    6247         337 :         if (array.release == nullptr)
    6248             :         {
    6249             :             // End of stream
    6250         172 :             break;
    6251             :         }
    6252             : 
    6253             :         // Limit number of features in batch if needed
    6254         165 :         if (psOptions->nLimit >= 0 &&
    6255           2 :             nCount + array.length >= psOptions->nLimit)
    6256             :         {
    6257           2 :             const auto nAdjustedLength = psOptions->nLimit - nCount;
    6258          14 :             for (int i = 0; i < array.n_children; ++i)
    6259             :             {
    6260          12 :                 if (array.children[i]->length == array.length)
    6261          12 :                     array.children[i]->length = nAdjustedLength;
    6262             :             }
    6263           2 :             array.length = nAdjustedLength;
    6264           2 :             nCount = psOptions->nLimit;
    6265           2 :             bGoOn = false;
    6266             :         }
    6267             :         else
    6268             :         {
    6269         163 :             nCount += array.length;
    6270             :         }
    6271             : 
    6272         165 :         const auto nArrayLength = array.length;
    6273             : 
    6274             :         // Coordinate reprojection
    6275         165 :         if (m_bTransform)
    6276             :         {
    6277             :             struct GeomArrayReleaser
    6278             :             {
    6279             :                 const void *origin_buffers_2 = nullptr;
    6280             :                 void (*origin_release)(struct ArrowArray *) = nullptr;
    6281             :                 void *origin_private_data = nullptr;
    6282             : 
    6283          11 :                 static void init(struct ArrowArray *psGeomArray)
    6284             :                 {
    6285          11 :                     GeomArrayReleaser *releaser = new GeomArrayReleaser();
    6286          11 :                     CPLAssert(psGeomArray->n_buffers >= 3);
    6287          11 :                     releaser->origin_buffers_2 = psGeomArray->buffers[2];
    6288          11 :                     releaser->origin_private_data = psGeomArray->private_data;
    6289          11 :                     releaser->origin_release = psGeomArray->release;
    6290          11 :                     psGeomArray->release = GeomArrayReleaser::release;
    6291          11 :                     psGeomArray->private_data = releaser;
    6292          11 :                 }
    6293             : 
    6294          11 :                 static void release(struct ArrowArray *psGeomArray)
    6295             :                 {
    6296          11 :                     GeomArrayReleaser *releaser =
    6297             :                         static_cast<GeomArrayReleaser *>(
    6298             :                             psGeomArray->private_data);
    6299          11 :                     psGeomArray->buffers[2] = releaser->origin_buffers_2;
    6300          11 :                     psGeomArray->private_data = releaser->origin_private_data;
    6301          11 :                     psGeomArray->release = releaser->origin_release;
    6302          11 :                     if (psGeomArray->release)
    6303          11 :                         psGeomArray->release(psGeomArray);
    6304          11 :                     delete releaser;
    6305          11 :                 }
    6306             :             };
    6307             : 
    6308          11 :             auto *psGeomArray = array.children[iArrowGeomFieldIndex];
    6309          11 :             GeomArrayReleaser::init(psGeomArray);
    6310             : 
    6311          11 :             GByte *pabyWKB = static_cast<GByte *>(
    6312          11 :                 const_cast<void *>(psGeomArray->buffers[2]));
    6313          11 :             const uint32_t *panOffsets =
    6314          11 :                 static_cast<const uint32_t *>(psGeomArray->buffers[1]);
    6315          11 :             auto poCT = psInfo->m_aoReprojectionInfo[0].m_poCT.get();
    6316             : 
    6317             :             try
    6318             :             {
    6319          11 :                 abyModifiedWKB.resize(panOffsets[nArrayLength]);
    6320             :             }
    6321           0 :             catch (const std::exception &)
    6322             :             {
    6323           0 :                 CPLError(CE_Failure, CPLE_OutOfMemory, "Out of memory");
    6324           0 :                 bRet = false;
    6325           0 :                 if (array.release)
    6326           0 :                     array.release(&array);
    6327           0 :                 break;
    6328             :             }
    6329          11 :             memcpy(abyModifiedWKB.data(), pabyWKB, panOffsets[nArrayLength]);
    6330          11 :             psGeomArray->buffers[2] = abyModifiedWKB.data();
    6331             : 
    6332             :             // Collect left-most, right-most, top-most, bottom-most coordinates.
    6333          11 :             if (psInfo->m_aoReprojectionInfo[0]
    6334          11 :                     .m_bWarnAboutDifferentCoordinateOperations)
    6335             :             {
    6336             :                 struct OGRWKBPointVisitor final : public OGRWKBPointUpdater
    6337             :                 {
    6338             :                     TargetLayerInfo::ReprojectionInfo &m_info;
    6339             : 
    6340          11 :                     explicit OGRWKBPointVisitor(
    6341             :                         TargetLayerInfo::ReprojectionInfo &info)
    6342          11 :                         : m_info(info)
    6343             :                     {
    6344          11 :                     }
    6345             : 
    6346       10262 :                     bool update(bool bNeedSwap, void *x, void *y, void *z,
    6347             :                                 void * /* m */) override
    6348             :                     {
    6349             :                         double dfX, dfY, dfZ;
    6350       10262 :                         memcpy(&dfX, x, sizeof(double));
    6351       10262 :                         memcpy(&dfY, y, sizeof(double));
    6352       10262 :                         if (bNeedSwap)
    6353             :                         {
    6354           0 :                             CPL_SWAP64PTR(&dfX);
    6355           0 :                             CPL_SWAP64PTR(&dfY);
    6356             :                         }
    6357       10262 :                         if (z)
    6358             :                         {
    6359           0 :                             memcpy(&dfZ, z, sizeof(double));
    6360           0 :                             if (bNeedSwap)
    6361             :                             {
    6362           0 :                                 CPL_SWAP64PTR(&dfZ);
    6363             :                             }
    6364             :                         }
    6365             :                         else
    6366       10262 :                             dfZ = 0;
    6367       10262 :                         m_info.UpdateExtremePoints(dfX, dfY, dfZ);
    6368       10262 :                         return true;
    6369             :                     }
    6370             :                 };
    6371             : 
    6372          22 :                 OGRWKBPointVisitor oVisitor(psInfo->m_aoReprojectionInfo[0]);
    6373          11 :                 const GByte *pabyValidity =
    6374          11 :                     static_cast<const GByte *>(psGeomArray->buffers[0]);
    6375             : 
    6376       10046 :                 for (size_t i = 0; i < static_cast<size_t>(nArrayLength); ++i)
    6377             :                 {
    6378       10035 :                     const size_t iShifted =
    6379       10035 :                         static_cast<size_t>(i + psGeomArray->offset);
    6380       10035 :                     if (!pabyValidity || (pabyValidity[iShifted >> 8] &
    6381          24 :                                           (1 << (iShifted % 8))) != 0)
    6382             :                     {
    6383       10027 :                         const auto nWKBSize =
    6384       10027 :                             panOffsets[iShifted + 1] - panOffsets[iShifted];
    6385       10027 :                         OGRWKBUpdatePoints(abyModifiedWKB.data() +
    6386       10027 :                                                panOffsets[iShifted],
    6387             :                                            nWKBSize, oVisitor);
    6388             :                     }
    6389             :                 }
    6390             :             }
    6391             : 
    6392          11 :             std::atomic<bool> atomicRet{true};
    6393             :             const auto oReprojectionLambda =
    6394          11 :                 [psGeomArray, nArrayLength, panOffsets, &atomicRet,
    6395       40138 :                  &abyModifiedWKB, &poCT](int iThread, int nThreads)
    6396             :             {
    6397             :                 OGRWKBTransformCache oCache;
    6398          11 :                 OGREnvelope3D sEnv3D;
    6399             :                 auto poThisCT =
    6400          11 :                     std::unique_ptr<OGRCoordinateTransformation>(poCT->Clone());
    6401          11 :                 if (!poThisCT)
    6402             :                 {
    6403           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    6404             :                              "Cannot clone OGRCoordinateTransformation");
    6405           0 :                     atomicRet = false;
    6406           0 :                     return;
    6407             :                 }
    6408             : 
    6409          11 :                 const GByte *pabyValidity =
    6410          11 :                     static_cast<const GByte *>(psGeomArray->buffers[0]);
    6411          11 :                 const size_t iStart =
    6412          11 :                     static_cast<size_t>(iThread * nArrayLength / nThreads);
    6413          11 :                 const size_t iMax = static_cast<size_t>(
    6414          11 :                     (iThread + 1) * nArrayLength / nThreads);
    6415       10046 :                 for (size_t i = iStart; i < iMax; ++i)
    6416             :                 {
    6417       10035 :                     const size_t iShifted =
    6418       10035 :                         static_cast<size_t>(i + psGeomArray->offset);
    6419       10035 :                     if (!pabyValidity || (pabyValidity[iShifted >> 8] &
    6420          24 :                                           (1 << (iShifted % 8))) != 0)
    6421             :                     {
    6422       10027 :                         const auto nWKBSize =
    6423       10027 :                             panOffsets[iShifted + 1] - panOffsets[iShifted];
    6424       20054 :                         if (!OGRWKBTransform(
    6425       10027 :                                 abyModifiedWKB.data() + panOffsets[iShifted],
    6426             :                                 nWKBSize, poThisCT.get(), oCache, sEnv3D))
    6427             :                         {
    6428           0 :                             CPLError(CE_Failure, CPLE_AppDefined,
    6429             :                                      "Reprojection failed");
    6430           0 :                             atomicRet = false;
    6431           0 :                             break;
    6432             :                         }
    6433             :                     }
    6434             :                 }
    6435          11 :             };
    6436             : 
    6437          11 :             if (nArrayLength >= MIN_FEATURES_FOR_THREADED_REPROJ &&
    6438           5 :                 nNumReprojectionThreads >= 2)
    6439             :             {
    6440           0 :                 std::vector<std::future<void>> oTasks;
    6441           0 :                 for (int iThread = 0; iThread < nNumReprojectionThreads;
    6442             :                      ++iThread)
    6443             :                 {
    6444           0 :                     oTasks.emplace_back(std::async(std::launch::async,
    6445             :                                                    oReprojectionLambda, iThread,
    6446           0 :                                                    nNumReprojectionThreads));
    6447             :                 }
    6448           0 :                 for (auto &oTask : oTasks)
    6449             :                 {
    6450           0 :                     oTask.get();
    6451           0 :                 }
    6452             :             }
    6453             :             else
    6454             :             {
    6455          11 :                 oReprojectionLambda(0, 1);
    6456             :             }
    6457             : 
    6458          11 :             bRet = atomicRet;
    6459          11 :             if (!bRet)
    6460             :             {
    6461           0 :                 if (array.release)
    6462           0 :                     array.release(&array);
    6463           0 :                 break;
    6464             :             }
    6465             :         }
    6466             : 
    6467             :         // Write batch to target layer
    6468         165 :         const bool bWriteOK = psInfo->m_poDstLayer->WriteArrowBatch(
    6469         165 :             &schema, &array, aosOptionsWriteArrowBatch.List());
    6470             : 
    6471         165 :         if (array.release)
    6472          45 :             array.release(&array);
    6473             : 
    6474         165 :         if (!bWriteOK)
    6475             :         {
    6476           0 :             CPLError(CE_Failure, CPLE_AppDefined, "WriteArrowBatch() failed");
    6477           0 :             bRet = false;
    6478           0 :             break;
    6479             :         }
    6480             : 
    6481             :         /* Report progress */
    6482         165 :         if (pfnProgress)
    6483             :         {
    6484           6 :             if (!pfnProgress(nCountLayerFeatures
    6485           3 :                                  ? nCount * 1.0 / nCountLayerFeatures
    6486             :                                  : 1.0,
    6487             :                              "", pProgressArg))
    6488             :             {
    6489           0 :                 bGoOn = false;
    6490           0 :                 bRet = false;
    6491             :             }
    6492             :         }
    6493             : 
    6494         165 :         if (pnReadFeatureCount)
    6495           0 :             *pnReadFeatureCount = nCount;
    6496             :     }
    6497             : 
    6498         174 :     schema.release(&schema);
    6499             : 
    6500         174 :     return bRet;
    6501             : }
    6502             : 
    6503             : /************************************************************************/
    6504             : /*                     LayerTranslator::Translate()                     */
    6505             : /************************************************************************/
    6506             : 
    6507        2086 : bool LayerTranslator::Translate(
    6508             :     std::unique_ptr<OGRFeature> poFeatureIn, TargetLayerInfo *psInfo,
    6509             :     GIntBig nCountLayerFeatures, GIntBig *pnReadFeatureCount,
    6510             :     GIntBig &nTotalEventsDone, GDALProgressFunc pfnProgress, void *pProgressArg,
    6511             :     const GDALVectorTranslateOptions *psOptions)
    6512             : {
    6513        2086 :     if (psInfo->m_bUseWriteArrowBatch)
    6514             :     {
    6515         174 :         return TranslateArrow(psInfo, nCountLayerFeatures, pnReadFeatureCount,
    6516         174 :                               pfnProgress, pProgressArg, psOptions);
    6517             :     }
    6518             : 
    6519        1912 :     const int eGType = m_eGType;
    6520        1912 :     const OGRSpatialReference *poOutputSRS = m_poOutputSRS;
    6521             : 
    6522        1912 :     OGRLayer *poSrcLayer = psInfo->m_poSrcLayer;
    6523        1912 :     OGRLayer *poDstLayer = psInfo->m_poDstLayer;
    6524        1912 :     const int *const panMap = psInfo->m_anMap.data();
    6525        1912 :     const int iSrcZField = psInfo->m_iSrcZField;
    6526        1912 :     const bool bPreserveFID = psInfo->m_bPreserveFID;
    6527        1912 :     const auto poSrcFDefn = poSrcLayer->GetLayerDefn();
    6528        1912 :     const auto poDstFDefn = poDstLayer->GetLayerDefn();
    6529        1912 :     const int nSrcGeomFieldCount = poSrcFDefn->GetGeomFieldCount();
    6530        1912 :     const int nDstGeomFieldCount = poDstFDefn->GetGeomFieldCount();
    6531        1912 :     const bool bExplodeCollections =
    6532        1912 :         m_bExplodeCollections && nDstGeomFieldCount <= 1;
    6533        1912 :     const int iRequestedSrcGeomField = psInfo->m_iRequestedSrcGeomField;
    6534             : 
    6535        1912 :     if (poOutputSRS == nullptr && !m_bNullifyOutputSRS)
    6536             :     {
    6537        1879 :         if (nSrcGeomFieldCount == 1)
    6538             :         {
    6539         820 :             poOutputSRS = poSrcLayer->GetSpatialRef();
    6540             :         }
    6541        1059 :         else if (iRequestedSrcGeomField > 0)
    6542             :         {
    6543           1 :             poOutputSRS = poSrcLayer->GetLayerDefn()
    6544           1 :                               ->GetGeomFieldDefn(iRequestedSrcGeomField)
    6545           1 :                               ->GetSpatialRef();
    6546             :         }
    6547             :     }
    6548             : 
    6549             :     /* -------------------------------------------------------------------- */
    6550             :     /*      Transfer features.                                              */
    6551             :     /* -------------------------------------------------------------------- */
    6552        1912 :     if (psOptions->nGroupTransactions)
    6553             :     {
    6554        1911 :         if (psOptions->nLayerTransaction)
    6555             :         {
    6556         768 :             if (poDstLayer->StartTransaction() == OGRERR_FAILURE)
    6557             :             {
    6558           0 :                 return false;
    6559             :             }
    6560             :         }
    6561             :     }
    6562             : 
    6563        1912 :     std::unique_ptr<OGRFeature> poFeature;
    6564        3824 :     auto poDstFeature = std::make_unique<OGRFeature>(poDstFDefn);
    6565        1912 :     int nFeaturesInTransaction = 0;
    6566        1912 :     GIntBig nCount = 0; /* written + failed */
    6567        1912 :     GIntBig nFeaturesWritten = 0;
    6568        1912 :     bool bRunSetPrecisionEvaluated = false;
    6569        1912 :     bool bRunSetPrecision = false;
    6570             : 
    6571        1912 :     bool bRet = true;
    6572        1912 :     CPLErrorReset();
    6573             : 
    6574        1912 :     bool bSetupCTOK = false;
    6575        1912 :     if (m_bTransform && psInfo->m_nFeaturesRead == 0 &&
    6576          26 :         !psInfo->m_bPerFeatureCT)
    6577             :     {
    6578          26 :         bSetupCTOK = SetupCT(psInfo, poSrcLayer, m_bTransform, m_bWrapDateline,
    6579          26 :                              m_osDateLineOffset, m_poUserSourceSRS, nullptr,
    6580             :                              poOutputSRS, m_poGCPCoordTrans, false);
    6581             :     }
    6582             : 
    6583        1912 :     const bool bSingleIteration = poFeatureIn != nullptr;
    6584             :     while (true)
    6585             :     {
    6586       16715 :         if (m_nLimit >= 0 && psInfo->m_nFeaturesRead >= m_nLimit)
    6587             :         {
    6588           9 :             break;
    6589             :         }
    6590             : 
    6591       16706 :         if (poFeatureIn != nullptr)
    6592         980 :             poFeature = std::move(poFeatureIn);
    6593       15726 :         else if (psOptions->nFIDToFetch != OGRNullFID)
    6594           5 :             poFeature.reset(poSrcLayer->GetFeature(psOptions->nFIDToFetch));
    6595             :         else
    6596       15721 :             poFeature.reset(poSrcLayer->GetNextFeature());
    6597             : 
    6598       16706 :         if (poFeature == nullptr)
    6599             :         {
    6600         911 :             if (CPLGetLastErrorType() == CE_Failure)
    6601             :             {
    6602          15 :                 bRet = false;
    6603             :             }
    6604         911 :             break;
    6605             :         }
    6606             : 
    6607       15795 :         if (!bSetupCTOK &&
    6608       15684 :             (psInfo->m_nFeaturesRead == 0 || psInfo->m_bPerFeatureCT))
    6609             :         {
    6610        1942 :             if (!SetupCT(psInfo, poSrcLayer, m_bTransform, m_bWrapDateline,
    6611         971 :                          m_osDateLineOffset, m_poUserSourceSRS, poFeature.get(),
    6612             :                          poOutputSRS, m_poGCPCoordTrans, true))
    6613             :             {
    6614           6 :                 return false;
    6615             :             }
    6616             :         }
    6617             : 
    6618       15795 :         psInfo->m_nFeaturesRead++;
    6619             : 
    6620       15795 :         int nIters = 1;
    6621           0 :         std::unique_ptr<OGRGeometryCollection> poCollToExplode;
    6622       15795 :         int iGeomCollToExplode = -1;
    6623       15795 :         OGRGeometry *poSrcGeometry = nullptr;
    6624       15795 :         if (bExplodeCollections)
    6625             :         {
    6626          13 :             if (iRequestedSrcGeomField >= 0)
    6627             :                 poSrcGeometry =
    6628           0 :                     poFeature->GetGeomFieldRef(iRequestedSrcGeomField);
    6629             :             else
    6630          13 :                 poSrcGeometry = poFeature->GetGeometryRef();
    6631          26 :             if (poSrcGeometry &&
    6632          13 :                 OGR_GT_IsSubClassOf(poSrcGeometry->getGeometryType(),
    6633             :                                     wkbGeometryCollection))
    6634             :             {
    6635             :                 const int nParts =
    6636          12 :                     poSrcGeometry->toGeometryCollection()->getNumGeometries();
    6637          21 :                 if (nParts > 0 ||
    6638           9 :                     wkbFlatten(poSrcGeometry->getGeometryType()) !=
    6639             :                         wkbGeometryCollection)
    6640             :                 {
    6641          11 :                     iGeomCollToExplode = iRequestedSrcGeomField >= 0
    6642             :                                              ? iRequestedSrcGeomField
    6643             :                                              : 0;
    6644          11 :                     poCollToExplode.reset(
    6645             :                         poFeature->StealGeometry(iGeomCollToExplode)
    6646             :                             ->toGeometryCollection());
    6647          11 :                     nIters = std::max(1, nParts);
    6648             :                 }
    6649             :             }
    6650             :         }
    6651             : 
    6652       15795 :         const GIntBig nSrcFID = poFeature->GetFID();
    6653       15795 :         GIntBig nDesiredFID = OGRNullFID;
    6654       15795 :         if (bPreserveFID)
    6655        1184 :             nDesiredFID = nSrcFID;
    6656       14612 :         else if (psInfo->m_iSrcFIDField >= 0 &&
    6657           1 :                  poFeature->IsFieldSetAndNotNull(psInfo->m_iSrcFIDField))
    6658             :             nDesiredFID =
    6659           1 :                 poFeature->GetFieldAsInteger64(psInfo->m_iSrcFIDField);
    6660             : 
    6661       31587 :         for (int iPart = 0; iPart < nIters; iPart++)
    6662             :         {
    6663       23123 :             if (psOptions->nLayerTransaction &&
    6664        7325 :                 ++nFeaturesInTransaction == psOptions->nGroupTransactions)
    6665             :             {
    6666          36 :                 if (poDstLayer->CommitTransaction() == OGRERR_FAILURE ||
    6667          18 :                     poDstLayer->StartTransaction() == OGRERR_FAILURE)
    6668             :                 {
    6669           0 :                     return false;
    6670             :                 }
    6671          18 :                 nFeaturesInTransaction = 0;
    6672             :             }
    6673       40033 :             else if (!psOptions->nLayerTransaction &&
    6674       24233 :                      psOptions->nGroupTransactions > 0 &&
    6675        8453 :                      ++nTotalEventsDone >= psOptions->nGroupTransactions)
    6676             :             {
    6677          80 :                 if (m_poODS->CommitTransaction() == OGRERR_FAILURE ||
    6678          40 :                     m_poODS->StartTransaction(psOptions->bForceTransaction) ==
    6679             :                         OGRERR_FAILURE)
    6680             :                 {
    6681           0 :                     return false;
    6682             :                 }
    6683          40 :                 nTotalEventsDone = 0;
    6684             :             }
    6685             : 
    6686       15798 :             CPLErrorReset();
    6687       15798 :             if (psInfo->m_bCanAvoidSetFrom)
    6688             :             {
    6689       15489 :                 poDstFeature = std::move(poFeature);
    6690             :                 // From now on, poFeature is null !
    6691       15489 :                 poDstFeature->SetFDefnUnsafe(poDstFDefn);
    6692       15489 :                 poDstFeature->SetFID(nDesiredFID);
    6693             :             }
    6694             :             else
    6695             :             {
    6696             :                 /* Optimization to avoid duplicating the source geometry in the
    6697             :                  */
    6698             :                 /* target feature : we steal it from the source feature for
    6699             :                  * now... */
    6700           0 :                 std::unique_ptr<OGRGeometry> poStolenGeometry;
    6701         309 :                 if (!bExplodeCollections && nSrcGeomFieldCount == 1 &&
    6702         114 :                     (nDstGeomFieldCount == 1 ||
    6703         114 :                      (nDstGeomFieldCount == 0 && m_poClipSrcOri)))
    6704             :                 {
    6705         134 :                     poStolenGeometry.reset(poFeature->StealGeometry());
    6706             :                 }
    6707         175 :                 else if (!bExplodeCollections && iRequestedSrcGeomField >= 0)
    6708             :                 {
    6709           0 :                     poStolenGeometry.reset(
    6710             :                         poFeature->StealGeometry(iRequestedSrcGeomField));
    6711             :                 }
    6712             : 
    6713         309 :                 if (nDstGeomFieldCount == 0 && poStolenGeometry &&
    6714           0 :                     m_poClipSrcOri)
    6715             :                 {
    6716           0 :                     if (poStolenGeometry->IsEmpty())
    6717           0 :                         goto end_loop;
    6718             : 
    6719             :                     const auto clipGeomDesc =
    6720           0 :                         GetSrcClipGeom(poStolenGeometry->getSpatialReference());
    6721             : 
    6722           0 :                     if (clipGeomDesc.poGeom && clipGeomDesc.poEnv)
    6723             :                     {
    6724           0 :                         OGREnvelope oEnv;
    6725           0 :                         poStolenGeometry->getEnvelope(&oEnv);
    6726           0 :                         if (!clipGeomDesc.poEnv->Contains(oEnv) &&
    6727           0 :                             !(clipGeomDesc.poEnv->Intersects(oEnv) &&
    6728           0 :                               clipGeomDesc.poGeom->Intersects(
    6729           0 :                                   poStolenGeometry.get())))
    6730             :                         {
    6731           0 :                             goto end_loop;
    6732             :                         }
    6733             :                     }
    6734             :                 }
    6735             : 
    6736         309 :                 poDstFeature->Reset();
    6737             : 
    6738         618 :                 if (poDstFeature->SetFrom(
    6739         309 :                         poFeature.get(), panMap, /* bForgiving = */ TRUE,
    6740         309 :                         /* bUseISO8601ForDateTimeAsString = */ true) !=
    6741             :                     OGRERR_NONE)
    6742             :                 {
    6743           0 :                     if (psOptions->nGroupTransactions)
    6744             :                     {
    6745           0 :                         if (psOptions->nLayerTransaction)
    6746             :                         {
    6747           0 :                             if (poDstLayer->CommitTransaction() != OGRERR_NONE)
    6748             :                             {
    6749           0 :                                 return false;
    6750             :                             }
    6751             :                         }
    6752             :                     }
    6753             : 
    6754           0 :                     CPLError(CE_Failure, CPLE_AppDefined,
    6755             :                              "Unable to translate feature " CPL_FRMT_GIB
    6756             :                              " from layer %s.",
    6757           0 :                              nSrcFID, poSrcLayer->GetName());
    6758             : 
    6759           0 :                     return false;
    6760             :                 }
    6761             : 
    6762             :                 /* ... and now we can attach the stolen geometry */
    6763         309 :                 if (poStolenGeometry)
    6764             :                 {
    6765         127 :                     poDstFeature->SetGeometryDirectly(
    6766             :                         poStolenGeometry.release());
    6767             :                 }
    6768             : 
    6769         309 :                 if (!psInfo->m_oMapResolved.empty())
    6770             :                 {
    6771           4 :                     for (const auto &kv : psInfo->m_oMapResolved)
    6772             :                     {
    6773           2 :                         const int nDstField = kv.first;
    6774           2 :                         const int nSrcField = kv.second.nSrcField;
    6775           2 :                         if (poFeature->IsFieldSetAndNotNull(nSrcField))
    6776             :                         {
    6777           2 :                             const auto poDomain = kv.second.poDomain;
    6778             :                             const auto &oMapKV =
    6779           2 :                                 psInfo->m_oMapDomainToKV[poDomain];
    6780             :                             const auto iter = oMapKV.find(
    6781           2 :                                 poFeature->GetFieldAsString(nSrcField));
    6782           2 :                             if (iter != oMapKV.end())
    6783             :                             {
    6784           2 :                                 poDstFeature->SetField(nDstField,
    6785           1 :                                                        iter->second.c_str());
    6786             :                             }
    6787             :                         }
    6788             :                     }
    6789             :                 }
    6790             : 
    6791         309 :                 if (nDesiredFID != OGRNullFID)
    6792           2 :                     poDstFeature->SetFID(nDesiredFID);
    6793             :             }
    6794             : 
    6795       15798 :             if (psOptions->bEmptyStrAsNull)
    6796             :             {
    6797           2 :                 for (int i = 0; i < poDstFeature->GetFieldCount(); i++)
    6798             :                 {
    6799           1 :                     if (!poDstFeature->IsFieldSetAndNotNull(i))
    6800           0 :                         continue;
    6801           1 :                     auto fieldDef = poDstFeature->GetFieldDefnRef(i);
    6802           1 :                     if (fieldDef->GetType() != OGRFieldType::OFTString)
    6803           0 :                         continue;
    6804           1 :                     auto str = poDstFeature->GetFieldAsString(i);
    6805           1 :                     if (strcmp(str, "") == 0)
    6806           1 :                         poDstFeature->SetFieldNull(i);
    6807             :                 }
    6808             :             }
    6809             : 
    6810       15798 :             if (!psInfo->m_anDateTimeFieldIdx.empty())
    6811             :             {
    6812          40 :                 for (int i : psInfo->m_anDateTimeFieldIdx)
    6813             :                 {
    6814          20 :                     if (!poDstFeature->IsFieldSetAndNotNull(i))
    6815          11 :                         continue;
    6816          15 :                     auto psField = poDstFeature->GetRawFieldRef(i);
    6817          15 :                     if (psField->Date.TZFlag == 0 || psField->Date.TZFlag == 1)
    6818           5 :                         continue;
    6819             : 
    6820          10 :                     const int nTZOffsetInSec =
    6821          10 :                         (psField->Date.TZFlag - 100) * 15 * 60;
    6822          10 :                     if (nTZOffsetInSec == psOptions->nTZOffsetInSec)
    6823           1 :                         continue;
    6824             : 
    6825             :                     struct tm brokendowntime;
    6826           9 :                     memset(&brokendowntime, 0, sizeof(brokendowntime));
    6827           9 :                     brokendowntime.tm_year = psField->Date.Year - 1900;
    6828           9 :                     brokendowntime.tm_mon = psField->Date.Month - 1;
    6829           9 :                     brokendowntime.tm_mday = psField->Date.Day;
    6830           9 :                     GIntBig nUnixTime = CPLYMDHMSToUnixTime(&brokendowntime);
    6831           9 :                     int nSec = psField->Date.Hour * 3600 +
    6832           9 :                                psField->Date.Minute * 60 +
    6833           9 :                                static_cast<int>(psField->Date.Second);
    6834           9 :                     nSec += psOptions->nTZOffsetInSec - nTZOffsetInSec;
    6835           9 :                     nUnixTime += nSec;
    6836           9 :                     CPLUnixTimeToYMDHMS(nUnixTime, &brokendowntime);
    6837             : 
    6838           9 :                     psField->Date.Year =
    6839           9 :                         static_cast<GInt16>(brokendowntime.tm_year + 1900);
    6840           9 :                     psField->Date.Month =
    6841           9 :                         static_cast<GByte>(brokendowntime.tm_mon + 1);
    6842           9 :                     psField->Date.Day =
    6843           9 :                         static_cast<GByte>(brokendowntime.tm_mday);
    6844           9 :                     psField->Date.Hour =
    6845           9 :                         static_cast<GByte>(brokendowntime.tm_hour);
    6846           9 :                     psField->Date.Minute =
    6847           9 :                         static_cast<GByte>(brokendowntime.tm_min);
    6848           9 :                     psField->Date.Second = static_cast<float>(
    6849           9 :                         brokendowntime.tm_sec + fmod(psField->Date.Second, 1));
    6850           9 :                     psField->Date.TZFlag = static_cast<GByte>(
    6851           9 :                         100 + psOptions->nTZOffsetInSec / (15 * 60));
    6852             :                 }
    6853             :             }
    6854             : 
    6855             :             /* Erase native data if asked explicitly */
    6856       15798 :             if (!m_bNativeData)
    6857             :             {
    6858           1 :                 poDstFeature->SetNativeData(nullptr);
    6859           1 :                 poDstFeature->SetNativeMediaType(nullptr);
    6860             :             }
    6861             : 
    6862       25544 :             for (int iGeom = 0; iGeom < nDstGeomFieldCount; iGeom++)
    6863             :             {
    6864           0 :                 std::unique_ptr<OGRGeometry> poDstGeometry;
    6865             : 
    6866        9793 :                 if (poCollToExplode && iGeom == iGeomCollToExplode)
    6867             :                 {
    6868          14 :                     if (poSrcGeometry && poCollToExplode->IsEmpty())
    6869             :                     {
    6870             :                         const OGRwkbGeometryType eSrcType =
    6871           8 :                             poSrcGeometry->getGeometryType();
    6872             :                         const OGRwkbGeometryType eSrcFlattenType =
    6873           8 :                             wkbFlatten(eSrcType);
    6874           8 :                         OGRwkbGeometryType eDstType = eSrcType;
    6875           8 :                         switch (eSrcFlattenType)
    6876             :                         {
    6877           4 :                             case wkbMultiPoint:
    6878           4 :                                 eDstType = wkbPoint;
    6879           4 :                                 break;
    6880           1 :                             case wkbMultiLineString:
    6881           1 :                                 eDstType = wkbLineString;
    6882           1 :                                 break;
    6883           1 :                             case wkbMultiPolygon:
    6884           1 :                                 eDstType = wkbPolygon;
    6885           1 :                                 break;
    6886           1 :                             case wkbMultiCurve:
    6887           1 :                                 eDstType = wkbCompoundCurve;
    6888           1 :                                 break;
    6889           1 :                             case wkbMultiSurface:
    6890           1 :                                 eDstType = wkbCurvePolygon;
    6891           1 :                                 break;
    6892           0 :                             default:
    6893           0 :                                 break;
    6894             :                         }
    6895             :                         eDstType =
    6896           8 :                             OGR_GT_SetModifier(eDstType, OGR_GT_HasZ(eSrcType),
    6897             :                                                OGR_GT_HasM(eSrcType));
    6898           8 :                         poDstGeometry.reset(
    6899             :                             OGRGeometryFactory::createGeometry(eDstType));
    6900             :                     }
    6901             :                     else
    6902             :                     {
    6903             :                         OGRGeometry *poPart =
    6904           6 :                             poCollToExplode->getGeometryRef(0);
    6905           6 :                         poCollToExplode->removeGeometry(0, FALSE);
    6906           6 :                         poDstGeometry.reset(poPart);
    6907             :                     }
    6908             :                 }
    6909             :                 else
    6910             :                 {
    6911        9779 :                     poDstGeometry.reset(poDstFeature->StealGeometry(iGeom));
    6912             :                 }
    6913        9793 :                 if (poDstGeometry == nullptr)
    6914         683 :                     continue;
    6915             : 
    6916             :                 // poFeature hasn't been moved if iSrcZField != -1
    6917             :                 // cppcheck-suppress accessMoved
    6918        9110 :                 if (iSrcZField != -1 && poFeature != nullptr)
    6919             :                 {
    6920          30 :                     SetZ(poDstGeometry.get(),
    6921             :                          poFeature->GetFieldAsDouble(iSrcZField));
    6922             :                     /* This will correct the coordinate dimension to 3 */
    6923          30 :                     poDstGeometry.reset(poDstGeometry->clone());
    6924             :                 }
    6925             : 
    6926        9110 :                 if (m_nCoordDim == 2 || m_nCoordDim == 3)
    6927             :                 {
    6928          24 :                     poDstGeometry->setCoordinateDimension(m_nCoordDim);
    6929             :                 }
    6930        9086 :                 else if (m_nCoordDim == 4)
    6931             :                 {
    6932           2 :                     poDstGeometry->set3D(TRUE);
    6933           2 :                     poDstGeometry->setMeasured(TRUE);
    6934             :                 }
    6935        9084 :                 else if (m_nCoordDim == COORD_DIM_XYM)
    6936             :                 {
    6937           2 :                     poDstGeometry->set3D(FALSE);
    6938           2 :                     poDstGeometry->setMeasured(TRUE);
    6939             :                 }
    6940        9082 :                 else if (m_nCoordDim == COORD_DIM_LAYER_DIM)
    6941             :                 {
    6942             :                     const OGRwkbGeometryType eDstLayerGeomType =
    6943           2 :                         poDstLayer->GetLayerDefn()
    6944           2 :                             ->GetGeomFieldDefn(iGeom)
    6945           2 :                             ->GetType();
    6946           2 :                     poDstGeometry->set3D(wkbHasZ(eDstLayerGeomType));
    6947           2 :                     poDstGeometry->setMeasured(wkbHasM(eDstLayerGeomType));
    6948             :                 }
    6949             : 
    6950        9110 :                 if (m_eGeomOp == GEOMOP_SEGMENTIZE)
    6951             :                 {
    6952          20 :                     if (m_dfGeomOpParam > 0)
    6953          20 :                         poDstGeometry->segmentize(m_dfGeomOpParam);
    6954             :                 }
    6955        9090 :                 else if (m_eGeomOp == GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY)
    6956             :                 {
    6957           1 :                     if (m_dfGeomOpParam > 0)
    6958             :                     {
    6959             :                         auto poNewGeom = std::unique_ptr<OGRGeometry>(
    6960             :                             poDstGeometry->SimplifyPreserveTopology(
    6961           2 :                                 m_dfGeomOpParam));
    6962           1 :                         if (poNewGeom)
    6963             :                         {
    6964           1 :                             poDstGeometry = std::move(poNewGeom);
    6965             :                         }
    6966             :                     }
    6967             :                 }
    6968             : 
    6969        9110 :                 if (m_poClipSrcOri)
    6970             :                 {
    6971          50 :                     if (poDstGeometry->IsEmpty())
    6972          26 :                         goto end_loop;
    6973             : 
    6974             :                     const auto clipGeomDesc =
    6975          50 :                         GetSrcClipGeom(poDstGeometry->getSpatialReference());
    6976             : 
    6977          50 :                     if (!(clipGeomDesc.poGeom && clipGeomDesc.poEnv))
    6978           0 :                         goto end_loop;
    6979             : 
    6980          50 :                     OGREnvelope oDstEnv;
    6981          50 :                     poDstGeometry->getEnvelope(&oDstEnv);
    6982             : 
    6983          50 :                     if (!(clipGeomDesc.bGeomIsRectangle &&
    6984           0 :                           clipGeomDesc.poEnv->Contains(oDstEnv)))
    6985             :                     {
    6986           0 :                         std::unique_ptr<OGRGeometry> poClipped;
    6987          50 :                         if (clipGeomDesc.poEnv->Intersects(oDstEnv))
    6988             :                         {
    6989          30 :                             poClipped.reset(clipGeomDesc.poGeom->Intersection(
    6990          30 :                                 poDstGeometry.get()));
    6991             :                         }
    6992          50 :                         if (poClipped == nullptr || poClipped->IsEmpty())
    6993             :                         {
    6994          25 :                             goto end_loop;
    6995             :                         }
    6996             : 
    6997          25 :                         const int nDim = poDstGeometry->getDimension();
    6998          26 :                         if (poClipped->getDimension() < nDim &&
    6999           1 :                             wkbFlatten(poDstFDefn->GetGeomFieldDefn(iGeom)
    7000             :                                            ->GetType()) != wkbUnknown)
    7001             :                         {
    7002           3 :                             CPLDebug(
    7003             :                                 "OGR2OGR",
    7004             :                                 "Discarding feature " CPL_FRMT_GIB
    7005             :                                 " of layer %s, "
    7006             :                                 "as its intersection with -clipsrc is a %s "
    7007             :                                 "whereas the input is a %s",
    7008           1 :                                 nSrcFID, poSrcLayer->GetName(),
    7009           1 :                                 OGRToOGCGeomType(poClipped->getGeometryType()),
    7010             :                                 OGRToOGCGeomType(
    7011           1 :                                     poDstGeometry->getGeometryType()));
    7012           1 :                             goto end_loop;
    7013             :                         }
    7014             : 
    7015          72 :                         poDstGeometry = OGRGeometryFactory::makeCompatibleWith(
    7016          24 :                             std::move(poClipped),
    7017          48 :                             poDstFDefn->GetGeomFieldDefn(iGeom)->GetType());
    7018             :                     }
    7019             :                 }
    7020             : 
    7021             :                 OGRCoordinateTransformation *const poCT =
    7022        9084 :                     psInfo->m_aoReprojectionInfo[iGeom].m_poCT.get();
    7023             :                 char **const papszTransformOptions =
    7024        9084 :                     psInfo->m_aoReprojectionInfo[iGeom]
    7025        9084 :                         .m_aosTransformOptions.List();
    7026             :                 const bool bReprojCanInvalidateValidity =
    7027        9084 :                     psInfo->m_aoReprojectionInfo[iGeom]
    7028        9084 :                         .m_bCanInvalidateValidity;
    7029             : 
    7030        9084 :                 if (poCT != nullptr || papszTransformOptions != nullptr)
    7031             :                 {
    7032             :                     // If we need to change the geometry type to linear, and
    7033             :                     // we have a geometry with curves, then convert it to
    7034             :                     // linear first, to avoid invalidities due to the fact
    7035             :                     // that validity of arc portions isn't always kept while
    7036             :                     // reprojecting and then discretizing.
    7037         124 :                     if (bReprojCanInvalidateValidity &&
    7038         122 :                         (!psInfo->m_bSupportCurves ||
    7039          51 :                          m_eGeomTypeConversion == GTC_CONVERT_TO_LINEAR ||
    7040          49 :                          m_eGeomTypeConversion ==
    7041             :                              GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR))
    7042             :                     {
    7043          73 :                         if (poDstGeometry->hasCurveGeometry(TRUE))
    7044             :                         {
    7045           4 :                             OGRwkbGeometryType eTargetType = OGR_GT_GetLinear(
    7046           4 :                                 poDstGeometry->getGeometryType());
    7047           8 :                             poDstGeometry = OGRGeometryFactory::forceTo(
    7048           8 :                                 std::move(poDstGeometry), eTargetType);
    7049          73 :                         }
    7050             :                     }
    7051          49 :                     else if (bReprojCanInvalidateValidity &&
    7052           2 :                              eGType != GEOMTYPE_UNCHANGED &&
    7053           2 :                              !OGR_GT_IsNonLinear(
    7054         100 :                                  static_cast<OGRwkbGeometryType>(eGType)) &&
    7055           2 :                              poDstGeometry->hasCurveGeometry(TRUE))
    7056             :                     {
    7057           4 :                         poDstGeometry = OGRGeometryFactory::forceTo(
    7058           2 :                             std::move(poDstGeometry),
    7059           2 :                             static_cast<OGRwkbGeometryType>(eGType));
    7060             :                     }
    7061             : 
    7062             :                     // Collect left-most, right-most, top-most, bottom-most coordinates.
    7063         124 :                     if (psInfo->m_aoReprojectionInfo[iGeom]
    7064         124 :                             .m_bWarnAboutDifferentCoordinateOperations)
    7065             :                     {
    7066             :                         struct Visitor : public OGRDefaultConstGeometryVisitor
    7067             :                         {
    7068             :                             TargetLayerInfo::ReprojectionInfo &m_info;
    7069             : 
    7070         110 :                             explicit Visitor(
    7071             :                                 TargetLayerInfo::ReprojectionInfo &info)
    7072         110 :                                 : m_info(info)
    7073             :                             {
    7074         110 :                             }
    7075             : 
    7076             :                             using OGRDefaultConstGeometryVisitor::visit;
    7077             : 
    7078        2814 :                             void visit(const OGRPoint *point) override
    7079             :                             {
    7080        2814 :                                 m_info.UpdateExtremePoints(point->getX(),
    7081             :                                                            point->getY(),
    7082             :                                                            point->getZ());
    7083        2814 :                             }
    7084             :                         };
    7085             : 
    7086         220 :                         Visitor oVisit(psInfo->m_aoReprojectionInfo[iGeom]);
    7087         110 :                         poDstGeometry->accept(&oVisit);
    7088             :                     }
    7089             : 
    7090         125 :                     for (int iIter = 0; iIter < 2; ++iIter)
    7091             :                     {
    7092             :                         auto poReprojectedGeom = std::unique_ptr<OGRGeometry>(
    7093             :                             OGRGeometryFactory::transformWithOptions(
    7094         125 :                                 poDstGeometry.get(), poCT,
    7095             :                                 papszTransformOptions,
    7096         125 :                                 m_transformWithOptionsCache));
    7097         125 :                         if (poReprojectedGeom == nullptr)
    7098             :                         {
    7099           0 :                             if (psOptions->nGroupTransactions)
    7100             :                             {
    7101           0 :                                 if (psOptions->nLayerTransaction)
    7102             :                                 {
    7103           0 :                                     if (poDstLayer->CommitTransaction() !=
    7104           0 :                                             OGRERR_NONE &&
    7105           0 :                                         !psOptions->bSkipFailures)
    7106             :                                     {
    7107           0 :                                         return false;
    7108             :                                     }
    7109             :                                 }
    7110             :                             }
    7111             : 
    7112           0 :                             CPLError(CE_Failure, CPLE_AppDefined,
    7113             :                                      "Failed to reproject feature " CPL_FRMT_GIB
    7114             :                                      " (geometry probably out of source or "
    7115             :                                      "destination SRS).",
    7116             :                                      nSrcFID);
    7117           0 :                             if (!psOptions->bSkipFailures)
    7118             :                             {
    7119           0 :                                 return false;
    7120             :                             }
    7121             :                         }
    7122             : 
    7123             :                         // Check if a curve geometry is no longer valid after
    7124             :                         // reprojection
    7125         125 :                         const auto eType = poDstGeometry->getGeometryType();
    7126         125 :                         const auto eFlatType = wkbFlatten(eType);
    7127             : 
    7128         125 :                         std::string osReason;
    7129         124 :                         if (iIter == 0 && bReprojCanInvalidateValidity &&
    7130         122 :                             OGRGeometryFactory::haveGEOS() &&
    7131         120 :                             (eFlatType == wkbCurvePolygon ||
    7132         120 :                              eFlatType == wkbCompoundCurve ||
    7133         120 :                              eFlatType == wkbMultiCurve ||
    7134           2 :                              eFlatType == wkbMultiSurface) &&
    7135         251 :                             poDstGeometry->hasCurveGeometry(TRUE) &&
    7136           2 :                             poDstGeometry->IsValid(&osReason))
    7137             :                         {
    7138           2 :                             OGRwkbGeometryType eTargetType = OGR_GT_GetLinear(
    7139           2 :                                 poDstGeometry->getGeometryType());
    7140             :                             auto poDstGeometryTmp = OGRGeometryFactory::forceTo(
    7141           2 :                                 std::unique_ptr<OGRGeometry>(
    7142           2 :                                     poReprojectedGeom->clone()),
    7143           2 :                                 eTargetType);
    7144           2 :                             if (!poDstGeometryTmp->IsValid(&osReason))
    7145             :                             {
    7146           1 :                                 CPLDebug("OGR2OGR",
    7147             :                                          "Curve geometry no longer valid (%s) "
    7148             :                                          "after reprojection: transforming it "
    7149             :                                          "into linear one before reprojecting",
    7150             :                                          osReason.c_str());
    7151           2 :                                 poDstGeometry = OGRGeometryFactory::forceTo(
    7152           2 :                                     std::move(poDstGeometry), eTargetType);
    7153           2 :                                 poDstGeometry = OGRGeometryFactory::forceTo(
    7154           2 :                                     std::move(poDstGeometry), eType);
    7155             :                             }
    7156             :                             else
    7157             :                             {
    7158           1 :                                 poDstGeometry = std::move(poReprojectedGeom);
    7159           1 :                                 break;
    7160             :                             }
    7161             :                         }
    7162             :                         else
    7163             :                         {
    7164         123 :                             poDstGeometry = std::move(poReprojectedGeom);
    7165         123 :                             break;
    7166             :                         }
    7167         124 :                     }
    7168             :                 }
    7169        8960 :                 else if (poOutputSRS != nullptr)
    7170             :                 {
    7171        7772 :                     poDstGeometry->assignSpatialReference(poOutputSRS);
    7172             :                 }
    7173             : 
    7174        9084 :                 if (poDstGeometry != nullptr)
    7175             :                 {
    7176        9084 :                     if (m_poClipDstOri)
    7177             :                     {
    7178          40 :                         if (poDstGeometry->IsEmpty())
    7179          20 :                             goto end_loop;
    7180             : 
    7181             :                         const auto clipGeomDesc = GetDstClipGeom(
    7182          40 :                             poDstGeometry->getSpatialReference());
    7183          40 :                         if (!clipGeomDesc.poGeom || !clipGeomDesc.poEnv)
    7184             :                         {
    7185           0 :                             goto end_loop;
    7186             :                         }
    7187             : 
    7188          40 :                         OGREnvelope oDstEnv;
    7189          40 :                         poDstGeometry->getEnvelope(&oDstEnv);
    7190             : 
    7191          74 :                         if (!(clipGeomDesc.bGeomIsRectangle &&
    7192          34 :                               clipGeomDesc.poEnv->Contains(oDstEnv)))
    7193             :                         {
    7194           0 :                             std::unique_ptr<OGRGeometry> poClipped;
    7195          35 :                             if (clipGeomDesc.poEnv->Intersects(oDstEnv))
    7196             :                             {
    7197          20 :                                 poClipped.reset(
    7198          20 :                                     clipGeomDesc.poGeom->Intersection(
    7199          20 :                                         poDstGeometry.get()));
    7200             :                             }
    7201             : 
    7202          35 :                             if (poClipped == nullptr || poClipped->IsEmpty())
    7203             :                             {
    7204          19 :                                 goto end_loop;
    7205             :                             }
    7206             : 
    7207          16 :                             const int nDim = poDstGeometry->getDimension();
    7208          17 :                             if (poClipped->getDimension() < nDim &&
    7209           1 :                                 wkbFlatten(poDstFDefn->GetGeomFieldDefn(iGeom)
    7210             :                                                ->GetType()) != wkbUnknown)
    7211             :                             {
    7212           3 :                                 CPLDebug(
    7213             :                                     "OGR2OGR",
    7214             :                                     "Discarding feature " CPL_FRMT_GIB
    7215             :                                     " of layer %s, "
    7216             :                                     "as its intersection with -clipdst is a %s "
    7217             :                                     "whereas the input is a %s",
    7218           1 :                                     nSrcFID, poSrcLayer->GetName(),
    7219             :                                     OGRToOGCGeomType(
    7220           1 :                                         poClipped->getGeometryType()),
    7221             :                                     OGRToOGCGeomType(
    7222           1 :                                         poDstGeometry->getGeometryType()));
    7223           1 :                                 goto end_loop;
    7224             :                             }
    7225             : 
    7226             :                             poDstGeometry =
    7227          45 :                                 OGRGeometryFactory::makeCompatibleWith(
    7228          15 :                                     std::move(poClipped),
    7229          15 :                                     poDstFDefn->GetGeomFieldDefn(iGeom)
    7230          15 :                                         ->GetType());
    7231             :                         }
    7232             :                     }
    7233             : 
    7234       18128 :                     if (psOptions->dfXYRes !=
    7235           1 :                             OGRGeomCoordinatePrecision::UNKNOWN &&
    7236        9065 :                         OGRGeometryFactory::haveGEOS() &&
    7237           1 :                         !poDstGeometry->hasCurveGeometry())
    7238             :                     {
    7239             :                         // OGR_APPLY_GEOM_SET_PRECISION default value for
    7240             :                         // OGRLayer::CreateFeature() purposes, but here in the
    7241             :                         // ogr2ogr -xyRes context, we force calling SetPrecision(),
    7242             :                         // unless the user explicitly asks not to do it by
    7243             :                         // setting the config option to NO.
    7244           1 :                         if (!bRunSetPrecisionEvaluated)
    7245             :                         {
    7246           1 :                             bRunSetPrecisionEvaluated = true;
    7247           1 :                             bRunSetPrecision = CPLTestBool(CPLGetConfigOption(
    7248             :                                 "OGR_APPLY_GEOM_SET_PRECISION", "YES"));
    7249             :                         }
    7250           1 :                         if (bRunSetPrecision)
    7251             :                         {
    7252             :                             auto poNewGeom = std::unique_ptr<OGRGeometry>(
    7253           1 :                                 poDstGeometry->SetPrecision(psOptions->dfXYRes,
    7254           1 :                                                             /* nFlags = */ 0));
    7255           1 :                             if (!poNewGeom)
    7256           0 :                                 goto end_loop;
    7257           1 :                             poDstGeometry = std::move(poNewGeom);
    7258             :                         }
    7259             :                     }
    7260             : 
    7261        9064 :                     if (m_bMakeValid)
    7262             :                     {
    7263             :                         const bool bIsGeomCollection =
    7264           7 :                             wkbFlatten(poDstGeometry->getGeometryType()) ==
    7265           7 :                             wkbGeometryCollection;
    7266             :                         auto poNewGeom = std::unique_ptr<OGRGeometry>(
    7267           7 :                             poDstGeometry->MakeValid());
    7268           7 :                         if (!poNewGeom)
    7269           0 :                             goto end_loop;
    7270           7 :                         poDstGeometry = std::move(poNewGeom);
    7271           7 :                         if (!bIsGeomCollection)
    7272             :                         {
    7273           6 :                             poDstGeometry.reset(
    7274             :                                 OGRGeometryFactory::
    7275             :                                     removeLowerDimensionSubGeoms(
    7276           6 :                                         poDstGeometry.get()));
    7277             :                         }
    7278             :                     }
    7279             : 
    7280        9064 :                     if (m_bSkipInvalidGeom && !poDstGeometry->IsValid())
    7281           1 :                         goto end_loop;
    7282             : 
    7283        9063 :                     if (m_eGeomTypeConversion != GTC_DEFAULT)
    7284             :                     {
    7285             :                         OGRwkbGeometryType eTargetType =
    7286          11 :                             poDstGeometry->getGeometryType();
    7287             :                         eTargetType =
    7288          11 :                             ConvertType(m_eGeomTypeConversion, eTargetType);
    7289          22 :                         poDstGeometry = OGRGeometryFactory::forceTo(
    7290          22 :                             std::move(poDstGeometry), eTargetType);
    7291             :                     }
    7292        9052 :                     else if (eGType != GEOMTYPE_UNCHANGED)
    7293             :                     {
    7294         118 :                         poDstGeometry = OGRGeometryFactory::forceTo(
    7295          59 :                             std::move(poDstGeometry),
    7296          59 :                             static_cast<OGRwkbGeometryType>(eGType));
    7297             :                     }
    7298             :                 }
    7299             : 
    7300        9063 :                 if (poDstGeometry && !psOptions->bQuiet)
    7301             :                 {
    7302       27161 :                     if (!psInfo->m_bHasWarnedAboutCurves &&
    7303       13091 :                         !psInfo->m_bSupportCurves &&
    7304        4037 :                         OGR_GT_IsNonLinear(poDstGeometry->getGeometryType()))
    7305             :                     {
    7306           3 :                         CPLError(CE_Warning, CPLE_AppDefined,
    7307             :                                  "Attempt to write curve geometries to layer "
    7308             :                                  "%s that does not support them. They will be "
    7309             :                                  "linearized",
    7310           3 :                                  poDstLayer->GetDescription());
    7311           3 :                         psInfo->m_bHasWarnedAboutCurves = true;
    7312             :                     }
    7313       10014 :                     if (!psInfo->m_bHasWarnedAboutZ && !psInfo->m_bSupportZ &&
    7314         960 :                         OGR_GT_HasZ(poDstGeometry->getGeometryType()))
    7315             :                     {
    7316           3 :                         CPLError(CE_Warning, CPLE_AppDefined,
    7317             :                                  "Attempt to write Z geometries to layer %s "
    7318             :                                  "that does not support them. Z component will "
    7319             :                                  "be discarded",
    7320           3 :                                  poDstLayer->GetDescription());
    7321           3 :                         psInfo->m_bHasWarnedAboutZ = true;
    7322             :                     }
    7323       10112 :                     if (!psInfo->m_bHasWarnedAboutM && !psInfo->m_bSupportM &&
    7324        1058 :                         OGR_GT_HasM(poDstGeometry->getGeometryType()))
    7325             :                     {
    7326           1 :                         CPLError(CE_Warning, CPLE_AppDefined,
    7327             :                                  "Attempt to write M geometries to layer %s "
    7328             :                                  "that does not support them. M component will "
    7329             :                                  "be discarded",
    7330           1 :                                  poDstLayer->GetDescription());
    7331           1 :                         psInfo->m_bHasWarnedAboutM = true;
    7332             :                     }
    7333             :                 }
    7334             : 
    7335        9063 :                 poDstFeature->SetGeomField(iGeom, std::move(poDstGeometry));
    7336             :             }
    7337             : 
    7338       15751 :             CPLErrorReset();
    7339       31502 :             if ((psOptions->bUpsert
    7340       15751 :                      ? poDstLayer->UpsertFeature(poDstFeature.get())
    7341       15751 :                      : poDstLayer->CreateFeature(poDstFeature.get())) ==
    7342             :                 OGRERR_NONE)
    7343             :             {
    7344       15742 :                 nFeaturesWritten++;
    7345       16919 :                 if (nDesiredFID != OGRNullFID &&
    7346        1177 :                     poDstFeature->GetFID() != nDesiredFID)
    7347             :                 {
    7348           0 :                     CPLError(CE_Warning, CPLE_AppDefined,
    7349             :                              "Feature id " CPL_FRMT_GIB " not preserved",
    7350             :                              nDesiredFID);
    7351             :                 }
    7352             :             }
    7353           9 :             else if (!psOptions->bSkipFailures)
    7354             :             {
    7355           6 :                 if (psOptions->nGroupTransactions)
    7356             :                 {
    7357           6 :                     if (psOptions->nLayerTransaction)
    7358           2 :                         poDstLayer->RollbackTransaction();
    7359             :                 }
    7360             : 
    7361           6 :                 CPLError(CE_Failure, CPLE_AppDefined,
    7362             :                          "Unable to write feature " CPL_FRMT_GIB
    7363             :                          " from layer %s.",
    7364           6 :                          nSrcFID, poSrcLayer->GetName());
    7365             : 
    7366           6 :                 return false;
    7367             :             }
    7368             :             else
    7369             :             {
    7370           3 :                 CPLDebug("GDALVectorTranslate",
    7371             :                          "Unable to write feature " CPL_FRMT_GIB
    7372             :                          " into layer %s.",
    7373           3 :                          nSrcFID, poSrcLayer->GetName());
    7374           3 :                 if (psOptions->nGroupTransactions)
    7375             :                 {
    7376           3 :                     if (psOptions->nLayerTransaction)
    7377             :                     {
    7378           2 :                         poDstLayer->RollbackTransaction();
    7379           2 :                         CPL_IGNORE_RET_VAL(poDstLayer->StartTransaction());
    7380             :                     }
    7381             :                     else
    7382             :                     {
    7383           1 :                         m_poODS->RollbackTransaction();
    7384           1 :                         m_poODS->StartTransaction(psOptions->bForceTransaction);
    7385             :                     }
    7386             :                 }
    7387             :             }
    7388             : 
    7389       15792 :         end_loop:;  // nothing
    7390             :         }
    7391             : 
    7392             :         /* Report progress */
    7393       15789 :         nCount++;
    7394       15789 :         bool bGoOn = true;
    7395       15789 :         if (pfnProgress)
    7396             :         {
    7397        5335 :             bGoOn = pfnProgress(nCountLayerFeatures
    7398        2666 :                                     ? nCount * 1.0 / nCountLayerFeatures
    7399             :                                     : 1.0,
    7400             :                                 "", pProgressArg) != FALSE;
    7401             :         }
    7402       15789 :         if (!bGoOn)
    7403             :         {
    7404           1 :             bRet = false;
    7405           1 :             break;
    7406             :         }
    7407             : 
    7408       15788 :         if (pnReadFeatureCount)
    7409           0 :             *pnReadFeatureCount = nCount;
    7410             : 
    7411       15788 :         if (psOptions->nFIDToFetch != OGRNullFID)
    7412           5 :             break;
    7413       15783 :         if (bSingleIteration)
    7414         980 :             break;
    7415       14803 :     }
    7416             : 
    7417        1906 :     if (psOptions->nGroupTransactions)
    7418             :     {
    7419        1905 :         if (psOptions->nLayerTransaction)
    7420             :         {
    7421         766 :             if (poDstLayer->CommitTransaction() != OGRERR_NONE)
    7422           0 :                 bRet = false;
    7423             :         }
    7424             :     }
    7425             : 
    7426        1906 :     if (!bSingleIteration)
    7427             :     {
    7428         926 :         CPLDebug("GDALVectorTranslate",
    7429             :                  CPL_FRMT_GIB " features written in layer '%s'",
    7430         926 :                  nFeaturesWritten, poDstLayer->GetName());
    7431             :     }
    7432             : 
    7433        1906 :     return bRet;
    7434             : }
    7435             : 
    7436             : /************************************************************************/
    7437             : /*                  LayerTranslator::GetDstClipGeom()                   */
    7438             : /************************************************************************/
    7439             : 
    7440             : /** Returns the destination clip geometry and its envelope
    7441             :  *
    7442             :  * @param poGeomSRS The SRS into which the destination clip geometry should be
    7443             :  *                  expressed.
    7444             :  * @return the destination clip geometry and its envelope, or (nullptr, nullptr)
    7445             :  */
    7446             : LayerTranslator::ClipGeomDesc
    7447          40 : LayerTranslator::GetDstClipGeom(const OGRSpatialReference *poGeomSRS)
    7448             : {
    7449          40 :     if (m_poClipDstReprojectedToDstSRS_SRS != poGeomSRS)
    7450             :     {
    7451          36 :         auto poClipDstSRS = m_poClipDstOri->getSpatialReference();
    7452          36 :         if (poClipDstSRS && poGeomSRS && !poClipDstSRS->IsSame(poGeomSRS))
    7453             :         {
    7454             :             // Transform clip geom to geometry SRS
    7455           1 :             m_poClipDstReprojectedToDstSRS.reset(m_poClipDstOri->clone());
    7456           1 :             if (m_poClipDstReprojectedToDstSRS->transformTo(poGeomSRS) !=
    7457             :                 OGRERR_NONE)
    7458             :             {
    7459           0 :                 return ClipGeomDesc();
    7460             :             }
    7461           1 :             m_poClipDstReprojectedToDstSRS_SRS = poGeomSRS;
    7462             :         }
    7463          35 :         else if (!poClipDstSRS && poGeomSRS)
    7464             :         {
    7465          35 :             if (!m_bWarnedClipDstSRS)
    7466             :             {
    7467           2 :                 m_bWarnedClipDstSRS = true;
    7468           2 :                 CPLError(CE_Warning, CPLE_AppDefined,
    7469             :                          "Clip destination geometry has no "
    7470             :                          "attached SRS, but the feature's "
    7471             :                          "geometry has one. Assuming clip "
    7472             :                          "destination geometry SRS is the "
    7473             :                          "same as the feature's geometry");
    7474             :             }
    7475             :         }
    7476          36 :         m_oClipDstEnv = OGREnvelope();
    7477             :     }
    7478             : 
    7479             :     const auto poGeom = m_poClipDstReprojectedToDstSRS
    7480          40 :                             ? m_poClipDstReprojectedToDstSRS.get()
    7481          40 :                             : m_poClipDstOri;
    7482          40 :     if (poGeom && !m_oClipDstEnv.IsInit())
    7483             :     {
    7484          40 :         poGeom->getEnvelope(&m_oClipDstEnv);
    7485          40 :         m_bClipDstIsRectangle = poGeom->IsRectangle();
    7486             :     }
    7487          40 :     ClipGeomDesc ret;
    7488          40 :     ret.poGeom = poGeom;
    7489          40 :     ret.poEnv = poGeom ? &m_oClipDstEnv : nullptr;
    7490          40 :     ret.bGeomIsRectangle = m_bClipDstIsRectangle;
    7491          40 :     return ret;
    7492             : }
    7493             : 
    7494             : /************************************************************************/
    7495             : /*                  LayerTranslator::GetSrcClipGeom()                   */
    7496             : /************************************************************************/
    7497             : 
    7498             : /** Returns the source clip geometry and its envelope
    7499             :  *
    7500             :  * @param poGeomSRS The SRS into which the source clip geometry should be
    7501             :  *                  expressed.
    7502             :  * @return the source clip geometry and its envelope, or (nullptr, nullptr)
    7503             :  */
    7504             : LayerTranslator::ClipGeomDesc
    7505          50 : LayerTranslator::GetSrcClipGeom(const OGRSpatialReference *poGeomSRS)
    7506             : {
    7507          50 :     if (m_poClipSrcReprojectedToSrcSRS_SRS != poGeomSRS)
    7508             :     {
    7509          42 :         auto poClipSrcSRS = m_poClipSrcOri->getSpatialReference();
    7510          42 :         if (poClipSrcSRS && poGeomSRS && !poClipSrcSRS->IsSame(poGeomSRS))
    7511             :         {
    7512             :             // Transform clip geom to geometry SRS
    7513           1 :             m_poClipSrcReprojectedToSrcSRS.reset(m_poClipSrcOri->clone());
    7514           1 :             if (m_poClipSrcReprojectedToSrcSRS->transformTo(poGeomSRS) !=
    7515             :                 OGRERR_NONE)
    7516             :             {
    7517           0 :                 return ClipGeomDesc();
    7518             :             }
    7519           1 :             m_poClipSrcReprojectedToSrcSRS_SRS = poGeomSRS;
    7520             :         }
    7521          41 :         else if (!poClipSrcSRS && poGeomSRS)
    7522             :         {
    7523          41 :             if (!m_bWarnedClipSrcSRS)
    7524             :             {
    7525           3 :                 m_bWarnedClipSrcSRS = true;
    7526           3 :                 CPLError(CE_Warning, CPLE_AppDefined,
    7527             :                          "Clip source geometry has no attached SRS, "
    7528             :                          "but the feature's geometry has one. "
    7529             :                          "Assuming clip source geometry SRS is the "
    7530             :                          "same as the feature's geometry");
    7531             :             }
    7532             :         }
    7533          42 :         m_oClipSrcEnv = OGREnvelope();
    7534             :     }
    7535             : 
    7536             :     const auto poGeom = m_poClipSrcReprojectedToSrcSRS
    7537          50 :                             ? m_poClipSrcReprojectedToSrcSRS.get()
    7538          50 :                             : m_poClipSrcOri;
    7539          50 :     if (poGeom && !m_oClipSrcEnv.IsInit())
    7540             :     {
    7541          50 :         poGeom->getEnvelope(&m_oClipSrcEnv);
    7542          50 :         m_bClipSrcIsRectangle = poGeom->IsRectangle();
    7543             :     }
    7544          50 :     ClipGeomDesc ret;
    7545          50 :     ret.poGeom = poGeom;
    7546          50 :     ret.poEnv = poGeom ? &m_oClipSrcEnv : nullptr;
    7547          50 :     ret.bGeomIsRectangle = m_bClipDstIsRectangle;
    7548          50 :     return ret;
    7549             : }
    7550             : 
    7551             : /************************************************************************/
    7552             : /*           TargetLayerInfo::CheckSameCoordinateOperation()            */
    7553             : /************************************************************************/
    7554             : 
    7555        1253 : void TargetLayerInfo::CheckSameCoordinateOperation() const
    7556             : {
    7557        2405 :     for (auto &info : m_aoReprojectionInfo)
    7558             :     {
    7559        1152 :         if (info.m_bWarnAboutDifferentCoordinateOperations &&
    7560          36 :             info.m_dfLeftX <= info.m_dfRightX)
    7561             :         {
    7562             :             // Start recording if different coordinate operations are
    7563             :             // going to be used
    7564          35 :             OGRProjCTDifferentOperationsStart(info.m_poCT.get());
    7565             : 
    7566             :             {
    7567          70 :                 CPLErrorStateBackuper oBackuper(CPLQuietErrorHandler);
    7568             :                 {
    7569          35 :                     double dfX = info.m_dfLeftX;
    7570          35 :                     double dfY = info.m_dfLeftY;
    7571          35 :                     double dfZ = info.m_dfLeftZ;
    7572          35 :                     info.m_poCT->Transform(1, &dfX, &dfY, &dfZ);
    7573             :                 }
    7574             : 
    7575             :                 {
    7576          35 :                     double dfX = info.m_dfRightX;
    7577          35 :                     double dfY = info.m_dfRightY;
    7578          35 :                     double dfZ = info.m_dfRightZ;
    7579          35 :                     info.m_poCT->Transform(1, &dfX, &dfY, &dfZ);
    7580             :                 }
    7581             : 
    7582             :                 {
    7583          35 :                     double dfX = info.m_dfTopX;
    7584          35 :                     double dfY = info.m_dfTopY;
    7585          35 :                     double dfZ = info.m_dfTopZ;
    7586          35 :                     info.m_poCT->Transform(1, &dfX, &dfY, &dfZ);
    7587             :                 }
    7588             : 
    7589             :                 {
    7590          35 :                     double dfX = info.m_dfBottomX;
    7591          35 :                     double dfY = info.m_dfBottomY;
    7592          35 :                     double dfZ = info.m_dfBottomZ;
    7593          35 :                     info.m_poCT->Transform(1, &dfX, &dfY, &dfZ);
    7594             :                 }
    7595             :             }
    7596             : 
    7597          35 :             if (OGRProjCTDifferentOperationsUsed(info.m_poCT.get()))
    7598             :             {
    7599           0 :                 CPLError(
    7600             :                     CE_Warning, CPLE_AppDefined,
    7601             :                     "Several coordinate operations have been used to transform "
    7602             :                     "layer %s. Artifacts may appear. You may consider "
    7603             :                     "using the -ct_opt ALLOW_BALLPARK=NO and/or "
    7604             :                     "-ct_opt ONLY_BEST=YES warping options, or specify "
    7605             :                     "a particular coordinate operation with -ct. "
    7606             :                     "This warning can be silenced with "
    7607             :                     "-ct_opt WARN_ABOUT_DIFFERENT_COORD_OP=NO.",
    7608           0 :                     m_poSrcLayer->GetName());
    7609             :             }
    7610             : 
    7611             :             // Stop recording
    7612          35 :             OGRProjCTDifferentOperationsStop(info.m_poCT.get());
    7613             :         }
    7614             :     }
    7615        1253 : }
    7616             : 
    7617             : /************************************************************************/
    7618             : /*                GDALVectorTranslateOptionsGetParser()                 */
    7619             : /************************************************************************/
    7620             : 
    7621        1141 : static std::unique_ptr<GDALArgumentParser> GDALVectorTranslateOptionsGetParser(
    7622             :     GDALVectorTranslateOptions *psOptions,
    7623             :     GDALVectorTranslateOptionsForBinary *psOptionsForBinary, int nCountClipSrc,
    7624             :     int nCountClipDst)
    7625             : {
    7626             :     auto argParser = std::make_unique<GDALArgumentParser>(
    7627        1141 :         "ogr2ogr", /* bForBinary=*/psOptionsForBinary != nullptr);
    7628             : 
    7629        1141 :     argParser->add_description(
    7630        1141 :         _("Converts simple features data between file formats."));
    7631             : 
    7632        1141 :     argParser->add_epilog(
    7633        1141 :         _("For more details, consult https://gdal.org/programs/ogr2ogr.html"));
    7634             : 
    7635        1141 :     argParser->add_output_format_argument(psOptions->osFormat);
    7636             : 
    7637        1141 :     argParser->add_dataset_creation_options_argument(psOptions->aosDSCO);
    7638             : 
    7639        1141 :     argParser->add_layer_creation_options_argument(psOptions->aosLCO);
    7640             : 
    7641        1141 :     argParser->add_usage_newline();
    7642             : 
    7643             :     {
    7644        1141 :         auto &group = argParser->add_mutually_exclusive_group();
    7645        1141 :         group.add_argument("-append")
    7646        1141 :             .flag()
    7647          39 :             .action([psOptions](const std::string &)
    7648        1141 :                     { psOptions->eAccessMode = ACCESS_APPEND; })
    7649        1141 :             .help(_("Append to existing layer instead of creating new."));
    7650             : 
    7651        1141 :         group.add_argument("-upsert")
    7652        1141 :             .flag()
    7653             :             .action(
    7654           4 :                 [psOptions](const std::string &)
    7655             :                 {
    7656           4 :                     psOptions->eAccessMode = ACCESS_APPEND;
    7657           4 :                     psOptions->bUpsert = true;
    7658        1141 :                 })
    7659             :             .help(_("Variant of -append where the UpsertFeature() operation is "
    7660        1141 :                     "used to insert or update features."));
    7661             : 
    7662        1141 :         group.add_argument("-overwrite")
    7663        1141 :             .flag()
    7664          18 :             .action([psOptions](const std::string &)
    7665        1141 :                     { psOptions->eAccessMode = ACCESS_OVERWRITE; })
    7666        1141 :             .help(_("Delete the output layer and recreate it empty."));
    7667             :     }
    7668             : 
    7669        1141 :     argParser->add_argument("-update")
    7670        1141 :         .flag()
    7671             :         .action(
    7672          22 :             [psOptions](const std::string &)
    7673             :             {
    7674             :                 /* Don't reset -append or -overwrite */
    7675           8 :                 if (psOptions->eAccessMode != ACCESS_APPEND &&
    7676           7 :                     psOptions->eAccessMode != ACCESS_OVERWRITE)
    7677           7 :                     psOptions->eAccessMode = ACCESS_UPDATE;
    7678        1141 :             })
    7679             :         .help(_("Open existing output datasource in update mode rather than "
    7680        1141 :                 "trying to create a new one."));
    7681             : 
    7682        1141 :     argParser->add_argument("-sql")
    7683        2282 :         .metavar("<statement>|@<filename>")
    7684             :         .action(
    7685          36 :             [psOptions](const std::string &s)
    7686             :             {
    7687          18 :                 GByte *pabyRet = nullptr;
    7688          21 :                 if (!s.empty() && s.front() == '@' &&
    7689           3 :                     VSIIngestFile(nullptr, s.c_str() + 1, &pabyRet, nullptr,
    7690             :                                   10 * 1024 * 1024))
    7691             :                 {
    7692           3 :                     GDALRemoveBOM(pabyRet);
    7693           3 :                     char *pszSQLStatement = reinterpret_cast<char *>(pabyRet);
    7694             :                     psOptions->osSQLStatement =
    7695           3 :                         CPLRemoveSQLComments(pszSQLStatement);
    7696           3 :                     VSIFree(pszSQLStatement);
    7697             :                 }
    7698             :                 else
    7699             :                 {
    7700          15 :                     psOptions->osSQLStatement = s;
    7701             :                 }
    7702        1159 :             })
    7703        1141 :         .help(_("SQL statement to execute."));
    7704             : 
    7705        1141 :     argParser->add_argument("-dialect")
    7706        2282 :         .metavar("<dialect>")
    7707        1141 :         .store_into(psOptions->osDialect)
    7708        1141 :         .help(_("SQL dialect."));
    7709             : 
    7710        1141 :     argParser->add_argument("-spat")
    7711        2282 :         .metavar("<xmin> <ymin> <xmax> <ymax>")
    7712        1141 :         .nargs(4)
    7713        1141 :         .scan<'g', double>()
    7714             :         .help(_("Spatial query extents, in the SRS of the source layer(s) (or "
    7715        1141 :                 "the one specified with -spat_srs."));
    7716             : 
    7717        1141 :     argParser->add_argument("-where")
    7718        2282 :         .metavar("<restricted_where>|@<filename>")
    7719             :         .action(
    7720          16 :             [psOptions](const std::string &s)
    7721             :             {
    7722           8 :                 GByte *pabyRet = nullptr;
    7723           9 :                 if (!s.empty() && s.front() == '@' &&
    7724           1 :                     VSIIngestFile(nullptr, s.c_str() + 1, &pabyRet, nullptr,
    7725             :                                   10 * 1024 * 1024))
    7726             :                 {
    7727           1 :                     GDALRemoveBOM(pabyRet);
    7728           1 :                     char *pszWHERE = reinterpret_cast<char *>(pabyRet);
    7729           1 :                     psOptions->osWHERE = pszWHERE;
    7730           1 :                     VSIFree(pszWHERE);
    7731             :                 }
    7732             :                 else
    7733             :                 {
    7734           7 :                     psOptions->osWHERE = s;
    7735             :                 }
    7736        1149 :             })
    7737        1141 :         .help(_("Attribute query (like SQL WHERE)."));
    7738             : 
    7739        1141 :     argParser->add_argument("-select")
    7740        2282 :         .metavar("<field_list>")
    7741             :         .action(
    7742          38 :             [psOptions](const std::string &s)
    7743             :             {
    7744          19 :                 psOptions->bSelFieldsSet = true;
    7745             :                 psOptions->aosSelFields =
    7746          19 :                     CSLTokenizeStringComplex(s.c_str(), ",", TRUE, FALSE);
    7747        1141 :             })
    7748             :         .help(_("Comma-delimited list of fields from input layer to copy to "
    7749        1141 :                 "the new layer."));
    7750             : 
    7751        1141 :     argParser->add_argument("-nln")
    7752        2282 :         .metavar("<name>")
    7753        1141 :         .store_into(psOptions->osNewLayerName)
    7754        1141 :         .help(_("Assign an alternate name to the new layer."));
    7755             : 
    7756        1141 :     argParser->add_argument("-nlt")
    7757        2282 :         .metavar("<type>")
    7758        1141 :         .append()
    7759             :         .action(
    7760         243 :             [psOptions](const std::string &osGeomNameIn)
    7761             :             {
    7762          53 :                 bool bIs3D = false;
    7763         106 :                 std::string osGeomName(osGeomNameIn);
    7764         106 :                 if (osGeomName.size() > 3 &&
    7765          53 :                     STARTS_WITH_CI(osGeomName.c_str() + osGeomName.size() - 3,
    7766             :                                    "25D"))
    7767             :                 {
    7768           1 :                     bIs3D = true;
    7769           1 :                     osGeomName.resize(osGeomName.size() - 3);
    7770             :                 }
    7771         104 :                 else if (osGeomName.size() > 1 &&
    7772          52 :                          STARTS_WITH_CI(
    7773             :                              osGeomName.c_str() + osGeomName.size() - 1, "Z"))
    7774             :                 {
    7775           0 :                     bIs3D = true;
    7776           0 :                     osGeomName.pop_back();
    7777             :                 }
    7778          53 :                 if (EQUAL(osGeomName.c_str(), "NONE"))
    7779             :                 {
    7780           1 :                     if (psOptions->eGType != GEOMTYPE_UNCHANGED)
    7781             :                     {
    7782             :                         throw std::invalid_argument(
    7783           0 :                             "Unsupported combination of -nlt arguments.");
    7784             :                     }
    7785           1 :                     psOptions->eGType = wkbNone;
    7786             :                 }
    7787          52 :                 else if (EQUAL(osGeomName.c_str(), "GEOMETRY"))
    7788             :                 {
    7789           4 :                     if (psOptions->eGType != GEOMTYPE_UNCHANGED)
    7790             :                     {
    7791             :                         throw std::invalid_argument(
    7792           0 :                             "Unsupported combination of -nlt arguments.");
    7793             :                     }
    7794           4 :                     psOptions->eGType = wkbUnknown;
    7795             :                 }
    7796          48 :                 else if (EQUAL(osGeomName.c_str(), "PROMOTE_TO_MULTI"))
    7797             :                 {
    7798           8 :                     if (psOptions->eGeomTypeConversion == GTC_CONVERT_TO_LINEAR)
    7799           2 :                         psOptions->eGeomTypeConversion =
    7800             :                             GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR;
    7801           6 :                     else if (psOptions->eGeomTypeConversion == GTC_DEFAULT)
    7802           5 :                         psOptions->eGeomTypeConversion = GTC_PROMOTE_TO_MULTI;
    7803             :                     else
    7804             :                     {
    7805             :                         throw std::invalid_argument(
    7806           1 :                             "Unsupported combination of -nlt arguments.");
    7807             :                     }
    7808             :                 }
    7809          40 :                 else if (EQUAL(osGeomName.c_str(), "CONVERT_TO_LINEAR"))
    7810             :                 {
    7811          12 :                     if (psOptions->eGeomTypeConversion == GTC_PROMOTE_TO_MULTI)
    7812           2 :                         psOptions->eGeomTypeConversion =
    7813             :                             GTC_PROMOTE_TO_MULTI_AND_CONVERT_TO_LINEAR;
    7814          10 :                     else if (psOptions->eGeomTypeConversion == GTC_DEFAULT)
    7815           9 :                         psOptions->eGeomTypeConversion = GTC_CONVERT_TO_LINEAR;
    7816             :                     else
    7817             :                     {
    7818             :                         throw std::invalid_argument(
    7819           1 :                             "Unsupported combination of -nlt arguments.");
    7820             :                     }
    7821             :                 }
    7822          28 :                 else if (EQUAL(osGeomName.c_str(), "CONVERT_TO_CURVE"))
    7823             :                 {
    7824           7 :                     if (psOptions->eGeomTypeConversion == GTC_DEFAULT)
    7825           5 :                         psOptions->eGeomTypeConversion = GTC_CONVERT_TO_CURVE;
    7826             :                     else
    7827             :                     {
    7828             :                         throw std::invalid_argument(
    7829           2 :                             "Unsupported combination of -nlt arguments.");
    7830             :                     }
    7831             :                 }
    7832             :                 else
    7833             :                 {
    7834          21 :                     if (psOptions->eGType != GEOMTYPE_UNCHANGED)
    7835             :                     {
    7836             :                         throw std::invalid_argument(
    7837           3 :                             "Unsupported combination of -nlt arguments.");
    7838             :                     }
    7839          18 :                     psOptions->eGType = OGRFromOGCGeomType(osGeomName.c_str());
    7840          18 :                     if (psOptions->eGType == wkbUnknown)
    7841             :                     {
    7842             :                         throw std::invalid_argument(
    7843             :                             CPLSPrintf("-nlt %s: type not recognised.",
    7844           0 :                                        osGeomName.c_str()));
    7845             :                     }
    7846             :                 }
    7847          46 :                 if (psOptions->eGType != GEOMTYPE_UNCHANGED &&
    7848          27 :                     psOptions->eGType != wkbNone && bIs3D)
    7849           1 :                     psOptions->eGType = wkbSetZ(
    7850             :                         static_cast<OGRwkbGeometryType>(psOptions->eGType));
    7851        1187 :             })
    7852        1141 :         .help(_("Define the geometry type for the created layer."));
    7853             : 
    7854        1141 :     argParser->add_argument("-s_srs")
    7855        2282 :         .metavar("<srs_def>")
    7856        1141 :         .store_into(psOptions->osSourceSRSDef)
    7857        1141 :         .help(_("Set/override source SRS."));
    7858             : 
    7859             :     {
    7860        1141 :         auto &group = argParser->add_mutually_exclusive_group();
    7861        1141 :         group.add_argument("-a_srs")
    7862        2282 :             .metavar("<srs_def>")
    7863             :             .action(
    7864         353 :                 [psOptions](const std::string &osOutputSRSDef)
    7865             :                 {
    7866         115 :                     psOptions->osOutputSRSDef = osOutputSRSDef;
    7867         230 :                     if (EQUAL(psOptions->osOutputSRSDef.c_str(), "NULL") ||
    7868         115 :                         EQUAL(psOptions->osOutputSRSDef.c_str(), "NONE"))
    7869             :                     {
    7870           4 :                         psOptions->osOutputSRSDef.clear();
    7871           4 :                         psOptions->bNullifyOutputSRS = true;
    7872             :                     }
    7873        1141 :                 })
    7874        1141 :             .help(_("Assign an output SRS, but without reprojecting."));
    7875             : 
    7876        1141 :         group.add_argument("-t_srs")
    7877        2282 :             .metavar("<srs_def>")
    7878             :             .action(
    7879          72 :                 [psOptions](const std::string &osOutputSRSDef)
    7880             :                 {
    7881          36 :                     psOptions->osOutputSRSDef = osOutputSRSDef;
    7882          36 :                     psOptions->bTransform = true;
    7883        1141 :                 })
    7884             :             .help(_("Reproject/transform to this SRS on output, and assign it "
    7885        1141 :                     "as output SRS."));
    7886             :     }
    7887             : 
    7888             :     ///////////////////////////////////////////////////////////////////////
    7889        1141 :     argParser->add_group("Field related options");
    7890             : 
    7891        1141 :     argParser->add_argument("-addfields")
    7892        1141 :         .flag()
    7893             :         .action(
    7894           4 :             [psOptions](const std::string &)
    7895             :             {
    7896           4 :                 psOptions->bAddMissingFields = true;
    7897           4 :                 psOptions->eAccessMode = ACCESS_APPEND;
    7898        1141 :             })
    7899        1141 :         .help(_("Same as append, but add also any new fields."));
    7900             : 
    7901        1141 :     argParser->add_argument("-relaxedFieldNameMatch")
    7902        1141 :         .flag()
    7903           1 :         .action([psOptions](const std::string &)
    7904        1141 :                 { psOptions->bExactFieldNameMatch = false; })
    7905             :         .help(_("Do field name matching between source and existing target "
    7906        1141 :                 "layer in a more relaxed way."));
    7907             : 
    7908        1141 :     argParser->add_argument("-fieldTypeToString")
    7909        2282 :         .metavar("All|<type1>[,<type2>]...")
    7910             :         .action(
    7911           0 :             [psOptions](const std::string &s)
    7912             :             {
    7913             :                 psOptions->aosFieldTypesToString =
    7914           0 :                     CSLTokenizeStringComplex(s.c_str(), " ,", FALSE, FALSE);
    7915           0 :                 CSLConstList iter = psOptions->aosFieldTypesToString.List();
    7916           0 :                 while (*iter)
    7917             :                 {
    7918           0 :                     if (IsFieldType(*iter))
    7919             :                     {
    7920             :                         /* Do nothing */
    7921             :                     }
    7922           0 :                     else if (EQUAL(*iter, "All"))
    7923             :                     {
    7924           0 :                         psOptions->aosFieldTypesToString.Clear();
    7925           0 :                         psOptions->aosFieldTypesToString.AddString("All");
    7926           0 :                         break;
    7927             :                     }
    7928             :                     else
    7929             :                     {
    7930             :                         throw std::invalid_argument(CPLSPrintf(
    7931             :                             "Unhandled type for fieldTypeToString option : %s",
    7932           0 :                             *iter));
    7933             :                     }
    7934           0 :                     iter++;
    7935             :                 }
    7936        1141 :             })
    7937             :         .help(_("Converts any field of the specified type to a field of type "
    7938        1141 :                 "string in the destination layer."));
    7939             : 
    7940        1141 :     argParser->add_argument("-mapFieldType")
    7941        2282 :         .metavar("<srctype>|All=<dsttype>[,<srctype2>=<dsttype2>]...")
    7942             :         .action(
    7943          12 :             [psOptions](const std::string &s)
    7944             :             {
    7945             :                 psOptions->aosMapFieldType =
    7946           4 :                     CSLTokenizeStringComplex(s.c_str(), " ,", FALSE, FALSE);
    7947           4 :                 CSLConstList iter = psOptions->aosMapFieldType.List();
    7948           8 :                 while (*iter)
    7949             :                 {
    7950           4 :                     char *pszKey = nullptr;
    7951           4 :                     const char *pszValue = CPLParseNameValue(*iter, &pszKey);
    7952           4 :                     if (pszKey && pszValue)
    7953             :                     {
    7954           8 :                         if (!((IsFieldType(pszKey) || EQUAL(pszKey, "All")) &&
    7955           4 :                               IsFieldType(pszValue)))
    7956             :                         {
    7957           0 :                             CPLFree(pszKey);
    7958             :                             throw std::invalid_argument(CPLSPrintf(
    7959           0 :                                 "Invalid value for -mapFieldType : %s", *iter));
    7960             :                         }
    7961             :                     }
    7962           4 :                     CPLFree(pszKey);
    7963           4 :                     iter++;
    7964             :                 }
    7965        1145 :             })
    7966        1141 :         .help(_("Converts any field of the specified type to another type."));
    7967             : 
    7968        1141 :     argParser->add_argument("-fieldmap")
    7969        2282 :         .metavar("<field_1>[,<field_2>]...")
    7970             :         .action(
    7971           4 :             [psOptions](const std::string &s)
    7972             :             {
    7973             :                 psOptions->aosFieldMap =
    7974           2 :                     CSLTokenizeStringComplex(s.c_str(), ",", FALSE, FALSE);
    7975        1141 :             })
    7976             :         .help(_("Specifies the list of field indexes to be copied from the "
    7977        1141 :                 "source to the destination."));
    7978             : 
    7979        1141 :     argParser->add_argument("-splitlistfields")
    7980        1141 :         .store_into(psOptions->bSplitListFields)
    7981             :         .help(_("Split fields of type list type into as many fields of scalar "
    7982        1141 :                 "type as necessary."));
    7983             : 
    7984        1141 :     argParser->add_argument("-maxsubfields")
    7985        2282 :         .metavar("<n>")
    7986        1141 :         .scan<'i', int>()
    7987             :         .action(
    7988           0 :             [psOptions](const std::string &s)
    7989             :             {
    7990           0 :                 const int nVal = atoi(s.c_str());
    7991           0 :                 if (nVal > 0)
    7992             :                 {
    7993           0 :                     psOptions->nMaxSplitListSubFields = nVal;
    7994             :                 }
    7995        1141 :             })
    7996             :         .help(_("To be combined with -splitlistfields to limit the number of "
    7997        1141 :                 "subfields created for each split field."));
    7998             : 
    7999        1141 :     argParser->add_argument("-emptyStrAsNull")
    8000        1141 :         .store_into(psOptions->bEmptyStrAsNull)
    8001        1141 :         .help(_("Treat empty string values as null."));
    8002             : 
    8003        1141 :     argParser->add_argument("-forceNullable")
    8004        1141 :         .store_into(psOptions->bForceNullable)
    8005             :         .help(_("Do not propagate not-nullable constraints to target layer if "
    8006        1141 :                 "they exist in source layer."));
    8007             : 
    8008        1141 :     argParser->add_argument("-unsetFieldWidth")
    8009        1141 :         .store_into(psOptions->bUnsetFieldWidth)
    8010        1141 :         .help(_("Set field width and precision to 0."));
    8011             : 
    8012        1141 :     argParser->add_argument("-unsetDefault")
    8013        1141 :         .store_into(psOptions->bUnsetDefault)
    8014             :         .help(_("Do not propagate default field values to target layer if they "
    8015        1141 :                 "exist in source layer."));
    8016             : 
    8017        1141 :     argParser->add_argument("-resolveDomains")
    8018        1141 :         .store_into(psOptions->bResolveDomains)
    8019             :         .help(_("Cause any selected field that is linked to a coded field "
    8020        1141 :                 "domain will be accompanied by an additional field."));
    8021             : 
    8022        1141 :     argParser->add_argument("-dateTimeTo")
    8023        2282 :         .metavar("UTC|UTC(+|-)<HH>|UTC(+|-)<HH>:<MM>")
    8024             :         .action(
    8025          33 :             [psOptions](const std::string &s)
    8026             :             {
    8027          13 :                 const char *pszFormat = s.c_str();
    8028          13 :                 if (EQUAL(pszFormat, "UTC"))
    8029             :                 {
    8030           1 :                     psOptions->nTZOffsetInSec = 0;
    8031             :                 }
    8032          12 :                 else if (STARTS_WITH_CI(pszFormat, "UTC") &&
    8033          11 :                          (strlen(pszFormat) == strlen("UTC+HH") ||
    8034           9 :                           strlen(pszFormat) == strlen("UTC+HH:MM")) &&
    8035           7 :                          (pszFormat[3] == '+' || pszFormat[3] == '-'))
    8036             :                 {
    8037           6 :                     const int nHour = atoi(pszFormat + strlen("UTC+"));
    8038           6 :                     if (nHour < 0 || nHour > 14)
    8039             :                     {
    8040           1 :                         throw std::invalid_argument("Invalid UTC hour offset.");
    8041             :                     }
    8042           5 :                     else if (strlen(pszFormat) == strlen("UTC+HH"))
    8043             :                     {
    8044           0 :                         psOptions->nTZOffsetInSec = nHour * 3600;
    8045           0 :                         if (pszFormat[3] == '-')
    8046           0 :                             psOptions->nTZOffsetInSec =
    8047           0 :                                 -psOptions->nTZOffsetInSec;
    8048             :                     }
    8049             :                     else  // if( strlen(pszFormat) == strlen("UTC+HH:MM") )
    8050             :                     {
    8051           5 :                         const int nMin = atoi(pszFormat + strlen("UTC+HH:"));
    8052           5 :                         if (nMin == 0 || nMin == 15 || nMin == 30 || nMin == 45)
    8053             :                         {
    8054           4 :                             psOptions->nTZOffsetInSec =
    8055           4 :                                 nHour * 3600 + nMin * 60;
    8056           4 :                             if (pszFormat[3] == '-')
    8057           3 :                                 psOptions->nTZOffsetInSec =
    8058           3 :                                     -psOptions->nTZOffsetInSec;
    8059             :                         }
    8060             :                     }
    8061             :                 }
    8062          12 :                 if (psOptions->nTZOffsetInSec == TZ_OFFSET_INVALID)
    8063             :                 {
    8064             :                     throw std::invalid_argument(
    8065             :                         "Value of -dateTimeTo should be UTC, UTC(+|-)HH or "
    8066           7 :                         "UTC(+|-)HH:MM with HH in [0,14] and MM=00,15,30,45");
    8067             :                 }
    8068        1146 :             })
    8069             :         .help(_("Converts date time values from the timezone specified in the "
    8070        1141 :                 "source value to the target timezone."));
    8071             : 
    8072        1141 :     argParser->add_argument("-noNativeData")
    8073        1141 :         .flag()
    8074           1 :         .action([psOptions](const std::string &)
    8075        1141 :                 { psOptions->bNativeData = false; })
    8076        1141 :         .help(_("Disable copying of native data."));
    8077             : 
    8078             :     ///////////////////////////////////////////////////////////////////////
    8079        1141 :     argParser->add_group("Advanced geometry and SRS related options");
    8080             : 
    8081        1141 :     argParser->add_argument("-dim")
    8082        2282 :         .metavar("layer_dim|2|XY|3|XYZ|XYM|XYZM")
    8083             :         .action(
    8084          24 :             [psOptions](const std::string &osDim)
    8085             :             {
    8086          12 :                 if (EQUAL(osDim.c_str(), "layer_dim"))
    8087           2 :                     psOptions->nCoordDim = COORD_DIM_LAYER_DIM;
    8088          18 :                 else if (EQUAL(osDim.c_str(), "XY") ||
    8089           8 :                          EQUAL(osDim.c_str(), "2"))
    8090           3 :                     psOptions->nCoordDim = 2;
    8091          12 :                 else if (EQUAL(osDim.c_str(), "XYZ") ||
    8092           5 :                          EQUAL(osDim.c_str(), "3"))
    8093           3 :                     psOptions->nCoordDim = 3;
    8094           4 :                 else if (EQUAL(osDim.c_str(), "XYM"))
    8095           2 :                     psOptions->nCoordDim = COORD_DIM_XYM;
    8096           2 :                 else if (EQUAL(osDim.c_str(), "XYZM"))
    8097           2 :                     psOptions->nCoordDim = 4;
    8098             :                 else
    8099             :                 {
    8100             :                     throw std::invalid_argument(CPLSPrintf(
    8101           0 :                         "-dim %s: value not handled.", osDim.c_str()));
    8102             :                 }
    8103        1153 :             })
    8104        1141 :         .help(_("Force the coordinate dimension."));
    8105             : 
    8106        1141 :     argParser->add_argument("-s_coord_epoch")
    8107        2282 :         .metavar("<epoch>")
    8108        1141 :         .store_into(psOptions->dfSourceCoordinateEpoch)
    8109        1141 :         .help(_("Assign a coordinate epoch, linked with the source SRS."));
    8110             : 
    8111        1141 :     argParser->add_argument("-a_coord_epoch")
    8112        2282 :         .metavar("<epoch>")
    8113        1141 :         .store_into(psOptions->dfOutputCoordinateEpoch)
    8114             :         .help(_("Assign a coordinate epoch, linked with the output SRS when "
    8115        1141 :                 "-a_srs is used."));
    8116             : 
    8117        1141 :     argParser->add_argument("-t_coord_epoch")
    8118        2282 :         .metavar("<epoch>")
    8119        1141 :         .store_into(psOptions->dfOutputCoordinateEpoch)
    8120             :         .help(_("Assign a coordinate epoch, linked with the output SRS when "
    8121        1141 :                 "-t_srs is used."));
    8122             : 
    8123        1141 :     argParser->add_argument("-ct")
    8124        2282 :         .metavar("<pipeline_def>")
    8125             :         .action(
    8126           8 :             [psOptions](const std::string &s)
    8127             :             {
    8128           4 :                 psOptions->osCTPipeline = s;
    8129           4 :                 psOptions->bTransform = true;
    8130        1141 :             })
    8131             :         .help(_("Override the default transformation from the source to the "
    8132        1141 :                 "target CRS."));
    8133             : 
    8134        1141 :     argParser->add_argument("-ct_opt")
    8135        2282 :         .metavar("<NAME>=<VALUE>")
    8136        1141 :         .append()
    8137           0 :         .action([psOptions](const std::string &s)
    8138        1141 :                 { psOptions->aosCTOptions.AddString(s.c_str()); })
    8139        1141 :         .help(_("Coordinate transform option(s)."));
    8140             : 
    8141        1141 :     argParser->add_argument("-spat_srs")
    8142        2282 :         .metavar("<srs_def>")
    8143        1141 :         .store_into(psOptions->osSpatSRSDef)
    8144        1141 :         .help(_("Override spatial filter SRS."));
    8145             : 
    8146        1141 :     argParser->add_argument("-geomfield")
    8147        2282 :         .metavar("<name>")
    8148             :         .action(
    8149           2 :             [psOptions](const std::string &s)
    8150             :             {
    8151           1 :                 psOptions->osGeomField = s;
    8152           1 :                 psOptions->bGeomFieldSet = true;
    8153        1141 :             })
    8154             :         .help(_("Name of the geometry field on which the spatial filter "
    8155        1141 :                 "operates on."));
    8156             : 
    8157        1141 :     argParser->add_argument("-segmentize")
    8158        2282 :         .metavar("<max_dist>")
    8159        1141 :         .store_into(psOptions->dfGeomOpParam)
    8160           2 :         .action([psOptions](const std::string &)
    8161        1141 :                 { psOptions->eGeomOp = GEOMOP_SEGMENTIZE; })
    8162        1141 :         .help(_("Maximum distance between 2 nodes."));
    8163             : 
    8164        1141 :     argParser->add_argument("-simplify")
    8165        2282 :         .metavar("<tolerance>")
    8166        1141 :         .store_into(psOptions->dfGeomOpParam)
    8167           1 :         .action([psOptions](const std::string &)
    8168        1141 :                 { psOptions->eGeomOp = GEOMOP_SIMPLIFY_PRESERVE_TOPOLOGY; })
    8169        1141 :         .help(_("Distance tolerance for simplification."));
    8170             : 
    8171        1141 :     argParser->add_argument("-makevalid")
    8172        1141 :         .flag()
    8173             :         .action(
    8174          10 :             [psOptions](const std::string &)
    8175             :             {
    8176           5 :                 if (!OGRGeometryFactory::haveGEOS())
    8177             :                 {
    8178             :                     throw std::invalid_argument(
    8179           0 :                         "-makevalid only supported for builds against GEOS");
    8180             :                 }
    8181           5 :                 psOptions->bMakeValid = true;
    8182        1146 :             })
    8183             :         .help(_("Fix geometries to be valid regarding the rules of the Simple "
    8184        1141 :                 "Features specification."));
    8185             : 
    8186        1141 :     argParser->add_argument("-skipinvalid")
    8187        1141 :         .flag()
    8188             :         .action(
    8189           2 :             [psOptions](const std::string &)
    8190             :             {
    8191           1 :                 if (!OGRGeometryFactory::haveGEOS())
    8192             :                 {
    8193             :                     throw std::invalid_argument(
    8194           0 :                         "-skipinvalid only supported for builds against GEOS");
    8195             :                 }
    8196           1 :                 psOptions->bSkipInvalidGeom = true;
    8197        1142 :             })
    8198             :         .help(_("Whether to skip features with invalid geometries regarding the"
    8199        1141 :                 "rules of the Simple Features specification."));
    8200             : 
    8201        1141 :     argParser->add_argument("-wrapdateline")
    8202        1141 :         .store_into(psOptions->bWrapDateline)
    8203        1141 :         .help(_("Split geometries crossing the dateline meridian."));
    8204             : 
    8205        1141 :     argParser->add_argument("-datelineoffset")
    8206        2282 :         .metavar("<val_in_degree>")
    8207        1141 :         .default_value(psOptions->dfDateLineOffset)
    8208        1141 :         .store_into(psOptions->dfDateLineOffset)
    8209        1141 :         .help(_("Offset from dateline in degrees."));
    8210             : 
    8211             :     auto &clipsrcArg =
    8212        1141 :         argParser->add_argument("-clipsrc")
    8213             :             .metavar(
    8214        2282 :                 "[<xmin> <ymin> <xmax> <ymax>]|<WKT>|<datasource>|spat_extent")
    8215        1141 :             .help(_("Clip geometries (in source SRS)."));
    8216        1141 :     if (nCountClipSrc > 1)
    8217           1 :         clipsrcArg.nargs(nCountClipSrc);
    8218             : 
    8219        1141 :     argParser->add_argument("-clipsrcsql")
    8220        2282 :         .metavar("<sql_statement>")
    8221        1141 :         .store_into(psOptions->osClipSrcSQL)
    8222             :         .help(_("Select desired geometries from the source clip datasource "
    8223        1141 :                 "using an SQL query."));
    8224             : 
    8225        1141 :     argParser->add_argument("-clipsrclayer")
    8226        2282 :         .metavar("<layername>")
    8227        1141 :         .store_into(psOptions->osClipSrcLayer)
    8228        1141 :         .help(_("Select the named layer from the source clip datasource."));
    8229             : 
    8230        1141 :     argParser->add_argument("-clipsrcwhere")
    8231        2282 :         .metavar("<expression>")
    8232        1141 :         .store_into(psOptions->osClipSrcWhere)
    8233             :         .help(_("Restrict desired geometries from the source clip layer based "
    8234        1141 :                 "on an attribute query."));
    8235             : 
    8236             :     auto &clipdstArg =
    8237        1141 :         argParser->add_argument("-clipdst")
    8238        2282 :             .metavar("[<xmin> <ymin> <xmax> <ymax>]|<WKT>|<datasource>")
    8239        1141 :             .help(_("Clip geometries (in target SRS)."));
    8240        1141 :     if (nCountClipDst > 1)
    8241           2 :         clipdstArg.nargs(nCountClipDst);
    8242             : 
    8243        1141 :     argParser->add_argument("-clipdstsql")
    8244        2282 :         .metavar("<sql_statement>")
    8245        1141 :         .store_into(psOptions->osClipDstSQL)
    8246             :         .help(_("Select desired geometries from the destination clip "
    8247        1141 :                 "datasource using an SQL query."));
    8248             : 
    8249        1141 :     argParser->add_argument("-clipdstlayer")
    8250        2282 :         .metavar("<layername>")
    8251        1141 :         .store_into(psOptions->osClipDstLayer)
    8252             :         .help(
    8253        1141 :             _("Select the named layer from the destination clip datasource."));
    8254             : 
    8255        1141 :     argParser->add_argument("-clipdstwhere")
    8256        2282 :         .metavar("<expression>")
    8257        1141 :         .store_into(psOptions->osClipDstWhere)
    8258             :         .help(_("Restrict desired geometries from the destination clip layer "
    8259        1141 :                 "based on an attribute query."));
    8260             : 
    8261        1141 :     argParser->add_argument("-explodecollections")
    8262        1141 :         .store_into(psOptions->bExplodeCollections)
    8263             :         .help(_("Produce one feature for each geometry in any kind of geometry "
    8264        1141 :                 "collection in the source file."));
    8265             : 
    8266        1141 :     argParser->add_argument("-zfield")
    8267        2282 :         .metavar("<name>")
    8268        1141 :         .store_into(psOptions->osZField)
    8269             :         .help(_("Uses the specified field to fill the Z coordinate of "
    8270        1141 :                 "geometries."));
    8271             : 
    8272        1141 :     argParser->add_argument("-gcp")
    8273             :         .metavar(
    8274        2282 :             "<ungeoref_x> <ungeoref_y> <georef_x> <georef_y> [<elevation>]")
    8275        1141 :         .nargs(4, 5)
    8276        1141 :         .append()
    8277        1141 :         .scan<'g', double>()
    8278        1141 :         .help(_("Add the indicated ground control point."));
    8279             : 
    8280        1141 :     argParser->add_argument("-tps")
    8281        1141 :         .flag()
    8282           1 :         .action([psOptions](const std::string &)
    8283        1141 :                 { psOptions->nTransformOrder = -1; })
    8284             :         .help(_("Force use of thin plate spline transformer based on available "
    8285        1141 :                 "GCPs."));
    8286             : 
    8287        1141 :     argParser->add_argument("-order")
    8288        2282 :         .metavar("1|2|3")
    8289        1141 :         .store_into(psOptions->nTransformOrder)
    8290        1141 :         .help(_("Order of polynomial used for warping."));
    8291             : 
    8292        1141 :     argParser->add_argument("-xyRes")
    8293        2282 :         .metavar("<val>[ m|mm|deg]")
    8294             :         .action(
    8295          25 :             [psOptions](const std::string &s)
    8296             :             {
    8297           9 :                 const char *pszVal = s.c_str();
    8298             : 
    8299           9 :                 char *endptr = nullptr;
    8300           9 :                 psOptions->dfXYRes = CPLStrtodM(pszVal, &endptr);
    8301           9 :                 if (!endptr)
    8302             :                 {
    8303             :                     throw std::invalid_argument(
    8304             :                         "Invalid value for -xyRes. Must be of the form "
    8305           0 :                         "{numeric_value}[ ]?[m|mm|deg]?");
    8306             :                 }
    8307           9 :                 if (*endptr == ' ')
    8308           6 :                     ++endptr;
    8309           9 :                 if (*endptr != 0 && strcmp(endptr, "m") != 0 &&
    8310           5 :                     strcmp(endptr, "mm") != 0 && strcmp(endptr, "deg") != 0)
    8311             :                 {
    8312             :                     throw std::invalid_argument(
    8313             :                         "Invalid value for -xyRes. Must be of the form "
    8314           2 :                         "{numeric_value}[ ]?[m|mm|deg]?");
    8315             :                 }
    8316           7 :                 psOptions->osXYResUnit = endptr;
    8317        1148 :             })
    8318        1141 :         .help(_("Set/override the geometry X/Y coordinate resolution."));
    8319             : 
    8320        1141 :     argParser->add_argument("-zRes")
    8321        2282 :         .metavar("<val>[ m|mm]")
    8322             :         .action(
    8323          16 :             [psOptions](const std::string &s)
    8324             :             {
    8325           6 :                 const char *pszVal = s.c_str();
    8326             : 
    8327           6 :                 char *endptr = nullptr;
    8328           6 :                 psOptions->dfZRes = CPLStrtodM(pszVal, &endptr);
    8329           6 :                 if (!endptr)
    8330             :                 {
    8331             :                     throw std::invalid_argument(
    8332             :                         "Invalid value for -zRes. Must be of the form "
    8333           0 :                         "{numeric_value}[ ]?[m|mm]?");
    8334             :                 }
    8335           6 :                 if (*endptr == ' ')
    8336           4 :                     ++endptr;
    8337           6 :                 if (*endptr != 0 && strcmp(endptr, "m") != 0 &&
    8338           3 :                     strcmp(endptr, "mm") != 0 && strcmp(endptr, "deg") != 0)
    8339             :                 {
    8340             :                     throw std::invalid_argument(
    8341             :                         "Invalid value for -zRes. Must be of the form "
    8342           2 :                         "{numeric_value}[ ]?[m|mm]?");
    8343             :                 }
    8344           4 :                 psOptions->osZResUnit = endptr;
    8345        1145 :             })
    8346        1141 :         .help(_("Set/override the geometry Z coordinate resolution."));
    8347             : 
    8348        1141 :     argParser->add_argument("-mRes")
    8349        2282 :         .metavar("<val>")
    8350        1141 :         .store_into(psOptions->dfMRes)
    8351        1141 :         .help(_("Set/override the geometry M coordinate resolution."));
    8352             : 
    8353        1141 :     argParser->add_argument("-unsetCoordPrecision")
    8354        1141 :         .store_into(psOptions->bUnsetCoordPrecision)
    8355             :         .help(_("Prevent the geometry coordinate resolution from being set on "
    8356        1141 :                 "target layer(s)."));
    8357             : 
    8358             :     ///////////////////////////////////////////////////////////////////////
    8359        1141 :     argParser->add_group("Other options");
    8360             : 
    8361        1141 :     argParser->add_quiet_argument(&psOptions->bQuiet);
    8362             : 
    8363        1141 :     argParser->add_argument("-progress")
    8364        1141 :         .store_into(psOptions->bDisplayProgress)
    8365             :         .help(_("Display progress on terminal. Only works if input layers have "
    8366        1141 :                 "the 'fast feature count' capability."));
    8367             : 
    8368             :     argParser->add_input_format_argument(
    8369             :         psOptionsForBinary ? &psOptionsForBinary->aosAllowInputDrivers
    8370        1141 :                            : nullptr);
    8371             : 
    8372             :     argParser->add_open_options_argument(
    8373        1141 :         psOptionsForBinary ? &(psOptionsForBinary->aosOpenOptions) : nullptr);
    8374             : 
    8375        1141 :     argParser->add_argument("-doo")
    8376        2282 :         .metavar("<NAME>=<VALUE>")
    8377        1141 :         .append()
    8378           0 :         .action([psOptions](const std::string &s)
    8379        1141 :                 { psOptions->aosDestOpenOptions.AddString(s.c_str()); })
    8380        1141 :         .help(_("Open option(s) for output dataset."));
    8381             : 
    8382        1141 :     argParser->add_usage_newline();
    8383             : 
    8384        1141 :     argParser->add_argument("-fid")
    8385        2282 :         .metavar("<FID>")
    8386        1141 :         .store_into(psOptions->nFIDToFetch)
    8387             :         .help(_("If provided, only the feature with the specified feature id "
    8388        1141 :                 "will be processed."));
    8389             : 
    8390        1141 :     argParser->add_argument("-preserve_fid")
    8391        1141 :         .store_into(psOptions->bPreserveFID)
    8392             :         .help(_("Use the FID of the source features instead of letting the "
    8393        1141 :                 "output driver automatically assign a new one."));
    8394             : 
    8395        1141 :     argParser->add_argument("-unsetFid")
    8396        1141 :         .store_into(psOptions->bUnsetFid)
    8397             :         .help(_("Prevent the name of the source FID column and source feature "
    8398        1141 :                 "IDs from being reused."));
    8399             : 
    8400             :     {
    8401        1141 :         auto &group = argParser->add_mutually_exclusive_group();
    8402        1141 :         group.add_argument("-skip", "-skipfailures")
    8403        1141 :             .flag()
    8404             :             .action(
    8405          12 :                 [psOptions](const std::string &)
    8406             :                 {
    8407          12 :                     psOptions->bSkipFailures = true;
    8408          12 :                     psOptions->nGroupTransactions = 1; /* #2409 */
    8409        1141 :                 })
    8410        1141 :             .help(_("Continue after a failure, skipping the failed feature."));
    8411             : 
    8412        1141 :         auto &arg = group.add_argument("-gt")
    8413        2282 :                         .metavar("<n>|unlimited")
    8414             :                         .action(
    8415           8 :                             [psOptions](const std::string &s)
    8416             :                             {
    8417             :                                 /* If skipfailures is already set we should not
    8418             :                modify nGroupTransactions = 1  #2409 */
    8419           4 :                                 if (!psOptions->bSkipFailures)
    8420             :                                 {
    8421           4 :                                     if (EQUAL(s.c_str(), "unlimited"))
    8422           1 :                                         psOptions->nGroupTransactions = -1;
    8423             :                                     else
    8424           3 :                                         psOptions->nGroupTransactions =
    8425           3 :                                             atoi(s.c_str());
    8426             :                                 }
    8427        1141 :                             })
    8428        1141 :                         .help(_("Group <n> features per transaction "));
    8429             : 
    8430        1141 :         argParser->add_hidden_alias_for(arg, "tg");
    8431             :     }
    8432             : 
    8433        1141 :     argParser->add_argument("-limit")
    8434        2282 :         .metavar("<nb_features>")
    8435        1141 :         .store_into(psOptions->nLimit)
    8436        1141 :         .help(_("Limit the number of features per layer."));
    8437             : 
    8438        1141 :     argParser->add_argument("-ds_transaction")
    8439        1141 :         .flag()
    8440             :         .action(
    8441           1 :             [psOptions](const std::string &)
    8442             :             {
    8443           1 :                 psOptions->nLayerTransaction = FALSE;
    8444           1 :                 psOptions->bForceTransaction = true;
    8445        1141 :             })
    8446        1141 :         .help(_("Force the use of a dataset level transaction."));
    8447             : 
    8448             :     /* Undocumented. Just a provision. Default behavior should be OK */
    8449        1141 :     argParser->add_argument("-lyr_transaction")
    8450        1141 :         .flag()
    8451        1141 :         .hidden()
    8452           0 :         .action([psOptions](const std::string &)
    8453        1141 :                 { psOptions->nLayerTransaction = TRUE; })
    8454        1141 :         .help(_("Force the use of a layer level transaction."));
    8455             : 
    8456             :     argParser->add_metadata_item_options_argument(
    8457        1141 :         psOptions->aosMetadataOptions);
    8458             : 
    8459        1141 :     argParser->add_argument("-nomd")
    8460        1141 :         .flag()
    8461           4 :         .action([psOptions](const std::string &)
    8462        1141 :                 { psOptions->bCopyMD = false; })
    8463             :         .help(_("Disable copying of metadata from source dataset and layers "
    8464        1141 :                 "into target dataset and layers."));
    8465             : 
    8466             :     // Undocumented option used by gdal vector convert
    8467        1141 :     argParser->add_argument("--no-overwrite")
    8468        1141 :         .store_into(psOptions->bNoOverwrite)
    8469        1141 :         .hidden();
    8470             : 
    8471             :     // Undocumented option used by gdal vector * algorithms
    8472        1141 :     argParser->add_argument("--invoked-from-gdal-algorithm")
    8473        1141 :         .store_into(psOptions->bInvokedFromGdalAlgorithm)
    8474        1141 :         .hidden();
    8475             : 
    8476        1141 :     if (psOptionsForBinary)
    8477             :     {
    8478         134 :         argParser->add_argument("dst_dataset_name")
    8479         268 :             .metavar("<dst_dataset_name>")
    8480         134 :             .store_into(psOptionsForBinary->osDestDataSource)
    8481         134 :             .help(_("Output dataset."));
    8482             : 
    8483         134 :         argParser->add_argument("src_dataset_name")
    8484         268 :             .metavar("<src_dataset_name>")
    8485         134 :             .store_into(psOptionsForBinary->osDataSource)
    8486         134 :             .help(_("Input dataset."));
    8487             :     }
    8488             : 
    8489        1141 :     argParser->add_argument("layer")
    8490        1141 :         .remaining()
    8491        2282 :         .metavar("<layer_name>")
    8492        1141 :         .help(_("Layer name"));
    8493        1141 :     return argParser;
    8494             : }
    8495             : 
    8496             : /************************************************************************/
    8497             : /*                 GDALVectorTranslateGetParserUsage()                  */
    8498             : /************************************************************************/
    8499             : 
    8500           1 : std::string GDALVectorTranslateGetParserUsage()
    8501             : {
    8502             :     try
    8503             :     {
    8504           2 :         GDALVectorTranslateOptions sOptions;
    8505           2 :         GDALVectorTranslateOptionsForBinary sOptionsForBinary;
    8506             :         auto argParser = GDALVectorTranslateOptionsGetParser(
    8507           2 :             &sOptions, &sOptionsForBinary, 1, 1);
    8508           1 :         return argParser->usage();
    8509             :     }
    8510           0 :     catch (const std::exception &err)
    8511             :     {
    8512           0 :         CPLError(CE_Failure, CPLE_AppDefined, "Unexpected exception: %s",
    8513           0 :                  err.what());
    8514           0 :         return std::string();
    8515             :     }
    8516             : }
    8517             : 
    8518             : /************************************************************************/
    8519             : /*                  CHECK_HAS_ENOUGH_ADDITIONAL_ARGS()                  */
    8520             : /************************************************************************/
    8521             : 
    8522             : #ifndef CheckHasEnoughAdditionalArgs_defined
    8523             : #define CheckHasEnoughAdditionalArgs_defined
    8524             : 
    8525          58 : static bool CheckHasEnoughAdditionalArgs(CSLConstList papszArgv, int i,
    8526             :                                          int nExtraArg, int nArgc)
    8527             : {
    8528          58 :     if (i + nExtraArg >= nArgc)
    8529             :     {
    8530           2 :         CPLError(CE_Failure, CPLE_IllegalArg,
    8531           2 :                  "%s option requires %d argument%s", papszArgv[i], nExtraArg,
    8532             :                  nExtraArg == 1 ? "" : "s");
    8533           2 :         return false;
    8534             :     }
    8535          56 :     return true;
    8536             : }
    8537             : #endif
    8538             : 
    8539             : #define CHECK_HAS_ENOUGH_ADDITIONAL_ARGS(nExtraArg)                            \
    8540             :     if (!CheckHasEnoughAdditionalArgs(papszArgv, i, nExtraArg, nArgc))         \
    8541             :     {                                                                          \
    8542             :         return nullptr;                                                        \
    8543             :     }
    8544             : 
    8545             : /************************************************************************/
    8546             : /*                   GDALVectorTranslateOptionsNew()                    */
    8547             : /************************************************************************/
    8548             : 
    8549             : /**
    8550             :  * allocates a GDALVectorTranslateOptions struct.
    8551             :  *
    8552             :  * @param papszArgv NULL terminated list of options (potentially including
    8553             :  * filename and open options too), or NULL. The accepted options are the ones of
    8554             :  * the <a href="/programs/ogr2ogr.html">ogr2ogr</a> utility.
    8555             :  * @param psOptionsForBinary (output) may be NULL (and should generally be
    8556             :  * NULL), otherwise (gdal_translate_bin.cpp use case) must be allocated with
    8557             :  *                           GDALVectorTranslateOptionsForBinaryNew() prior to
    8558             :  * this function. Will be filled with potentially present filename, open
    8559             :  * options,...
    8560             :  * @return pointer to the allocated GDALVectorTranslateOptions struct. Must be
    8561             :  * freed with GDALVectorTranslateOptionsFree().
    8562             :  *
    8563             :  * @since GDAL 2.1
    8564             :  */
    8565        1145 : GDALVectorTranslateOptions *GDALVectorTranslateOptionsNew(
    8566             :     char **papszArgv, GDALVectorTranslateOptionsForBinary *psOptionsForBinary)
    8567             : {
    8568        2290 :     auto psOptions = std::make_unique<GDALVectorTranslateOptions>();
    8569             : 
    8570             :     /* -------------------------------------------------------------------- */
    8571             :     /*      Pre-processing for custom syntax that ArgumentParser does not   */
    8572             :     /*      support.                                                        */
    8573             :     /* -------------------------------------------------------------------- */
    8574             : 
    8575        2290 :     CPLStringList aosArgv;
    8576        1145 :     const int nArgc = CSLCount(papszArgv);
    8577        1145 :     int nCountClipSrc = 0;
    8578        1145 :     int nCountClipDst = 0;
    8579        5252 :     for (int i = 0;
    8580        5252 :          i < nArgc && papszArgv != nullptr && papszArgv[i] != nullptr; i++)
    8581             :     {
    8582        4112 :         if (EQUAL(papszArgv[i], "-gcp"))
    8583             :         {
    8584             :             // repeated argument of varying size: not handled by argparse.
    8585             : 
    8586          20 :             CHECK_HAS_ENOUGH_ADDITIONAL_ARGS(4);
    8587          19 :             char *endptr = nullptr;
    8588             :             /* -gcp pixel line easting northing [elev] */
    8589             : 
    8590          19 :             psOptions->asGCPs.resize(psOptions->asGCPs.size() + 1);
    8591          19 :             auto &sGCP = psOptions->asGCPs.back();
    8592             : 
    8593          19 :             const auto oPixel = cpl::strict_parse<double>(papszArgv[++i]);
    8594          19 :             const auto oLine = cpl::strict_parse<double>(papszArgv[++i]);
    8595          19 :             const auto oX = cpl::strict_parse<double>(papszArgv[++i]);
    8596          19 :             const auto oY = cpl::strict_parse<double>(papszArgv[++i]);
    8597             : 
    8598          38 :             if (!oPixel.has_value() || !oLine.has_value() || !oX.has_value() ||
    8599          19 :                 !oY.has_value())
    8600             :             {
    8601           1 :                 CPLError(CE_Failure, CPLE_IllegalArg, "Invalid -gcp value");
    8602           1 :                 return nullptr;
    8603             :             }
    8604             : 
    8605          18 :             sGCP.Pixel() = oPixel.value();
    8606          18 :             sGCP.Line() = oLine.value();
    8607          18 :             sGCP.X() = oX.value();
    8608          18 :             sGCP.Y() = oY.value();
    8609             : 
    8610          33 :             if (papszArgv[i + 1] != nullptr &&
    8611          15 :                 (CPLStrtod(papszArgv[i + 1], &endptr) != 0.0 ||
    8612          15 :                  papszArgv[i + 1][0] == '0'))
    8613             :             {
    8614             :                 /* Check that last argument is really a number and not a
    8615             :                  * filename */
    8616             :                 /* looking like a number (see ticket #863) */
    8617           0 :                 if (endptr && *endptr == 0)
    8618           0 :                     sGCP.Z() = CPLAtof(papszArgv[++i]);
    8619             :             }
    8620             : 
    8621             :             /* should set id and info? */
    8622             :         }
    8623             : 
    8624        4093 :         else if (EQUAL(papszArgv[i], "-clipsrc"))
    8625             :         {
    8626          23 :             if (nCountClipSrc)
    8627             :             {
    8628           1 :                 CPLError(CE_Failure, CPLE_AppDefined, "Duplicate argument %s",
    8629           1 :                          papszArgv[i]);
    8630           1 :                 return nullptr;
    8631             :             }
    8632             :             // argparse doesn't handle well variable number of values
    8633             :             // just before the positional arguments, so we have to detect
    8634             :             // it manually and set the correct number.
    8635          22 :             nCountClipSrc = 1;
    8636          22 :             CHECK_HAS_ENOUGH_ADDITIONAL_ARGS(1);
    8637          24 :             if (CPLGetValueType(papszArgv[i + 1]) != CPL_VALUE_STRING &&
    8638           3 :                 i + 4 < nArgc)
    8639             :             {
    8640           2 :                 nCountClipSrc = 4;
    8641             :             }
    8642             : 
    8643          69 :             for (int j = 0; j < 1 + nCountClipSrc; ++j)
    8644             :             {
    8645          48 :                 aosArgv.AddString(papszArgv[i]);
    8646          48 :                 ++i;
    8647             :             }
    8648          21 :             --i;
    8649             :         }
    8650             : 
    8651        4070 :         else if (EQUAL(papszArgv[i], "-clipdst"))
    8652             :         {
    8653          18 :             if (nCountClipDst)
    8654             :             {
    8655           1 :                 CPLError(CE_Failure, CPLE_AppDefined, "Duplicate argument %s",
    8656           1 :                          papszArgv[i]);
    8657           1 :                 return nullptr;
    8658             :             }
    8659             :             // argparse doesn't handle well variable number of values
    8660             :             // just before the positional arguments, so we have to detect
    8661             :             // it manually and set the correct number.
    8662          17 :             nCountClipDst = 1;
    8663          17 :             CHECK_HAS_ENOUGH_ADDITIONAL_ARGS(1);
    8664          20 :             if (CPLGetValueType(papszArgv[i + 1]) != CPL_VALUE_STRING &&
    8665           4 :                 i + 4 < nArgc)
    8666             :             {
    8667           3 :                 nCountClipDst = 4;
    8668             :             }
    8669             : 
    8670          57 :             for (int j = 0; j < 1 + nCountClipDst; ++j)
    8671             :             {
    8672          41 :                 aosArgv.AddString(papszArgv[i]);
    8673          41 :                 ++i;
    8674             :             }
    8675          16 :             --i;
    8676             :         }
    8677             : 
    8678             :         else
    8679             :         {
    8680        4052 :             aosArgv.AddString(papszArgv[i]);
    8681             :         }
    8682             :     }
    8683             : 
    8684             :     try
    8685             :     {
    8686             :         auto argParser = GDALVectorTranslateOptionsGetParser(
    8687        2280 :             psOptions.get(), psOptionsForBinary, nCountClipSrc, nCountClipDst);
    8688             : 
    8689             :         // Collect non-positional arguments for VectorTranslateFrom() case
    8690        1139 :         psOptions->aosArguments =
    8691        2279 :             argParser->get_non_positional_arguments(aosArgv);
    8692             : 
    8693        1139 :         argParser->parse_args_without_binary_name(aosArgv.List());
    8694             : 
    8695        1116 :         if (psOptionsForBinary)
    8696         132 :             psOptionsForBinary->bQuiet = psOptions->bQuiet;
    8697             : 
    8698        1124 :         if (auto oSpat = argParser->present<std::vector<double>>("-spat"))
    8699             :         {
    8700           8 :             const double dfMinX = (*oSpat)[0];
    8701           8 :             const double dfMinY = (*oSpat)[1];
    8702           8 :             const double dfMaxX = (*oSpat)[2];
    8703           8 :             const double dfMaxY = (*oSpat)[3];
    8704             : 
    8705             :             auto poSpatialFilter =
    8706          16 :                 std::make_shared<OGRPolygon>(dfMinX, dfMinY, dfMaxX, dfMaxY);
    8707           8 :             psOptions->poSpatialFilter = poSpatialFilter;
    8708             :         }
    8709             : 
    8710        1116 :         if (auto oClipSrc =
    8711        1116 :                 argParser->present<std::vector<std::string>>("-clipsrc"))
    8712             :         {
    8713          20 :             const std::string &osVal = (*oClipSrc)[0];
    8714             : 
    8715          20 :             psOptions->poClipSrc.reset();
    8716          20 :             psOptions->osClipSrcDS.clear();
    8717             : 
    8718             :             VSIStatBufL sStat;
    8719          20 :             psOptions->bClipSrc = true;
    8720          20 :             if (oClipSrc->size() == 4)
    8721             :             {
    8722           1 :                 const double dfMinX = CPLAtofM((*oClipSrc)[0].c_str());
    8723           1 :                 const double dfMinY = CPLAtofM((*oClipSrc)[1].c_str());
    8724           1 :                 const double dfMaxX = CPLAtofM((*oClipSrc)[2].c_str());
    8725           1 :                 const double dfMaxY = CPLAtofM((*oClipSrc)[3].c_str());
    8726             : 
    8727           2 :                 OGRLinearRing oRing;
    8728             : 
    8729           1 :                 oRing.addPoint(dfMinX, dfMinY);
    8730           1 :                 oRing.addPoint(dfMinX, dfMaxY);
    8731           1 :                 oRing.addPoint(dfMaxX, dfMaxY);
    8732           1 :                 oRing.addPoint(dfMaxX, dfMinY);
    8733           1 :                 oRing.addPoint(dfMinX, dfMinY);
    8734             : 
    8735           2 :                 auto poPoly = std::make_shared<OGRPolygon>();
    8736           1 :                 psOptions->poClipSrc = poPoly;
    8737           1 :                 poPoly->addRing(&oRing);
    8738             :             }
    8739          19 :             else if ((STARTS_WITH_CI(osVal.c_str(), "POLYGON") ||
    8740          27 :                       STARTS_WITH_CI(osVal.c_str(), "MULTIPOLYGON")) &&
    8741           8 :                      VSIStatL(osVal.c_str(), &sStat) != 0)
    8742             :             {
    8743           8 :                 psOptions->poClipSrc =
    8744          16 :                     OGRGeometryFactory::createFromWkt(osVal.c_str()).first;
    8745           8 :                 if (psOptions->poClipSrc == nullptr)
    8746             :                 {
    8747           0 :                     CPLError(
    8748             :                         CE_Failure, CPLE_IllegalArg,
    8749             :                         "Invalid -clipsrc geometry. Must be a valid POLYGON or "
    8750             :                         "MULTIPOLYGON WKT");
    8751           0 :                     return nullptr;
    8752             :                 }
    8753             :             }
    8754          11 :             else if (EQUAL(osVal.c_str(), "spat_extent"))
    8755             :             {
    8756             :                 // Nothing to do
    8757             :             }
    8758             :             else
    8759             :             {
    8760          10 :                 psOptions->osClipSrcDS = osVal;
    8761             :             }
    8762             :         }
    8763             : 
    8764        1116 :         if (auto oClipDst =
    8765        1116 :                 argParser->present<std::vector<std::string>>("-clipdst"))
    8766             :         {
    8767          15 :             const std::string &osVal = (*oClipDst)[0];
    8768             : 
    8769          15 :             psOptions->poClipDst.reset();
    8770          15 :             psOptions->osClipDstDS.clear();
    8771             : 
    8772             :             VSIStatBufL sStat;
    8773          15 :             if (oClipDst->size() == 4)
    8774             :             {
    8775           2 :                 const double dfMinX = CPLAtofM((*oClipDst)[0].c_str());
    8776           2 :                 const double dfMinY = CPLAtofM((*oClipDst)[1].c_str());
    8777           2 :                 const double dfMaxX = CPLAtofM((*oClipDst)[2].c_str());
    8778           2 :                 const double dfMaxY = CPLAtofM((*oClipDst)[3].c_str());
    8779             : 
    8780             :                 auto poPoly = std::make_shared<OGRPolygon>(dfMinX, dfMinY,
    8781           4 :                                                            dfMaxX, dfMaxY);
    8782           2 :                 psOptions->poClipDst = poPoly;
    8783             :             }
    8784          13 :             else if ((STARTS_WITH_CI(osVal.c_str(), "POLYGON") ||
    8785          16 :                       STARTS_WITH_CI(osVal.c_str(), "MULTIPOLYGON")) &&
    8786           3 :                      VSIStatL(osVal.c_str(), &sStat) != 0)
    8787             :             {
    8788           3 :                 psOptions->poClipDst =
    8789           6 :                     OGRGeometryFactory::createFromWkt(osVal.c_str()).first;
    8790           3 :                 if (psOptions->poClipDst == nullptr)
    8791             :                 {
    8792           0 :                     CPLError(
    8793             :                         CE_Failure, CPLE_IllegalArg,
    8794             :                         "Invalid -clipdst geometry. Must be a valid POLYGON or "
    8795             :                         "MULTIPOLYGON WKT");
    8796           0 :                     return nullptr;
    8797             :                 }
    8798             :             }
    8799             :             else
    8800             :             {
    8801          10 :                 psOptions->osClipDstDS = osVal;
    8802             :             }
    8803             :         }
    8804             : 
    8805        2232 :         auto layers = argParser->present<std::vector<std::string>>("layer");
    8806        1116 :         if (layers)
    8807             :         {
    8808          58 :             for (const auto &layer : *layers)
    8809             :             {
    8810          40 :                 psOptions->aosLayers.AddString(layer.c_str());
    8811             :             }
    8812             :         }
    8813        1116 :         if (psOptionsForBinary)
    8814             :         {
    8815         132 :             psOptionsForBinary->eAccessMode = psOptions->eAccessMode;
    8816         132 :             psOptionsForBinary->osFormat = psOptions->osFormat;
    8817             : 
    8818         132 :             if (!(CPLTestBool(
    8819             :                     psOptionsForBinary->aosOpenOptions.FetchNameValueDef(
    8820             :                         "NATIVE_DATA",
    8821             :                         psOptionsForBinary->aosOpenOptions.FetchNameValueDef(
    8822             :                             "@NATIVE_DATA", "TRUE")))))
    8823             :             {
    8824           0 :                 psOptions->bNativeData = false;
    8825             :             }
    8826             : 
    8827         132 :             if (psOptions->bNativeData &&
    8828         131 :                 psOptionsForBinary->aosOpenOptions.FetchNameValue(
    8829         263 :                     "NATIVE_DATA") == nullptr &&
    8830         131 :                 psOptionsForBinary->aosOpenOptions.FetchNameValue(
    8831             :                     "@NATIVE_DATA") == nullptr)
    8832             :             {
    8833             :                 psOptionsForBinary->aosOpenOptions.AddString(
    8834         131 :                     "@NATIVE_DATA=YES");
    8835             :             }
    8836             :         }
    8837             : 
    8838        1116 :         return psOptions.release();
    8839             :     }
    8840          24 :     catch (const std::exception &err)
    8841             :     {
    8842          24 :         CPLError(CE_Failure, CPLE_AppDefined, "%s", err.what());
    8843          24 :         if (psOptionsForBinary)
    8844           1 :             psOptionsForBinary->bShowUsageIfError = true;
    8845          24 :         return nullptr;
    8846             :     }
    8847             : }
    8848             : 
    8849             : /************************************************************************/
    8850             : /*                   GDALVectorTranslateOptionsFree()                   */
    8851             : /************************************************************************/
    8852             : 
    8853             : /**
    8854             :  * Frees the GDALVectorTranslateOptions struct.
    8855             :  *
    8856             :  * @param psOptions the options struct for GDALVectorTranslate().
    8857             :  * @since GDAL 2.1
    8858             :  */
    8859             : 
    8860        1114 : void GDALVectorTranslateOptionsFree(GDALVectorTranslateOptions *psOptions)
    8861             : {
    8862        1114 :     delete psOptions;
    8863        1114 : }
    8864             : 
    8865             : /************************************************************************/
    8866             : /*               GDALVectorTranslateOptionsSetProgress()                */
    8867             : /************************************************************************/
    8868             : 
    8869             : /**
    8870             :  * Set a progress function.
    8871             :  *
    8872             :  * @param psOptions the options struct for GDALVectorTranslate().
    8873             :  * @param pfnProgress the progress callback.
    8874             :  * @param pProgressData the user data for the progress callback.
    8875             :  *
    8876             :  * @since GDAL 2.1
    8877             :  */
    8878             : 
    8879         435 : void GDALVectorTranslateOptionsSetProgress(
    8880             :     GDALVectorTranslateOptions *psOptions, GDALProgressFunc pfnProgress,
    8881             :     void *pProgressData)
    8882             : {
    8883         435 :     psOptions->pfnProgress = pfnProgress ? pfnProgress : GDALDummyProgress;
    8884         435 :     psOptions->pProgressData = pProgressData;
    8885         435 :     if (pfnProgress == GDALTermProgress)
    8886         130 :         psOptions->bQuiet = false;
    8887         435 : }
    8888             : 
    8889             : #undef CHECK_HAS_ENOUGH_ADDITIONAL_ARGS

Generated by: LCOV version 1.14