forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommonutils.cpp
256 lines (236 loc) · 8.8 KB
/
commonutils.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/******************************************************************************
*
* Project: GDAL Utilities
* Purpose: Common utility routines
* Author: Even Rouault, <even dot rouault at spatialys.com>
*
******************************************************************************
* Copyright (c) 2011-2012, Even Rouault <even dot rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "commonutils.h"
#include <cstdio>
#include <cstring>
#include <string>
#include "cpl_conv.h"
#include "cpl_string.h"
#include "gdal.h"
/* -------------------------------------------------------------------- */
/* DoesDriverHandleExtension() */
/* -------------------------------------------------------------------- */
static bool DoesDriverHandleExtension(GDALDriverH hDriver, const char *pszExt)
{
bool bRet = false;
const char *pszDriverExtensions =
GDALGetMetadataItem(hDriver, GDAL_DMD_EXTENSIONS, nullptr);
if (pszDriverExtensions)
{
char **papszTokens = CSLTokenizeString(pszDriverExtensions);
for (int j = 0; papszTokens[j]; j++)
{
if (EQUAL(pszExt, papszTokens[j]))
{
bRet = true;
break;
}
}
CSLDestroy(papszTokens);
}
return bRet;
}
/* -------------------------------------------------------------------- */
/* GetOutputDriversFor() */
/* -------------------------------------------------------------------- */
std::vector<CPLString> GetOutputDriversFor(const char *pszDestFilename,
int nFlagRasterVector)
{
std::vector<CPLString> aoDriverList;
CPLString osExt = CPLGetExtension(pszDestFilename);
if (EQUAL(osExt, "zip") &&
(CPLString(pszDestFilename).endsWith(".shp.zip") ||
CPLString(pszDestFilename).endsWith(".SHP.ZIP")))
{
osExt = "shp.zip";
}
else if (EQUAL(osExt, "zip") &&
(CPLString(pszDestFilename).endsWith(".gpkg.zip") ||
CPLString(pszDestFilename).endsWith(".GPKG.ZIP")))
{
osExt = "gpkg.zip";
}
const int nDriverCount = GDALGetDriverCount();
for (int i = 0; i < nDriverCount; i++)
{
GDALDriverH hDriver = GDALGetDriver(i);
if ((GDALGetMetadataItem(hDriver, GDAL_DCAP_CREATE, nullptr) !=
nullptr ||
GDALGetMetadataItem(hDriver, GDAL_DCAP_CREATECOPY, nullptr) !=
nullptr) &&
(((nFlagRasterVector & GDAL_OF_RASTER) &&
GDALGetMetadataItem(hDriver, GDAL_DCAP_RASTER, nullptr) !=
nullptr) ||
((nFlagRasterVector & GDAL_OF_VECTOR) &&
GDALGetMetadataItem(hDriver, GDAL_DCAP_VECTOR, nullptr) !=
nullptr)))
{
if (!osExt.empty() && DoesDriverHandleExtension(hDriver, osExt))
{
aoDriverList.push_back(GDALGetDriverShortName(hDriver));
}
else
{
const char *pszPrefix = GDALGetMetadataItem(
hDriver, GDAL_DMD_CONNECTION_PREFIX, nullptr);
if (pszPrefix && STARTS_WITH_CI(pszDestFilename, pszPrefix))
{
aoDriverList.push_back(GDALGetDriverShortName(hDriver));
}
}
}
}
// GMT is registered before netCDF for opening reasons, but we want
// netCDF to be used by default for output.
if (EQUAL(osExt, "nc") && aoDriverList.size() == 2 &&
EQUAL(aoDriverList[0], "GMT") && EQUAL(aoDriverList[1], "NETCDF"))
{
aoDriverList.clear();
aoDriverList.push_back("NETCDF");
aoDriverList.push_back("GMT");
}
return aoDriverList;
}
/* -------------------------------------------------------------------- */
/* GetOutputDriverForRaster() */
/* -------------------------------------------------------------------- */
CPLString GetOutputDriverForRaster(const char *pszDestFilename)
{
CPLString osFormat;
std::vector<CPLString> aoDrivers =
GetOutputDriversFor(pszDestFilename, GDAL_OF_RASTER);
CPLString osExt(CPLGetExtension(pszDestFilename));
if (aoDrivers.empty())
{
if (osExt.empty())
{
osFormat = "GTiff";
}
else
{
CPLError(CE_Failure, CPLE_AppDefined, "Cannot guess driver for %s",
pszDestFilename);
return "";
}
}
else
{
if (aoDrivers.size() > 1 &&
!(aoDrivers[0] == "GTiff" && aoDrivers[1] == "COG"))
{
CPLError(CE_Warning, CPLE_AppDefined,
"Several drivers matching %s extension. Using %s",
osExt.c_str(), aoDrivers[0].c_str());
}
osFormat = aoDrivers[0];
}
CPLDebug("GDAL", "Using %s driver", osFormat.c_str());
return osFormat;
}
/* -------------------------------------------------------------------- */
/* EarlySetConfigOptions() */
/* -------------------------------------------------------------------- */
void EarlySetConfigOptions(int argc, char **argv)
{
// Must process some config options before GDALAllRegister() or
// OGRRegisterAll(), but we can't call GDALGeneralCmdLineProcessor() or
// OGRGeneralCmdLineProcessor(), because it needs the drivers to be
// registered for the --format or --formats options.
for (int i = 1; i < argc; i++)
{
if (EQUAL(argv[i], "--config") && i + 2 < argc)
{
CPLSetConfigOption(argv[i + 1], argv[i + 2]);
i += 2;
}
else if (EQUAL(argv[i], "--debug") && i + 1 < argc)
{
CPLSetConfigOption("CPL_DEBUG", argv[i + 1]);
i += 1;
}
}
}
/************************************************************************/
/* GDALRemoveBOM() */
/************************************************************************/
/* Remove potential UTF-8 BOM from data (must be NUL terminated) */
void GDALRemoveBOM(GByte *pabyData)
{
if (pabyData[0] == 0xEF && pabyData[1] == 0xBB && pabyData[2] == 0xBF)
{
memmove(pabyData, pabyData + 3,
strlen(reinterpret_cast<char *>(pabyData) + 3) + 1);
}
}
/************************************************************************/
/* GDALRemoveSQLComments() */
/************************************************************************/
std::string GDALRemoveSQLComments(const std::string &osInput)
{
char **papszLines =
CSLTokenizeStringComplex(osInput.c_str(), "\r\n", FALSE, FALSE);
std::string osSQL;
for (char **papszIter = papszLines; papszIter && *papszIter; ++papszIter)
{
const char *pszLine = *papszIter;
char chQuote = 0;
int i = 0;
for (; pszLine[i] != '\0'; ++i)
{
if (chQuote)
{
if (pszLine[i] == chQuote)
{
if (pszLine[i + 1] == chQuote)
{
i++;
}
else
{
chQuote = 0;
}
}
}
else if (pszLine[i] == '\'' || pszLine[i] == '"')
{
chQuote = pszLine[i];
}
else if (pszLine[i] == '-' && pszLine[i + 1] == '-')
{
break;
}
}
if (i > 0)
{
osSQL.append(pszLine, i);
}
osSQL += ' ';
}
CSLDestroy(papszLines);
return osSQL;
}