GDAL
cpl_conv.h
Go to the documentation of this file.
1/******************************************************************************
2 * $Id$
3 *
4 * Project: CPL - Common Portability Library
5 * Purpose: Convenience functions declarations.
6 * This is intended to remain light weight.
7 * Author: Frank Warmerdam, warmerdam@pobox.com
8 *
9 ******************************************************************************
10 * Copyright (c) 1998, Frank Warmerdam
11 * Copyright (c) 2007-2013, Even Rouault <even dot rouault at spatialys.com>
12 *
13 * Permission is hereby granted, free of charge, to any person obtaining a
14 * copy of this software and associated documentation files (the "Software"),
15 * to deal in the Software without restriction, including without limitation
16 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 * and/or sell copies of the Software, and to permit persons to whom the
18 * Software is furnished to do so, subject to the following conditions:
19 *
20 * The above copyright notice and this permission notice shall be included
21 * in all copies or substantial portions of the Software.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 * DEALINGS IN THE SOFTWARE.
30 ****************************************************************************/
31
32#ifndef CPL_CONV_H_INCLUDED
33#define CPL_CONV_H_INCLUDED
34
35#include "cpl_port.h"
36#include "cpl_vsi.h"
37#include "cpl_error.h"
38
46/* -------------------------------------------------------------------- */
47/* Runtime check of various configuration items. */
48/* -------------------------------------------------------------------- */
50
52void CPL_DLL CPLVerifyConfiguration(void);
55const char CPL_DLL *CPL_STDCALL CPLGetConfigOption(const char *, const char *)
57const char CPL_DLL *CPL_STDCALL CPLGetThreadLocalConfigOption(
58 const char *, const char *) CPL_WARN_UNUSED_RESULT;
59void CPL_DLL CPL_STDCALL CPLSetConfigOption(const char *, const char *);
60void CPL_DLL CPL_STDCALL CPLSetThreadLocalConfigOption(const char *pszKey,
61 const char *pszValue);
63void CPL_DLL CPL_STDCALL CPLFreeConfig(void);
65char CPL_DLL **CPLGetConfigOptions(void);
66void CPL_DLL CPLSetConfigOptions(const char *const *papszConfigOptions);
67char CPL_DLL **CPLGetThreadLocalConfigOptions(void);
68void CPL_DLL
69CPLSetThreadLocalConfigOptions(const char *const *papszConfigOptions);
70void CPL_DLL CPLLoadConfigOptionsFromFile(const char *pszFilename,
71 int bOverrideEnvVars);
73
74/* -------------------------------------------------------------------- */
75/* Safe malloc() API. Thin cover over VSI functions with fatal */
76/* error reporting if memory allocation fails. */
77/* -------------------------------------------------------------------- */
78void CPL_DLL *CPLMalloc(size_t) CPL_WARN_UNUSED_RESULT;
79void CPL_DLL *CPLCalloc(size_t, size_t) CPL_WARN_UNUSED_RESULT;
80void CPL_DLL *CPLRealloc(void *, size_t) CPL_WARN_UNUSED_RESULT;
81char CPL_DLL *
83char CPL_DLL *CPLStrlwr(char *);
84
86#define CPLFree VSIFree
87
88/* -------------------------------------------------------------------- */
89/* Read a line from a text file, and strip of CR/LF. */
90/* -------------------------------------------------------------------- */
91char CPL_DLL *CPLFGets(char *, int, FILE *);
92const char CPL_DLL *CPLReadLine(FILE *);
93const char CPL_DLL *CPLReadLineL(VSILFILE *);
94const char CPL_DLL *CPLReadLine2L(VSILFILE *, int, CSLConstList);
95const char CPL_DLL *CPLReadLine3L(VSILFILE *, int, int *, CSLConstList);
96
97/* -------------------------------------------------------------------- */
98/* Convert ASCII string to floating point number */
99/* (THESE FUNCTIONS ARE NOT LOCALE AWARE!). */
100/* -------------------------------------------------------------------- */
101double CPL_DLL CPLAtof(const char *);
102double CPL_DLL CPLAtofDelim(const char *, char);
103double CPL_DLL CPLStrtod(const char *, char **);
104double CPL_DLL CPLStrtodDelim(const char *, char **, char);
105float CPL_DLL CPLStrtof(const char *, char **);
106float CPL_DLL CPLStrtofDelim(const char *, char **, char);
107
108/* -------------------------------------------------------------------- */
109/* Convert number to string. This function is locale agnostic */
110/* (i.e. it will support "," or "." regardless of current locale) */
111/* -------------------------------------------------------------------- */
112double CPL_DLL CPLAtofM(const char *);
113
114/* -------------------------------------------------------------------- */
115/* Read a numeric value from an ASCII character string. */
116/* -------------------------------------------------------------------- */
117char CPL_DLL *CPLScanString(const char *, int, int, int);
118double CPL_DLL CPLScanDouble(const char *, int);
119long CPL_DLL CPLScanLong(const char *, int);
120unsigned long CPL_DLL CPLScanULong(const char *, int);
121GUIntBig CPL_DLL CPLScanUIntBig(const char *, int);
122GIntBig CPL_DLL CPLAtoGIntBig(const char *pszString);
123GIntBig CPL_DLL CPLAtoGIntBigEx(const char *pszString, int bWarn,
124 int *pbOverflow);
125void CPL_DLL *CPLScanPointer(const char *, int);
126
127/* -------------------------------------------------------------------- */
128/* Print a value to an ASCII character string. */
129/* -------------------------------------------------------------------- */
130int CPL_DLL CPLPrintString(char *, const char *, int);
131int CPL_DLL CPLPrintStringFill(char *, const char *, int);
132int CPL_DLL CPLPrintInt32(char *, GInt32, int);
133int CPL_DLL CPLPrintUIntBig(char *, GUIntBig, int);
134int CPL_DLL CPLPrintDouble(char *, const char *, double, const char *);
135int CPL_DLL CPLPrintTime(char *, int, const char *, const struct tm *,
136 const char *);
137int CPL_DLL CPLPrintPointer(char *, void *, int);
138
139/* -------------------------------------------------------------------- */
140/* Fetch a function from DLL / so. */
141/* -------------------------------------------------------------------- */
142
143void CPL_DLL *CPLGetSymbol(const char *, const char *);
144
145/* -------------------------------------------------------------------- */
146/* Fetch executable path. */
147/* -------------------------------------------------------------------- */
148int CPL_DLL CPLGetExecPath(char *pszPathBuf, int nMaxLength);
149
150/* -------------------------------------------------------------------- */
151/* Filename handling functions. */
152/* -------------------------------------------------------------------- */
153const char CPL_DLL *
155const char CPL_DLL *
157const char CPL_DLL *
159const char CPL_DLL *
161const char CPL_DLL *
163char CPL_DLL *CPLGetCurrentDir(void);
164const char CPL_DLL *CPLFormFilename(
165 const char *pszPath, const char *pszBasename,
166 const char *pszExtension) CPL_WARN_UNUSED_RESULT CPL_RETURNS_NONNULL;
167const char CPL_DLL *CPLFormCIFilename(
168 const char *pszPath, const char *pszBasename,
169 const char *pszExtension) CPL_WARN_UNUSED_RESULT CPL_RETURNS_NONNULL;
170const char CPL_DLL *CPLResetExtension(const char *, const char *)
172const char CPL_DLL *CPLProjectRelativeFilename(const char *pszProjectDir,
173 const char *pszSecondaryFilename)
175int CPL_DLL CPLIsFilenameRelative(const char *pszFilename);
176const char CPL_DLL *CPLExtractRelativePath(const char *, const char *, int *)
178const char CPL_DLL *
180char CPL_DLL **
181CPLCorrespondingPaths(const char *pszOldFilename, const char *pszNewFilename,
182 char **papszFileList) CPL_WARN_UNUSED_RESULT;
183int CPL_DLL CPLCheckForFile(char *pszFilename, char **papszSiblingList);
184
185const char CPL_DLL *CPLGenerateTempFilename(const char *pszStem)
187const char CPL_DLL *CPLExpandTilde(const char *pszFilename)
189const char CPL_DLL *CPLGetHomeDir(void) CPL_WARN_UNUSED_RESULT;
190const char CPL_DLL *
191CPLLaunderForFilename(const char *pszName,
192 const char *pszOutputPath) CPL_WARN_UNUSED_RESULT;
193
194/* -------------------------------------------------------------------- */
195/* Find File Function */
196/* -------------------------------------------------------------------- */
197
199typedef char const *(*CPLFileFinder)(const char *, const char *);
200
201const char CPL_DLL *CPLFindFile(const char *pszClass, const char *pszBasename);
202const char CPL_DLL *CPLDefaultFindFile(const char *pszClass,
203 const char *pszBasename);
204void CPL_DLL CPLPushFileFinder(CPLFileFinder pfnFinder);
205CPLFileFinder CPL_DLL CPLPopFileFinder(void);
206void CPL_DLL CPLPushFinderLocation(const char *);
207void CPL_DLL CPLPopFinderLocation(void);
208void CPL_DLL CPLFinderClean(void);
209
210/* -------------------------------------------------------------------- */
211/* Safe version of stat() that works properly on stuff like "C:". */
212/* -------------------------------------------------------------------- */
213int CPL_DLL CPLStat(const char *, VSIStatBuf *) CPL_WARN_UNUSED_RESULT;
214
215/* -------------------------------------------------------------------- */
216/* Reference counted file handle manager. Makes sharing file */
217/* handles more practical. */
218/* -------------------------------------------------------------------- */
219
221typedef struct
222{
223 FILE *fp;
225 int bLarge;
227 char *pszAccess;
229
230FILE CPL_DLL *CPLOpenShared(const char *, const char *, int);
231void CPL_DLL CPLCloseShared(FILE *);
232CPLSharedFileInfo CPL_DLL *CPLGetSharedList(int *);
233void CPL_DLL CPLDumpSharedList(FILE *);
235void CPL_DLL CPLCleanupSharedFileMutex(void);
238/* -------------------------------------------------------------------- */
239/* DMS to Dec to DMS conversion. */
240/* -------------------------------------------------------------------- */
241double CPL_DLL CPLDMSToDec(const char *is);
242const char CPL_DLL *CPLDecToDMS(double dfAngle, const char *pszAxis,
243 int nPrecision);
244double CPL_DLL CPLPackedDMSToDec(double);
245double CPL_DLL CPLDecToPackedDMS(double dfDec);
246
247void CPL_DLL CPLStringToComplex(const char *pszString, double *pdfReal,
248 double *pdfImag);
249
250/* -------------------------------------------------------------------- */
251/* Misc other functions. */
252/* -------------------------------------------------------------------- */
253int CPL_DLL CPLUnlinkTree(const char *);
254int CPL_DLL CPLCopyFile(const char *pszNewPath, const char *pszOldPath);
255int CPL_DLL CPLCopyTree(const char *pszNewPath, const char *pszOldPath);
256int CPL_DLL CPLMoveFile(const char *pszNewPath, const char *pszOldPath);
257int CPL_DLL CPLSymlink(const char *pszOldPath, const char *pszNewPath,
258 CSLConstList papszOptions);
259
260/* -------------------------------------------------------------------- */
261/* ZIP Creation. */
262/* -------------------------------------------------------------------- */
263
265#define CPL_ZIP_API_OFFERED
267void CPL_DLL *CPLCreateZip(const char *pszZipFilename, char **papszOptions);
268CPLErr CPL_DLL CPLCreateFileInZip(void *hZip, const char *pszFilename,
269 char **papszOptions);
270CPLErr CPL_DLL CPLWriteFileInZip(void *hZip, const void *pBuffer,
271 int nBufferSize);
272CPLErr CPL_DLL CPLCloseFileInZip(void *hZip);
273CPLErr CPL_DLL CPLCloseZip(void *hZip);
274
275/* -------------------------------------------------------------------- */
276/* ZLib compression */
277/* -------------------------------------------------------------------- */
278
279void CPL_DLL *CPLZLibDeflate(const void *ptr, size_t nBytes, int nLevel,
280 void *outptr, size_t nOutAvailableBytes,
281 size_t *pnOutBytes);
282void CPL_DLL *CPLZLibInflate(const void *ptr, size_t nBytes, void *outptr,
283 size_t nOutAvailableBytes, size_t *pnOutBytes);
284
285/* -------------------------------------------------------------------- */
286/* XML validation. */
287/* -------------------------------------------------------------------- */
288int CPL_DLL CPLValidateXML(const char *pszXMLFilename,
289 const char *pszXSDFilename,
290 CSLConstList papszOptions);
291
292/* -------------------------------------------------------------------- */
293/* Locale handling. Prevents parallel executions of setlocale(). */
294/* -------------------------------------------------------------------- */
295char *CPLsetlocale(int category, const char *locale);
297void CPLCleanupSetlocaleMutex(void);
305int CPL_DLL CPLIsPowerOfTwo(unsigned int i);
306
308
309/* -------------------------------------------------------------------- */
310/* C++ object for temporarily forcing a LC_NUMERIC locale to "C". */
311/* -------------------------------------------------------------------- */
312
314#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
315
316extern "C++"
317{
318 class CPL_DLL CPLLocaleC
319 {
320 CPL_DISALLOW_COPY_ASSIGN(CPLLocaleC)
321 public:
322 CPLLocaleC();
323 ~CPLLocaleC();
324
325 private:
326 char *pszOldLocale;
327 };
328
329 // Does the same as CPLLocaleC except that, when available, it tries to
330 // only affect the current thread. But code that would be dependent of
331 // setlocale(LC_NUMERIC, NULL) returning "C", such as current proj.4
332 // versions, will not work depending on the actual implementation
333 class CPLThreadLocaleCPrivate;
334 class CPL_DLL CPLThreadLocaleC
335 {
336 CPL_DISALLOW_COPY_ASSIGN(CPLThreadLocaleC)
337
338 public:
339 CPLThreadLocaleC();
340 ~CPLThreadLocaleC();
341
342 private:
343 CPLThreadLocaleCPrivate *m_private;
344 };
345}
346
347#endif /* def __cplusplus */
349
350/* -------------------------------------------------------------------- */
351/* C++ object for temporarily forcing a config option */
352/* -------------------------------------------------------------------- */
353
355#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
356
357extern "C++"
358{
359 class CPL_DLL CPLConfigOptionSetter
360 {
361 CPL_DISALLOW_COPY_ASSIGN(CPLConfigOptionSetter)
362 public:
363 CPLConfigOptionSetter(const char *pszKey, const char *pszValue,
364 bool bSetOnlyIfUndefined);
365 ~CPLConfigOptionSetter();
366
367 private:
368 char *m_pszKey;
369 char *m_pszOldValue;
370 bool m_bRestoreOldValue;
371 };
372}
373
374#endif /* def __cplusplus */
376
377#if defined(__cplusplus) && !defined(CPL_SUPRESS_CPLUSPLUS)
378
379extern "C++"
380{
381
382#ifndef DOXYGEN_SKIP
383#include <type_traits> // for std::is_base_of
384#endif
385
386 namespace cpl
387 {
397 template <typename To, typename From> inline To down_cast(From *f)
398 {
399 static_assert(
400 (std::is_base_of<From,
401 typename std::remove_pointer<To>::type>::value),
402 "target type not derived from source type");
403 CPLAssert(f == nullptr || dynamic_cast<To>(f) != nullptr);
404 return static_cast<To>(f);
405 }
406 } // namespace cpl
407} // extern "C++"
408
409#endif /* def __cplusplus */
410
411#if defined(__cplusplus) && defined(GDAL_COMPILATION)
412
413extern "C++"
414{
415#include <memory> // for std::unique_ptr
416 namespace cpl
417 {
419 template <typename T, typename... Args>
420 std::unique_ptr<T> make_unique(Args &&...args)
421 {
422 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
423 }
424 } // namespace cpl
425} // extern "C++"
426
427#endif /* def __cplusplus */
428
429#endif /* ndef CPL_CONV_H_INCLUDED */
const char * CPLGetHomeDir(void)
Return the path to the home directory.
Definition cpl_path.cpp:1178
const char * CPLExpandTilde(const char *pszFilename)
Expands ~/ at start of filename.
Definition cpl_path.cpp:1150
void * CPLCreateZip(const char *pszZipFilename, char **papszOptions)
Create ZIP file.
Definition cpl_conv.cpp:3373
double CPLAtofDelim(const char *, char)
Converts ASCII string to floating point number.
Definition cpl_strtod.cpp:63
int CPLPrintStringFill(char *, const char *, int)
Copy the string pointed to by pszSrc, NOT including the terminating ‘\0’ character,...
Definition cpl_conv.cpp:1265
void * CPLGetSymbol(const char *, const char *)
Fetch a function pointer from a shared library / DLL.
Definition cplgetsymbol.cpp:87
int CPLIsFilenameRelative(const char *pszFilename)
Is filename relative or absolute?
Definition cpl_path.cpp:823
const char * CPLReadLine2L(VSILFILE *, int, CSLConstList)
Simplified line reading from text file.
Definition cpl_conv.cpp:668
int CPLPrintUIntBig(char *, GUIntBig, int)
Print GUIntBig value into specified string buffer.
Definition cpl_conv.cpp:1348
int CPLCopyTree(const char *pszNewPath, const char *pszOldPath)
Recursively copy a tree.
Definition cpl_conv.cpp:2994
void CPLCloseShared(FILE *)
Close shared file.
Definition cpl_conv.cpp:2702
float CPLStrtof(const char *, char **)
Converts ASCII string to floating point number.
Definition cpl_strtod.cpp:387
char * CPLsetlocale(int category, const char *locale)
Prevents parallel executions of setlocale().
Definition cpl_conv.cpp:3274
const char * CPLReadLine3L(VSILFILE *, int, int *, CSLConstList)
Simplified line reading from text file.
Definition cpl_conv.cpp:696
double CPLStrtod(const char *, char **)
Converts ASCII string to floating point number.
Definition cpl_strtod.cpp:317
const char * CPLGetExtension(const char *)
Extract filename extension from full filename.
Definition cpl_path.cpp:341
void CPLLoadConfigOptionsFromFile(const char *pszFilename, int bOverrideEnvVars)
Load configuration from a given configuration file.
Definition cpl_conv.cpp:2064
int CPLMoveFile(const char *pszNewPath, const char *pszOldPath)
Move a file.
Definition cpl_conv.cpp:3069
char ** CPLGetThreadLocalConfigOptions(void)
Return the list of thread local configuration options as KEY=VALUE pairs.
Definition cpl_conv.cpp:1943
int CPLPrintInt32(char *, GInt32, int)
Print GInt32 value into specified string buffer.
Definition cpl_conv.cpp:1309
long CPLScanLong(const char *, int)
Scan up to a maximum number of characters from a string and convert the result to a long.
Definition cpl_conv.cpp:925
void CPLSetConfigOptions(const char *const *papszConfigOptions)
Replace the full list of configuration options with the passed list of KEY=VALUE pairs.
Definition cpl_conv.cpp:1772
void * CPLRealloc(void *, size_t)
Safe version of realloc().
Definition cpl_conv.cpp:235
char const *(* CPLFileFinder)(const char *, const char *)
Callback for CPLPushFileFinder.
Definition cpl_conv.h:199
float CPLStrtofDelim(const char *, char **, char)
Converts ASCII string to floating point number using specified delimiter.
Definition cpl_strtod.cpp:343
void * CPLZLibInflate(const void *ptr, size_t nBytes, void *outptr, size_t nOutAvailableBytes, size_t *pnOutBytes)
Uncompress a buffer compressed with ZLib compression.
Definition cpl_conv.cpp:3409
int CPLSymlink(const char *pszOldPath, const char *pszNewPath, CSLConstList papszOptions)
Create a symbolic link.
Definition cpl_conv.cpp:3093
const char * CPLGetBasename(const char *)
Extract basename (non-directory, non-extension) portion of filename.
Definition cpl_path.cpp:287
const char * CPLLaunderForFilename(const char *pszName, const char *pszOutputPath)
Launder a string to be compatible of a filename.
Definition cpl_path.cpp:1203
void * CPLMalloc(size_t)
Safe version of malloc().
Definition cpl_conv.cpp:178
const char * CPLGetDirname(const char *)
Extract directory path portion of filename.
Definition cpl_path.cpp:204
int CPLGetExecPath(char *pszPathBuf, int nMaxLength)
Fetch path of executable.
Definition cpl_getexecpath.cpp:67
const char * CPLFormCIFilename(const char *pszPath, const char *pszBasename, const char *pszExtension)
Case insensitive file searching, returning full path.
Definition cpl_path.cpp:666
char * CPLScanString(const char *, int, int, int)
Scan up to a maximum number of characters from a given string, allocate a buffer for a new string and...
Definition cpl_conv.cpp:865
int CPLPrintTime(char *, int, const char *, const struct tm *, const char *)
Print specified time value accordingly to the format options and specified locale name.
Definition cpl_conv.cpp:1498
void CPLFinderClean(void)
CPLFinderClean.
Definition cpl_findfile.cpp:133
void * CPLCalloc(size_t, size_t)
Safe version of calloc().
Definition cpl_conv.cpp:148
GIntBig CPLAtoGIntBigEx(const char *pszString, int bWarn, int *pbOverflow)
Convert a string to a 64 bit signed integer.
Definition cpl_conv.cpp:1055
void * CPLScanPointer(const char *, int)
Extract pointer from string.
Definition cpl_conv.cpp:1103
const char * CPLGenerateTempFilename(const char *pszStem)
Generate temporary file name.
Definition cpl_path.cpp:1109
const char * CPLGetPath(const char *)
Extract directory path portion of filename.
Definition cpl_path.cpp:150
char ** CPLCorrespondingPaths(const char *pszOldFilename, const char *pszNewFilename, char **papszFileList)
Identify corresponding paths.
Definition cpl_path.cpp:1005
char * CPLStrdup(const char *)
Safe version of strdup() function.
Definition cpl_conv.cpp:303
CPLErr CPLCreateFileInZip(void *hZip, const char *pszFilename, char **papszOptions)
Create a file in a ZIP file.
Definition cpl_conv.cpp:3381
void CPLLoadConfigOptionsFromPredefinedFiles(void)
Load configuration from a set of predefined files.
Definition cpl_conv.cpp:2260
char ** CPLGetConfigOptions(void)
Return the list of configuration options as KEY=VALUE pairs.
Definition cpl_conv.cpp:1746
double CPLDMSToDec(const char *is)
CPLDMSToDec.
Definition cpl_conv.cpp:2344
const char * CPLCleanTrailingSlash(const char *)
Remove trailing forward/backward slash from the path for UNIX/Windows resp.
Definition cpl_path.cpp:955
const char * CPLReadLineL(VSILFILE *)
Simplified line reading from text file.
Definition cpl_conv.cpp:643
const char * CPLReadLine(FILE *)
Simplified line reading from text file.
Definition cpl_conv.cpp:575
int CPLValidateXML(const char *pszXMLFilename, const char *pszXSDFilename, CSLConstList papszOptions)
Validate a XML file against a XML schema.
Definition cpl_xml_validate.cpp:1061
CPLErr CPLCloseZip(void *hZip)
Close ZIP file.
Definition cpl_conv.cpp:3396
const char * CPLResetExtension(const char *, const char *)
Replace the extension with the provided one.
Definition cpl_path.cpp:442
FILE * CPLOpenShared(const char *, const char *, int)
Open a shared file handle.
Definition cpl_conv.cpp:2630
void CPLPushFinderLocation(const char *)
CPLPushFinderLocation.
Definition cpl_findfile.cpp:246
char * CPLGetCurrentDir(void)
Get the current working directory name.
Definition cpl_path.cpp:421
void CPLPushFileFinder(CPLFileFinder pfnFinder)
CPLPushFileFinder.
Definition cpl_findfile.cpp:198
int CPLStat(const char *, VSIStatBuf *)
Same as VSIStat() except it works on "C:" as if it were "C:\".
Definition cpl_conv.cpp:2295
double CPLDecToPackedDMS(double dfDec)
Convert decimal degrees into packed DMS value (DDDMMMSSS.SS).
Definition cpl_conv.cpp:2553
const char * CPLExtractRelativePath(const char *, const char *, int *)
Get relative path from directory to target file.
Definition cpl_path.cpp:865
const char * CPLGetThreadLocalConfigOption(const char *, const char *)
Same as CPLGetConfigOption() but only with options set with CPLSetThreadLocalConfigOption()
Definition cpl_conv.cpp:1786
void CPLPopFinderLocation(void)
CPLPopFinderLocation.
Definition cpl_findfile.cpp:285
double CPLAtofM(const char *)
Converts ASCII string to floating point number using any numeric locale.
Definition cpl_strtod.cpp:132
void CPLSetConfigOption(const char *, const char *)
Set a configuration option for GDAL/OGR use.
Definition cpl_conv.cpp:1850
char * CPLFGets(char *, int, FILE *)
Reads in at most one less than nBufferSize characters from the fp stream and stores them into the buf...
Definition cpl_conv.cpp:374
GIntBig CPLAtoGIntBig(const char *pszString)
Convert a string to a 64 bit signed integer.
Definition cpl_conv.cpp:1009
double CPLPackedDMSToDec(double)
Convert a packed DMS value (DDDMMMSSS.SS) into decimal degrees.
Definition cpl_conv.cpp:2519
void CPLDumpSharedList(FILE *)
Report open shared files.
Definition cpl_conv.cpp:2815
int CPLUnlinkTree(const char *)
Recursively unlink a directory.
Definition cpl_conv.cpp:2849
const char * CPLProjectRelativeFilename(const char *pszProjectDir, const char *pszSecondaryFilename)
Find a file relative to a project file.
Definition cpl_path.cpp:758
GUIntBig CPLScanUIntBig(const char *, int)
Extract big integer from string.
Definition cpl_conv.cpp:983
const char * CPLDecToDMS(double dfAngle, const char *pszAxis, int nPrecision)
Translate a decimal degrees value to a DMS string with hemisphere.
Definition cpl_conv.cpp:2429
const char * CPLFindFile(const char *pszClass, const char *pszBasename)
CPLFindFile.
Definition cpl_findfile.cpp:175
double CPLScanDouble(const char *, int)
Extract double from string.
Definition cpl_conv.cpp:1169
int CPLIsPowerOfTwo(unsigned int i)
Definition cpl_conv.cpp:3300
const char * CPLGetConfigOption(const char *, const char *)
Get the value of a configuration option.
Definition cpl_conv.cpp:1685
unsigned long CPLScanULong(const char *, int)
Scan up to a maximum number of characters from a string and convert the result to a unsigned long.
Definition cpl_conv.cpp:953
void CPLSetThreadLocalConfigOption(const char *pszKey, const char *pszValue)
Set a configuration option for GDAL/OGR use.
Definition cpl_conv.cpp:1903
double CPLStrtodDelim(const char *, char **, char)
Converts ASCII string to floating point number using specified delimiter.
Definition cpl_strtod.cpp:222
To down_cast(From *f)
Use cpl::down_cast<Derived*>(pointer_to_base) as equivalent of static_cast<Derived*>(pointer_to_base)...
Definition cpl_conv.h:397
const char * CPLGetFilename(const char *)
Extract non-directory portion of filename.
Definition cpl_path.cpp:255
char * CPLStrlwr(char *)
Convert each characters of the string to lower case.
Definition cpl_conv.cpp:329
int CPLCopyFile(const char *pszNewPath, const char *pszOldPath)
Copy a file.
Definition cpl_conv.cpp:2932
const char * CPLFormFilename(const char *pszPath, const char *pszBasename, const char *pszExtension)
Build a full file path from a passed path, file basename and extension.
Definition cpl_path.cpp:548
int CPLPrintDouble(char *, const char *, double, const char *)
Print double value into specified string buffer.
Definition cpl_conv.cpp:1440
void * CPLZLibDeflate(const void *ptr, size_t nBytes, int nLevel, void *outptr, size_t nOutAvailableBytes, size_t *pnOutBytes)
Compress a buffer with ZLib compression.
Definition cpl_conv.cpp:3401
int CPLPrintString(char *, const char *, int)
Copy the string pointed to by pszSrc, NOT including the terminating ‘\0’ character,...
Definition cpl_conv.cpp:1221
CPLErr CPLCloseFileInZip(void *hZip)
Close current file inside ZIP file.
Definition cpl_conv.cpp:3391
const char * CPLDefaultFindFile(const char *pszClass, const char *pszBasename)
CPLDefaultFindFile.
Definition cpl_findfile.cpp:148
CPLErr CPLWriteFileInZip(void *hZip, const void *pBuffer, int nBufferSize)
Write in current file inside a ZIP file.
Definition cpl_conv.cpp:3386
CPLFileFinder CPLPopFileFinder(void)
CPLPopFileFinder.
Definition cpl_findfile.cpp:235
int CPLPrintPointer(char *, void *, int)
Print pointer value into specified string buffer.
Definition cpl_conv.cpp:1396
void CPLStringToComplex(const char *pszString, double *pdfReal, double *pdfImag)
Fetch the real and imaginary part of a serialized complex number.
Definition cpl_conv.cpp:2570
void CPLSetThreadLocalConfigOptions(const char *const *papszConfigOptions)
Replace the full list of thread local configuration options with the passed list of KEY=VALUE pairs.
Definition cpl_conv.cpp:1973
int CPLCheckForFile(char *pszFilename, char **papszSiblingList)
Check for file existence.
Definition cpl_conv.cpp:3335
CPLSharedFileInfo * CPLGetSharedList(int *)
Fetch list of open shared files.
Definition cpl_conv.cpp:2793
double CPLAtof(const char *)
Converts ASCII string to floating point number.
Definition cpl_strtod.cpp:107
CPL error handling services.
#define CPLAssert(expr)
Assert on an expression.
Definition cpl_error.h:209
CPLErr
Error category.
Definition cpl_error.h:53
Core portability definitions for CPL.
unsigned long long GUIntBig
Large unsigned integer type (generally 64-bit unsigned integer type).
Definition cpl_port.h:236
#define CPL_C_END
Macro to end a block of C symbols.
Definition cpl_port.h:317
#define CPL_C_START
Macro to start a block of C symbols.
Definition cpl_port.h:313
#define CPL_RETURNS_NONNULL
Qualifier for a function that does not return NULL.
Definition cpl_port.h:1021
#define CPL_DISALLOW_COPY_ASSIGN(ClassName)
Helper to remove the copy and assignment constructors so that the compiler will not generate the defa...
Definition cpl_port.h:1049
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition cpl_port.h:1190
#define CPL_WARN_UNUSED_RESULT
Qualifier to warn when the return value of a function is not used.
Definition cpl_port.h:983
int GInt32
Int32 type.
Definition cpl_port.h:195
long long GIntBig
Large signed integer type (generally 64-bit integer type).
Definition cpl_port.h:233
Standard C Covers.
FILE VSILFILE
Opaque type for a FILE that implements the VSIVirtualHandle API.
Definition cpl_vsi.h:162
Information on a shared file.
Definition cpl_conv.h:222
char * pszAccess
Access mode.
Definition cpl_conv.h:227
FILE * fp
File pointer.
Definition cpl_conv.h:223
int nRefCount
Reference counter.
Definition cpl_conv.h:224
char * pszFilename
Filename.
Definition cpl_conv.h:226
int bLarge
Whether fp must be interpreted as VSIFILE*.
Definition cpl_conv.h:225