OGR
Public Member Functions | List of all members
CPLStringList Class Reference

String list class designed around our use of C "char**" string lists. More...

#include <cpl_string.h>

Public Member Functions

 CPLStringList (char **papszList, int bTakeOwnership=TRUE)
 
 CPLStringList (const CPLStringList &oOther)
 Copy constructor.
 
CPLStringListClear ()
 
int size () const
 
int Count () const
 
bool empty () const
 
CPLStringListAddString (const char *pszNewString)
 
CPLStringListAddStringDirectly (char *pszNewString)
 
CPLStringListInsertString (int nInsertAtLineNo, const char *pszNewLine)
 Insert into the list at identified location. More...
 
CPLStringListInsertStringDirectly (int nInsertAtLineNo, char *pszNewLine)
 
int FindString (const char *pszTarget) const
 
int PartialFindString (const char *pszNeedle) const
 
int FindName (const char *pszName) const
 
bool FetchBool (const char *pszKey, bool bDefault) const
 
int FetchBoolean (const char *pszKey, int bDefault) const
 
const char * FetchNameValue (const char *pszKey) const
 
const char * FetchNameValueDef (const char *pszKey, const char *pszDefault) const
 
CPLStringListAddNameValue (const char *pszKey, const char *pszValue)
 
CPLStringListSetNameValue (const char *pszKey, const char *pszValue)
 
CPLStringListAssign (char **papszListIn, int bTakeOwnership=TRUE)
 
CPLStringListoperator= (char **papszListIn)
 
CPLStringListoperator= (const CPLStringList &oOther)
 
char * operator[] (int i)
 
char * operator[] (size_t i)
 
const char * operator[] (int i) const
 
const char * operator[] (size_t i) const
 
char ** List ()
 
char ** StealList ()
 
CPLStringListSort ()
 
int IsSorted () const
 
 operator char ** (void)
 

Detailed Description

String list class designed around our use of C "char**" string lists.

Constructor & Destructor Documentation

◆ CPLStringList()

CPLStringList::CPLStringList ( char **  papszListIn,
int  bTakeOwnership = TRUE 
)

CPLStringList constructor.

Parameters
papszListInthe NULL terminated list of strings to consume.
bTakeOwnershipTRUE if the CPLStringList should take ownership of the list of strings which implies responsibility to free them.

References Assign().

Member Function Documentation

◆ AddNameValue()

CPLStringList & CPLStringList::AddNameValue ( const char *  pszKey,
const char *  pszValue 
)

Add a name=value entry to the list.

A key=value string is prepared and appended to the list. There is no check for other values for the same key in the list.

Parameters
pszKeythe key name to add.
pszValuethe key value to add.

References AddStringDirectly(), CPLAssert, CPLMalloc(), InsertStringDirectly(), and IsSorted().

Referenced by SetNameValue().

◆ AddString()

CPLStringList & CPLStringList::AddString ( const char *  pszNewString)

Add a string to the list.

A copy of the passed in string is made and inserted in the list.

Parameters
pszNewStringthe string to add to the list.

References AddStringDirectly(), and CPLStrdup().

Referenced by CSLTokenizeString2(), GOA2GetAccessToken(), GOA2GetRefreshToken(), and VSIReadDirRecursive().

◆ AddStringDirectly()

CPLStringList & CPLStringList::AddStringDirectly ( char *  pszNewString)

Add a string to the list.

This method is similar to AddString(), but ownership of the pszNewString is transferred to the CPLStringList class.

Parameters
pszNewStringthe string to add to the list.

References Count().

Referenced by AddNameValue(), and AddString().

◆ Assign()

CPLStringList & CPLStringList::Assign ( char **  papszListIn,
int  bTakeOwnership = TRUE 
)

Assign a list of strings.

Parameters
papszListInthe NULL terminated list of strings to consume.
bTakeOwnershipTRUE if the CPLStringList should take ownership of the list of strings which implies responsibility to free them.
Returns
a reference to the CPLStringList on which it was invoked.

References Clear().

Referenced by CPLStringList(), CSLTokenizeString2(), and operator=().

◆ Clear()

CPLStringList & CPLStringList::Clear ( )

Clear the string list.

References CSLDestroy().

Referenced by Assign().

◆ Count()

int CPLStringList::Count ( ) const
Returns
count of strings in the list, zero if empty.

References CSLCount().

Referenced by AddStringDirectly(), CSLTokenizeString2(), InsertStringDirectly(), operator[](), SetNameValue(), and Sort().

◆ empty()

bool CPLStringList::empty ( ) const
inline

Return whether the list is empty.

◆ FetchBool()

bool CPLStringList::FetchBool ( const char *  pszKey,
bool  bDefault 
) const

Check for boolean key value.

In a CPLStringList of "Name=Value" pairs, look to see if there is a key with the given name, and if it can be interpreted as being TRUE. If the key appears without any "=Value" portion it will be considered true. If the value is NO, FALSE or 0 it will be considered FALSE otherwise if the key appears in the list it will be considered TRUE. If the key doesn't appear at all, the indicated default value will be returned.

Parameters
pszKeythe key value to look for (case insensitive).
bDefaultthe value to return if the key isn't found at all.
Returns
true or false

References CPLTestBool(), and FetchNameValue().

Referenced by FetchBoolean().

◆ FetchBoolean()

int CPLStringList::FetchBoolean ( const char *  pszKey,
int  bDefault 
) const

DEPRECATED: Check for boolean key value.

In a CPLStringList of "Name=Value" pairs, look to see if there is a key with the given name, and if it can be interpreted as being TRUE. If the key appears without any "=Value" portion it will be considered true. If the value is NO, FALSE or 0 it will be considered FALSE otherwise if the key appears in the list it will be considered TRUE. If the key doesn't appear at all, the indicated default value will be returned.

