LCOV - code coverage report
Current view: top level - ogr/ogrsf_frmts/csv - ogrcsvlayer.cpp (source / functions) Hit Total Coverage
Test: gdal_filtered.info Lines: 1191 1352 88.1 %
Date: 2024-11-21 22:18:42 Functions: 29 29 100.0 %

          Line data    Source code
       1             : /******************************************************************************
       2             :  *
       3             :  * Project:  CSV Translator
       4             :  * Purpose:  Implements OGRCSVLayer class.
       5             :  * Author:   Frank Warmerdam <warmerdam@pobox.com>
       6             :  *
       7             :  ******************************************************************************
       8             :  * Copyright (c) 2004, Frank Warmerdam <warmerdam@pobox.com>
       9             :  * Copyright (c) 2008-2014, Even Rouault <even dot rouault at spatialys.com>
      10             :  *
      11             :  * SPDX-License-Identifier: MIT
      12             :  ****************************************************************************/
      13             : 
      14             : #include "cpl_port.h"
      15             : #include "ogr_csv.h"
      16             : 
      17             : #include <cerrno>
      18             : #include <climits>
      19             : #include <cstddef>
      20             : #include <cstdio>
      21             : #include <cstdlib>
      22             : #include <cstring>
      23             : #if HAVE_FCNTL_H
      24             : #include <fcntl.h>
      25             : #endif
      26             : #include <algorithm>
      27             : #include <limits>
      28             : #include <string>
      29             : #include <vector>
      30             : 
      31             : #include "cpl_conv.h"
      32             : #include "cpl_csv.h"
      33             : #include "cpl_error.h"
      34             : #include "cpl_string.h"
      35             : #include "cpl_vsi.h"
      36             : #include "cpl_vsi_virtual.h"
      37             : #include "ogr_api.h"
      38             : #include "ogr_core.h"
      39             : #include "ogr_feature.h"
      40             : #include "ogr_geometry.h"
      41             : #include "ogr_p.h"
      42             : #include "ogr_spatialref.h"
      43             : #include "ogrsf_frmts.h"
      44             : 
      45             : #define DIGIT_ZERO '0'
      46             : 
      47             : /************************************************************************/
      48             : /*                            OGRCSVLayer()                             */
      49             : /*                                                                      */
      50             : /*      Note that the OGRCSVLayer assumes ownership of the passed       */
      51             : /*      file pointer.                                                   */
      52             : /************************************************************************/
      53             : 
      54         730 : OGRCSVLayer::OGRCSVLayer(GDALDataset *poDS, const char *pszLayerNameIn,
      55             :                          VSILFILE *fp, int nMaxLineSize,
      56             :                          const char *pszFilenameIn, int bNewIn,
      57         730 :                          int bInWriteModeIn, char chDelimiterIn)
      58             :     : m_poDS(poDS), poFeatureDefn(nullptr), fpCSV(fp),
      59             :       m_nMaxLineSize(nMaxLineSize), nNextFID(1), bHasFieldNames(false),
      60        1460 :       bNew(CPL_TO_BOOL(bNewIn)), bInWriteMode(CPL_TO_BOOL(bInWriteModeIn)),
      61             :       bUseCRLF(false), bNeedRewindBeforeRead(false),
      62        1460 :       eGeometryFormat(OGR_CSV_GEOM_NONE), pszFilename(CPLStrdup(pszFilenameIn)),
      63             :       bCreateCSVT(false), bWriteBOM(false), nCSVFieldCount(0),
      64             :       panGeomFieldIndex(nullptr), bFirstFeatureAppendedDuringSession(true),
      65             :       bHiddenWKTColumn(false), iNfdcLongitudeS(-1), iNfdcLatitudeS(-1),
      66             :       bHonourStrings(true), iLongitudeField(-1), iLatitudeField(-1),
      67             :       iZField(-1), bIsEurostatTSV(false), nEurostatDims(0),
      68         730 :       nTotalFeatures(bNewIn ? 0 : -1), bWarningBadTypeOrWidth(false),
      69             :       bKeepSourceColumns(false), bKeepGeomColumns(true), bMergeDelimiter(false),
      70         730 :       bEmptyStringNull(false)
      71             : {
      72         730 :     szDelimiter[0] = chDelimiterIn;
      73         730 :     szDelimiter[1] = 0;
      74         730 :     poFeatureDefn = new OGRFeatureDefn(pszLayerNameIn);
      75         730 :     SetDescription(poFeatureDefn->GetName());
      76         730 :     poFeatureDefn->Reference();
      77         730 :     poFeatureDefn->SetGeomType(wkbNone);
      78         730 : }
      79             : 
      80             : /************************************************************************/
      81             : /*                             Matches()                                */
      82             : /************************************************************************/
      83             : 
      84       10347 : bool OGRCSVLayer::Matches(const char *pszFieldName, char **papszPossibleNames)
      85             : {
      86       10347 :     if (papszPossibleNames == nullptr)
      87           0 :         return false;
      88       10459 :     for (char **papszIter = papszPossibleNames; *papszIter; papszIter++)
      89             :     {
      90         154 :         const char *pszPattern = *papszIter;
      91         154 :         const char *pszStar = strstr(pszPattern, "*");
      92         154 :         if (pszStar == nullptr)
      93             :         {
      94         145 :             if (EQUAL(pszFieldName, pszPattern))
      95          39 :                 return true;
      96             :         }
      97             :         else
      98             :         {
      99           9 :             if (pszStar == pszPattern)
     100             :             {
     101           6 :                 if (strlen(pszPattern) >= 3 &&
     102           6 :                     pszPattern[strlen(pszPattern) - 1] == '*')
     103             :                 {
     104             :                     // *pattern*
     105           3 :                     CPLString oPattern(pszPattern + 1);
     106           3 :                     oPattern.pop_back();
     107           3 :                     if (CPLString(pszFieldName).ifind(oPattern) !=
     108             :                         std::string::npos)
     109           3 :                         return true;
     110             :                 }
     111             :                 else
     112             :                 {
     113             :                     // *pattern
     114           3 :                     if (strlen(pszFieldName) >= strlen(pszPattern) - 1 &&
     115           1 :                         EQUAL(pszFieldName + strlen(pszFieldName) -
     116             :                                   (strlen(pszPattern) - 1),
     117             :                               pszPattern + 1))
     118             :                     {
     119           1 :                         return true;
     120             :                     }
     121             :                 }
     122             :             }
     123           3 :             else if (pszPattern[strlen(pszPattern) - 1] == '*')
     124             :             {
     125             :                 // pattern*
     126           3 :                 if (EQUALN(pszFieldName, pszPattern, strlen(pszPattern) - 1))
     127           1 :                     return true;
     128             :             }
     129             :         }
     130             :     }
     131       10305 :     return false;
     132             : }
     133             : 
     134             : /************************************************************************/
     135             : /*                      BuildFeatureDefn()                              */
     136             : /************************************************************************/
     137             : 
     138         730 : void OGRCSVLayer::BuildFeatureDefn(const char *pszNfdcGeomField,
     139             :                                    const char *pszGeonamesGeomFieldPrefix,
     140             :                                    CSLConstList papszOpenOptions)
     141             : {
     142         730 :     bMergeDelimiter = CPLFetchBool(papszOpenOptions, "MERGE_SEPARATOR", false);
     143         730 :     bEmptyStringNull =
     144         730 :         CPLFetchBool(papszOpenOptions, "EMPTY_STRING_AS_NULL", false);
     145             : 
     146             :     // If this is not a new file, read ahead to establish if it is
     147             :     // already in CRLF (DOS) mode, or just a normal unix CR mode.
     148         730 :     if (!bNew && bInWriteMode)
     149             :     {
     150          97 :         int nBytesRead = 0;
     151          97 :         char chNewByte = '\0';
     152             : 
     153       55787 :         while (nBytesRead < 10000 && VSIFReadL(&chNewByte, 1, 1, fpCSV) == 1)
     154             :         {
     155       55691 :             if (chNewByte == 13)
     156             :             {
     157           1 :                 bUseCRLF = true;
     158           1 :                 break;
     159             :             }
     160       55690 :             nBytesRead++;
     161             :         }
     162          97 :         VSIRewindL(fpCSV);
     163             :     }
     164             : 
     165             :     // Check if the first record seems to be field definitions or
     166             :     // not.  We assume it is field definitions if the HEADERS option
     167             :     // not supplied and none of the values are strictly numeric.
     168         730 :     char **papszTokens = nullptr;
     169         730 :     int nFieldCount = 0;
     170             : 
     171         730 :     if (!bNew)
     172             :     {
     173         598 :         const char *pszLine = CPLReadLineL(fpCSV);
     174         598 :         if (pszLine != nullptr)
     175             :         {
     176             :             // Detect and remove UTF-8 BOM marker if found (#4623).
     177         598 :             if (reinterpret_cast<const unsigned char *>(pszLine)[0] == 0xEF &&
     178           2 :                 reinterpret_cast<const unsigned char *>(pszLine)[1] == 0xBB &&
     179           2 :                 reinterpret_cast<const unsigned char *>(pszLine)[2] == 0xBF)
     180             :             {
     181           2 :                 pszLine += 3;
     182             :             }
     183             : 
     184             :             // Tokenize the strings and preserve quotes, so we can separate
     185             :             // string from numeric this is only used in the test for
     186             :             // bHasFieldNames (bug #4361).
     187             :             papszTokens =
     188         598 :                 CSLTokenizeString2(pszLine, szDelimiter,
     189             :                                    (CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS |
     190             :                                     CSLT_PRESERVEQUOTES));
     191         598 :             nFieldCount = CSLCount(papszTokens);
     192             : 
     193         598 :             if (nFieldCount > 0 && papszTokens[0][0] == '"')
     194          29 :                 m_eStringQuoting = StringQuoting::ALWAYS;
     195             : 
     196             :             const char *pszCSVHeaders =
     197         598 :                 CSLFetchNameValueDef(papszOpenOptions, "HEADERS", "AUTO");
     198             : 
     199         598 :             if (EQUAL(pszCSVHeaders, "YES"))
     200             :             {
     201           0 :                 bHasFieldNames = true;
     202             :             }
     203         598 :             else if (EQUAL(pszCSVHeaders, "NO"))
     204             :             {
     205           0 :                 bHasFieldNames = false;
     206             :             }
     207             :             else
     208             :             {
     209             :                 // Detect via checking for the presence of numeric values.
     210         598 :                 bHasFieldNames = true;
     211        3268 :                 for (int iField = 0; iField < nFieldCount && bHasFieldNames;
     212             :                      iField++)
     213             :                 {
     214             :                     const CPLValueType eType =
     215        2670 :                         CPLGetValueType(papszTokens[iField]);
     216        2670 :                     if (eType == CPL_VALUE_INTEGER || eType == CPL_VALUE_REAL)
     217             :                     {
     218             :                         // We have a numeric field, therefore do not consider
     219             :                         // the first line as field names.
     220          66 :                         bHasFieldNames = false;
     221             :                     }
     222             :                 }
     223             : 
     224             :                 const CPLString osExt =
     225        1196 :                     OGRCSVDataSource::GetRealExtension(pszFilename);
     226             : 
     227             :                 // Eurostat .tsv files.
     228         599 :                 if (EQUAL(osExt, "tsv") && nFieldCount > 1 &&
     229         600 :                     strchr(papszTokens[0], ',') != nullptr &&
     230           1 :                     strchr(papszTokens[0], '\\') != nullptr)
     231             :                 {
     232           1 :                     bHasFieldNames = true;
     233           1 :                     bIsEurostatTSV = true;
     234             :                 }
     235             :             }
     236             : 
     237             :             // Tokenize without quotes to get the actual values.
     238         598 :             VSIRewindL(fpCSV);
     239         598 :             CSLDestroy(papszTokens);
     240             :             papszTokens =
     241        1196 :                 CSVReadParseLine3L(fpCSV, m_nMaxLineSize, szDelimiter,
     242             :                                    true,   // bHonourStrings
     243             :                                    false,  // bKeepLeadingAndClosingQuotes
     244         598 :                                    bMergeDelimiter,
     245             :                                    true  // bSkipBOM
     246             :                 );
     247         598 :             nFieldCount = CSLCount(papszTokens);
     248             :         }
     249             :     }
     250             :     else
     251             :     {
     252         132 :         bHasFieldNames = false;
     253             :     }
     254             : 
     255         730 :     if (!bNew)
     256         598 :         ResetReading();
     257             : 
     258             :     int nMaxFieldCount =
     259         730 :         atoi(CPLGetConfigOption("OGR_CSV_MAX_FIELD_COUNT", "2000"));
     260         730 :     if (nFieldCount > nMaxFieldCount)
     261             :     {
     262           0 :         CPLError(CE_Warning, CPLE_AppDefined,
     263             :                  "%d columns detected. Limiting to %d. "
     264             :                  "Set OGR_CSV_MAX_FIELD_COUNT configuration option "
     265             :                  "to allow more fields.",
     266             :                  nFieldCount, nMaxFieldCount);
     267           0 :         nFieldCount = nMaxFieldCount;
     268             :     }
     269         730 :     if (nFieldCount > 100000)
     270           0 :         nFieldCount = 100000;  // to please coverity
     271             : 
     272         730 :     nCSVFieldCount = nFieldCount;
     273             : 
     274             :     // coverity[tainted_data]
     275         730 :     panGeomFieldIndex = static_cast<int *>(CPLCalloc(nFieldCount, sizeof(int)));
     276        3724 :     for (int iField = 0; iField < nFieldCount; iField++)
     277             :     {
     278        2994 :         panGeomFieldIndex[iField] = -1;
     279             :     }
     280             : 
     281             :     // Check for geonames.org tables.
     282         730 :     if (!bHasFieldNames && nFieldCount == 19)
     283             :     {
     284           1 :         if (CPLGetValueType(papszTokens[0]) == CPL_VALUE_INTEGER &&
     285           1 :             CPLGetValueType(papszTokens[4]) == CPL_VALUE_REAL &&
     286           1 :             CPLGetValueType(papszTokens[5]) == CPL_VALUE_REAL &&
     287           1 :             CPLAtof(papszTokens[4]) >= -90 && CPLAtof(papszTokens[4]) <= 90 &&
     288           2 :             CPLAtof(papszTokens[5]) >= -180 && CPLAtof(papszTokens[4]) <= 180)
     289             :         {
     290           1 :             CSLDestroy(papszTokens);
     291           1 :             papszTokens = nullptr;
     292             : 
     293             :             static const struct
     294             :             {
     295             :                 const char *pszName;
     296             :                 OGRFieldType eType;
     297             :             } asGeonamesFieldDesc[] = {
     298             :                 {"GEONAMEID", OFTString}, {"NAME", OFTString},
     299             :                 {"ASCIINAME", OFTString}, {"ALTNAMES", OFTString},
     300             :                 {"LATITUDE", OFTReal},    {"LONGITUDE", OFTReal},
     301             :                 {"FEATCLASS", OFTString}, {"FEATCODE", OFTString},
     302             :                 {"COUNTRY", OFTString},   {"CC2", OFTString},
     303             :                 {"ADMIN1", OFTString},    {"ADMIN2", OFTString},
     304             :                 {"ADMIN3", OFTString},    {"ADMIN4", OFTString},
     305             :                 {"POPULATION", OFTReal},  {"ELEVATION", OFTInteger},
     306             :                 {"GTOPO30", OFTInteger},  {"TIMEZONE", OFTString},
     307             :                 {"MODDATE", OFTString}};
     308             : 
     309          20 :             for (int iField = 0; iField < nFieldCount; iField++)
     310             :             {
     311          19 :                 OGRFieldDefn oFieldDefn(asGeonamesFieldDesc[iField].pszName,
     312          38 :                                         asGeonamesFieldDesc[iField].eType);
     313          19 :                 poFeatureDefn->AddFieldDefn(&oFieldDefn);
     314             :             }
     315             : 
     316           1 :             iLatitudeField = 4;
     317           1 :             iLongitudeField = 5;
     318             : 
     319           1 :             nFieldCount = 0;
     320             : 
     321           1 :             bHonourStrings = false;
     322             :         }
     323             :     }
     324             : 
     325             :     // Search a csvt file for types.
     326         730 :     char **papszFieldTypes = nullptr;
     327         730 :     if (!bNew)
     328             :     {
     329             :         // Only try to read .csvt from files that have an extension
     330         598 :         const char *pszExt = CPLGetExtension(pszFilename);
     331         598 :         if (pszExt[0])
     332             :         {
     333             :             const std::string osCSVTFilename =
     334        1196 :                 CPLResetExtension(pszFilename, "csvt");
     335         598 :             VSILFILE *fpCSVT = VSIFOpenL(osCSVTFilename.c_str(), "r");
     336         598 :             if (fpCSVT != nullptr)
     337             :             {
     338         118 :                 m_osCSVTFilename = osCSVTFilename;
     339         118 :                 VSIRewindL(fpCSVT);
     340             :                 papszFieldTypes =
     341         118 :                     CSVReadParseLine3L(fpCSVT, m_nMaxLineSize, ",",
     342             :                                        true,   // bHonourStrings
     343             :                                        false,  // bKeepLeadingAndClosingQuotes
     344             :                                        false,  // bMergeDelimiter,
     345             :                                        true    // bSkipBOM
     346             :                     );
     347         118 :                 VSIFCloseL(fpCSVT);
     348             :             }
     349             :         }
     350             :     }
     351             : 
     352             :     // Optionally auto-detect types.
     353        1210 :     if (!bNew && papszFieldTypes == nullptr &&
     354         480 :         CPLTestBool(
     355             :             CSLFetchNameValueDef(papszOpenOptions, "AUTODETECT_TYPE", "NO")))
     356             :     {
     357          25 :         papszFieldTypes = AutodetectFieldTypes(papszOpenOptions, nFieldCount);
     358          25 :         if (papszFieldTypes != nullptr)
     359             :         {
     360          25 :             bKeepSourceColumns = CPLTestBool(CSLFetchNameValueDef(
     361             :                 papszOpenOptions, "KEEP_SOURCE_COLUMNS", "NO"));
     362             :         }
     363             :     }
     364             : 
     365         730 :     char **papszGeomPossibleNames = CSLTokenizeString2(
     366             :         CSLFetchNameValue(papszOpenOptions, "GEOM_POSSIBLE_NAMES"), ",", 0);
     367         730 :     char **papszXPossibleNames = CSLTokenizeString2(
     368             :         CSLFetchNameValue(papszOpenOptions, "X_POSSIBLE_NAMES"), ",", 0);
     369         730 :     char **papszYPossibleNames = CSLTokenizeString2(
     370             :         CSLFetchNameValue(papszOpenOptions, "Y_POSSIBLE_NAMES"), ",", 0);
     371         730 :     char **papszZPossibleNames = CSLTokenizeString2(
     372             :         CSLFetchNameValue(papszOpenOptions, "Z_POSSIBLE_NAMES"), ",", 0);
     373         730 :     bKeepGeomColumns = CPLTestBool(
     374             :         CSLFetchNameValueDef(papszOpenOptions, "KEEP_GEOM_COLUMNS", "YES"));
     375             : 
     376             :     // Build field definitions.
     377         730 :     poFeatureDefn->ReserveSpaceForFields(nFieldCount);
     378             : 
     379         730 :     constexpr int knMAX_GEOM_COLUMNS = 100;
     380         730 :     bool bWarnedMaxGeomFields = false;
     381             : 
     382         730 :     const int nFieldTypesCount = CSLCount(papszFieldTypes);
     383             : 
     384        3701 :     for (int iField = 0; !bIsEurostatTSV && iField < nFieldCount; iField++)
     385             :     {
     386        2971 :         char *pszFieldName = nullptr;
     387             :         char szFieldNameBuffer[100];
     388             : 
     389        2971 :         if (bHasFieldNames)
     390             :         {
     391        2541 :             pszFieldName = papszTokens[iField];
     392             : 
     393             :             // Trim white space.
     394        2549 :             while (*pszFieldName == ' ')
     395           8 :                 pszFieldName++;
     396             : 
     397        2549 :             while (pszFieldName[0] != '\0' &&
     398        2549 :                    pszFieldName[strlen(pszFieldName) - 1] == ' ')
     399           8 :                 pszFieldName[strlen(pszFieldName) - 1] = '\0';
     400             : 
     401        2541 :             if (*pszFieldName == '\0')
     402           0 :                 pszFieldName = nullptr;
     403             :         }
     404             : 
     405        2971 :         if (pszFieldName == nullptr)
     406             :         {
     407             :             // Re-read single column CSV files that have a trailing comma
     408             :             // in the header line.
     409         430 :             if (iField == 1 && nFieldCount == 2 && papszTokens[1][0] == '\0')
     410             :             {
     411           0 :                 nCSVFieldCount = 1;
     412           0 :                 nFieldCount = 1;
     413           0 :                 break;
     414             :             }
     415         430 :             pszFieldName = szFieldNameBuffer;
     416         430 :             snprintf(szFieldNameBuffer, sizeof(szFieldNameBuffer), "field_%d",
     417             :                      iField + 1);
     418             :         }
     419             : 
     420        2971 :         OGRFieldDefn oField(pszFieldName, OFTString);
     421        2971 :         if (papszFieldTypes != nullptr && iField < nFieldTypesCount)
     422             :         {
     423         878 :             if (EQUAL(papszFieldTypes[iField], "WKT"))
     424             :             {
     425          14 :                 if (bKeepGeomColumns)
     426          14 :                     poFeatureDefn->AddFieldDefn(&oField);
     427             : 
     428          14 :                 if (poFeatureDefn->GetGeomFieldCount() == knMAX_GEOM_COLUMNS)
     429             :                 {
     430           0 :                     if (!bWarnedMaxGeomFields)
     431             :                     {
     432           0 :                         CPLError(CE_Warning, CPLE_NotSupported,
     433             :                                  "A maximum number of %d geometry fields is "
     434             :                                  "supported. "
     435             :                                  "Only the first ones are taken into account.",
     436             :                                  knMAX_GEOM_COLUMNS);
     437           0 :                         bWarnedMaxGeomFields = true;
     438             :                     }
     439           0 :                     continue;
     440             :                 }
     441             : 
     442          14 :                 eGeometryFormat = OGR_CSV_GEOM_AS_WKT;
     443          14 :                 panGeomFieldIndex[iField] = poFeatureDefn->GetGeomFieldCount();
     444          28 :                 std::string osGeomColName;
     445          14 :                 if (bKeepGeomColumns)
     446          14 :                     osGeomColName += "geom_";
     447          14 :                 osGeomColName += oField.GetNameRef();
     448             :                 OGRGeomFieldDefn oGeomFieldDefn(osGeomColName.c_str(),
     449          28 :                                                 wkbUnknown);
     450          14 :                 poFeatureDefn->AddGeomFieldDefn(&oGeomFieldDefn);
     451          14 :                 continue;
     452             :             }
     453         864 :             else if (EQUAL(papszFieldTypes[iField], "CoordX") ||
     454         860 :                      EQUAL(papszFieldTypes[iField], "Point(X)"))
     455             :             {
     456           4 :                 oField.SetType(OFTReal);
     457           4 :                 iLongitudeField = iField;
     458           4 :                 osXField = oField.GetNameRef();
     459           4 :                 if (bKeepGeomColumns)
     460           4 :                     poFeatureDefn->AddFieldDefn(&oField);
     461           4 :                 continue;
     462             :             }
     463         860 :             else if (EQUAL(papszFieldTypes[iField], "CoordY") ||
     464         856 :                      EQUAL(papszFieldTypes[iField], "Point(Y)"))
     465             :             {
     466           4 :                 oField.SetType(OFTReal);
     467           4 :                 iLatitudeField = iField;
     468           4 :                 osYField = oField.GetNameRef();
     469           4 :                 if (bKeepGeomColumns)
     470           4 :                     poFeatureDefn->AddFieldDefn(&oField);
     471           4 :                 continue;
     472             :             }
     473         856 :             else if (EQUAL(papszFieldTypes[iField], "CoordZ") ||
     474         856 :                      EQUAL(papszFieldTypes[iField], "Point(Z)"))
     475             :             {
     476           0 :                 oField.SetType(OFTReal);
     477           0 :                 iZField = iField;
     478           0 :                 osZField = oField.GetNameRef();
     479           0 :                 if (bKeepGeomColumns)
     480           0 :                     poFeatureDefn->AddFieldDefn(&oField);
     481           0 :                 continue;
     482             :             }
     483         856 :             else if (EQUAL(papszFieldTypes[iField], "Integer(Boolean)"))
     484             :             {
     485          13 :                 oField.SetType(OFTInteger);
     486          13 :                 oField.SetSubType(OFSTBoolean);
     487          13 :                 oField.SetWidth(1);
     488             :             }
     489         843 :             else if (EQUAL(papszFieldTypes[iField], "Integer(Int16)"))
     490             :             {
     491           1 :                 oField.SetType(OFTInteger);
     492           1 :                 oField.SetSubType(OFSTInt16);
     493             :             }
     494         842 :             else if (EQUAL(papszFieldTypes[iField], "Real(Float32)"))
     495             :             {
     496           1 :                 oField.SetType(OFTReal);
     497           1 :                 oField.SetSubType(OFSTFloat32);
     498             :             }
     499             :             else
     500             :             {
     501         841 :                 char *pszLeftParenthesis = strchr(papszFieldTypes[iField], '(');
     502         841 :                 if (pszLeftParenthesis &&
     503         143 :                     pszLeftParenthesis != papszFieldTypes[iField] &&
     504         143 :                     pszLeftParenthesis[1] >= '0' &&
     505         143 :                     pszLeftParenthesis[1] <= '9')
     506             :                 {
     507         143 :                     char *pszDot = strchr(pszLeftParenthesis, '.');
     508         143 :                     if (pszDot)
     509          41 :                         *pszDot = 0;
     510         143 :                     *pszLeftParenthesis = 0;
     511             : 
     512         143 :                     if (pszLeftParenthesis[-1] == ' ')
     513         119 :                         pszLeftParenthesis[-1] = 0;
     514             : 
     515         143 :                     const int nWidth = atoi(pszLeftParenthesis + 1);
     516         143 :                     const int nPrecision = pszDot ? atoi(pszDot + 1) : 0;
     517             : 
     518         143 :                     oField.SetWidth(nWidth);
     519         143 :                     oField.SetPrecision(nPrecision);
     520             :                 }
     521             : 
     522         841 :                 if (EQUAL(papszFieldTypes[iField], "Integer"))
     523          72 :                     oField.SetType(OFTInteger);
     524         769 :                 else if (EQUAL(papszFieldTypes[iField], "Integer64"))
     525           7 :                     oField.SetType(OFTInteger64);
     526         762 :                 else if (EQUAL(papszFieldTypes[iField], "Real"))
     527         215 :                     oField.SetType(OFTReal);
     528         547 :                 else if (EQUAL(papszFieldTypes[iField], "String"))
     529         432 :                     oField.SetType(OFTString);
     530         115 :                 else if (EQUAL(papszFieldTypes[iField], "Date"))
     531          24 :                     oField.SetType(OFTDate);
     532          91 :                 else if (EQUAL(papszFieldTypes[iField], "Time"))
     533          21 :                     oField.SetType(OFTTime);
     534          70 :                 else if (EQUAL(papszFieldTypes[iField], "DateTime"))
     535          61 :                     oField.SetType(OFTDateTime);
     536           9 :                 else if (EQUAL(papszFieldTypes[iField], "JSonStringList"))
     537           3 :                     oField.SetType(OFTStringList);
     538           6 :                 else if (EQUAL(papszFieldTypes[iField], "JSonIntegerList"))
     539           2 :                     oField.SetType(OFTIntegerList);
     540           4 :                 else if (EQUAL(papszFieldTypes[iField], "JSonInteger64List"))
     541           2 :                     oField.SetType(OFTInteger64List);
     542           2 :                 else if (EQUAL(papszFieldTypes[iField], "JSonRealList"))
     543           2 :                     oField.SetType(OFTRealList);
     544             :                 else
     545           0 :                     CPLError(CE_Warning, CPLE_NotSupported, "Unknown type : %s",
     546           0 :                              papszFieldTypes[iField]);
     547             :             }
     548             :         }
     549             : 
     550        2949 :         if (Matches(oField.GetNameRef(), papszZPossibleNames))
     551             :         {
     552           4 :             oField.SetType(OFTReal);
     553           4 :             iZField = iField;
     554           4 :             osZField = oField.GetNameRef();
     555           4 :             if (!bKeepGeomColumns)
     556           2 :                 continue;
     557             :         }
     558        2945 :         else if ((iNfdcLatitudeS != -1 && iNfdcLongitudeS != -1) ||
     559        2945 :                  (iLatitudeField != -1 && iLongitudeField != -1))
     560             :         {
     561             :             // Do nothing.
     562             :         }
     563        2932 :         else if ((EQUAL(oField.GetNameRef(), "WKT") ||
     564        3386 :                   STARTS_WITH_CI(oField.GetNameRef(), "_WKT")) &&
     565         454 :                  oField.GetType() == OFTString)
     566             :         {
     567         454 :             if (poFeatureDefn->GetGeomFieldCount() == knMAX_GEOM_COLUMNS)
     568             :             {
     569           1 :                 if (!bWarnedMaxGeomFields)
     570             :                 {
     571           1 :                     CPLError(
     572             :                         CE_Warning, CPLE_NotSupported,
     573             :                         "A maximum number of %d geometry fields is supported. "
     574             :                         "Only the first ones are taken into account.",
     575             :                         knMAX_GEOM_COLUMNS);
     576           1 :                     bWarnedMaxGeomFields = true;
     577             :                 }
     578             :             }
     579             :             else
     580             :             {
     581         453 :                 eGeometryFormat = OGR_CSV_GEOM_AS_WKT;
     582             : 
     583         453 :                 panGeomFieldIndex[iField] = poFeatureDefn->GetGeomFieldCount();
     584             :                 OGRGeomFieldDefn oGeomFieldDefn(
     585         453 :                     EQUAL(pszFieldName, "WKT")
     586             :                         ? ""
     587         247 :                         : CPLSPrintf("geom_%s", pszFieldName),
     588         700 :                     wkbUnknown);
     589             : 
     590             :                 // Useful hack for RFC 41 testing.
     591         453 :                 const char *pszEPSG = strstr(pszFieldName, "_EPSG_");
     592         453 :                 if (pszEPSG != nullptr)
     593             :                 {
     594         242 :                     const int nEPSGCode = atoi(pszEPSG + strlen("_EPSG_"));
     595         242 :                     OGRSpatialReference *poSRS = new OGRSpatialReference();
     596         242 :                     poSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
     597         242 :                     poSRS->importFromEPSG(nEPSGCode);
     598         242 :                     oGeomFieldDefn.SetSpatialRef(poSRS);
     599         242 :                     poSRS->Release();
     600             :                 }
     601             : 
     602         453 :                 if (strstr(pszFieldName, "_POINT"))
     603         102 :                     oGeomFieldDefn.SetType(wkbPoint);
     604         351 :                 else if (strstr(pszFieldName, "_LINESTRING"))
     605          34 :                     oGeomFieldDefn.SetType(wkbLineString);
     606         317 :                 else if (strstr(pszFieldName, "_POLYGON"))
     607          68 :                     oGeomFieldDefn.SetType(wkbPolygon);
     608         249 :                 else if (strstr(pszFieldName, "_MULTIPOINT"))
     609           0 :                     oGeomFieldDefn.SetType(wkbMultiPoint);
     610         249 :                 else if (strstr(pszFieldName, "_MULTILINESTRING"))
     611           0 :                     oGeomFieldDefn.SetType(wkbMultiLineString);
     612         249 :                 else if (strstr(pszFieldName, "_MULTIPOLYGON"))
     613           0 :                     oGeomFieldDefn.SetType(wkbMultiPolygon);
     614         249 :                 else if (strstr(pszFieldName, "_CIRCULARSTRING"))
     615           0 :                     oGeomFieldDefn.SetType(wkbCircularString);
     616         249 :                 else if (strstr(pszFieldName, "_COMPOUNDCURVE"))
     617           0 :                     oGeomFieldDefn.SetType(wkbCompoundCurve);
     618         249 :                 else if (strstr(pszFieldName, "_CURVEPOLYGON"))
     619           4 :                     oGeomFieldDefn.SetType(wkbCurvePolygon);
     620         245 :                 else if (strstr(pszFieldName, "_CURVE"))
     621           0 :                     oGeomFieldDefn.SetType(wkbCurve);
     622         245 :                 else if (strstr(pszFieldName, "_SURFACE"))
     623           0 :                     oGeomFieldDefn.SetType(wkbSurface);
     624         245 :                 else if (strstr(pszFieldName, "_MULTICURVE"))
     625           0 :                     oGeomFieldDefn.SetType(wkbMultiCurve);
     626         245 :                 else if (strstr(pszFieldName, "_MULTISURFACE"))
     627           0 :                     oGeomFieldDefn.SetType(wkbMultiSurface);
     628         245 :                 else if (strstr(pszFieldName, "_POLYHEDRALSURFACE"))
     629           0 :                     oGeomFieldDefn.SetType(wkbPolyhedralSurface);
     630         245 :                 else if (strstr(pszFieldName, "_TIN"))
     631           0 :                     oGeomFieldDefn.SetType(wkbTIN);
     632         245 :                 else if (strstr(pszFieldName, "_TRIANGLE"))
     633           0 :                     oGeomFieldDefn.SetType(wkbTriangle);
     634             : 
     635         453 :                 poFeatureDefn->AddGeomFieldDefn(&oGeomFieldDefn);
     636         453 :                 if (!bKeepGeomColumns)
     637           0 :                     continue;
     638             :             }
     639             :         }
     640        2478 :         else if (Matches(oField.GetNameRef(), papszGeomPossibleNames))
     641             :         {
     642          12 :             eGeometryFormat = OGR_CSV_GEOM_AS_SOME_GEOM_FORMAT;
     643          12 :             panGeomFieldIndex[iField] = poFeatureDefn->GetGeomFieldCount();
     644          12 :             OGRGeomFieldDefn oGeomFieldDefn(oField.GetNameRef(), wkbUnknown);
     645          12 :             poFeatureDefn->AddGeomFieldDefn(&oGeomFieldDefn);
     646          12 :             if (!bKeepGeomColumns)
     647           7 :                 continue;
     648             :         }
     649        2479 :         else if (Matches(oField.GetNameRef(), papszXPossibleNames) &&
     650          13 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     651             :         {
     652          12 :             oField.SetType(OFTReal);
     653          12 :             iLongitudeField = iField;
     654          12 :             osXField = oField.GetNameRef();
     655          12 :             if (!bKeepGeomColumns)
     656           6 :                 continue;
     657             :         }
     658        2467 :         else if (Matches(oField.GetNameRef(), papszYPossibleNames) &&
     659          13 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     660             :         {
     661          12 :             oField.SetType(OFTReal);
     662          12 :             iLatitudeField = iField;
     663          12 :             osYField = oField.GetNameRef();
     664          12 :             if (!bKeepGeomColumns)
     665           6 :                 continue;
     666             :         }
     667             : 
     668             :         // TODO(schwehr): URL broken.
     669             :         // http://www.faa.gov/airports/airport_safety/airportdata_5010/menu/index.cfm
     670             :         // specific
     671        2442 :         else if (pszNfdcGeomField != nullptr &&
     672           0 :                  EQUALN(oField.GetNameRef(), pszNfdcGeomField,
     673           0 :                         strlen(pszNfdcGeomField)) &&
     674           0 :                  EQUAL(oField.GetNameRef() + strlen(pszNfdcGeomField),
     675        2442 :                        "LatitudeS") &&
     676           0 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     677             :         {
     678           0 :             iNfdcLatitudeS = iField;
     679           0 :             if (!bKeepGeomColumns)
     680           0 :                 continue;
     681             :         }
     682        2442 :         else if (pszNfdcGeomField != nullptr &&
     683           0 :                  EQUALN(oField.GetNameRef(), pszNfdcGeomField,
     684           0 :                         strlen(pszNfdcGeomField)) &&
     685           0 :                  EQUAL(oField.GetNameRef() + strlen(pszNfdcGeomField),
     686        2442 :                        "LongitudeS") &&
     687           0 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     688             :         {
     689           0 :             iNfdcLongitudeS = iField;
     690           0 :             if (!bKeepGeomColumns)
     691           0 :                 continue;
     692             :         }
     693             :         // GNIS specific.
     694        2442 :         else if (pszGeonamesGeomFieldPrefix != nullptr &&
     695           0 :                  EQUALN(oField.GetNameRef(), pszGeonamesGeomFieldPrefix,
     696           0 :                         strlen(pszGeonamesGeomFieldPrefix)) &&
     697           0 :                  (EQUAL(oField.GetNameRef() +
     698             :                             strlen(pszGeonamesGeomFieldPrefix),
     699           0 :                         "_LAT_DEC") ||
     700           0 :                   EQUAL(oField.GetNameRef() +
     701             :                             strlen(pszGeonamesGeomFieldPrefix),
     702           0 :                         "_LATITUDE_DEC") ||
     703           0 :                   EQUAL(oField.GetNameRef() +
     704             :                             strlen(pszGeonamesGeomFieldPrefix),
     705        2442 :                         "_LATITUDE")) &&
     706           0 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     707             :         {
     708           0 :             m_bIsGNIS = true;
     709           0 :             oField.SetType(OFTReal);
     710           0 :             iLatitudeField = iField;
     711           0 :             osYField = oField.GetNameRef();
     712           0 :             if (!bKeepGeomColumns)
     713           0 :                 continue;
     714             :         }
     715        2442 :         else if (pszGeonamesGeomFieldPrefix != nullptr &&
     716           0 :                  EQUALN(oField.GetNameRef(), pszGeonamesGeomFieldPrefix,
     717           0 :                         strlen(pszGeonamesGeomFieldPrefix)) &&
     718           0 :                  (EQUAL(oField.GetNameRef() +
     719             :                             strlen(pszGeonamesGeomFieldPrefix),
     720           0 :                         "_LONG_DEC") ||
     721           0 :                   EQUAL(oField.GetNameRef() +
     722             :                             strlen(pszGeonamesGeomFieldPrefix),
     723           0 :                         "_LONGITUDE_DEC") ||
     724           0 :                   EQUAL(oField.GetNameRef() +
     725             :                             strlen(pszGeonamesGeomFieldPrefix),
     726        2442 :                         "_LONGITUDE")) &&
     727           0 :                  poFeatureDefn->GetGeomFieldCount() == 0)
     728             :         {
     729           0 :             m_bIsGNIS = true;
     730           0 :             oField.SetType(OFTReal);
     731           0 :             iLongitudeField = iField;
     732           0 :             osXField = oField.GetNameRef();
     733           0 :             if (!bKeepGeomColumns)
     734           0 :                 continue;
     735             :         }
     736             : 
     737        2928 :         poFeatureDefn->AddFieldDefn(&oField);
     738             : 
     739        2928 :         if (bKeepSourceColumns && oField.GetType() != OFTString)
     740             :         {
     741             :             OGRFieldDefn oFieldOriginal(
     742          22 :                 CPLSPrintf("%s_original", oField.GetNameRef()), OFTString);
     743          11 :             poFeatureDefn->AddFieldDefn(&oFieldOriginal);
     744             :         }
     745             :     }
     746             : 
     747         730 :     if (iNfdcLatitudeS != -1 && iNfdcLongitudeS != -1)
     748             :     {
     749           0 :         bHonourStrings = false;
     750           0 :         if (poFeatureDefn->GetGeomFieldCount() == 0)
     751             :         {
     752           0 :             poFeatureDefn->SetGeomType(wkbPoint);
     753             :         }
     754             :         else
     755             :         {
     756           0 :             iNfdcLatitudeS = -1;
     757           0 :             iNfdcLongitudeS = -1;
     758           0 :             iLatitudeField = -1;
     759           0 :             iLongitudeField = -1;
     760             :         }
     761             :     }
     762         730 :     else if (iLatitudeField != -1 && iLongitudeField != -1)
     763             :     {
     764          17 :         if (poFeatureDefn->GetGeomFieldCount() == 0)
     765             :         {
     766          17 :             poFeatureDefn->SetGeomType(iZField >= 0 ? wkbPoint25D : wkbPoint);
     767             :         }
     768             :         else
     769             :         {
     770           0 :             iNfdcLatitudeS = -1;
     771           0 :             iNfdcLongitudeS = -1;
     772           0 :             iLatitudeField = -1;
     773           0 :             iLongitudeField = -1;
     774             :         }
     775             :     }
     776             : 
     777         967 :     if (poFeatureDefn->GetGeomFieldCount() > 0 &&
     778         237 :         poFeatureDefn->GetGeomFieldDefn(0)->GetSpatialRef() == nullptr)
     779             :     {
     780             :         VSILFILE *fpPRJ =
     781         148 :             VSIFOpenL(CPLResetExtension(pszFilename, "prj"), "rb");
     782         148 :         if (fpPRJ != nullptr)
     783             :         {
     784           2 :             GByte *pabyRet = nullptr;
     785           2 :             if (VSIIngestFile(fpPRJ, nullptr, &pabyRet, nullptr, 1000000))
     786             :             {
     787           2 :                 OGRSpatialReference *poSRS = new OGRSpatialReference();
     788           2 :                 poSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
     789           2 :                 if (poSRS->SetFromUserInput(
     790             :                         (const char *)pabyRet,
     791             :                         OGRSpatialReference::
     792           2 :                             SET_FROM_USER_INPUT_LIMITATIONS_get()) ==
     793             :                     OGRERR_NONE)
     794             :                 {
     795           2 :                     poFeatureDefn->GetGeomFieldDefn(0)->SetSpatialRef(poSRS);
     796             :                 }
     797           2 :                 poSRS->Release();
     798             :             }
     799           2 :             CPLFree(pabyRet);
     800           2 :             VSIFCloseL(fpPRJ);
     801             :         }
     802             :     }
     803             : 
     804         730 :     CSLDestroy(papszGeomPossibleNames);
     805         730 :     CSLDestroy(papszXPossibleNames);
     806         730 :     CSLDestroy(papszYPossibleNames);
     807         730 :     CSLDestroy(papszZPossibleNames);
     808             : 
     809             :     // Build field definitions for Eurostat TSV files.
     810             : 
     811        1460 :     CPLString osSeqDim;
     812         734 :     for (int iField = 0; bIsEurostatTSV && iField < nFieldCount; iField++)
     813             :     {
     814           4 :         if (iField == 0)
     815             :         {
     816           1 :             char **papszDims = CSLTokenizeString2(papszTokens[0], ",\\", 0);
     817           1 :             nEurostatDims = CSLCount(papszDims) - 1;
     818           3 :             for (int iSubField = 0; iSubField < nEurostatDims; iSubField++)
     819             :             {
     820           4 :                 OGRFieldDefn oField(papszDims[iSubField], OFTString);
     821           2 :                 poFeatureDefn->AddFieldDefn(&oField);
     822             :             }
     823             : 
     824           1 :             if (nEurostatDims >= 0)
     825           1 :                 osSeqDim = papszDims[nEurostatDims];
     826             :             else
     827           0 :                 CPLError(CE_Warning, CPLE_AppDefined, "Invalid nEurostatDims");
     828             : 
     829           1 :             CSLDestroy(papszDims);
     830             :         }
     831             :         else
     832             :         {
     833           3 :             if (papszTokens[iField][0] != '\0' &&
     834           3 :                 papszTokens[iField][strlen(papszTokens[iField]) - 1] == ' ')
     835           3 :                 papszTokens[iField][strlen(papszTokens[iField]) - 1] = '\0';
     836             : 
     837             :             OGRFieldDefn oField(
     838           3 :                 CPLSPrintf("%s_%s", osSeqDim.c_str(), papszTokens[iField]),
     839           6 :                 OFTReal);
     840           3 :             poFeatureDefn->AddFieldDefn(&oField);
     841             : 
     842             :             OGRFieldDefn oField2(
     843           3 :                 CPLSPrintf("%s_%s_flag", osSeqDim.c_str(), papszTokens[iField]),
     844           6 :                 OFTString);
     845           3 :             poFeatureDefn->AddFieldDefn(&oField2);
     846             :         }
     847             :     }
     848             : 
     849         730 :     CSLDestroy(papszTokens);
     850         730 :     CSLDestroy(papszFieldTypes);
     851         730 : }
     852             : 
     853             : /************************************************************************/
     854             : /*                             GetFileList()                            */
     855             : /************************************************************************/
     856             : 
     857          29 : std::vector<std::string> OGRCSVLayer::GetFileList()
     858             : {
     859          29 :     std::vector<std::string> ret;
     860          29 :     ret.emplace_back(pszFilename);
     861          29 :     if (!m_osCSVTFilename.empty())
     862          11 :         ret.emplace_back(m_osCSVTFilename);
     863          29 :     return ret;
     864             : }
     865             : 
     866             : /************************************************************************/
     867             : /*                             OGRCSVIsTrue()                           */
     868             : /************************************************************************/
     869             : 
     870         192 : static bool OGRCSVIsTrue(const char *pszStr)
     871             : {
     872         189 :     return EQUAL(pszStr, "t") || EQUAL(pszStr, "true") || EQUAL(pszStr, "y") ||
     873         381 :            EQUAL(pszStr, "yes") || EQUAL(pszStr, "on");
     874             : }
     875             : 
     876             : /************************************************************************/
     877             : /*                            OGRCSVIsFalse()                           */
     878             : /************************************************************************/
     879             : 
     880         171 : static bool OGRCSVIsFalse(const char *pszStr)
     881             : {
     882         168 :     return EQUAL(pszStr, "f") || EQUAL(pszStr, "false") || EQUAL(pszStr, "n") ||
     883         339 :            EQUAL(pszStr, "no") || EQUAL(pszStr, "off");
     884             : }
     885             : 
     886             : /************************************************************************/
     887             : /*                        AutodetectFieldTypes()                        */
     888             : /************************************************************************/
     889             : 
     890          25 : char **OGRCSVLayer::AutodetectFieldTypes(CSLConstList papszOpenOptions,
     891             :                                          int nFieldCount)
     892             : {
     893             :     const bool bStreaming =
     894          50 :         STARTS_WITH(pszFilename, "/vsistdin") ||
     895             :         // config option for testing purposes only
     896          25 :         CPLTestBool(CPLGetConfigOption("OGR_CSV_SIMULATE_VSISTDIN", "NO"));
     897          25 :     constexpr int STREAMING_LIMIT = 1000 * 1000;
     898             :     // Use 1 000 000 as default maximum distance to be compatible with
     899             :     // /vsistdin/ caching.
     900          25 :     vsi_l_offset nBytes = static_cast<vsi_l_offset>(CPLAtoGIntBig(
     901             :         CSLFetchNameValueDef(papszOpenOptions, "AUTODETECT_SIZE_LIMIT",
     902          25 :                              CPLSPrintf("%d", STREAMING_LIMIT))));
     903          25 :     if (nBytes == 0)
     904           2 :         nBytes = static_cast<vsi_l_offset>(-1);  // unlimited size
     905          25 :     if (bStreaming && (nBytes == 0 || nBytes > STREAMING_LIMIT))
     906             :     {
     907           1 :         CPLError(CE_Warning, CPLE_AppDefined,
     908             :                  "Limiting AUTODETECT_SIZE_LIMIT to %d for /vsistdin/",
     909             :                  STREAMING_LIMIT);
     910           1 :         nBytes = STREAMING_LIMIT;
     911             :     }
     912             : 
     913          25 :     ResetReading();
     914             : 
     915             :     const char *pszAutodetectWidth =
     916          25 :         CSLFetchNameValueDef(papszOpenOptions, "AUTODETECT_WIDTH", "NO");
     917             : 
     918          25 :     const bool bAutodetectWidthForIntOrReal = EQUAL(pszAutodetectWidth, "YES");
     919          41 :     const bool bAutodetectWidth = bAutodetectWidthForIntOrReal ||
     920          16 :                                   EQUAL(pszAutodetectWidth, "STRING_ONLY");
     921             : 
     922          25 :     const bool bQuotedFieldAsString = CPLTestBool(CSLFetchNameValueDef(
     923             :         papszOpenOptions, "QUOTED_FIELDS_AS_STRING", "NO"));
     924             : 
     925             :     // This will be returned as the result.
     926          25 :     char **papszFieldTypes = nullptr;
     927             : 
     928          25 :     char *pszData = nullptr;
     929          25 :     VSILFILE *fp = fpCSV;
     930          50 :     std::string osTmpMemFile;
     931          25 :     size_t nRead = 0;
     932          25 :     int nRequested = 0;
     933          25 :     if (bStreaming)
     934             :     {
     935             :         // The above ResetReading() will skip the header line,
     936             :         // so VSIFTellL(fpCSV) != 0
     937           2 :         nRequested =
     938           2 :             static_cast<int>(nBytes) - static_cast<int>(VSIFTellL(fpCSV));
     939           2 :         if (nRequested <= 0)
     940           0 :             return nullptr;
     941           2 :         pszData = static_cast<char *>(VSI_MALLOC_VERBOSE(nRequested + 1));
     942           2 :         if (pszData == nullptr)
     943           0 :             return nullptr;
     944           2 :         nRead = VSIFReadL(pszData, 1, nRequested, fpCSV);
     945           2 :         pszData[nRead] = 0;
     946             : 
     947           2 :         osTmpMemFile = VSIMemGenerateHiddenFilename("temp.csv");
     948           2 :         fp = VSIFileFromMemBuffer(osTmpMemFile.c_str(),
     949             :                                   reinterpret_cast<GByte *>(pszData), nRead,
     950             :                                   FALSE);
     951             :     }
     952             : 
     953          50 :     std::vector<OGRFieldType> aeFieldType(nFieldCount);
     954          50 :     std::vector<int> abFieldBoolean(nFieldCount);
     955          50 :     std::vector<int> abFieldSet(nFieldCount);
     956          50 :     std::vector<int> abFinalTypeStringSet(nFieldCount);
     957          50 :     std::vector<int> anFieldWidth(nFieldCount);
     958          25 :     std::vector<int> anFieldPrecision(nFieldCount);
     959          25 :     int nStringFieldCount = 0;
     960             : 
     961          95 :     while (!fp->Eof() && !fp->Error())
     962             :     {
     963             :         char **papszTokens =
     964         170 :             CSVReadParseLine3L(fp, m_nMaxLineSize, szDelimiter,
     965             :                                true,  // bHonourStrings
     966          85 :                                bQuotedFieldAsString, bMergeDelimiter,
     967             :                                true  // bSkipBOM
     968             :             );
     969             :         // Can happen if we just reach EOF while trying to read new bytes.
     970          85 :         if (papszTokens == nullptr)
     971           0 :             break;
     972             : 
     973          85 :         if (bStreaming)
     974             :         {
     975             :             // Ignore last line if it is truncated.
     976          13 :             if (fp->Eof() && nRead == static_cast<size_t>(nRequested) &&
     977          13 :                 pszData[nRead - 1] != 13 && pszData[nRead - 1] != 10)
     978             :             {
     979           1 :                 CSLDestroy(papszTokens);
     980           1 :                 break;
     981             :             }
     982             :         }
     983          74 :         else if (VSIFTellL(fp) > nBytes)
     984             :         {
     985          13 :             CSLDestroy(papszTokens);
     986          13 :             break;
     987             :         }
     988             : 
     989        1192 :         for (int iField = 0;
     990        1192 :              iField < nFieldCount && papszTokens[iField] != nullptr; iField++)
     991             :         {
     992        1121 :             if (papszTokens[iField][0] == 0)
     993         482 :                 continue;
     994         695 :             if (abFinalTypeStringSet[iField] && !bAutodetectWidth)
     995          56 :                 continue;
     996         639 :             if (szDelimiter[0] == ';')
     997             :             {
     998           0 :                 char *chComma = strchr(papszTokens[iField], ',');
     999           0 :                 if (chComma)
    1000           0 :                     *chComma = '.';
    1001             :             }
    1002         639 :             const CPLValueType eType = CPLGetValueType(papszTokens[iField]);
    1003             : 
    1004         639 :             if (bAutodetectWidth)
    1005             :             {
    1006         324 :                 int nFieldWidth = static_cast<int>(strlen(papszTokens[iField]));
    1007         324 :                 if (papszTokens[iField][0] == '"' &&
    1008           6 :                     papszTokens[iField][nFieldWidth - 1] == '"')
    1009             :                 {
    1010           6 :                     nFieldWidth -= 2;
    1011             :                 }
    1012         324 :                 int nFieldPrecision = 0;
    1013         324 :                 if (eType == CPL_VALUE_REAL && bAutodetectWidthForIntOrReal)
    1014             :                 {
    1015          40 :                     const char *pszDot = strchr(papszTokens[iField], '.');
    1016          40 :                     if (pszDot != nullptr)
    1017          40 :                         nFieldPrecision = static_cast<int>(strlen(pszDot + 1));
    1018             :                 }
    1019             : 
    1020         324 :                 if (nFieldWidth > anFieldWidth[iField])
    1021         205 :                     anFieldWidth[iField] = nFieldWidth;
    1022         324 :                 if (nFieldPrecision > anFieldPrecision[iField])
    1023          32 :                     anFieldPrecision[iField] = nFieldPrecision;
    1024             :             }
    1025             : 
    1026             :             OGRFieldType eOGRFieldType;
    1027         639 :             bool bIsBoolean = false;
    1028         639 :             if (eType == CPL_VALUE_INTEGER)
    1029             :             {
    1030         131 :                 GIntBig nVal = CPLAtoGIntBig(papszTokens[iField]);
    1031         131 :                 if (!CPL_INT64_FITS_ON_INT32(nVal))
    1032           6 :                     eOGRFieldType = OFTInteger64;
    1033             :                 else
    1034         125 :                     eOGRFieldType = OFTInteger;
    1035             :             }
    1036         508 :             else if (eType == CPL_VALUE_REAL ||
    1037         416 :                      EQUAL(papszTokens[iField], "inf") ||
    1038         415 :                      EQUAL(papszTokens[iField], "-inf") ||
    1039         414 :                      EQUAL(papszTokens[iField], "nan"))
    1040             :             {
    1041          95 :                 eOGRFieldType = OFTReal;
    1042             :             }
    1043         413 :             else if (abFieldSet[iField] && aeFieldType[iField] == OFTString)
    1044             :             {
    1045          38 :                 eOGRFieldType = OFTString;
    1046          38 :                 if (abFieldBoolean[iField])
    1047             :                 {
    1048          13 :                     abFieldBoolean[iField] =
    1049          21 :                         OGRCSVIsTrue(papszTokens[iField]) ||
    1050           8 :                         OGRCSVIsFalse(papszTokens[iField]);
    1051             :                 }
    1052             :             }
    1053             :             else
    1054             :             {
    1055             :                 OGRField sWrkField;
    1056         375 :                 CPLPushErrorHandler(CPLQuietErrorHandler);
    1057         375 :                 const bool bSuccess = CPL_TO_BOOL(
    1058         375 :                     OGRParseDate(papszTokens[iField], &sWrkField, 0));
    1059         375 :                 CPLPopErrorHandler();
    1060         375 :                 CPLErrorReset();
    1061         375 :                 if (bSuccess)
    1062             :                 {
    1063         209 :                     const bool bHasDate =
    1064         418 :                         strchr(papszTokens[iField], '/') != nullptr ||
    1065         209 :                         strchr(papszTokens[iField], '-') != nullptr;
    1066         209 :                     const bool bHasTime =
    1067         209 :                         strchr(papszTokens[iField], ':') != nullptr;
    1068         209 :                     if (bHasDate && bHasTime)
    1069          82 :                         eOGRFieldType = OFTDateTime;
    1070         127 :                     else if (bHasDate)
    1071          79 :                         eOGRFieldType = OFTDate;
    1072             :                     else
    1073          48 :                         eOGRFieldType = OFTTime;
    1074             :                 }
    1075             :                 else
    1076             :                 {
    1077         166 :                     eOGRFieldType = OFTString;
    1078         324 :                     bIsBoolean = OGRCSVIsTrue(papszTokens[iField]) ||
    1079         158 :                                  OGRCSVIsFalse(papszTokens[iField]);
    1080             :                 }
    1081             :             }
    1082             : 
    1083         166 :             const auto SetFinalStringType = [&abFinalTypeStringSet,
    1084             :                                              &aeFieldType, &nStringFieldCount,
    1085         664 :                                              iField]()
    1086             :             {
    1087         166 :                 if (!abFinalTypeStringSet[iField])
    1088             :                 {
    1089         166 :                     aeFieldType[iField] = OFTString;
    1090         166 :                     abFinalTypeStringSet[iField] = true;
    1091         166 :                     nStringFieldCount++;
    1092             :                 }
    1093         805 :             };
    1094             : 
    1095         639 :             if (!abFieldSet[iField])
    1096             :             {
    1097         356 :                 aeFieldType[iField] = eOGRFieldType;
    1098         356 :                 abFieldSet[iField] = TRUE;
    1099         356 :                 abFieldBoolean[iField] = bIsBoolean;
    1100         356 :                 if (eOGRFieldType == OFTString && !bIsBoolean)
    1101             :                 {
    1102          50 :                     SetFinalStringType();
    1103             :                 }
    1104             :             }
    1105         283 :             else if (aeFieldType[iField] != eOGRFieldType)
    1106             :             {
    1107             :                 // Promotion rules.
    1108         164 :                 if (aeFieldType[iField] == OFTInteger)
    1109             :                 {
    1110          39 :                     if (eOGRFieldType == OFTInteger64 ||
    1111             :                         eOGRFieldType == OFTReal)
    1112          16 :                         aeFieldType[iField] = eOGRFieldType;
    1113             :                     else
    1114             :                     {
    1115          23 :                         SetFinalStringType();
    1116             :                     }
    1117             :                 }
    1118         125 :                 else if (aeFieldType[iField] == OFTInteger64)
    1119             :                 {
    1120           2 :                     if (eOGRFieldType == OFTReal)
    1121           1 :                         aeFieldType[iField] = eOGRFieldType;
    1122           1 :                     else if (eOGRFieldType != OFTInteger)
    1123             :                     {
    1124           0 :                         SetFinalStringType();
    1125             :                     }
    1126             :                 }
    1127         123 :                 else if (aeFieldType[iField] == OFTReal)
    1128             :                 {
    1129          35 :                     if (eOGRFieldType != OFTInteger &&
    1130             :                         eOGRFieldType != OFTInteger64)
    1131             :                     {
    1132          20 :                         SetFinalStringType();
    1133             :                     }
    1134             :                 }
    1135          88 :                 else if (aeFieldType[iField] == OFTDate)
    1136             :                 {
    1137          31 :                     if (eOGRFieldType == OFTDateTime)
    1138          14 :                         aeFieldType[iField] = OFTDateTime;
    1139             :                     else
    1140             :                     {
    1141          17 :                         SetFinalStringType();
    1142             :                     }
    1143             :                 }
    1144          57 :                 else if (aeFieldType[iField] == OFTDateTime)
    1145             :                 {
    1146          40 :                     if (eOGRFieldType != OFTDate)
    1147             :                     {
    1148          26 :                         SetFinalStringType();
    1149             :                     }
    1150             :                 }
    1151          17 :                 else if (aeFieldType[iField] == OFTTime)
    1152             :                 {
    1153          17 :                     SetFinalStringType();
    1154             :                 }
    1155             :             }
    1156         213 :             else if (!abFinalTypeStringSet[iField] &&
    1157         213 :                      eOGRFieldType == OFTString && !bIsBoolean)
    1158             :             {
    1159          13 :                 SetFinalStringType();
    1160             :             }
    1161             :         }
    1162             : 
    1163          71 :         CSLDestroy(papszTokens);
    1164             : 
    1165             :         // If all fields are String and we don't need to compute width,
    1166             :         // just stop auto-detection now.
    1167          71 :         if (nStringFieldCount == nFieldCount && !bAutodetectWidth)
    1168             :         {
    1169           1 :             CPLDebugOnly("CSV",
    1170             :                          "AutodetectFieldTypes() stopped after "
    1171             :                          "reading " CPL_FRMT_GUIB " bytes",
    1172             :                          static_cast<GUIntBig>(VSIFTellL(fp)));
    1173           1 :             break;
    1174             :         }
    1175             :     }
    1176             : 
    1177             :     papszFieldTypes =
    1178          25 :         static_cast<char **>(CPLCalloc(nFieldCount + 1, sizeof(char *)));
    1179         402 :     for (int iField = 0; iField < nFieldCount; iField++)
    1180             :     {
    1181         377 :         CPLString osFieldType;
    1182         377 :         if (!abFieldSet[iField])
    1183          21 :             osFieldType = "String";
    1184         356 :         else if (aeFieldType[iField] == OFTInteger)
    1185          42 :             osFieldType = "Integer";
    1186         314 :         else if (aeFieldType[iField] == OFTInteger64)
    1187           3 :             osFieldType = "Integer64";
    1188         311 :         else if (aeFieldType[iField] == OFTReal)
    1189          52 :             osFieldType = "Real";
    1190         259 :         else if (aeFieldType[iField] == OFTDateTime)
    1191          56 :             osFieldType = "DateTime";
    1192         203 :         else if (aeFieldType[iField] == OFTDate)
    1193          20 :             osFieldType = "Date";
    1194         183 :         else if (aeFieldType[iField] == OFTTime)
    1195          17 :             osFieldType = "Time";
    1196         166 :         else if (aeFieldType[iField] == OFTStringList)
    1197           0 :             osFieldType = "JSonStringList";
    1198         166 :         else if (aeFieldType[iField] == OFTIntegerList)
    1199           0 :             osFieldType = "JSonIntegerList";
    1200         166 :         else if (aeFieldType[iField] == OFTInteger64List)
    1201           0 :             osFieldType = "JSonInteger64List";
    1202         166 :         else if (aeFieldType[iField] == OFTRealList)
    1203           0 :             osFieldType = "JSonRealList";
    1204         166 :         else if (abFieldBoolean[iField])
    1205          10 :             osFieldType = "Integer(Boolean)";
    1206             :         else
    1207         156 :             osFieldType = "String";
    1208             : 
    1209         377 :         if (!abFieldBoolean[iField])
    1210             :         {
    1211         541 :             if (anFieldWidth[iField] > 0 &&
    1212         174 :                 (aeFieldType[iField] == OFTString ||
    1213          95 :                  (bAutodetectWidthForIntOrReal &&
    1214          95 :                   (aeFieldType[iField] == OFTInteger ||
    1215          72 :                    aeFieldType[iField] == OFTInteger64))))
    1216             :             {
    1217          91 :                 osFieldType += CPLSPrintf(" (%d)", anFieldWidth[iField]);
    1218             :             }
    1219         348 :             else if (anFieldWidth[iField] > 0 && bAutodetectWidthForIntOrReal &&
    1220          72 :                      aeFieldType[iField] == OFTReal)
    1221             :             {
    1222          24 :                 osFieldType += CPLSPrintf(" (%d.%d)", anFieldWidth[iField],
    1223          24 :                                           anFieldPrecision[iField]);
    1224             :             }
    1225             :         }
    1226             : 
    1227         377 :         papszFieldTypes[iField] = CPLStrdup(osFieldType);
    1228             :     }
    1229             : 
    1230          25 :     if (bStreaming)
    1231             :     {
    1232           2 :         VSIFCloseL(fp);
    1233           2 :         VSIUnlink(osTmpMemFile.c_str());
    1234           2 :         VSIFree(pszData);
    1235             :     }
    1236             : 
    1237          25 :     ResetReading();
    1238             : 
    1239          25 :     return papszFieldTypes;
    1240             : }
    1241             : 
    1242             : /************************************************************************/
    1243             : /*                            ~OGRCSVLayer()                            */
    1244             : /************************************************************************/
    1245             : 
    1246        1460 : OGRCSVLayer::~OGRCSVLayer()
    1247             : 
    1248             : {
    1249         730 :     if (m_nFeaturesRead > 0)
    1250             :     {
    1251         882 :         CPLDebug("CSV", "%d features read on layer '%s'.",
    1252         441 :                  static_cast<int>(m_nFeaturesRead), poFeatureDefn->GetName());
    1253             :     }
    1254             : 
    1255             :     // Make sure the header file is written even if no features are written.
    1256         730 :     if (bNew && bInWriteMode)
    1257          27 :         WriteHeader();
    1258             : 
    1259         730 :     CPLFree(panGeomFieldIndex);
    1260             : 
    1261         730 :     poFeatureDefn->Release();
    1262         730 :     CPLFree(pszFilename);
    1263             : 
    1264         730 :     if (fpCSV)
    1265         730 :         VSIFCloseL(fpCSV);
    1266        1460 : }
    1267             : 
    1268             : /************************************************************************/
    1269             : /*                            ResetReading()                            */
    1270             : /************************************************************************/
    1271             : 
    1272        3644 : void OGRCSVLayer::ResetReading()
    1273             : 
    1274             : {
    1275        3644 :     if (fpCSV)
    1276        3644 :         VSIRewindL(fpCSV);
    1277             : 
    1278        3644 :     if (bHasFieldNames)
    1279        3516 :         CSLDestroy(CSVReadParseLine3L(fpCSV, m_nMaxLineSize, szDelimiter,
    1280        3516 :                                       bHonourStrings,
    1281             :                                       false,  // bKeepLeadingAndClosingQuotes
    1282             :                                       false,  // bMergeDelimiter,
    1283             :                                       true    // bSkipBOM
    1284             :                                       ));
    1285             : 
    1286        3644 :     bNeedRewindBeforeRead = false;
    1287             : 
    1288        3644 :     nNextFID = 1;
    1289        3644 : }
    1290             : 
    1291             : /************************************************************************/
    1292             : /*                        GetNextLineTokens()                           */
    1293             : /************************************************************************/
    1294             : 
    1295       48679 : char **OGRCSVLayer::GetNextLineTokens()
    1296             : {
    1297             :     while (true)
    1298             :     {
    1299             :         // Read the CSV record.
    1300       97358 :         char **papszTokens = CSVReadParseLine3L(
    1301       48679 :             fpCSV, m_nMaxLineSize, szDelimiter, bHonourStrings,
    1302             :             false,  // bKeepLeadingAndClosingQuotes
    1303       48679 :             bMergeDelimiter,
    1304             :             true  // bSkipBOM
    1305             :         );
    1306       48679 :         if (papszTokens == nullptr)
    1307        1356 :             return nullptr;
    1308             : 
    1309       47323 :         if (papszTokens[0] != nullptr)
    1310       47323 :             return papszTokens;
    1311             : 
    1312           0 :         CSLDestroy(papszTokens);
    1313           0 :     }
    1314             : }
    1315             : 
    1316             : /************************************************************************/
    1317             : /*                             GetFeature()                             */
    1318             : /************************************************************************/
    1319             : 
    1320          59 : OGRFeature *OGRCSVLayer::GetFeature(GIntBig nFID)
    1321             : {
    1322          59 :     if (nFID < 1 || fpCSV == nullptr)
    1323           7 :         return nullptr;
    1324          52 :     if (nFID < nNextFID || bNeedRewindBeforeRead)
    1325          20 :         ResetReading();
    1326         109 :     while (nNextFID < nFID)
    1327             :     {
    1328          71 :         char **papszTokens = GetNextLineTokens();
    1329          71 :         if (papszTokens == nullptr)
    1330          14 :             return nullptr;
    1331          57 :         CSLDestroy(papszTokens);
    1332          57 :         nNextFID++;
    1333             :     }
    1334          38 :     return GetNextUnfilteredFeature();
    1335             : }
    1336             : 
    1337             : /************************************************************************/
    1338             : /*                      GetNextUnfilteredFeature()                      */
    1339             : /************************************************************************/
    1340             : 
    1341       47807 : OGRFeature *OGRCSVLayer::GetNextUnfilteredFeature()
    1342             : 
    1343             : {
    1344       47807 :     if (fpCSV == nullptr)
    1345           0 :         return nullptr;
    1346             : 
    1347             :     // Read the CSV record.
    1348       47807 :     char **papszTokens = GetNextLineTokens();
    1349       47807 :     if (papszTokens == nullptr)
    1350        1321 :         return nullptr;
    1351             : 
    1352             :     // Create the OGR feature.
    1353       46486 :     OGRFeature *poFeature = new OGRFeature(poFeatureDefn);
    1354             : 
    1355             :     // Set attributes for any indicated attribute records.
    1356       46486 :     int iOGRField = 0;
    1357             :     const int nAttrCount = std::min(
    1358       46486 :         CSLCount(papszTokens), nCSVFieldCount + (bHiddenWKTColumn ? 1 : 0));
    1359             : 
    1360      256651 :     for (int iAttr = 0; !bIsEurostatTSV && iAttr < nAttrCount; iAttr++)
    1361             :     {
    1362      210165 :         if ((iAttr == iLongitudeField || iAttr == iLatitudeField ||
    1363      209287 :              iAttr == iZField) &&
    1364        1282 :             !bKeepGeomColumns)
    1365             :         {
    1366          14 :             continue;
    1367             :         }
    1368      210151 :         int iGeom = 0;
    1369      210151 :         if (bHiddenWKTColumn)
    1370             :         {
    1371          18 :             if (iAttr != 0)
    1372           9 :                 iGeom = panGeomFieldIndex[iAttr - 1];
    1373             :         }
    1374             :         else
    1375             :         {
    1376      210133 :             iGeom = panGeomFieldIndex[iAttr];
    1377             :         }
    1378      210151 :         if (iGeom >= 0)
    1379             :         {
    1380             :             const OGRGeomFieldDefn *poGeomFieldDefn =
    1381        3415 :                 poFeatureDefn->GetGeomFieldDefn(iGeom);
    1382        6060 :             if (papszTokens[iAttr][0] != '\0' &&
    1383        2645 :                 !(poGeomFieldDefn->IsIgnored()))
    1384             :             {
    1385        2072 :                 const char *pszStr = papszTokens[iAttr];
    1386        2072 :                 while (*pszStr == ' ')
    1387           0 :                     pszStr++;
    1388        2072 :                 OGRGeometry *poGeom = nullptr;
    1389             : 
    1390        2072 :                 if (EQUAL(poGeomFieldDefn->GetNameRef(), ""))
    1391             :                 {
    1392         222 :                     if (OGRGeometryFactory::createFromWkt(
    1393         222 :                             pszStr, nullptr, &poGeom) != OGRERR_NONE)
    1394             :                     {
    1395           1 :                         CPLError(CE_Warning, CPLE_AppDefined,
    1396             :                                  "Ignoring invalid WKT: %s", pszStr);
    1397           1 :                         delete poGeom;
    1398           1 :                         poGeom = nullptr;
    1399             :                     }
    1400             :                 }
    1401             :                 else
    1402             :                 {
    1403        3700 :                     CPLErrorHandlerPusher oErrorHandler(CPLQuietErrorHandler);
    1404             : 
    1405        1850 :                     if (OGRGeometryFactory::createFromWkt(
    1406        1850 :                             pszStr, nullptr, &poGeom) != OGRERR_NONE)
    1407             :                     {
    1408           6 :                         delete poGeom;
    1409           6 :                         poGeom = nullptr;
    1410             :                     }
    1411             : 
    1412        1850 :                     if (!poGeom && *pszStr == '{')
    1413             :                     {
    1414           1 :                         poGeom = OGRGeometry::FromHandle(
    1415             :                             OGR_G_CreateGeometryFromJson(pszStr));
    1416             :                     }
    1417        1849 :                     else if (!poGeom && ((*pszStr >= '0' && *pszStr <= '9') ||
    1418           1 :                                          (*pszStr >= 'a' && *pszStr <= 'z') ||
    1419           0 :                                          (*pszStr >= 'A' && *pszStr <= 'Z')))
    1420             :                     {
    1421           5 :                         poGeom = OGRGeometryFromHexEWKB(pszStr, nullptr, FALSE);
    1422             :                     }
    1423             :                 }
    1424             : 
    1425        2072 :                 if (poGeom)
    1426             :                 {
    1427        2070 :                     poGeom->assignSpatialReference(
    1428        2070 :                         poGeomFieldDefn->GetSpatialRef());
    1429        2070 :                     poFeature->SetGeomFieldDirectly(iGeom, poGeom);
    1430             :                 }
    1431             :             }
    1432             : 
    1433        3415 :             const bool bHasAttributeField =
    1434        3415 :                 bKeepGeomColumns && !(iAttr == 0 && bHiddenWKTColumn);
    1435        3415 :             if (!bHasAttributeField)
    1436          16 :                 continue;
    1437             :         }
    1438             : 
    1439      210135 :         OGRFieldDefn *poFieldDefn = poFeatureDefn->GetFieldDefn(iOGRField);
    1440      210135 :         const OGRFieldType eFieldType = poFieldDefn->GetType();
    1441      210135 :         const OGRFieldSubType eFieldSubType = poFieldDefn->GetSubType();
    1442      210135 :         if (eFieldType == OFTInteger && eFieldSubType == OFSTBoolean)
    1443             :         {
    1444          13 :             if (papszTokens[iAttr][0] != '\0' && !poFieldDefn->IsIgnored())
    1445             :             {
    1446          19 :                 if (OGRCSVIsTrue(papszTokens[iAttr]) ||
    1447           6 :                     strcmp(papszTokens[iAttr], "1") == 0)
    1448             :                 {
    1449           8 :                     poFeature->SetField(iOGRField, 1);
    1450             :                 }
    1451           5 :                 else if (OGRCSVIsFalse(papszTokens[iAttr]) ||
    1452           0 :                          strcmp(papszTokens[iAttr], "0") == 0)
    1453             :                 {
    1454           5 :                     poFeature->SetField(iOGRField, 0);
    1455             :                 }
    1456           0 :                 else if (!bWarningBadTypeOrWidth)
    1457             :                 {
    1458           0 :                     bWarningBadTypeOrWidth = true;
    1459           0 :                     CPLError(
    1460             :                         CE_Warning, CPLE_AppDefined,
    1461             :                         "Invalid value type found in record %d for field %s. "
    1462             :                         "This warning will no longer be emitted",
    1463             :                         nNextFID, poFieldDefn->GetNameRef());
    1464             :                 }
    1465             :             }
    1466             :         }
    1467      210122 :         else if (eFieldType == OFTReal || eFieldType == OFTInteger ||
    1468             :                  eFieldType == OFTInteger64)
    1469             :         {
    1470        3585 :             if (papszTokens[iAttr][0] != '\0' && !poFieldDefn->IsIgnored())
    1471             :             {
    1472        3047 :                 if (eFieldType == OFTReal)
    1473             :                 {
    1474        2903 :                     char *chComma = strchr(papszTokens[iAttr], ',');
    1475        2903 :                     if (chComma)
    1476           5 :                         *chComma = '.';
    1477             :                 }
    1478        3047 :                 char *endptr = nullptr;
    1479             :                 const double dfVal =
    1480        3047 :                     CPLStrtodDelim(papszTokens[iAttr], &endptr, '.');
    1481        3047 :                 if (endptr == papszTokens[iAttr] + strlen(papszTokens[iAttr]))
    1482             :                 {
    1483        3031 :                     poFeature->SetField(iOGRField, dfVal);
    1484        3023 :                     if (!bWarningBadTypeOrWidth &&
    1485        2901 :                         (eFieldType == OFTInteger ||
    1486        6054 :                          eFieldType == OFTInteger64) &&
    1487         131 :                         CPLGetValueType(papszTokens[iAttr]) == CPL_VALUE_REAL)
    1488             :                     {
    1489           1 :                         bWarningBadTypeOrWidth = true;
    1490           1 :                         CPLError(CE_Warning, CPLE_AppDefined,
    1491             :                                  "Invalid value type found in record %d for "
    1492             :                                  "field %s. "
    1493             :                                  "This warning will no longer be emitted",
    1494             :                                  nNextFID, poFieldDefn->GetNameRef());
    1495             :                     }
    1496        3022 :                     else if (!bWarningBadTypeOrWidth &&
    1497        6052 :                              poFieldDefn->GetWidth() > 0 &&
    1498          69 :                              static_cast<int>(strlen(papszTokens[iAttr])) >
    1499          69 :                                  poFieldDefn->GetWidth())
    1500             :                     {
    1501          11 :                         bWarningBadTypeOrWidth = true;
    1502          11 :                         CPLError(CE_Warning, CPLE_AppDefined,
    1503             :                                  "Value with a width greater than field width "
    1504             :                                  "found in record %d for field %s. "
    1505             :                                  "This warning will no longer be emitted",
    1506             :                                  nNextFID, poFieldDefn->GetNameRef());
    1507             :                     }
    1508        3011 :                     else if (!bWarningBadTypeOrWidth &&
    1509        6030 :                              poFieldDefn->GetWidth() > 0 &&
    1510          58 :                              CPLGetValueType(papszTokens[iAttr]) ==
    1511             :                                  CPL_VALUE_REAL)
    1512             :                     {
    1513          41 :                         const char *pszDot = strchr(papszTokens[iAttr], '.');
    1514          41 :                         const int nPrecision =
    1515             :                             pszDot != nullptr
    1516          41 :                                 ? static_cast<int>(strlen(pszDot + 1))
    1517             :                                 : 0;
    1518          41 :                         if (nPrecision > poFieldDefn->GetPrecision())
    1519             :                         {
    1520           1 :                             bWarningBadTypeOrWidth = true;
    1521           1 :                             CPLError(CE_Warning, CPLE_AppDefined,
    1522             :                                      "Value with a precision greater than "
    1523             :                                      "field precision found in record %d for "
    1524             :                                      "field %s. "
    1525             :                                      "This warning will no longer be emitted",
    1526             :                                      nNextFID, poFieldDefn->GetNameRef());
    1527             :                         }
    1528             :                     }
    1529             :                 }
    1530             :                 else
    1531             :                 {
    1532          16 :                     if (!bWarningBadTypeOrWidth)
    1533             :                     {
    1534           3 :                         bWarningBadTypeOrWidth = true;
    1535           3 :                         CPLError(
    1536             :                             CE_Warning, CPLE_AppDefined,
    1537             :                             "Invalid value type found in record %d for field "
    1538             :                             "%s. This warning will no longer be emitted.",
    1539             :                             nNextFID, poFieldDefn->GetNameRef());
    1540             :                     }
    1541             :                 }
    1542        3585 :             }
    1543             :         }
    1544      206537 :         else if (eFieldType != OFTString)
    1545             :         {
    1546         218 :             if (papszTokens[iAttr][0] != '\0' && !poFieldDefn->IsIgnored())
    1547             :             {
    1548         109 :                 poFeature->SetField(iOGRField, papszTokens[iAttr]);
    1549         212 :                 if (!bWarningBadTypeOrWidth &&
    1550         103 :                     !poFeature->IsFieldSetAndNotNull(iOGRField))
    1551             :                 {
    1552           1 :                     bWarningBadTypeOrWidth = true;
    1553           1 :                     CPLError(
    1554             :                         CE_Warning, CPLE_AppDefined,
    1555             :                         "Invalid value type found in record %d for field %s. "
    1556             :                         "This warning will no longer be emitted",
    1557             :                         nNextFID, poFieldDefn->GetNameRef());
    1558             :                 }
    1559             :             }
    1560             :         }
    1561      206319 :         else if (!poFieldDefn->IsIgnored())
    1562             :         {
    1563      204654 :             if (bEmptyStringNull && papszTokens[iAttr][0] == '\0')
    1564             :             {
    1565           1 :                 poFeature->SetFieldNull(iOGRField);
    1566             :             }
    1567             :             else
    1568             :             {
    1569      204653 :                 poFeature->SetField(iOGRField, papszTokens[iAttr]);
    1570      204698 :                 if (!bWarningBadTypeOrWidth && poFieldDefn->GetWidth() > 0 &&
    1571          45 :                     static_cast<int>(strlen(papszTokens[iAttr])) >
    1572          45 :                         poFieldDefn->GetWidth())
    1573             :                 {
    1574           1 :                     bWarningBadTypeOrWidth = true;
    1575           1 :                     CPLError(CE_Warning, CPLE_AppDefined,
    1576             :                              "Value with a width greater than field width "
    1577             :                              "found in record %d for field %s. "
    1578             :                              "This warning will no longer be emitted",
    1579             :                              nNextFID, poFieldDefn->GetNameRef());
    1580             :                 }
    1581             :             }
    1582             :         }
    1583             : 
    1584      210135 :         if (bKeepSourceColumns && eFieldType != OFTString)
    1585             :         {
    1586          11 :             iOGRField++;
    1587          21 :             if (papszTokens[iAttr][0] != '\0' &&
    1588          10 :                 !poFeatureDefn->GetFieldDefn(iOGRField)->IsIgnored())
    1589             :             {
    1590          10 :                 poFeature->SetField(iOGRField, papszTokens[iAttr]);
    1591             :             }
    1592             :         }
    1593             : 
    1594      210135 :         iOGRField++;
    1595             :     }
    1596             : 
    1597             :     // Eurostat TSV files.
    1598             : 
    1599       46490 :     for (int iAttr = 0; bIsEurostatTSV && iAttr < nAttrCount; iAttr++)
    1600             :     {
    1601           4 :         if (iAttr == 0)
    1602             :         {
    1603           1 :             char **papszDims = CSLTokenizeString2(papszTokens[0], ",", 0);
    1604           1 :             if (CSLCount(papszDims) != nEurostatDims)
    1605             :             {
    1606           0 :                 CSLDestroy(papszDims);
    1607           0 :                 break;
    1608             :             }
    1609           3 :             for (int iSubAttr = 0; iSubAttr < nEurostatDims; iSubAttr++)
    1610             :             {
    1611           2 :                 if (!poFeatureDefn->GetFieldDefn(iSubAttr)->IsIgnored())
    1612           2 :                     poFeature->SetField(iSubAttr, papszDims[iSubAttr]);
    1613             :             }
    1614           1 :             CSLDestroy(papszDims);
    1615             :         }
    1616             :         else
    1617             :         {
    1618           3 :             char **papszVals = CSLTokenizeString2(papszTokens[iAttr], " ", 0);
    1619           3 :             CPLValueType eType = CPLGetValueType(papszVals[0]);
    1620           3 :             if ((papszVals[0] && papszVals[0][0] != '\0') &&
    1621           2 :                 (eType == CPL_VALUE_INTEGER || eType == CPL_VALUE_REAL))
    1622             :             {
    1623           2 :                 if (!poFeatureDefn
    1624           2 :                          ->GetFieldDefn(nEurostatDims + 2 * (iAttr - 1))
    1625           2 :                          ->IsIgnored())
    1626           2 :                     poFeature->SetField(nEurostatDims + 2 * (iAttr - 1),
    1627             :                                         papszVals[0]);
    1628             :             }
    1629           3 :             if (CSLCount(papszVals) == 2)
    1630             :             {
    1631           1 :                 if (!poFeatureDefn
    1632           1 :                          ->GetFieldDefn(nEurostatDims + 2 * (iAttr - 1) + 1)
    1633           1 :                          ->IsIgnored())
    1634           1 :                     poFeature->SetField(nEurostatDims + 2 * (iAttr - 1) + 1,
    1635           1 :                                         papszVals[1]);
    1636             :             }
    1637           3 :             CSLDestroy(papszVals);
    1638             :         }
    1639             :     }
    1640             : 
    1641             :     // Is it a numeric value parsable by local-aware CPLAtofM()
    1642        1271 :     const auto IsCPLAtofMParsable = [](char *pszVal)
    1643             :     {
    1644        1271 :         auto l_eType = CPLGetValueType(pszVal);
    1645        1271 :         if (l_eType == CPL_VALUE_INTEGER || l_eType == CPL_VALUE_REAL)
    1646        1271 :             return true;
    1647           0 :         char *pszComma = strchr(pszVal, ',');
    1648           0 :         if (pszComma)
    1649             :         {
    1650           0 :             *pszComma = '.';
    1651           0 :             l_eType = CPLGetValueType(pszVal);
    1652           0 :             *pszComma = ',';
    1653             :         }
    1654           0 :         return l_eType == CPL_VALUE_REAL;
    1655             :     };
    1656             : 
    1657             :     // http://www.faa.gov/airports/airport_safety/airportdata_5010/menu/index.cfm
    1658             :     // specific
    1659             : 
    1660       46486 :     if (iNfdcLatitudeS != -1 && iNfdcLongitudeS != -1 &&
    1661           0 :         nAttrCount > iNfdcLatitudeS && nAttrCount > iNfdcLongitudeS &&
    1662           0 :         papszTokens[iNfdcLongitudeS][0] != 0 &&
    1663           0 :         papszTokens[iNfdcLatitudeS][0] != 0)
    1664             :     {
    1665             :         const double dfLon =
    1666           0 :             CPLAtof(papszTokens[iNfdcLongitudeS]) / 3600.0 *
    1667           0 :             (strchr(papszTokens[iNfdcLongitudeS], 'W') ? -1.0 : 1.0);
    1668             :         const double dfLat =
    1669           0 :             CPLAtof(papszTokens[iNfdcLatitudeS]) / 3600.0 *
    1670           0 :             (strchr(papszTokens[iNfdcLatitudeS], 'S') ? -1.0 : 1.0);
    1671           0 :         if (!poFeatureDefn->GetGeomFieldDefn(0)->IsIgnored())
    1672           0 :             poFeature->SetGeometryDirectly(new OGRPoint(dfLon, dfLat));
    1673             :     }
    1674             : 
    1675         439 :     else if (iLatitudeField != -1 && iLongitudeField != -1 &&
    1676         439 :              nAttrCount > iLatitudeField && nAttrCount > iLongitudeField &&
    1677         439 :              papszTokens[iLongitudeField][0] != 0 &&
    1678         434 :              papszTokens[iLatitudeField][0] != 0 &&
    1679       47359 :              IsCPLAtofMParsable(papszTokens[iLongitudeField]) &&
    1680         434 :              IsCPLAtofMParsable(papszTokens[iLatitudeField]))
    1681             :     {
    1682         434 :         if (!m_bIsGNIS ||
    1683             :             // GNIS specific: some records have dummy 0,0 value.
    1684           0 :             (papszTokens[iLongitudeField][0] != DIGIT_ZERO ||
    1685           0 :              papszTokens[iLongitudeField][1] != '\0' ||
    1686           0 :              papszTokens[iLatitudeField][0] != DIGIT_ZERO ||
    1687           0 :              papszTokens[iLatitudeField][1] != '\0'))
    1688             :         {
    1689         434 :             const double dfLon = CPLAtofM(papszTokens[iLongitudeField]);
    1690         434 :             const double dfLat = CPLAtofM(papszTokens[iLatitudeField]);
    1691         434 :             if (!poFeatureDefn->GetGeomFieldDefn(0)->IsIgnored())
    1692             :             {
    1693         404 :                 if (iZField != -1 && nAttrCount > iZField &&
    1694        1241 :                     papszTokens[iZField][0] != 0 &&
    1695         403 :                     IsCPLAtofMParsable(papszTokens[iZField]))
    1696         403 :                     poFeature->SetGeometryDirectly(new OGRPoint(
    1697         403 :                         dfLon, dfLat, CPLAtofM(papszTokens[iZField])));
    1698             :                 else
    1699          31 :                     poFeature->SetGeometryDirectly(new OGRPoint(dfLon, dfLat));
    1700             :             }
    1701             :         }
    1702             :     }
    1703             : 
    1704       46486 :     CSLDestroy(papszTokens);
    1705             : 
    1706             :     // Translate the record id.
    1707       46486 :     poFeature->SetFID(nNextFID++);
    1708             : 
    1709       46486 :     m_nFeaturesRead++;
    1710             : 
    1711       46486 :     return poFeature;
    1712             : }
    1713             : 
    1714             : /************************************************************************/
    1715             : /*                           GetNextFeature()                           */
    1716             : /************************************************************************/
    1717             : 
    1718       47096 : OGRFeature *OGRCSVLayer::GetNextFeature()
    1719             : 
    1720             : {
    1721       47096 :     if (bNeedRewindBeforeRead)
    1722           3 :         ResetReading();
    1723             : 
    1724             :     // Read features till we find one that satisfies our current
    1725             :     // spatial criteria.
    1726             :     while (true)
    1727             :     {
    1728       47769 :         OGRFeature *poFeature = GetNextUnfilteredFeature();
    1729       47769 :         if (poFeature == nullptr)
    1730        1319 :             return nullptr;
    1731             : 
    1732       93246 :         if ((m_poFilterGeom == nullptr ||
    1733       92791 :              FilterGeometry(poFeature->GetGeomFieldRef(m_iGeomFieldFilter))) &&
    1734       46341 :             (m_poAttrQuery == nullptr || m_poAttrQuery->Evaluate(poFeature)))
    1735       45777 :             return poFeature;
    1736             : 
    1737         673 :         delete poFeature;
    1738         673 :     }
    1739             : }
    1740             : 
    1741             : /************************************************************************/
    1742             : /*                           TestCapability()                           */
    1743             : /************************************************************************/
    1744             : 
    1745        4245 : int OGRCSVLayer::TestCapability(const char *pszCap)
    1746             : 
    1747             : {
    1748        4245 :     if (EQUAL(pszCap, OLCSequentialWrite))
    1749         293 :         return bInWriteMode && !bKeepSourceColumns && bKeepGeomColumns;
    1750        3952 :     else if (EQUAL(pszCap, OLCCreateField))
    1751         871 :         return bNew && !bHasFieldNames;
    1752        3081 :     else if (EQUAL(pszCap, OLCCreateGeomField))
    1753          72 :         return bNew && !bHasFieldNames &&
    1754          72 :                eGeometryFormat == OGR_CSV_GEOM_AS_WKT;
    1755        3045 :     else if (EQUAL(pszCap, OLCIgnoreFields))
    1756        1862 :         return TRUE;
    1757        1183 :     else if (EQUAL(pszCap, OLCCurveGeometries))
    1758         146 :         return TRUE;
    1759        1037 :     else if (EQUAL(pszCap, OLCMeasuredGeometries))
    1760         277 :         return TRUE;
    1761         760 :     else if (EQUAL(pszCap, OLCZGeometries))
    1762          18 :         return TRUE;
    1763             :     else
    1764         742 :         return FALSE;
    1765             : }
    1766             : 
    1767             : /************************************************************************/
    1768             : /*                          PreCreateField()                            */
    1769             : /************************************************************************/
    1770             : 
    1771             : OGRCSVCreateFieldAction
    1772         818 : OGRCSVLayer::PreCreateField(OGRFeatureDefn *poFeatureDefn,
    1773             :                             const std::set<CPLString> &oSetFields,
    1774             :                             const OGRFieldDefn *poNewField, int bApproxOK)
    1775             : {
    1776             :     // Does this duplicate an existing field?
    1777         818 :     if (oSetFields.find(CPLString(poNewField->GetNameRef()).toupper()) !=
    1778        1636 :         oSetFields.end())
    1779             :     {
    1780           6 :         if (poFeatureDefn->GetGeomFieldIndex(poNewField->GetNameRef()) >= 0 ||
    1781           3 :             poFeatureDefn->GetGeomFieldIndex(
    1782           3 :                 CPLSPrintf("geom_%s", poNewField->GetNameRef())) >= 0)
    1783             :         {
    1784           2 :             return CREATE_FIELD_DO_NOTHING;
    1785             :         }
    1786           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    1787             :                  "Attempt to create field %s, "
    1788             :                  "but a field with this name already exists.",
    1789             :                  poNewField->GetNameRef());
    1790             : 
    1791           1 :         return CREATE_FIELD_ERROR;
    1792             :     }
    1793             : 
    1794             :     // Is this a legal field type for CSV?
    1795         815 :     switch (poNewField->GetType())
    1796             :     {
    1797         815 :         case OFTInteger:
    1798             :         case OFTInteger64:
    1799             :         case OFTReal:
    1800             :         case OFTString:
    1801             :         case OFTIntegerList:
    1802             :         case OFTInteger64List:
    1803             :         case OFTRealList:
    1804             :         case OFTStringList:
    1805             :         case OFTTime:
    1806             :         case OFTDate:
    1807             :         case OFTDateTime:
    1808             :             // These types are OK.
    1809         815 :             break;
    1810             : 
    1811           0 :         default:
    1812           0 :             if (bApproxOK)
    1813             :             {
    1814           0 :                 CPLError(CE_Warning, CPLE_AppDefined,
    1815             :                          "Attempt to create field of type %s, but this is not "
    1816             :                          "supported "
    1817             :                          "for .csv files.  Just treating as a plain string.",
    1818             :                          poNewField->GetFieldTypeName(poNewField->GetType()));
    1819             :             }
    1820             :             else
    1821             :             {
    1822           0 :                 CPLError(CE_Failure, CPLE_AppDefined,
    1823             :                          "Attempt to create field of type %s, but this is not "
    1824             :                          "supported "
    1825             :                          "for .csv files.",
    1826             :                          poNewField->GetFieldTypeName(poNewField->GetType()));
    1827           0 :                 return CREATE_FIELD_ERROR;
    1828             :             }
    1829             :     }
    1830         815 :     return CREATE_FIELD_PROCEED;
    1831             : }
    1832             : 
    1833             : /************************************************************************/
    1834             : /*                            CreateField()                             */
    1835             : /************************************************************************/
    1836             : 
    1837         420 : OGRErr OGRCSVLayer::CreateField(const OGRFieldDefn *poNewField, int bApproxOK)
    1838             : 
    1839             : {
    1840             :     // If we have already written our field names, then we are not
    1841             :     // allowed to add new fields.
    1842         420 :     if (!TestCapability(OLCCreateField))
    1843             :     {
    1844           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    1845             :                  "Unable to create new fields after first feature written.");
    1846           1 :         return OGRERR_FAILURE;
    1847             :     }
    1848             : 
    1849         419 :     if (nCSVFieldCount >= 10000)
    1850             :     {
    1851           0 :         CPLError(CE_Failure, CPLE_AppDefined, "Limiting to 10000 fields");
    1852           0 :         return OGRERR_FAILURE;
    1853             :     }
    1854             : 
    1855         419 :     if (m_oSetFields.empty())
    1856             :     {
    1857         119 :         for (int i = 0; i < poFeatureDefn->GetFieldCount(); i++)
    1858             :         {
    1859             :             m_oSetFields.insert(
    1860          28 :                 CPLString(poFeatureDefn->GetFieldDefn(i)->GetNameRef())
    1861          28 :                     .toupper());
    1862             :         }
    1863             :     }
    1864             : 
    1865             :     const OGRCSVCreateFieldAction eAction =
    1866         419 :         PreCreateField(poFeatureDefn, m_oSetFields, poNewField, bApproxOK);
    1867         419 :     if (eAction == CREATE_FIELD_DO_NOTHING)
    1868           2 :         return OGRERR_NONE;
    1869         417 :     if (eAction == CREATE_FIELD_ERROR)
    1870           0 :         return OGRERR_FAILURE;
    1871             : 
    1872             :     // Seems ok, add to field list.
    1873         417 :     poFeatureDefn->AddFieldDefn(poNewField);
    1874         417 :     nCSVFieldCount++;
    1875         417 :     m_oSetFields.insert(CPLString(poNewField->GetNameRef()).toupper());
    1876             : 
    1877         834 :     panGeomFieldIndex = static_cast<int *>(CPLRealloc(
    1878         417 :         panGeomFieldIndex, sizeof(int) * poFeatureDefn->GetFieldCount()));
    1879         417 :     panGeomFieldIndex[poFeatureDefn->GetFieldCount() - 1] = -1;
    1880             : 
    1881         417 :     return OGRERR_NONE;
    1882             : }
    1883             : 
    1884             : /************************************************************************/
    1885             : /*                          CreateGeomField()                           */
    1886             : /************************************************************************/
    1887             : 
    1888          21 : OGRErr OGRCSVLayer::CreateGeomField(const OGRGeomFieldDefn *poGeomField,
    1889             :                                     int /* bApproxOK */)
    1890             : {
    1891          21 :     if (!TestCapability(OLCCreateGeomField))
    1892             :     {
    1893           0 :         CPLError(CE_Failure, CPLE_AppDefined,
    1894             :                  "Unable to create new fields after first feature written.");
    1895           0 :         return OGRERR_FAILURE;
    1896             :     }
    1897             : 
    1898             :     // Does this duplicate an existing field?
    1899          21 :     if (poFeatureDefn->GetGeomFieldIndex(poGeomField->GetNameRef()) >= 0)
    1900             :     {
    1901           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    1902             :                  "Attempt to create geom field %s, "
    1903             :                  "but a field with this name already exists.",
    1904             :                  poGeomField->GetNameRef());
    1905             : 
    1906           1 :         return OGRERR_FAILURE;
    1907             :     }
    1908          40 :     OGRGeomFieldDefn oGeomField(poGeomField);
    1909          20 :     auto poSRSOri = poGeomField->GetSpatialRef();
    1910          20 :     if (poSRSOri)
    1911             :     {
    1912           6 :         auto poSRS = poSRSOri->Clone();
    1913           6 :         poSRS->SetAxisMappingStrategy(OAMS_TRADITIONAL_GIS_ORDER);
    1914           6 :         oGeomField.SetSpatialRef(poSRS);
    1915           6 :         poSRS->Release();
    1916             :     }
    1917          20 :     poFeatureDefn->AddGeomFieldDefn(&oGeomField);
    1918             : 
    1919          20 :     const char *pszName = poGeomField->GetNameRef();
    1920          20 :     if (EQUAL(pszName, ""))
    1921             :     {
    1922           3 :         const int nIdx = poFeatureDefn->GetFieldIndex("WKT");
    1923           3 :         if (nIdx >= 0)
    1924             :         {
    1925           0 :             panGeomFieldIndex[nIdx] = poFeatureDefn->GetGeomFieldCount() - 1;
    1926           0 :             return OGRERR_NONE;
    1927             :         }
    1928           3 :         pszName = "WKT";
    1929             :     }
    1930          20 :     if (STARTS_WITH_CI(pszName, "geom_") && strlen(pszName) >= strlen("geom_"))
    1931          15 :         pszName += strlen("geom_");
    1932          20 :     if (!EQUAL(pszName, "WKT") && !STARTS_WITH_CI(pszName, "_WKT"))
    1933           2 :         pszName = CPLSPrintf("_WKT%s", pszName);
    1934             : 
    1935          20 :     OGRFieldDefn oRegularFieldDefn(pszName, OFTString);
    1936          20 :     poFeatureDefn->AddFieldDefn(&oRegularFieldDefn);
    1937          20 :     nCSVFieldCount++;
    1938             : 
    1939          40 :     panGeomFieldIndex = static_cast<int *>(CPLRealloc(
    1940          20 :         panGeomFieldIndex, sizeof(int) * poFeatureDefn->GetFieldCount()));
    1941          40 :     panGeomFieldIndex[poFeatureDefn->GetFieldCount() - 1] =
    1942          20 :         poFeatureDefn->GetGeomFieldCount() - 1;
    1943             : 
    1944          20 :     return OGRERR_NONE;
    1945             : }
    1946             : 
    1947             : /************************************************************************/
    1948             : /*                            WriteHeader()                             */
    1949             : /*                                                                      */
    1950             : /*      Write the header, and possibly the .csvt file if they           */
    1951             : /*      haven't already been written.                                   */
    1952             : /************************************************************************/
    1953             : 
    1954         132 : OGRErr OGRCSVLayer::WriteHeader()
    1955             : {
    1956         132 :     if (!bNew)
    1957           0 :         return OGRERR_NONE;
    1958             : 
    1959             :     // Write field names if we haven't written them yet.
    1960             :     // Write .csvt file if needed.
    1961         132 :     bNew = false;
    1962         132 :     bHasFieldNames = true;
    1963         132 :     bool bOK = true;
    1964             : 
    1965         296 :     for (int iFile = 0; iFile < (bCreateCSVT ? 2 : 1); iFile++)
    1966             :     {
    1967         164 :         VSILFILE *fpCSVT = nullptr;
    1968         164 :         if (bCreateCSVT && iFile == 0)
    1969             :         {
    1970          32 :             char *pszDirName = CPLStrdup(CPLGetDirname(pszFilename));
    1971          32 :             char *pszBaseName = CPLStrdup(CPLGetBasename(pszFilename));
    1972          32 :             fpCSVT = VSIFOpenL(
    1973             :                 CPLFormFilename(pszDirName, pszBaseName, ".csvt"), "wb");
    1974          32 :             CPLFree(pszDirName);
    1975          32 :             CPLFree(pszBaseName);
    1976             :         }
    1977             :         else
    1978             :         {
    1979         132 :             if (STARTS_WITH(pszFilename, "/vsistdout/") ||
    1980         131 :                 STARTS_WITH(pszFilename, "/vsizip/"))
    1981           1 :                 fpCSV = VSIFOpenL(pszFilename, "wb");
    1982             :             else
    1983         131 :                 fpCSV = VSIFOpenL(pszFilename, "w+b");
    1984             : 
    1985         132 :             if (fpCSV == nullptr)
    1986             :             {
    1987           0 :                 CPLError(CE_Failure, CPLE_OpenFailed,
    1988             :                          "Failed to create %s:\n%s", pszFilename,
    1989           0 :                          VSIStrerror(errno));
    1990           0 :                 return OGRERR_FAILURE;
    1991             :             }
    1992             :         }
    1993             : 
    1994         164 :         if (bWriteBOM && fpCSV)
    1995             :         {
    1996           2 :             bOK &= VSIFWriteL("\xEF\xBB\xBF", 1, 3, fpCSV) > 0;
    1997             :         }
    1998             : 
    1999         164 :         bool bNeedDelimiter = false;
    2000         164 :         if (eGeometryFormat == OGR_CSV_GEOM_AS_XYZ)
    2001             :         {
    2002           3 :             if (fpCSV)
    2003           2 :                 bOK &=
    2004           2 :                     VSIFPrintfL(fpCSV, "X%sY%sZ", szDelimiter, szDelimiter) > 0;
    2005           3 :             if (fpCSVT)
    2006           1 :                 bOK &= VSIFPrintfL(fpCSVT, "%s", "CoordX,CoordY,Real") > 0;
    2007           3 :             bNeedDelimiter = true;
    2008             :         }
    2009         161 :         else if (eGeometryFormat == OGR_CSV_GEOM_AS_XY)
    2010             :         {
    2011           4 :             if (fpCSV)
    2012           2 :                 bOK &= VSIFPrintfL(fpCSV, "X%sY", szDelimiter) > 0;
    2013           4 :             if (fpCSVT)
    2014           2 :                 bOK &= VSIFPrintfL(fpCSVT, "%s", "CoordX,CoordY") > 0;
    2015           4 :             bNeedDelimiter = true;
    2016             :         }
    2017         157 :         else if (eGeometryFormat == OGR_CSV_GEOM_AS_YX)
    2018             :         {
    2019           2 :             if (fpCSV)
    2020           1 :                 bOK &= VSIFPrintfL(fpCSV, "Y%sX", szDelimiter) > 0;
    2021           2 :             if (fpCSVT)
    2022           1 :                 bOK &= VSIFPrintfL(fpCSVT, "%s", "CoordY,CoordX") > 0;
    2023           2 :             bNeedDelimiter = true;
    2024             :         }
    2025         155 :         else if (bHiddenWKTColumn)
    2026             :         {
    2027          49 :             if (fpCSV)
    2028             :             {
    2029             :                 const char *pszColName =
    2030          35 :                     poFeatureDefn->GetGeomFieldDefn(0)->GetNameRef();
    2031          35 :                 bOK &= VSIFPrintfL(fpCSV, "%s", pszColName) >= 0;
    2032             :             }
    2033          49 :             if (fpCSVT)
    2034          14 :                 bOK &= VSIFPrintfL(fpCSVT, "%s", "WKT") > 0;
    2035          49 :             bNeedDelimiter = true;
    2036             :         }
    2037             : 
    2038         778 :         for (int iField = 0; iField < poFeatureDefn->GetFieldCount(); iField++)
    2039             :         {
    2040         614 :             if (bNeedDelimiter)
    2041             :             {
    2042         526 :                 if (fpCSV)
    2043         363 :                     bOK &= VSIFPrintfL(fpCSV, "%s", szDelimiter) > 0;
    2044         526 :                 if (fpCSVT)
    2045         163 :                     bOK &= VSIFPrintfL(fpCSVT, "%s", ",") > 0;
    2046             :             }
    2047         614 :             bNeedDelimiter = true;
    2048             : 
    2049        1228 :             char *pszEscaped = CPLEscapeString(
    2050         614 :                 poFeatureDefn->GetFieldDefn(iField)->GetNameRef(), -1,
    2051         614 :                 m_eStringQuoting == StringQuoting::ALWAYS
    2052             :                     ? CPLES_CSV_FORCE_QUOTING
    2053             :                     : CPLES_CSV);
    2054         614 :             if (pszEscaped == nullptr)
    2055           0 :                 return OGRERR_FAILURE;
    2056             : 
    2057         614 :             if (fpCSV)
    2058             :             {
    2059         437 :                 bool bAddDoubleQuote = false;
    2060         437 :                 if (szDelimiter[0] == ' ' && pszEscaped[0] != '"' &&
    2061           2 :                     strchr(pszEscaped, ' ') != nullptr)
    2062           1 :                     bAddDoubleQuote = true;
    2063         437 :                 if (bAddDoubleQuote)
    2064           1 :                     bOK &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2065         437 :                 bOK &= VSIFPrintfL(fpCSV, "%s", pszEscaped) >= 0;
    2066         437 :                 if (bAddDoubleQuote)
    2067           1 :                     bOK &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2068             :             }
    2069         614 :             CPLFree(pszEscaped);
    2070             : 
    2071         614 :             if (fpCSVT)
    2072             :             {
    2073         177 :                 int nWidth = poFeatureDefn->GetFieldDefn(iField)->GetWidth();
    2074             :                 const int nPrecision =
    2075         177 :                     poFeatureDefn->GetFieldDefn(iField)->GetPrecision();
    2076             : 
    2077         177 :                 switch (poFeatureDefn->GetFieldDefn(iField)->GetType())
    2078             :                 {
    2079          54 :                     case OFTInteger:
    2080             :                     {
    2081          54 :                         if (poFeatureDefn->GetFieldDefn(iField)->GetSubType() ==
    2082             :                             OFSTBoolean)
    2083             :                         {
    2084           9 :                             nWidth = 0;
    2085           9 :                             bOK &= VSIFPrintfL(fpCSVT, "%s",
    2086           9 :                                                "Integer(Boolean)") > 0;
    2087             :                         }
    2088          90 :                         else if (poFeatureDefn->GetFieldDefn(iField)
    2089          45 :                                      ->GetSubType() == OFSTInt16)
    2090             :                         {
    2091          11 :                             nWidth = 0;
    2092          11 :                             bOK &=
    2093          11 :                                 VSIFPrintfL(fpCSVT, "%s", "Integer(Int16)") > 0;
    2094             :                         }
    2095             :                         else
    2096             :                         {
    2097          34 :                             bOK &= VSIFPrintfL(fpCSVT, "%s", "Integer") > 0;
    2098             :                         }
    2099          54 :                         break;
    2100             :                     }
    2101          14 :                     case OFTInteger64:
    2102          14 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "Integer64") > 0;
    2103          14 :                         break;
    2104          46 :                     case OFTReal:
    2105             :                     {
    2106          46 :                         if (poFeatureDefn->GetFieldDefn(iField)->GetSubType() ==
    2107             :                             OFSTFloat32)
    2108             :                         {
    2109          11 :                             nWidth = 0;
    2110          11 :                             bOK &=
    2111          11 :                                 VSIFPrintfL(fpCSVT, "%s", "Real(Float32)") > 0;
    2112             :                         }
    2113             :                         else
    2114             :                         {
    2115          35 :                             bOK &= VSIFPrintfL(fpCSVT, "%s", "Real") > 0;
    2116             :                         }
    2117          46 :                         break;
    2118             :                     }
    2119           6 :                     case OFTDate:
    2120           6 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "Date") > 0;
    2121           6 :                         break;
    2122           1 :                     case OFTTime:
    2123           1 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "Time") > 0;
    2124           1 :                         break;
    2125          11 :                     case OFTDateTime:
    2126          11 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "DateTime") > 0;
    2127          11 :                         break;
    2128           3 :                     case OFTStringList:
    2129           3 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "JSonStringList") > 0;
    2130           3 :                         break;
    2131           2 :                     case OFTIntegerList:
    2132           2 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "JSonIntegerList") > 0;
    2133           2 :                         break;
    2134           2 :                     case OFTInteger64List:
    2135           2 :                         bOK &=
    2136           2 :                             VSIFPrintfL(fpCSVT, "%s", "JSonInteger64List") > 0;
    2137           2 :                         break;
    2138           2 :                     case OFTRealList:
    2139           2 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "JSonRealList") > 0;
    2140           2 :                         break;
    2141          36 :                     default:
    2142          36 :                         bOK &= VSIFPrintfL(fpCSVT, "%s", "String") > 0;
    2143          36 :                         break;
    2144             :                 }
    2145             : 
    2146         177 :                 if (nWidth != 0)
    2147             :                 {
    2148          22 :                     if (nPrecision != 0)
    2149           9 :                         bOK &= VSIFPrintfL(fpCSVT, "(%d.%d)", nWidth,
    2150           9 :                                            nPrecision) > 0;
    2151             :                     else
    2152          13 :                         bOK &= VSIFPrintfL(fpCSVT, "(%d)", nWidth) > 0;
    2153             :                 }
    2154             :             }
    2155             :         }
    2156             : 
    2157         164 :         if (bUseCRLF)
    2158             :         {
    2159           1 :             if (fpCSV)
    2160           1 :                 bOK &= VSIFPutcL(13, fpCSV) > 0;
    2161           1 :             if (fpCSVT)
    2162           0 :                 bOK &= VSIFPutcL(13, fpCSVT) > 0;
    2163             :         }
    2164         164 :         if (fpCSV)
    2165         132 :             bOK &= VSIFPutcL('\n', fpCSV) > 0;
    2166         164 :         if (fpCSVT)
    2167          32 :             bOK &= VSIFPutcL('\n', fpCSVT) > 0;
    2168         164 :         if (fpCSVT)
    2169          32 :             VSIFCloseL(fpCSVT);
    2170             :     }
    2171             : 
    2172         132 :     return (!bOK || fpCSV == nullptr) ? OGRERR_FAILURE : OGRERR_NONE;
    2173             : }
    2174             : 
    2175             : /************************************************************************/
    2176             : /*                           ICreateFeature()                            */
    2177             : /************************************************************************/
    2178             : 
    2179         284 : OGRErr OGRCSVLayer::ICreateFeature(OGRFeature *poNewFeature)
    2180             : 
    2181             : {
    2182         284 :     if (!bInWriteMode)
    2183             :     {
    2184           1 :         CPLError(CE_Failure, CPLE_AppDefined,
    2185             :                  "The CreateFeature() operation is not permitted on a "
    2186             :                  "read-only CSV.");
    2187           1 :         return OGRERR_FAILURE;
    2188             :     }
    2189             : 
    2190             :     // If we need rewind, it means that we have just written a feature before
    2191             :     // so there's no point seeking to the end of the file, as we're already
    2192             :     // at the end.
    2193         283 :     bool bNeedSeekEnd = !bNeedRewindBeforeRead;
    2194             : 
    2195         283 :     bNeedRewindBeforeRead = true;
    2196             : 
    2197             :     // Write field names if we haven't written them yet.
    2198             :     // Write .csvt file if needed.
    2199         283 :     if (bNew)
    2200             :     {
    2201         105 :         const OGRErr eErr = WriteHeader();
    2202         105 :         if (eErr != OGRERR_NONE)
    2203           0 :             return eErr;
    2204         105 :         bNeedSeekEnd = false;
    2205             :     }
    2206             : 
    2207         283 :     if (fpCSV == nullptr)
    2208           0 :         return OGRERR_FAILURE;
    2209             : 
    2210         283 :     bool bRet = true;
    2211             : 
    2212             :     // Make sure we are at the end of the file.
    2213         283 :     if (bNeedSeekEnd)
    2214             :     {
    2215          21 :         if (bFirstFeatureAppendedDuringSession)
    2216             :         {
    2217             :             // Add a newline character to the end of the file if necessary.
    2218          21 :             bFirstFeatureAppendedDuringSession = false;
    2219          21 :             bRet &= VSIFSeekL(fpCSV, 0, SEEK_END) >= 0;
    2220          21 :             bRet &= VSIFSeekL(fpCSV, VSIFTellL(fpCSV) - 1, SEEK_SET) >= 0;
    2221          21 :             char chLast = '\0';
    2222          21 :             bRet &= VSIFReadL(&chLast, 1, 1, fpCSV) > 0;
    2223          21 :             bRet &= VSIFSeekL(fpCSV, 0, SEEK_END) >= 0;
    2224          21 :             if (chLast != '\n')
    2225             :             {
    2226           0 :                 if (bUseCRLF)
    2227           0 :                     bRet &= VSIFPutcL(13, fpCSV) != EOF;
    2228           0 :                 bRet &= VSIFPutcL('\n', fpCSV) != EOF;
    2229             :             }
    2230             :         }
    2231             :         else
    2232             :         {
    2233           0 :             bRet &= VSIFSeekL(fpCSV, 0, SEEK_END) >= 0;
    2234             :         }
    2235             :     }
    2236             : 
    2237         283 :     bool bNeedDelimiter = false;
    2238         283 :     bool bEmptyLine = true;
    2239             : 
    2240          92 :     const auto GetWktOptions = [](const OGRGeomFieldDefn *poGeomFieldDefn)
    2241             :     {
    2242          92 :         const auto &sCoordPrec = poGeomFieldDefn->GetCoordinatePrecision();
    2243             : 
    2244          92 :         OGRWktOptions wktOptions;
    2245          92 :         wktOptions.variant = wkbVariantIso;
    2246          92 :         if (sCoordPrec.dfXYResolution != OGRGeomCoordinatePrecision::UNKNOWN)
    2247             :         {
    2248           3 :             wktOptions.format = OGRWktFormat::F;
    2249           3 :             wktOptions.xyPrecision =
    2250           3 :                 OGRGeomCoordinatePrecision::ResolutionToPrecision(
    2251           3 :                     sCoordPrec.dfXYResolution);
    2252             :         }
    2253          92 :         if (sCoordPrec.dfZResolution != OGRGeomCoordinatePrecision::UNKNOWN)
    2254             :         {
    2255           2 :             wktOptions.format = OGRWktFormat::F;
    2256           2 :             wktOptions.zPrecision =
    2257           2 :                 OGRGeomCoordinatePrecision::ResolutionToPrecision(
    2258           2 :                     sCoordPrec.dfZResolution);
    2259             :         }
    2260          92 :         if (sCoordPrec.dfMResolution != OGRGeomCoordinatePrecision::UNKNOWN)
    2261             :         {
    2262           2 :             wktOptions.format = OGRWktFormat::F;
    2263           2 :             wktOptions.mPrecision =
    2264           2 :                 OGRGeomCoordinatePrecision::ResolutionToPrecision(
    2265           2 :                     sCoordPrec.dfMResolution);
    2266             :         }
    2267             : 
    2268          92 :         return wktOptions;
    2269             :     };
    2270             : 
    2271             :     // Write out the geometry.
    2272         283 :     if (eGeometryFormat == OGR_CSV_GEOM_AS_XYZ ||
    2273         281 :         eGeometryFormat == OGR_CSV_GEOM_AS_XY ||
    2274         278 :         eGeometryFormat == OGR_CSV_GEOM_AS_YX)
    2275             :     {
    2276           6 :         const OGRGeometry *poGeom = poNewFeature->GetGeometryRef();
    2277           6 :         if (poGeom && wkbFlatten(poGeom->getGeometryType()) == wkbPoint)
    2278             :         {
    2279           5 :             const auto poGeomFieldDefn = poFeatureDefn->GetGeomFieldDefn(0);
    2280           5 :             const OGRPoint *poPoint = poGeom->toPoint();
    2281           5 :             std::string osCoord;
    2282           5 :             if (eGeometryFormat == OGR_CSV_GEOM_AS_XYZ)
    2283           4 :                 osCoord = OGRMakeWktCoordinate(poPoint->getX(), poPoint->getY(),
    2284             :                                                poPoint->getZ(), 3,
    2285           6 :                                                GetWktOptions(poGeomFieldDefn));
    2286           3 :             else if (eGeometryFormat == OGR_CSV_GEOM_AS_XY)
    2287             :                 osCoord =
    2288           4 :                     OGRMakeWktCoordinate(poPoint->getX(), poPoint->getY(), 0, 2,
    2289           6 :                                          GetWktOptions(poGeomFieldDefn));
    2290             :             else
    2291             :                 osCoord =
    2292           2 :                     OGRMakeWktCoordinate(poPoint->getY(), poPoint->getX(), 0, 2,
    2293           3 :                                          GetWktOptions(poGeomFieldDefn));
    2294             : 
    2295          41 :             for (char &ch : osCoord)
    2296             :             {
    2297          36 :                 if (ch == ' ')
    2298           7 :                     ch = szDelimiter[0];
    2299             :             }
    2300           5 :             bRet &= VSIFPrintfL(fpCSV, "%s", osCoord.c_str()) > 0;
    2301             :         }
    2302             :         else
    2303             :         {
    2304           1 :             bRet &= VSIFPrintfL(fpCSV, "%s", szDelimiter) > 0;
    2305           1 :             if (eGeometryFormat == OGR_CSV_GEOM_AS_XYZ)
    2306           0 :                 bRet &= VSIFPrintfL(fpCSV, "%s", szDelimiter) > 0;
    2307             :         }
    2308           6 :         bEmptyLine = false;
    2309           6 :         bNeedDelimiter = true;
    2310             :     }
    2311         277 :     else if (bHiddenWKTColumn)
    2312             :     {
    2313          74 :         const OGRGeometry *poGeom = poNewFeature->GetGeomFieldRef(0);
    2314          74 :         if (poGeom)
    2315             :         {
    2316          67 :             const auto poGeomFieldDefn = poFeatureDefn->GetGeomFieldDefn(0);
    2317             :             const std::string wkt =
    2318         134 :                 poGeom->exportToWkt(GetWktOptions(poGeomFieldDefn));
    2319          67 :             if (!wkt.empty())
    2320             :             {
    2321          67 :                 bRet &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2322          67 :                 bRet &= VSIFWriteL(wkt.c_str(), wkt.size(), 1, fpCSV) > 0;
    2323          67 :                 bRet &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2324          67 :                 bEmptyLine = false;
    2325             :             }
    2326             :         }
    2327          74 :         bNeedDelimiter = true;
    2328             :     }
    2329             : 
    2330             :     // Write out all the field values.
    2331        1743 :     for (int iField = 0; iField < poFeatureDefn->GetFieldCount(); iField++)
    2332             :     {
    2333        1460 :         char *pszEscaped = nullptr;
    2334             : 
    2335        1460 :         if (bNeedDelimiter)
    2336             :         {
    2337        1257 :             bRet &= VSIFPrintfL(fpCSV, "%s", szDelimiter) > 0;
    2338        1257 :             bEmptyLine = false;
    2339             :         }
    2340        1460 :         bNeedDelimiter = true;
    2341             : 
    2342        1460 :         if (eGeometryFormat == OGR_CSV_GEOM_AS_WKT &&
    2343         530 :             panGeomFieldIndex[iField] >= 0)
    2344             :         {
    2345          24 :             const int iGeom = panGeomFieldIndex[iField];
    2346          24 :             const OGRGeometry *poGeom = poNewFeature->GetGeomFieldRef(iGeom);
    2347          24 :             if (poGeom)
    2348             :             {
    2349             :                 const auto poGeomFieldDefn =
    2350          20 :                     poFeatureDefn->GetGeomFieldDefn(iGeom);
    2351             :                 const std::string wkt =
    2352          40 :                     poGeom->exportToWkt(GetWktOptions(poGeomFieldDefn));
    2353          20 :                 if (!wkt.empty())
    2354             :                 {
    2355             :                     char *pszNew =
    2356          20 :                         static_cast<char *>(CPLMalloc(1 + wkt.size() + 1 + 1));
    2357          20 :                     pszNew[0] = '"';
    2358          20 :                     memcpy(pszNew + 1, wkt.c_str(), wkt.size());
    2359          20 :                     pszNew[1 + wkt.size()] = '"';
    2360          20 :                     pszNew[1 + wkt.size() + 1] = '\0';
    2361          20 :                     CPLFree(pszEscaped);
    2362          20 :                     pszEscaped = pszNew;
    2363             :                 }
    2364             :                 else
    2365             :                 {
    2366           0 :                     CPLFree(pszEscaped);
    2367           0 :                     pszEscaped = CPLStrdup("");
    2368             :                 }
    2369             :             }
    2370             :             else
    2371             :             {
    2372           4 :                 CPLFree(pszEscaped);
    2373           4 :                 pszEscaped = CPLStrdup("");
    2374          24 :             }
    2375             :         }
    2376             :         else
    2377             :         {
    2378             :             const OGRFieldType eType(
    2379        1436 :                 poFeatureDefn->GetFieldDefn(iField)->GetType());
    2380        1436 :             if (eType == OFTReal || eType == OFTInteger ||
    2381             :                 eType == OFTInteger64)
    2382             :             {
    2383         589 :                 if (poFeatureDefn->GetFieldDefn(iField)->GetSubType() ==
    2384         620 :                         OFSTFloat32 &&
    2385          31 :                     poNewFeature->IsFieldSetAndNotNull(iField))
    2386             :                 {
    2387          11 :                     pszEscaped = CPLStrdup(CPLSPrintf(
    2388             :                         "%.8g", poNewFeature->GetFieldAsDouble(iField)));
    2389             :                 }
    2390             :                 else
    2391             :                 {
    2392             :                     pszEscaped =
    2393         578 :                         CPLStrdup(poNewFeature->GetFieldAsString(iField));
    2394             :                 }
    2395             :             }
    2396         847 :             else if (eType == OFTStringList || eType == OFTIntegerList ||
    2397         840 :                      eType == OFTInteger64List || eType == OFTRealList)
    2398             :             {
    2399           9 :                 char *pszJSon = poNewFeature->GetFieldAsSerializedJSon(iField);
    2400           9 :                 if (pszJSon)
    2401             :                 {
    2402           9 :                     pszEscaped = CPLEscapeString(pszJSon, -1,
    2403           9 :                                                  m_eStringQuoting ==
    2404             :                                                          StringQuoting::ALWAYS
    2405             :                                                      ? CPLES_CSV_FORCE_QUOTING
    2406             :                                                      : CPLES_CSV);
    2407             :                 }
    2408             :                 else
    2409             :                 {
    2410           0 :                     pszEscaped = CPLStrdup("");
    2411             :                 }
    2412           9 :                 CPLFree(pszJSon);
    2413             :             }
    2414             :             else
    2415             :             {
    2416         838 :                 const char *pszContent = poNewFeature->GetFieldAsString(iField);
    2417         838 :                 pszEscaped = CPLEscapeString(
    2418             :                     pszContent, -1,
    2419         838 :                     (m_eStringQuoting == StringQuoting::ALWAYS ||
    2420         828 :                      (m_eStringQuoting == StringQuoting::IF_AMBIGUOUS &&
    2421         685 :                       (CPLGetValueType(pszContent) != CPL_VALUE_STRING ||
    2422         563 :                        (pszContent[0] == DIGIT_ZERO && pszContent[1] != '\0' &&
    2423           2 :                         pszContent[1] != '.'))))
    2424             :                         ? CPLES_CSV_FORCE_QUOTING
    2425             :                         : CPLES_CSV);
    2426             :             }
    2427             :         }
    2428        1460 :         if (pszEscaped == nullptr)
    2429             :         {
    2430           0 :             return OGRERR_FAILURE;
    2431             :         }
    2432        1460 :         const size_t nLen = strlen(pszEscaped);
    2433        1460 :         bool bAddDoubleQuote = false;
    2434        1460 :         if (szDelimiter[0] == ' ' && pszEscaped[0] != '"' &&
    2435           2 :             strchr(pszEscaped, ' ') != nullptr)
    2436           1 :             bAddDoubleQuote = true;
    2437        1460 :         if (bAddDoubleQuote)
    2438           1 :             bRet &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2439        1460 :         if (nLen)
    2440             :         {
    2441         908 :             bRet &= VSIFWriteL(pszEscaped, nLen, 1, fpCSV) > 0;
    2442         908 :             bEmptyLine = false;
    2443             :         }
    2444        1460 :         if (bAddDoubleQuote)
    2445           1 :             bRet &= VSIFWriteL("\"", 1, 1, fpCSV) > 0;
    2446        1460 :         CPLFree(pszEscaped);
    2447             :     }
    2448             : 
    2449         283 :     if (bEmptyLine)
    2450           1 :         bRet &= VSIFPrintfL(fpCSV, "\"\"") > 0;
    2451             : 
    2452         283 :     if (bUseCRLF)
    2453           4 :         bRet &= VSIFPutcL(13, fpCSV) != EOF;
    2454         283 :     bRet &= VSIFPutcL('\n', fpCSV) != EOF;
    2455             : 
    2456         283 :     if (nTotalFeatures >= 0)
    2457         263 :         nTotalFeatures++;
    2458             : 
    2459         283 :     return bRet ? OGRERR_NONE : OGRERR_FAILURE;
    2460             : }
    2461             : 
    2462             : /************************************************************************/
    2463             : /*                              SetCRLF()                               */
    2464             : /************************************************************************/
    2465             : 
    2466         132 : void OGRCSVLayer::SetCRLF(bool bNewValue)
    2467             : {
    2468         132 :     bUseCRLF = bNewValue;
    2469         132 : }
    2470             : 
    2471             : /************************************************************************/
    2472             : /*                       SetWriteGeometry()                             */
    2473             : /************************************************************************/
    2474             : 
    2475          50 : void OGRCSVLayer::SetWriteGeometry(OGRwkbGeometryType eGType,
    2476             :                                    OGRCSVGeometryFormat eGeometryFormatIn,
    2477             :                                    const char *pszGeomCol)
    2478             : {
    2479          50 :     eGeometryFormat = eGeometryFormatIn;
    2480          50 :     if (eGeometryFormat == OGR_CSV_GEOM_AS_WKT && eGType != wkbNone)
    2481             :     {
    2482          70 :         OGRGeomFieldDefn oGFld(pszGeomCol, eGType);
    2483          35 :         bHiddenWKTColumn = true;
    2484             :         // We don't use CreateGeomField() since we don't want to generate
    2485             :         // a geometry field in first position, as it confuses applications
    2486             :         // (such as MapServer <= 6.4) that assume that the first regular field
    2487             :         // they add will be at index 0.
    2488          70 :         poFeatureDefn->AddGeomFieldDefn(&oGFld);
    2489             :     }
    2490             :     else
    2491             :     {
    2492          15 :         poFeatureDefn->SetGeomType(eGType);
    2493             :     }
    2494          50 : }
    2495             : 
    2496             : /************************************************************************/
    2497             : /*                          SetCreateCSVT()                             */
    2498             : /************************************************************************/
    2499             : 
    2500          37 : void OGRCSVLayer::SetCreateCSVT(bool bCreateCSVTIn)
    2501             : {
    2502          37 :     bCreateCSVT = bCreateCSVTIn;
    2503          37 : }
    2504             : 
    2505             : /************************************************************************/
    2506             : /*                          SetWriteBOM()                               */
    2507             : /************************************************************************/
    2508             : 
    2509          11 : void OGRCSVLayer::SetWriteBOM(bool bWriteBOMIn)
    2510             : {
    2511          11 :     bWriteBOM = bWriteBOMIn;
    2512          11 : }
    2513             : 
    2514             : /************************************************************************/
    2515             : /*                        GetFeatureCount()                             */
    2516             : /************************************************************************/
    2517             : 
    2518         101 : GIntBig OGRCSVLayer::GetFeatureCount(int bForce)
    2519             : {
    2520         101 :     if (m_poFilterGeom != nullptr || m_poAttrQuery != nullptr)
    2521             :     {
    2522          12 :         return OGRLayer::GetFeatureCount(bForce);
    2523             :     }
    2524             : 
    2525          89 :     if (nTotalFeatures >= 0)
    2526          67 :         return nTotalFeatures;
    2527             : 
    2528          22 :     if (fpCSV == nullptr)
    2529           0 :         return 0;
    2530             : 
    2531          22 :     ResetReading();
    2532             : 
    2533          22 :     if (szDelimiter[0] == '\t' && !bHonourStrings)
    2534             :     {
    2535           1 :         const int nBufSize = 4096;
    2536           1 :         char szBuffer[nBufSize + 1] = {};
    2537             : 
    2538           1 :         nTotalFeatures = 0;
    2539           1 :         bool bLastWasNewLine = false;
    2540             :         while (true)
    2541             :         {
    2542             :             const int nRead =
    2543           1 :                 static_cast<int>(VSIFReadL(szBuffer, 1, nBufSize, fpCSV));
    2544           1 :             szBuffer[nRead] = 0;
    2545           1 :             if (nTotalFeatures == 0 && szBuffer[0] != 13 && szBuffer[0] != 10)
    2546           1 :                 nTotalFeatures = 1;
    2547        1061 :             for (int i = 0; i < nRead; i++)
    2548             :             {
    2549        1060 :                 if (szBuffer[i] == 13 || szBuffer[i] == 10)
    2550             :                 {
    2551          10 :                     bLastWasNewLine = true;
    2552             :                 }
    2553        1050 :                 else if (bLastWasNewLine)
    2554             :                 {
    2555           9 :                     nTotalFeatures++;
    2556           9 :                     bLastWasNewLine = false;
    2557             :                 }
    2558             :             }
    2559             : 
    2560           1 :             if (nRead < nBufSize)
    2561           1 :                 break;
    2562           1 :         }
    2563             :     }
    2564             :     else
    2565             :     {
    2566          21 :         nTotalFeatures = 0;
    2567             :         while (true)
    2568             :         {
    2569         801 :             char **papszTokens = GetNextLineTokens();
    2570         801 :             if (papszTokens == nullptr)
    2571          21 :                 break;
    2572             : 
    2573         780 :             nTotalFeatures++;
    2574             : 
    2575         780 :             CSLDestroy(papszTokens);
    2576         780 :         }
    2577             :     }
    2578             : 
    2579          22 :     ResetReading();
    2580             : 
    2581          22 :     return nTotalFeatures;
    2582             : }
    2583             : 
    2584             : /************************************************************************/
    2585             : /*                          SyncToDisk()                                */
    2586             : /************************************************************************/
    2587             : 
    2588         243 : OGRErr OGRCSVLayer::SyncToDisk()
    2589             : {
    2590         243 :     if (bInWriteMode && fpCSV != nullptr)
    2591             :     {
    2592         219 :         if (VSIFFlushL(fpCSV) != 0)
    2593           0 :             return OGRERR_FAILURE;
    2594             :     }
    2595         243 :     return OGRERR_NONE;
    2596             : }

Generated by: LCOV version 1.14