#include "cpl_port.h"
#include "cpl_vsi.h"
#include "cpl_error.h"
Go to the source code of this file.
Classes | |
struct | CPLSharedFileInfo |
class | CPLLocaleC |
Functions | |
const char * | CPLGetConfigOption (const char *, const char *) |
void | CPLSetConfigOption (const char *, const char *) |
void | CPLSetThreadLocalConfigOption (const char *pszKey, const char *pszValue) |
void * | CPLMalloc (size_t) |
void * | CPLCalloc (size_t, size_t) |
void * | CPLRealloc (void *, size_t) |
char * | CPLStrdup (const char *) |
char * | CPLStrlwr (char *) |
char * | CPLFGets (char *, int, FILE *) |
const char * | CPLReadLine (FILE *) |
const char * | CPLReadLineL (FILE *) |
const char * | CPLReadLine2L (FILE *, int nMaxCols, char **papszOptions) |
double | CPLAtof (const char *) |
double | CPLAtofDelim (const char *, char) |
double | CPLStrtod (const char *, char **) |
double | CPLStrtodDelim (const char *, char **, char) |
float | CPLStrtof (const char *, char **) |
float | CPLStrtofDelim (const char *, char **, char) |
double | CPLAtofM (const char *) |
char * | CPLScanString (const char *, int, int, int) |
double | CPLScanDouble (const char *, int) |
long | CPLScanLong (const char *, int) |
unsigned long | CPLScanULong (const char *, int) |
GUIntBig | CPLScanUIntBig (const char *, int) |
void * | CPLScanPointer (const char *, int) |
int | CPLPrintString (char *, const char *, int) |
int | CPLPrintStringFill (char *, const char *, int) |
int | CPLPrintInt32 (char *, GInt32, int) |
int | CPLPrintUIntBig (char *, GUIntBig, int) |
int | CPLPrintDouble (char *, const char *, double, const char *) |
int | CPLPrintTime (char *, int, const char *, const struct tm *, const char *) |
int | CPLPrintPointer (char *, void *, int) |
void * | CPLGetSymbol (const char *, const char *) |
int | CPLGetExecPath (char *pszPathBuf, int nMaxLength) |
const char * | CPLGetPath (const char *) |
const char * | CPLGetDirname (const char *) |
const char * | CPLGetFilename (const char *) |
const char * | CPLGetBasename (const char *) |
const char * | CPLGetExtension (const char *) |
char * | CPLGetCurrentDir (void) |
const char * | CPLFormFilename (const char *pszPath, const char *pszBasename, const char *pszExtension) |
const char * | CPLFormCIFilename (const char *pszPath, const char *pszBasename, const char *pszExtension) |
const char * | CPLResetExtension (const char *, const char *) |
const char * | CPLProjectRelativeFilename (const char *pszProjectDir, const char *pszSecondaryFilename) |
int | CPLIsFilenameRelative (const char *pszFilename) |
const char * | CPLExtractRelativePath (const char *, const char *, int *) |
const char * | CPLCleanTrailingSlash (const char *) |
char ** | CPLCorrespondingPaths (const char *pszOldFilename, const char *pszNewFilename, char **papszFileList) |
int | CPLCheckForFile (char *pszFilename, char **papszSiblingList) |
const char * | CPLGenerateTempFilename (const char *pszStem) |
FILE * | CPLOpenShared (const char *, const char *, int) |
void | CPLCloseShared (FILE *) |
CPLSharedFileInfo * | CPLGetSharedList (int *) |
void | CPLDumpSharedList (FILE *) |
double | CPLPackedDMSToDec (double) |
double | CPLDecToPackedDMS (double dfDec) |
int | CPLUnlinkTree (const char *) |
double CPLAtof | ( | const char * | nptr | ) |
Converts ASCII string to floating point number.
This function converts the initial portion of the string pointed to by nptr to double floating point representation. The behaviour is the same as
CPLStrtod(nptr, (char **)NULL);
This function does the same as standard atof(3), but does not take locale in account. That means, the decimal delimiter is always '.' (decimal point). Use CPLAtofDelim() function if you want to specify custom delimiter.
IMPORTANT NOTE. Existance of this function does not mean you should always use it. Sometimes you should use standard locale aware atof(3) and its family. When you need to process the user's input (for example, command line parameters) use atof(3), because user works in localized environment and her input will be done accordingly the locale set. In particular that means we should not make assumptions about character used as decimal delimiter, it can be either "." or ",". But when you are parsing some ASCII file in predefined format, you most likely need CPLAtof(), because such files distributed across the systems with different locales and floating point representation shoudl be considered as a part of file format. If the format uses "." as a delimiter the same character must be used when parsing number regardless of actual locale setting.
nptr | Pointer to string to convert. |
References CPLAtof(), and CPLStrtod().
Referenced by CPLAtof(), CPLScanDouble(), OGRSpatialReference::exportToProj4(), OGRSpatialReference::Fixup(), OGRSpatialReference::GetAngularUnits(), OGRSpatialReference::GetInvFlattening(), OGRSpatialReference::GetLinearUnits(), OGRSpatialReference::GetPrimeMeridian(), OGRSpatialReference::GetProjParm(), OGRSpatialReference::GetSemiMajor(), OGRSpatialReference::GetTOWGS84(), OGRSpatialReference::importFromOzi(), OGRSpatialReference::importFromProj4(), OGRSpatialReference::importFromWMSAUTO(), OGRSpatialReference::IsSameGeogCS(), OGRSpatialReference::SetGeogCS(), OGRSpatialReference::SetStatePlane(), and OGRSpatialReference::Validate().
double CPLAtofDelim | ( | const char * | nptr, | |
char | point | |||
) |
Converts ASCII string to floating point number.
This function converts the initial portion of the string pointed to by nptr to double floating point representation. The behaviour is the same as
CPLStrtodDelim(nptr, (char **)NULL, point);
This function does the same as standard atof(3), but does not take locale in account. Instead of locale defined decimal delimiter you can specify your own one. Also see notes for CPLAtof() function.
nptr | Pointer to string to convert. | |
point | Decimal delimiter. |
References CPLAtofDelim(), and CPLStrtodDelim().
Referenced by CPLAtofDelim().
double CPLAtofM | ( | const char * | nptr | ) |
Converts ASCII string to floating point number using any numeric locale.
This function converts the initial portion of the string pointed to by nptr to double floating point representation. This function does the same as standard atof(), but it allows a variety of locale representations. That is it supports numeric values with either a comma or a period for the decimal delimiter.
PS. The M stands for Multi-lingual.
nptr | The string to convert. |
References CPLAtofM(), and CPLStrtodDelim().
Referenced by CPLAtofM(), and OGRSpatialReference::importFromProj4().
void* CPLCalloc | ( | size_t | nCount, | |
size_t | nSize | |||
) |
Safe version of calloc().
This function is like the C library calloc(), but raises a CE_Fatal error with CPLError() if it fails to allocate the desired memory. It should be used for small memory allocations that are unlikely to fail and for which the application is unwilling to test for out of memory conditions. It uses VSICalloc() to get the memory, so any hooking of VSICalloc() will apply to CPLCalloc() as well. CPLFree() or VSIFree() can be used free memory allocated by CPLCalloc().
nCount | number of objects to allocate. | |
nSize | size (in bytes) of object to allocate. |
int CPLCheckForFile | ( | char * | pszFilename, | |
char ** | papszSiblingFiles | |||
) |
Check for file existance.
The function checks if a named file exists in the filesystem, hopefully in an efficient fashion if a sibling file list is available. It exists primarily to do faster file checking for functions like GDAL open methods that get a list of files from the target directory.
If the sibling file list exists (is not NULL) it is assumed to be a list of files in the same directory as the target file, and it will be checked (case insensitively) for a match. If a match is found, pszFilename is updated with the correct case and TRUE is returned.
If papszSiblingFiles is NULL, a VSIStatL() is used to test for the files existance, and no case insensitive testing is done.
pszFilename | name of file to check for - filename case updated in some cases. | |
papszSiblingFiles | a list of files in the same directory as pszFilename if available, or NULL. This list should have no path components. |
References CPLGetFilename(), and VSIStatL().
const char* CPLCleanTrailingSlash | ( | const char * | pszPath | ) |
Remove trailing forward/backward slash from the path for unix/windows resp.
Returns a string containing the portion of the passed path string with trailing slash removed. If there is no path in the passed filename an empty string will be returned (not NULL).
CPLCleanTrailingSlash( "abc/def/" ) == "abc/def" CPLCleanTrailingSlash( "abc/def" ) == "abc/def" CPLCleanTrailingSlash( "c:\abc\def\" ) == "c:\abc\def" CPLCleanTrailingSlash( "c:\abc\def" ) == "c:\abc\def" CPLCleanTrailingSlash( "abc" ) == "abc"
pszPath | the path to be cleaned up |
References CPLCleanTrailingSlash().
Referenced by CPLCleanTrailingSlash().
void CPLCloseShared | ( | FILE * | fp | ) |
Close shared file.
Dereferences the indicated file handle, and closes it if the reference count has dropped to zero. A CPLError() is issued if the file is not in the shared file list.
fp | file handle from CPLOpenShared() to deaccess. |
References VSIFCloseL().
char** CPLCorrespondingPaths | ( | const char * | pszOldFilename, | |
const char * | pszNewFilename, | |||
char ** | papszFileList | |||
) |
Identify corresponding paths.
Given a prototype old and new filename this function will attempt to determine corresponding names for a set of other old filenames that will rename them in a similar manner. This correspondance assumes there are two possibly kinds of renaming going on. A change of path, and a change of filename stem.
If a consistent renaming cannot be established for all the files this function will return indicating an error.
The returned file list becomes owned by the caller and should be destroyed with CSLDestroy().
pszOldFilename | path to old prototype file. | |
pszNewFilename | path to new prototype file. | |
papszFileList | list of other files associated with pszOldFilename to rename similarly. |
References CPLCorrespondingPaths(), CPLFormFilename(), CPLGetBasename(), CPLGetFilename(), and CPLGetPath().
Referenced by CPLCorrespondingPaths().
double CPLDecToPackedDMS | ( | double | dfDec | ) |
Convert decimal degrees into packed DMS value (DDDMMMSSS.SS).
This function converts a value, specified in decimal degrees into packed DMS angle. The standard packed DMS format is:
degrees * 1000000 + minutes * 1000 + seconds
See also CPLPackedDMSToDec().
dfDec | Angle in decimal degrees. |
void CPLDumpSharedList | ( | FILE * | fp | ) |
Report open shared files.
Dumps all open shared files to the indicated file handle. If the file handle is NULL information is sent via the CPLDebug() call.
fp | File handle to write to. |
const char* CPLExtractRelativePath | ( | const char * | pszBaseDir, | |
const char * | pszTarget, | |||
int * | pbGotRelative | |||
) |
Get relative path from directory to target file.
Computes a relative path for pszTarget relative to pszBaseDir. Currently this only works if they share a common base path. The returned path is normally into the pszTarget string. It should only be considered valid as long as pszTarget is valid or till the next call to this function, whichever comes first.
pszBaseDir | the name of the directory relative to which the path should be computed. pszBaseDir may be NULL in which case the original target is returned without relitivizing. | |
pszTarget | the filename to be changed to be relative to pszBaseDir. | |
pbGotRelative | Pointer to location in which a flag is placed indicating that the returned path is relative to the basename (TRUE) or not (FALSE). This pointer may be NULL if flag is not desired. |
References CPLExtractRelativePath(), and CPLIsFilenameRelative().
Referenced by CPLExtractRelativePath().
char* CPLFGets | ( | char * | pszBuffer, | |
int | nBufferSize, | |||
FILE * | fp | |||
) |
Reads in at most one less than nBufferSize characters from the fp stream and stores them into the buffer pointed to by pszBuffer. Reading stops after an EOF or a newline. If a newline is read, it is _not_ stored into the buffer. A '\0' is stored after the last character in the buffer. All three types of newline terminators recognized by the CPLFGets(): single '\r' and '\n' and '\r\n' combination.
pszBuffer | pointer to the targeting character buffer. | |
nBufferSize | maximum size of the string to read (not including termonating '\0'). | |
fp | file pointer to read from. |
const char* CPLFormCIFilename | ( | const char * | pszPath, | |
const char * | pszBasename, | |||
const char * | pszExtension | |||
) |
Case insensitive file searching, returing full path.
This function tries to return the path to a file regardless of whether the file exactly matches the basename, and extension case, or is all upper case, or all lower case. The path is treated as case sensitive. This function is equivelent to CPLFormFilename() on case insensitive file systems (like Windows).
pszPath | directory path to the directory containing the file. This may be relative or absolute, and may have a trailing path separator or not. May be NULL. | |
pszBasename | file basename. May optionally have path and/or extension. May not be NULL. | |
pszExtension | file extension, optionally including the period. May be NULL. |
References CPLFormCIFilename(), CPLFormFilename(), and VSIStatL().
Referenced by CPLFormCIFilename().
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.
The path, and extension are optional. The basename may in fact contain an extension if desired.
CPLFormFilename("abc/xyz","def", ".dat" ) == "abc/xyz/def.dat" CPLFormFilename(NULL,"def", NULL ) == "def" CPLFormFilename(NULL,"abc/def.dat", NULL ) == "abc/def.dat" CPLFormFilename("/abc/xyz/","def.dat", NULL ) == "/abc/xyz/def.dat"
pszPath | directory path to the directory containing the file. This may be relative or absolute, and may have a trailing path separator or not. May be NULL. | |
pszBasename | file basename. May optionally have path and/or extension. May not be NULL. | |
pszExtension | file extension, optionally including the period. May be NULL. |
References CPLFormFilename().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), CPLCorrespondingPaths(), CPLFormCIFilename(), CPLFormFilename(), CPLGenerateTempFilename(), and CPLUnlinkTree().
const char* CPLGenerateTempFilename | ( | const char * | pszStem | ) |
Generate temporary file name.
Returns a filename that may be used for a temporary file. The location of the file tries to follow operating system semantics but may be forced via the CPL_TMPDIR configuration option.
pszStem | if non-NULL this will be part of the filename. |
References CPLFormFilename(), and CPLGenerateTempFilename().
Referenced by CPLGenerateTempFilename().
const char* CPLGetBasename | ( | const char * | pszFullFilename | ) |
Extract basename (non-directory, non-extension) portion of filename.
Returns a string containing the file basename portion of the passed name. If there is no basename (passed value ends in trailing directory separator, or filename starts with a dot) an empty string is returned.
CPLGetBasename( "abc/def.xyz" ) == "def" CPLGetBasename( "abc/def" ) == "def" CPLGetBasename( "abc/def/" ) == ""
pszFullFilename | the full filename potentially including a path. |
References CPLGetBasename().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), CPLCorrespondingPaths(), and CPLGetBasename().
const char* CPLGetConfigOption | ( | const char * | pszKey, | |
const char * | pszDefault | |||
) |
Get the value of a configuration option.
The value is the value of a (key, value) option set with CPLSetConfigOption(). If the given option was no defined with CPLSetConfigOption(), it tries to find it in environment variables.
pszKey | the key of the option to retrieve | |
pszDefault | a default value if the key does not match existing defined options (may be NULL) |
char* CPLGetCurrentDir | ( | void | ) |
Get the current working directory name.
References CPLGetCurrentDir().
Referenced by CPLGetCurrentDir().
const char* CPLGetDirname | ( | const char * | pszFilename | ) |
Extract directory path portion of filename.
Returns a string containing the directory path portion of the passed filename. If there is no path in the passed filename the dot will be returned. It is the only difference from CPLGetPath().
CPLGetDirname( "abc/def.xyz" ) == "abc" CPLGetDirname( "/abc/def/" ) == "/abc/def" CPLGetDirname( "/" ) == "/" CPLGetDirname( "/abc/def" ) == "/abc" CPLGetDirname( "abc" ) == "."
pszFilename | the filename potentially including a path. |
References CPLGetDirname().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), and CPLGetDirname().
int CPLGetExecPath | ( | char * | pszPathBuf, | |
int | nMaxLength | |||
) |
Fetch path of executable.
The path to the executable currently running is returned. This path includes the name of the executable. Currently this only works on win32 platform.
pszPathBuf | the buffer into which the path is placed. | |
nMaxLength | the buffer size, MAX_PATH+1 is suggested. |
References CPLGetExecPath().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), and CPLGetExecPath().
const char* CPLGetExtension | ( | const char * | pszFullFilename | ) |
Extract filename extension from full filename.
Returns a string containing the extention portion of the passed name. If there is no extension (the filename has no dot) an empty string is returned. The returned extension will not include the period.
CPLGetExtension( "abc/def.xyz" ) == "xyz" CPLGetExtension( "abc/def" ) == ""
pszFullFilename | the full filename potentially including a path. |
References CPLGetExtension().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), and CPLGetExtension().
const char* CPLGetFilename | ( | const char * | pszFullFilename | ) |
Extract non-directory portion of filename.
Returns a string containing the bare filename portion of the passed filename. If there is no filename (passed value ends in trailing directory separator) an empty string is returned.
CPLGetFilename( "abc/def.xyz" ) == "def.xyz" CPLGetFilename( "/abc/def/" ) == "" CPLGetFilename( "abc/def" ) == "def"
pszFullFilename | the full filename potentially including a path. |
References CPLGetFilename().
Referenced by CPLCheckForFile(), CPLCorrespondingPaths(), and CPLGetFilename().
const char* CPLGetPath | ( | const char * | pszFilename | ) |
Extract directory path portion of filename.
Returns a string containing the directory path portion of the passed filename. If there is no path in the passed filename an empty string will be returned (not NULL).
CPLGetPath( "abc/def.xyz" ) == "abc" CPLGetPath( "/abc/def/" ) == "/abc/def" CPLGetPath( "/" ) == "/" CPLGetPath( "/abc/def" ) == "/abc" CPLGetPath( "abc" ) == ""
pszFilename | the filename potentially including a path. |
References CPLGetPath().
Referenced by CPLCorrespondingPaths(), and CPLGetPath().
CPLSharedFileInfo* CPLGetSharedList | ( | int * | pnCount | ) |
Fetch list of open shared files.
pnCount | place to put the count of entries. |
void* CPLGetSymbol | ( | const char * | pszLibrary, | |
const char * | pszSymbolName | |||
) |
Fetch a function pointer from a shared library / DLL.
This function is meant to abstract access to shared libraries and DLLs and performs functions similar to dlopen()/dlsym() on Unix and LoadLibrary() / GetProcAddress() on Windows.
If no support for loading entry points from a shared library is available this function will always return NULL. Rules on when this function issues a CPLError() or not are not currently well defined, and will have to be resolved in the future.
Currently CPLGetSymbol() doesn't try to:
Some of these issues may be worked on in the future.
pszLibrary | the name of the shared library or DLL containing the function. May contain path to file. If not system supplies search paths will be used. | |
pszSymbolName | the name of the function to fetch a pointer to. |
References CPLGetSymbol().
Referenced by OGRSFDriverRegistrar::AutoLoadDrivers(), and CPLGetSymbol().
int CPLIsFilenameRelative | ( | const char * | pszFilename | ) |
Is filename relative or absolute?
The test is filesystem convention agnostic. That is it will test for Unix style and windows style path conventions regardless of the actual system in use.
pszFilename | the filename with path to test. |
References CPLIsFilenameRelative().
Referenced by CPLExtractRelativePath(), CPLIsFilenameRelative(), and CPLProjectRelativeFilename().
void* CPLMalloc | ( | size_t | nSize | ) |
Safe version of malloc().
This function is like the C library malloc(), but raises a CE_Fatal error with CPLError() if it fails to allocate the desired memory. It should be used for small memory allocations that are unlikely to fail and for which the application is unwilling to test for out of memory conditions. It uses VSIMalloc() to get the memory, so any hooking of VSIMalloc() will apply to CPLMalloc() as well. CPLFree() or VSIFree() can be used free memory allocated by CPLMalloc().
nSize | size (in bytes) of memory block to allocate. |
FILE* CPLOpenShared | ( | const char * | pszFilename, | |
const char * | pszAccess, | |||
int | bLarge | |||
) |
Open a shared file handle.
Some operating systems have limits on the number of file handles that can be open at one time. This function attempts to maintain a registry of already open file handles, and reuse existing ones if the same file is requested by another part of the application.
Note that access is only shared for access types "r", "rb", "r+" and "rb+". All others will just result in direct VSIOpen() calls. Keep in mind that a file is only reused if the file name is exactly the same. Different names referring to the same file will result in different handles.
The VSIFOpen() or VSIFOpenL() function is used to actually open the file, when an existing file handle can't be shared.
pszFilename | the name of the file to open. | |
pszAccess | the normal fopen()/VSIFOpen() style access string. | |
bLarge | If TRUE VSIFOpenL() (for large files) will be used instead of VSIFOpen(). |
References VSIFOpenL().
double CPLPackedDMSToDec | ( | double | dfPacked | ) |
Convert a packed DMS value (DDDMMMSSS.SS) into decimal degrees.
This function converts a packed DMS angle to seconds. The standard packed DMS format is:
degrees * 1000000 + minutes * 1000 + seconds
Example: ang = 120025045.25 yields deg = 120 min = 25 sec = 45.25
The algorithm used for the conversion is as follows:
1. The absolute value of the angle is used.
2. The degrees are separated out: deg = ang/1000000 (fractional portion truncated)
3. The minutes are separated out: min = (ang - deg * 1000000) / 1000 (fractional portion truncated)
4. The seconds are then computed: sec = ang - deg * 1000000 - min * 1000
5. The total angle in seconds is computed: sec = deg * 3600.0 + min * 60.0 + sec
6. The sign of sec is set to that of the input angle.
Packed DMS values used by the USGS GCTP package and probably by other software.
NOTE: This code does not validate input value. If you give the wrong value, you will get the wrong result.
dfPacked | Angle in packed DMS format. |
int CPLPrintDouble | ( | char * | pszBuffer, | |
const char * | pszFormat, | |||
double | dfValue, | |||
const char * | pszLocale | |||
) |
Print double value into specified string buffer. Exponential character flag 'E' (or 'e') will be replaced with 'D', as in Fortran. Resulting string will not to be NULL-terminated.
pszBuffer | Pointer to the destination string buffer. Should be large enough to hold the resulting string. Note, that the string will not be NULL-terminated, so user should do this himself, if needed. | |
pszFormat | Format specifier (for example, "%16.9E"). | |
dfValue | Numerical value to print. | |
pszLocale | Pointer to a character string containing locale name ("C", "POSIX", "us_US", "ru_RU.KOI8-R" etc.). If NULL we will not manipulate with locale settings and current process locale will be used for printing. With the pszLocale option we can control what exact locale will be used for printing a numeric value to the string (in most cases it should be C/POSIX). |
int CPLPrintInt32 | ( | char * | pszBuffer, | |
GInt32 | iValue, | |||
int | nMaxLen | |||
) |
Print GInt32 value into specified string buffer. This string will not be NULL-terminated.
pszBuffer | Pointer to the destination string buffer. Should be large enough to hold the resulting string. Note, that the string will not be NULL-terminated, so user should do this himself, if needed. | |
iValue | Numerical value to print. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. |
int CPLPrintPointer | ( | char * | pszBuffer, | |
void * | pValue, | |||
int | nMaxLen | |||
) |
Print pointer value into specified string buffer. This string will not be NULL-terminated.
pszBuffer | Pointer to the destination string buffer. Should be large enough to hold the resulting string. Note, that the string will not be NULL-terminated, so user should do this himself, if needed. | |
pValue | Pointer to ASCII encode. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. |
int CPLPrintString | ( | char * | pszDest, | |
const char * | pszSrc, | |||
int | nMaxLen | |||
) |
Copy the string pointed to by pszSrc, NOT including the terminating `\0' character, to the array pointed to by pszDest.
pszDest | Pointer to the destination string buffer. Should be large enough to hold the resulting string. | |
pszSrc | Pointer to the source buffer. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. |
int CPLPrintStringFill | ( | char * | pszDest, | |
const char * | pszSrc, | |||
int | nMaxLen | |||
) |
Copy the string pointed to by pszSrc, NOT including the terminating `\0' character, to the array pointed to by pszDest. Remainder of the destination string will be filled with space characters. This is only difference from the PrintString().
pszDest | Pointer to the destination string buffer. Should be large enough to hold the resulting string. | |
pszSrc | Pointer to the source buffer. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. |
int CPLPrintTime | ( | char * | pszBuffer, | |
int | nMaxLen, | |||
const char * | pszFormat, | |||
const struct tm * | poBrokenTime, | |||
const char * | pszLocale | |||
) |
Print specified time value accordingly to the format options and specified locale name. This function does following:
pszBuffer | Pointer to the destination string buffer. Should be large enough to hold the resulting string. Note, that the string will not be NULL-terminated, so user should do this himself, if needed. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. | |
pszFormat | Controls the output format. Options are the same as for strftime(3) function. | |
poBrokenTime | Pointer to the broken-down time structure. May be requested with the VSIGMTime() and VSILocalTime() functions. | |
pszLocale | Pointer to a character string containing locale name ("C", "POSIX", "us_US", "ru_RU.KOI8-R" etc.). If NULL we will not manipulate with locale settings and current process locale will be used for printing. Be aware that it may be unsuitable to use current locale for printing time, because all names will be printed in your native language, as well as time format settings also may be ajusted differently from the C/POSIX defaults. To solve these problems this option was introdiced. |
int CPLPrintUIntBig | ( | char * | pszBuffer, | |
GUIntBig | iValue, | |||
int | nMaxLen | |||
) |
Print GUIntBig value into specified string buffer. This string will not be NULL-terminated.
pszBuffer | Pointer to the destination string buffer. Should be large enough to hold the resulting string. Note, that the string will not be NULL-terminated, so user should do this himself, if needed. | |
iValue | Numerical value to print. | |
nMaxLen | Maximum length of the resulting string. If string length is greater than nMaxLen, it will be truncated. |
const char* CPLProjectRelativeFilename | ( | const char * | pszProjectDir, | |
const char * | pszSecondaryFilename | |||
) |
Find a file relative to a project file.
Given the path to a "project" directory, and a path to a secondary file referenced from that project, build a path to the secondary file that the current application can use. If the secondary path is already absolute, rather than relative, then it will be returned unaltered.
Examples:
CPLProjectRelativeFilename("abc/def","tmp/abc.gif") == "abc/def/tmp/abc.gif" CPLProjectRelativeFilename("abc/def","/tmp/abc.gif") == "/tmp/abc.gif" CPLProjectRelativeFilename("/xy", "abc.gif") == "/xy/abc.gif" CPLProjectRelativeFilename("/abc/def","../abc.gif") == "/abc/def/../abc.gif" CPLProjectRelativeFilename("C:\WIN","abc.gif") == "C:\WIN\abc.gif"
pszProjectDir | the directory relative to which the secondary files path should be interpreted. | |
pszSecondaryFilename | the filename (potentially with path) that is to be interpreted relative to the project directory. |
References CPLIsFilenameRelative(), and CPLProjectRelativeFilename().
Referenced by CPLProjectRelativeFilename().
const char* CPLReadLine | ( | FILE * | fp | ) |
Simplified line reading from text file.
Read a line of text from the given file handle, taking care to capture CR and/or LF and strip off ... equivelent of DKReadLine(). Pointer to an internal buffer is returned. The application shouldn't free it, or depend on it's value past the next call to CPLReadLine().
Note that CPLReadLine() uses VSIFGets(), so any hooking of VSI file services should apply to CPLReadLine() as well.
CPLReadLine() maintains an internal buffer, which will appear as a single block memory leak in some circumstances. CPLReadLine() may be called with a NULL FILE * at any time to free this working buffer.
fp | file pointer opened with VSIFOpen(). |
const char* CPLReadLine2L | ( | FILE * | fp, | |
int | nMaxCars, | |||
char ** | papszOptions | |||
) |
Simplified line reading from text file.
Similar to CPLReadLine(), but reading from a large file API handle.
fp | file pointer opened with VSIFOpenL(). | |
nMaxCars | maximum number of characters allowed, or -1 for no limit. | |
papszOptions | NULL-terminated array of options. Unused for now. |
References VSIFReadL(), VSIFSeekL(), and VSIFTellL().
const char* CPLReadLineL | ( | FILE * | fp | ) |
Simplified line reading from text file.
Similar to CPLReadLine(), but reading from a large file API handle.
fp | file pointer opened with VSIFOpenL(). |
void* CPLRealloc | ( | void * | pData, | |
size_t | nNewSize | |||
) |
Safe version of realloc().
This function is like the C library realloc(), but raises a CE_Fatal error with CPLError() if it fails to allocate the desired memory. It should be used for small memory allocations that are unlikely to fail and for which the application is unwilling to test for out of memory conditions. It uses VSIRealloc() to get the memory, so any hooking of VSIRealloc() will apply to CPLRealloc() as well. CPLFree() or VSIFree() can be used free memory allocated by CPLRealloc().
It is also safe to pass NULL in as the existing memory block for CPLRealloc(), in which case it uses VSIMalloc() to allocate a new block.
pData | existing memory block which should be copied to the new block. | |
nNewSize | new size (in bytes) of memory block to allocate. |
const char* CPLResetExtension | ( | const char * | pszPath, | |
const char * | pszExt | |||
) |
Replace the extension with the provided one.
pszPath | the input path, this string is not altered. | |
pszExt | the new extension to apply to the given path. |
References CPLResetExtension().
Referenced by CPLResetExtension().
double CPLScanDouble | ( | const char * | pszString, | |
int | nMaxLength | |||
) |
Extract double from string.
Scan up to a maximum number of characters from a string and convert the result to a double. This function uses CPLAtof() to convert string to double value, so it uses a comma as a decimal delimiter.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to consider as part of the number. Less characters will be considered if a null character is encountered. |
References CPLAtof().
long CPLScanLong | ( | const char * | pszString, | |
int | nMaxLength | |||
) |
Scan up to a maximum number of characters from a string and convert the result to a long.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to consider as part of the number. Less characters will be considered if a null character is encountered. |
void* CPLScanPointer | ( | const char * | pszString, | |
int | nMaxLength | |||
) |
Extract pointer from string.
Scan up to a maximum number of characters from a string and convert the result to a pointer.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to consider as part of the number. Less characters will be considered if a null character is encountered. |
char* CPLScanString | ( | const char * | pszString, | |
int | nMaxLength, | |||
int | bTrimSpaces, | |||
int | bNormalize | |||
) |
Scan up to a maximum number of characters from a given string, allocate a buffer for a new string and fill it with scanned characters.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to read. Less characters will be read if a null character is encountered. | |
bTrimSpaces | If TRUE, trim ending spaces from the input string. Character considered as empty using isspace(3) function. | |
bNormalize | If TRUE, replace ':' symbol with the '_'. It is needed if resulting string will be used in CPL dictionaries. |
GUIntBig CPLScanUIntBig | ( | const char * | pszString, | |
int | nMaxLength | |||
) |
Extract big integer from string.
Scan up to a maximum number of characters from a string and convert the result to a GUIntBig.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to consider as part of the number. Less characters will be considered if a null character is encountered. |
unsigned long CPLScanULong | ( | const char * | pszString, | |
int | nMaxLength | |||
) |
Scan up to a maximum number of characters from a string and convert the result to a unsigned long.
pszString | String containing characters to be scanned. It may be terminated with a null character. | |
nMaxLength | The maximum number of character to consider as part of the number. Less characters will be considered if a null character is encountered. |
void CPLSetConfigOption | ( | const char * | pszKey, | |
const char * | pszValue | |||
) |
Set a configuration option for GDAL/OGR use.
Those options are defined as a (key, value) couple. The value corresponding to a key can be got later with the CPLGetConfigOption() method.
This mechanism is similar to environment variables, but options set with CPLSetConfigOption() overrides, for CPLGetConfigOption() point of view, values defined in the environment.
If CPLSetConfigOption() is called several times with the same key, the value provided during the last call will be used.
Options can also be passed on the command line of most GDAL utilities with the with '--config KEY VALUE'. For example, ogrinfo --config CPL_DEBUG ON ~/data/test/point.shp
pszKey | the key of the option | |
pszValue | the value of the option |
void CPLSetThreadLocalConfigOption | ( | const char * | pszKey, | |
const char * | pszValue | |||
) |
Set a configuration option for GDAL/OGR use.
Those options are defined as a (key, value) couple. The value corresponding to a key can be got later with the CPLGetConfigOption() method.
This function sets the configuration option that only applies in the current thread, as opposed to CPLSetConfigOption() which sets an option that applies on all threads.
pszKey | the key of the option | |
pszValue | the value of the option |
char* CPLStrdup | ( | const char * | pszString | ) |
Safe version of strdup() function.
This function is similar to the C library strdup() function, but if the memory allocation fails it will issue a CE_Fatal error with CPLError() instead of returning NULL. It uses VSIStrdup(), so any hooking of that function will apply to CPLStrdup() as well. Memory allocated with CPLStrdup() can be freed with CPLFree() or VSIFree().
It is also safe to pass a NULL string into CPLStrdup(). CPLStrdup() will allocate and return a zero length string (as opposed to a NULL string).
pszString | input string to be duplicated. May be NULL. |
char* CPLStrlwr | ( | char * | pszString | ) |
Convert each characters of the string to lower case.
For example, "ABcdE" will be converted to "abcde". This function is locale dependent.
pszString | input string to be converted. |
double CPLStrtod | ( | const char * | nptr, | |
char ** | endptr | |||
) |
Converts ASCII string to floating point number.
This function converts the initial portion of the string pointed to by nptr to double floating point representation. This function does the same as standard strtod(3), but does not take locale in account. That means, the decimal delimiter is always '.' (decimal point). Use CPLStrtodDelim() function if you want to specify custom delimiter. Also see notes for CPLAtof() function.
nptr | Pointer to string to convert. | |
endptr | If is not NULL, a pointer to the character after the last character used in the conversion is stored in the location referenced by endptr. |
References CPLStrtod(), and CPLStrtodDelim().
Referenced by CPLAtof(), and CPLStrtod().
double CPLStrtodDelim | ( | const char * | nptr, | |
char ** | endptr, | |||
char | point | |||
) |
Converts ASCII string to floating point number using specified delimiter.
This function converts the initial portion of the string pointed to by nptr to double floating point representation. This function does the same as standard strtod(3), but does not take locale in account. Instead of locale defined decimal delimiter you can specify your own one. Also see notes for CPLAtof() function.
nptr | Pointer to string to convert. | |
endptr | If is not NULL, a pointer to the character after the last character used in the conversion is stored in the location referenced by endptr. | |
point | Decimal delimiter. |
References CPLStrtodDelim().
Referenced by CPLAtofDelim(), CPLAtofM(), CPLStrtod(), CPLStrtodDelim(), and CPLStrtofDelim().
float CPLStrtof | ( | const char * | nptr, | |
char ** | endptr | |||
) |
Converts ASCII string to floating point number.
This function converts the initial portion of the string pointed to by nptr to single floating point representation. This function does the same as standard strtof(3), but does not take locale in account. That means, the decimal delimiter is always '.' (decimal point). Use CPLStrtofDelim() function if you want to specify custom delimiter. Also see notes for CPLAtof() function.
nptr | Pointer to string to convert. | |
endptr | If is not NULL, a pointer to the character after the last character used in the conversion is stored in the location referenced by endptr. |
References CPLStrtof(), and CPLStrtofDelim().
Referenced by CPLStrtof().
float CPLStrtofDelim | ( | const char * | nptr, | |
char ** | endptr, | |||
char | point | |||
) |
Converts ASCII string to floating point number using specified delimiter.
This function converts the initial portion of the string pointed to by nptr to single floating point representation. This function does the same as standard strtof(3), but does not take locale in account. Instead of locale defined decimal delimiter you can specify your own one. Also see notes for CPLAtof() function.
nptr | Pointer to string to convert. | |
endptr | If is not NULL, a pointer to the character after the last character used in the conversion is stored in the location referenced by endptr. | |
point | Decimal delimiter. |
References CPLStrtodDelim(), and CPLStrtofDelim().
Referenced by CPLStrtof(), and CPLStrtofDelim().
int CPLUnlinkTree | ( | const char * | pszPath | ) |
References CPLFormFilename(), VSIRmdir(), and VSIUnlink().