Parameters
pszKeythe key value to look for (case insensitive).
bDefaultthe value to return if the key isn't found at all.
Returns
TRUE or FALSE

References FetchBool().

◆ FetchNameValue()

const char * CPLStringList::FetchNameValue ( const char *  pszName) const

Fetch value associated with this key name.

If this list sorted, a fast binary search is done, otherwise a linear scan is done. Name lookup is case insensitive.

Parameters
pszNamethe key name to search for.
Returns
the corresponding value or NULL if not found. The returned string should not be modified and points into internal object state that may change on future calls.

References CPLAssert, and FindName().

Referenced by FetchBool(), and FetchNameValueDef().

◆ FetchNameValueDef()

const char * CPLStringList::FetchNameValueDef ( const char *  pszName,
const char *  pszDefault 
) const

Fetch value associated with this key name.

If this list sorted, a fast binary search is done, otherwise a linear scan is done. Name lookup is case insensitive.

Parameters
pszNamethe key name to search for.
pszDefaultthe default value returned if the named entry isn't found.
Returns
the corresponding value or the passed default if not found.

References FetchNameValue().

◆ FindName()

int CPLStringList::FindName ( const char *  pszKey) const

Get index of given name/value keyword.

Note that this search is for a line in the form name=value or name:value. Use FindString() or PartialFindString() for searches not based on name=value pairs.

Parameters
pszKeythe name to search for.
Returns
the string list index of this name, or -1 on failure.

References CSLFindName(), EQUALN, and IsSorted().

Referenced by FetchNameValue(), and SetNameValue().

◆ FindString()

int CPLStringList::FindString ( const char *  pszTarget) const
inline

Return index of pszTarget in the list, or -1

References CSLFindString().

◆ InsertString()

CPLStringList * CPLStringList::InsertString ( int  nInsertAtLineNo,
const char *  pszNewLine 
)
inline

Insert into the list at identified location.

This method will insert a string into the list at the identified location. The insertion point must be within or at the end of the list. The following entries are pushed down to make space.

Parameters
nInsertAtLineNothe line to insert at, zero to insert at front.
pszNewLineto the line to insert. This string will be copied.

References CPLStrdup().

◆ InsertStringDirectly()

CPLStringList & CPLStringList::InsertStringDirectly ( int  nInsertAtLineNo,
char *  pszNewLine 
)

Insert into the list at identified location.

This method will insert a string into the list at the identified location. The insertion point must be within or at the end of the list. The following entries are pushed down to make space.

Parameters
nInsertAtLineNothe line to insert at, zero to insert at front.
pszNewLineto the line to insert, the ownership of this string will be taken over the by the object. It must have been allocated on the heap.

References Count(), and CPLError().

Referenced by AddNameValue().

◆ IsSorted()

int CPLStringList::IsSorted ( ) const
inline

Returns whether the list is sorted

Referenced by AddNameValue(), and FindName().

◆ List()

char** CPLStringList::List ( )
inline

Return list. Ownership remains to the object

Referenced by CSLTokenizeString2().

◆ operator char **()

CPLStringList::operator char ** ( void  )
inline

Return lists

◆ operator=() [1/2]

CPLStringList& CPLStringList::operator= ( char **  papszListIn)
inline

Assignment operator

◆ operator=() [2/2]

CPLStringList & CPLStringList::operator= ( const CPLStringList oOther)

Assignment operator

References Assign().

◆ operator[]() [1/4]

char * CPLStringList::operator[] ( int  i)

Return string at specified index

Fetch entry "i".

Fetches the requested item in the list. Note that the returned string remains owned by the CPLStringList. If "i" is out of range NULL is returned.

Parameters
ithe index of the list item to return.
Returns
selected entry in the list.

References Count().

◆ operator[]() [2/4]

char* CPLStringList::operator[] ( size_t  i)
inline

Return string at specified index

◆ operator[]() [3/4]

const char * CPLStringList::operator[] ( int  i) const

Return string at specified index

References Count().

◆ operator[]() [4/4]

const char* CPLStringList::operator[] ( size_t  i) const
inline

Return string at specified index

◆ PartialFindString()

int CPLStringList::PartialFindString ( const char *  pszNeedle) const
inline

Return index of pszTarget in the list (using partial search), or -1

References CSLPartialFindString().

◆ SetNameValue()

CPLStringList & CPLStringList::SetNameValue ( const char *  pszKey,
const char *  pszValue 
)

Set name=value entry in the list.

Similar to AddNameValue(), except if there is already a value for the key in the list it is replaced instead of adding a new entry to the list. If pszValue is NULL any existing key entry is removed.

Parameters
pszKeythe key name to add.
pszValuethe key value to add.

References AddNameValue(), Count(), CPLFree, CPLMalloc(), and FindName().

◆ size()

int CPLStringList::size ( ) const
inline

Return size of list

◆ Sort()

CPLStringList & CPLStringList::Sort ( )

Sort the entries in the list and mark list sorted.

Note that once put into "sorted" mode, the CPLStringList will attempt to keep things in sorted order through calls to AddString(), AddStringDirectly(), AddNameValue(), SetNameValue(). Complete list assignments (via Assign() and operator= will clear the sorting state. When in sorted order FindName(), FetchNameValue() and FetchNameValueDef() will do a binary search to find the key, substantially improve lookup performance in large lists.

References Count().

◆ StealList()

char ** CPLStringList::StealList ( )

Seize ownership of underlying string array.

This method is similar to List(), except that the returned list is now owned by the caller and the CPLStringList is emptied.

Returns
the C style string list.

Referenced by CSLTokenizeString2(), and VSIReadDirRecursive().


The documentation for this class was generated from the following files:

Generated for GDAL by doxygen 1.8.14.