#include "cpl_vsi.h"
#include "cpl_error.h"
#include "cpl_conv.h"
#include <string>
Go to the source code of this file.
Classes | |
class | CPLString |
Functions | |
int | CSLCount (char **papszStrList) |
void | CSLDestroy (char **papszStrList) |
char ** | CSLDuplicate (char **papszStrList) |
char ** | CSLMerge (char **papszOrig, char **papszOverride) |
Merge two lists. | |
char ** | CSLTokenizeString2 (const char *pszString, const char *pszDelimeter, int nCSLTFlags) |
char ** | CSLLoad (const char *pszFname) |
char ** | CSLLoad2 (const char *pszFname, int nMaxLines, int nMaxCols, char **papszOptions) |
int | CSLFindString (char **, const char *) |
int | CSLPartialFindString (char **papszHaystack, const char *pszNeedle) |
int | CSLFindName (char **papszStrList, const char *pszName) |
int | CSLTestBoolean (const char *pszValue) |
const char * | CPLParseNameValue (const char *pszNameValue, char **ppszKey) |
char ** | CSLSetNameValue (char **papszStrList, const char *pszName, const char *pszValue) |
void | CSLSetNameValueSeparator (char **papszStrList, const char *pszSeparator) |
char * | CPLEscapeString (const char *pszString, int nLength, int nScheme) |
char * | CPLUnescapeString (const char *pszString, int *pnLength, int nScheme) |
char * | CPLBinaryToHex (int nBytes, const GByte *pabyData) |
GByte * | CPLHexToBinary (const char *pszHex, int *pnBytes) |
CPLValueType | CPLGetValueType (const char *pszValue) |
size_t | CPLStrlcpy (char *pszDest, const char *pszSrc, size_t nDestSize) |
size_t | CPLStrlcat (char *pszDest, const char *pszSrc, size_t nDestSize) |
size_t | CPLStrnlen (const char *pszStr, size_t nMaxLen) |
char * | CPLRecode (const char *pszSource, const char *pszSrcEncoding, const char *pszDstEncoding) |
char * | CPLRecodeFromWChar (const wchar_t *pwszSource, const char *pszSrcEncoding, const char *pszDstEncoding) |
wchar_t * | CPLRecodeToWChar (const char *pszSource, const char *pszSrcEncoding, const char *pszDstEncoding) |
int | CPLIsUTF8 (const char *pabyData, int nLen) |
char * | CPLForceToASCII (const char *pabyData, int nLen, char chReplacementChar) |
A StringList is just an array of strings with the last pointer being NULL. An empty StringList may be either a NULL pointer, or a pointer to a pointer memory location with a NULL value.
A common convention for StringLists is to use them to store name/value lists. In this case the contents are treated like a dictionary of name/value pairs. The actual data is formatted with each string having the format "<name>:<value>" (though "=" is also an acceptable separator). A number of the functions in the file operate on name/value style string lists (such as CSLSetNameValue(), and CSLFetchNameValue()).
char* CPLBinaryToHex | ( | int | nBytes, | |
const GByte * | pabyData | |||
) |
Binary to hexadecimal translation.
nBytes | number of bytes of binary data in pabyData. | |
pabyData | array of data bytes to translate. |
char* CPLEscapeString | ( | const char * | pszInput, | |
int | nLength, | |||
int | nScheme | |||
) |
Apply escaping to string to preserve special characters.
This function will "escape" a variety of special characters to make the string suitable to embed within a string constant or to write within a text stream but in a form that can be reconstitued to it's original form. The escaping will even preserve zero bytes allowing preservation of raw binary data.
CPLES_BackslashQuotable(0): This scheme turns a binary string into a form suitable to be placed within double quotes as a string constant. The backslash, quote, '\0' and newline characters are all escaped in the usual C style.
CPLES_XML(1): This scheme converts the '<', '<' and '&' characters into their XML/HTML equivelent (>, < and &) making a string safe to embed as CDATA within an XML element. The '\0' is not escaped and should not be included in the input.
CPLES_URL(2): Everything except alphanumerics and the underscore are converted to a percent followed by a two digit hex encoding of the character (leading zero supplied if needed). This is the mechanism used for encoding values to be passed in URLs.
CPLES_SQL(3): All single quotes are replaced with two single quotes. Suitable for use when constructing literal values for SQL commands where the literal will be enclosed in single quotes.
CPLES_CSV(4): If the values contains commas, semicolons, tabs, double quotes, or newlines it placed in double quotes, and double quotes in the value are doubled. Suitable for use when constructing field values for .csv files. Note that CPLUnescapeString() currently does not support this format, only CPLEscapeString(). See cpl_csv.cpp for csv parsing support.
pszInput | the string to escape. | |
nLength | The number of bytes of data to preserve. If this is -1 the strlen(pszString) function will be used to compute the length. | |
nScheme | the encoding scheme to use. |
char* CPLForceToASCII | ( | const char * | pabyData, | |
int | nLen, | |||
char | chReplacementChar | |||
) |
Return a new string that is made only of ASCII characters. If non-ASCII characters are found in the input string, they will be replaced by the provided replacement character.
pabyData | input string to test | |
nLen | length of the input string, or -1 if the function must compute the string length. In which case it must be null terminated. | |
chReplacementChar | character which will be used when the input stream contains a non ASCII character. Must be valid ASCII ! |
CPLValueType CPLGetValueType | ( | const char * | pszValue | ) |
Detect the type of the value contained in a string, whether it is a real, an integer or a string Leading and trailing spaces are skipped in the analysis.
pszValue | the string to analyze |
GByte* CPLHexToBinary | ( | const char * | pszHex, | |
int * | pnBytes | |||
) |
Hexadecimal to binary translation
pszHex | the input hex encoded string. | |
pnBytes | the returned count of decoded bytes placed here. |
int CPLIsUTF8 | ( | const char * | pabyData, | |
int | nLen | |||
) |
Test if a string is encoded as UTF-8.
pabyData | input string to test | |
nLen | length of the input string, or -1 if the function must compute the string length. In which case it must be null terminated. |
const char* CPLParseNameValue | ( | const char * | pszNameValue, | |
char ** | ppszKey | |||
) |
Parse NAME=VALUE string into name and value components.
Note that if ppszKey is non-NULL, the key (or name) portion will be allocated using VSIMalloc(), and returned in that pointer. It is the applications responsibility to free this string, but the application should not modify or free the returned value portion.
This function also support "NAME:VALUE" strings and will strip white space from around the delimeter when forming name and value strings.
Eventually CSLFetchNameValue() and friends may be modified to use CPLParseNameValue().
pszNameValue | string in "NAME=VALUE" format. | |
ppszKey | optional pointer though which to return the name portion. |
char* CPLRecode | ( | const char * | pszSource, | |
const char * | pszSrcEncoding, | |||
const char * | pszDstEncoding | |||
) |
Convert a string from a source encoding to a destination encoding.
The only guaranteed supported encodings are CPL_ENC_UTF8, CPL_ENC_ASCII and CPL_ENC_ISO8859_1. Currently, the following conversions are supported :
If an error occurs an error may, or may not be posted with CPLError().
pszSource | a NUL terminated string. | |
pszSrcEncoding | the source encoding. | |
pszDstEncoding | the destination encoding. |
char* CPLRecodeFromWChar | ( | const wchar_t * | pwszSource, | |
const char * | pszSrcEncoding, | |||
const char * | pszDstEncoding | |||
) |
Convert wchar_t string to UTF-8.
Convert a wchar_t string into a multibyte utf-8 string. The only guaranteed supported source encoding is CPL_ENC_UCS2, and the only guaranteed supported destination encodings are CPL_ENC_UTF8, CPL_ENC_ASCII and CPL_ENC_ISO8859_1. In some cases (ie. using iconv()) other encodings may also be supported.
Note that the wchar_t type varies in size on different systems. On win32 it is normally 2 bytes, and on unix 4 bytes.
If an error occurs an error may, or may not be posted with CPLError().
pwszSource | the source wchar_t string, terminated with a 0 wchar_t. | |
pszSrcEncoding | the source encoding, typically CPL_ENC_UCS2. | |
pszDstEncoding | the destination encoding, typically CPL_ENC_UTF8. |
wchar_t* CPLRecodeToWChar | ( | const char * | pszSource, | |
const char * | pszSrcEncoding, | |||
const char * | pszDstEncoding | |||
) |
Convert UTF-8 string to a wchar_t string.
Convert a 8bit, multi-byte per character input string into a wide character (wchar_t) string. The only guaranteed supported source encodings are CPL_ENC_UTF8, CPL_ENC_ASCII and CPL_ENC_ISO8869_1 (LATIN1). The only guaranteed supported destination encoding is CPL_ENC_UCS2. Other source and destination encodings may be supported depending on the underlying implementation.
Note that the wchar_t type varies in size on different systems. On win32 it is normally 2 bytes, and on unix 4 bytes.
If an error occurs an error may, or may not be posted with CPLError().
pszSource | input multi-byte character string. | |
pszSrcEncoding | source encoding, typically CPL_ENC_UTF8. | |
pszDstEncoding | destination encoding, typically CPL_ENC_UCS2. |
size_t CPLStrlcat | ( | char * | pszDest, | |
const char * | pszSrc, | |||
size_t | nDestSize | |||
) |
Appends a source string to a destination buffer.
This function ensures that the destination buffer is always NUL terminated (provided that its length is at least 1 and that there is at least one byte free in pszDest, that is to say strlen(pszDest_before) < nDestSize)
This function is designed to be a safer, more consistent, and less error prone replacement for strncat. Its contract is identical to libbsd's strlcat.
Truncation can be detected by testing if the return value of CPLStrlcat is greater or equal to nDestSize.
char szDest[5]; CPLStrlcpy(szDest, "ab", sizeof(szDest)); if (CPLStrlcat(szDest, "cde", sizeof(szDest)) >= sizeof(szDest)) fprintf(stderr, "truncation occured !\n");
pszDest | destination buffer. Must be NUL terminated before running CPLStrlcat | |
pszSrc | source string. Must be NUL terminated | |
nDestSize | size of destination buffer (including space for the NUL terminator character) |
size_t CPLStrlcpy | ( | char * | pszDest, | |
const char * | pszSrc, | |||
size_t | nDestSize | |||
) |
Copy source string to a destination buffer.
This function ensures that the destination buffer is always NUL terminated (provided that its length is at least 1).
This function is designed to be a safer, more consistent, and less error prone replacement for strncpy. Its contract is identical to libbsd's strlcpy.
Truncation can be detected by testing if the return value of CPLStrlcpy is greater or equal to nDestSize.
char szDest[5]; if (CPLStrlcpy(szDest, "abcde", sizeof(szDest)) >= sizeof(szDest)) fprintf(stderr, "truncation occured !\n");
pszDest | destination buffer | |
pszSrc | source string. Must be NUL terminated | |
nDestSize | size of destination buffer (including space for the NUL terminator character) |
size_t CPLStrnlen | ( | const char * | pszStr, | |
size_t | nMaxLen | |||
) |
Returns the length of a NUL terminated string by reading at most the specified number of bytes.
The CPLStrnlen() function returns MIN(strlen(pszStr), nMaxLen). Only the first nMaxLen bytes of the string will be read. Usefull to test if a string contains at least nMaxLen characters without reading the full string up to the NUL terminating character.
pszStr | a NUL terminated string | |
nMaxLen | maximum number of bytes to read in pszStr |
char* CPLUnescapeString | ( | const char * | pszInput, | |
int * | pnLength, | |||
int | nScheme | |||
) |
Unescape a string.
This function does the opposite of CPLEscapeString(). Given a string with special values escaped according to some scheme, it will return a new copy of the string returned to it's original form.
pszInput | the input string. This is a zero terminated string. | |
pnLength | location to return the length of the unescaped string, which may in some cases include embedded '\0' characters. | |
nScheme | the escaped scheme to undo (see CPLEscapeString() for a list). |
int CSLCount | ( | char ** | papszStrList | ) |
Return number of items in a string list.
Returns the number of items in a string list, not counting the terminating NULL. Passing in NULL is safe, and will result in a count of zero.
Lists are counted by iterating through them so long lists will take more time than short lists. Care should be taken to avoid using CSLCount() as an end condition for loops as it will result in O(n^2) behavior.
papszStrList | the string list to count. |
void CSLDestroy | ( | char ** | papszStrList | ) |
Free string list.
Frees the passed string list (null terminated array of strings). It is safe to pass NULL.
papszStrList | the list to free. |
char** CSLDuplicate | ( | char ** | papszStrList | ) |
Clone a string list.
Efficiently allocates a copy of a string list. The returned list is owned by the caller and should be freed with CSLDestroy().
papszStrList | the input string list. |
int CSLFindName | ( | char ** | papszStrList, | |
const char * | pszName | |||
) |
Find StringList entry with given key name.
papszStrList | the string list to search. | |
pszName | the key value to look for (case insensitive). |
int CSLFindString | ( | char ** | papszList, | |
const char * | pszTarget | |||
) |
Find a string within a string list.
Returns the index of the entry in the string list that contains the target string. The string in the string list must be a full match for the target, but the search is case insensitive.
papszList | the string list to be searched. | |
pszTarget | the string to be searched for. |
char** CSLLoad | ( | const char * | pszFname | ) |
Load a text file into a string list.
The VSI*L API is used, so VSIFOpenL() supported objects that aren't physical files can also be accessed. Files are returned as a string list, with one item in the string list per line. End of line markers are stripped (by CPLReadLineL()).
If reading the file fails a CPLError() will be issued and NULL returned.
pszFname | the name of the file to read. |
char** CSLLoad2 | ( | const char * | pszFname, | |
int | nMaxLines, | |||
int | nMaxCols, | |||
char ** | papszOptions | |||
) |
Load a text file into a string list.
The VSI*L API is used, so VSIFOpenL() supported objects that aren't physical files can also be accessed. Files are returned as a string list, with one item in the string list per line. End of line markers are stripped (by CPLReadLineL()).
If reading the file fails a CPLError() will be issued and NULL returned.
pszFname | the name of the file to read. | |
nMaxLines | maximum number of lines to read before stopping, or -1 for no limit. | |
nMaxCols | maximum number of characters in a line before stopping, or -1 for no limit. | |
papszOptions | NULL-terminated array of options. Unused for now. |
References VSIFCloseL(), VSIFEofL(), and VSIFOpenL().
char** CSLMerge | ( | char ** | papszOrig, | |
char ** | papszOverride | |||
) |
Merge two lists.
The two lists are merged, ensuring that if any keys appear in both that the value from the second (papszOverride) list take precidence.
papszOrig | the original list, being modified. | |
papszOverride | the list of items being merged in. This list is unaltered and remains owned by the caller. |
int CSLPartialFindString | ( | char ** | papszHaystack, | |
const char * | pszNeedle | |||
) |
Find a substring within a string list.
Returns the index of the entry in the string list that contains the target string as a substring. The search is case sensitive (unlike CSLFindString()).
papszHaystack | the string list to be searched. | |
pszNeedle | the substring to be searched for. |
char** CSLSetNameValue | ( | char ** | papszList, | |
const char * | pszName, | |||
const char * | pszValue | |||
) |
Assign value to name in StringList.
Set the value for a given name in a StringList of "Name=Value" pairs ("Name:Value" pairs are also supported for backward compatibility with older stuff.)
If there is already a value for that name in the list then the value is changed, otherwise a new "Name=Value" pair is added.
papszList | the original list, the modified version is returned. | |
pszName | the name to be assigned a value. This should be a well formed token (no spaces or very special characters). | |
pszValue | the value to assign to the name. This should not contain any newlines (CR or LF) but is otherwise pretty much unconstrained. If NULL any corresponding value will be removed. |
void CSLSetNameValueSeparator | ( | char ** | papszList, | |
const char * | pszSeparator | |||
) |
Replace the default separator (":" or "=") with the passed separator in the given name/value list.
Note that if a separator other than ":" or "=" is used, the resulting list will not be manipulatable by the CSL name/value functions any more.
The CPLParseNameValue() function is used to break the existing lines, and it also strips white space from around the existing delimiter, thus the old separator, and any white space will be replaced by the new separator. For formatting purposes it may be desireable to include some white space in the new separator. eg. ": " or " = ".
papszList | the list to update. Component strings may be freed but the list array will remain at the same location. | |
pszSeparator | the new separator string to insert. |
int CSLTestBoolean | ( | const char * | pszValue | ) |
Test what boolean value contained in the string.
If pszValue is "NO", "FALSE", "OFF" or "0" will be returned FALSE. Otherwise, TRUE will be returned.
pszValue | the string should be tested. |
char** CSLTokenizeString2 | ( | const char * | pszString, | |
const char * | pszDelimiters, | |||
int | nCSLTFlags | |||
) |
Tokenize a string.
This function will split a string into tokens based on specified' delimeter(s) with a variety of options. The returned result is a string list that should be freed with CSLDestroy() when no longer needed.
The available parsing options are:
Example:
Parse a string into tokens based on various white space (space, newline, tab) and then print out results and cleanup. Quotes may be used to hold white space in tokens.
char **papszTokens; int i; papszTokens = CSLTokenizeString2( pszCommand, " \t\n", CSLT_HONOURSTRINGS | CSLT_ALLOWEMPTYTOKENS ); for( i = 0; papszTokens != NULL && papszTokens[i] != NULL; i++ ) printf( "arg %d: '%s'", papszTokens[i] ); CSLDestroy( papszTokens );
pszString | the string to be split into tokens. | |
pszDelimiters | one or more characters to be used as token delimeters. | |
nCSLTFlags | an ORing of one or more of the CSLT_ flag values. |