Functions
stringop.c File Reference

String operations - Definition. More...

#include "stringop.h"
#include <string.h>
#include <ctype.h>
Include dependency graph for stringop.c:

Go to the source code of this file.

Functions

VL_EXPORT VlEnumeratorvl_enumeration_get (VlEnumerator const *enumeration, char const *name)
 Get a member of an enumeration by name.
VL_EXPORT VlEnumeratorvl_enumeration_get_by_value (VlEnumerator const *enumeration, vl_index value)
 Get a member of an enumeration by value.
VL_EXPORT VlEnumeratorvl_enumeration_get_casei (VlEnumerator const *enumeration, char const *name)
 Get a member of an enumeration by name (case insensitive)
VL_EXPORT vl_size vl_string_basename (char *destination, vl_size destinationSize, char const *source, vl_size maxNumStrippedExtensions)
 Extract base of file name.
VL_EXPORT int vl_string_casei_cmp (const char *string1, const char *string2)
 Compare strings case-insensitive.
VL_EXPORT vl_size vl_string_copy (char *destination, vl_size destinationSize, char const *source)
 Copy string.
VL_EXPORT vl_size vl_string_copy_sub (char *destination, vl_size destinationSize, char const *beginning, char const *end)
 Copy substring.
VL_EXPORT char * vl_string_find_char_rev (char const *beginning, char const *end, char c)
 Search character in reversed order.
VL_EXPORT vl_size vl_string_length (char const *string)
 Calculate string length.
VL_EXPORT char * vl_string_parse_protocol (char const *string, int *protocol)
 Extract the protocol prefix from a string.
VL_EXPORT char const * vl_string_protocol_name (int protocol)
 Get protocol name.
VL_EXPORT vl_size vl_string_replace_wildcard (char *destination, vl_size destinationSize, char const *source, char wildcardChar, char escapeChar, char const *replacement)
 Replace wildcard characters by a string.

Detailed Description

String operations - Definition.

Author:
Andrea Vedaldi

Definition in file stringop.c.


Function Documentation

VL_EXPORT VlEnumerator* vl_enumeration_get ( VlEnumerator const *  enumeration,
char const *  name 
)

Get a member of an enumeration by name.

Parameters:
enumerationarray of VlEnumerator objects.
namethe name of the desired member.
Returns:
enumerator matching name.

If name is not found in the enumeration, then the value NULL is returned.

See also:
vl-stringop-enumeration

Definition at line 409 of file stringop.c.

VL_EXPORT VlEnumerator* vl_enumeration_get_by_value ( VlEnumerator const *  enumeration,
vl_index  value 
)

Get a member of an enumeration by value.

Parameters:
enumerationarray of VlEnumerator objects.
valuevalue of the desired member.
Returns:
enumerator matching value.

If value is not found in the enumeration, then the value NULL is returned.

See also:
vl-stringop-enumeration

Definition at line 453 of file stringop.c.

VL_EXPORT VlEnumerator* vl_enumeration_get_casei ( VlEnumerator const *  enumeration,
char const *  name 
)

Get a member of an enumeration by name (case insensitive)

Parameters:
enumerationarray of VlEnumerator objects.
namethe name of the desired member.
Returns:
enumerator matching name.

If name is not found in the enumeration, then the value NULL is returned. string is matched case insensitive.

See also:
vl-stringop-enumeration

Definition at line 431 of file stringop.c.

VL_EXPORT vl_size vl_string_basename ( char *  destination,
vl_size  destinationSize,
char const *  source,
vl_size  maxNumStrippedExtensions 
)

Extract base of file name.

------------------------------------------------------------------

Parameters:
destinationdestination buffer.
destinationSizesize of destination buffer.
sourceinput string.
maxNumStrippedExtensionsmaximum number of extensions to strip.
Returns:
length of the destination string.

The function removes the leading path and up to maxNumStrippedExtensions trailing extensions from the string source and writes the result to the buffer destination.

The leading path is the longest suffix that ends with either the \ or / characters. An extension is a string starting with the . character not containing it. For instance, the string file.png contains the extension .png and the string file.tar.gz contains two extensions (.tar and .gz).

See also:
Detecting overflow.

Definition at line 163 of file stringop.c.

VL_EXPORT int vl_string_casei_cmp ( const char *  string1,
const char *  string2 
)

Compare strings case-insensitive.

------------------------------------------------------------------

Parameters:
string1fisrt string.
string2second string.
Returns:
an integer =,<,> 0 if string1 =,<,> string2

Definition at line 377 of file stringop.c.

VL_EXPORT vl_size vl_string_copy ( char *  destination,
vl_size  destinationSize,
char const *  source 
)

Copy string.

------------------------------------------------------------------

Parameters:
destinationoutput buffer.
destinationSizesize of the output buffer.
sourcestring to copy.
Returns:
length of the source string.

The function copies the string source to the buffer destination of size destinationSize.

See also:
Detecting overflow.

Definition at line 274 of file stringop.c.

VL_EXPORT vl_size vl_string_copy_sub ( char *  destination,
vl_size  destinationSize,
char const *  beginning,
char const *  end 
)

Copy substring.

------------------------------------------------------------------

Parameters:
destinationoutput buffer.
destinationSizesize of output buffer.
beginningstart of the substring.
endend of the substring.
Returns:
length of the destination string.

The function copies the substring from at beginning to end (not included) to the buffer destination of size destinationSize. If, however, the null character is found before end, the substring terminates there.

See also:
Detecting overflow.

Definition at line 311 of file stringop.c.

VL_EXPORT char* vl_string_find_char_rev ( char const *  beginning,
char const *  end,
char  c 
)

Search character in reversed order.

------------------------------------------------------------------

Parameters:
beginningpointer to the substring beginning.
endpointer to the substring end.
ccharacter to search for.
Returns:
pointer to last occurrence of c, or 0 if none.

The function searches for the last occurrence of the character c in the substring from beg to end (the latter not being included).

Definition at line 345 of file stringop.c.

VL_EXPORT vl_size vl_string_length ( char const *  string)

Calculate string length.

------------------------------------------------------------------

Parameters:
stringstring.
Returns:
string length.

Definition at line 362 of file stringop.c.

VL_EXPORT char* vl_string_parse_protocol ( char const *  string,
int *  protocol 
)

Extract the protocol prefix from a string.

------------------------------------------------------------------

Parameters:
stringstring.
protocolprotocol code (output).
Returns:
pointer to the first character after the protocol prefix.

The function extracts the prefix of the string string terminated by the first occurrence of the :// substring (if any). It then matches the suffix terminated by :// to the supported File protocols protocols. If protocol is not NULL, the corresponding protocol code is written to protocol

The function writes to protocol the value VL_PROT_NONE if no suffix is detected and VL_PROT_UNKNOWN if there is a suffix but it cannot be matched to any of the supported protocols.

Definition at line 83 of file stringop.c.

VL_EXPORT char const* vl_string_protocol_name ( int  protocol)

Get protocol name.

------------------------------------------------------------------

Parameters:
protocolprotocol code.
Returns:
pointer protocol name string.

The function returns a pointer to a string containing the name of the protocol protocol (see the vl-file-protocols protocols list). If the protocol is unknown the function returns the empty string.

Definition at line 126 of file stringop.c.

VL_EXPORT vl_size vl_string_replace_wildcard ( char *  destination,
vl_size  destinationSize,
char const *  source,
char  wildcardChar,
char  escapeChar,
char const *  replacement 
)

Replace wildcard characters by a string.

------------------------------------------------------------------

Parameters:
destinationoutput buffer.
destinationSizesize of the output buffer.
sourceinput string.
wildcardCharwildcard character.
escapeCharescape character.
replacementreplacement string.

The function replaces the occurrence of the specified wildcard character wildcardChar by the string replacement. The result is written to the buffer destination of size destinationSize.

Wildcard characters may be escaped by preceding them by the esc character. More in general, anything following an occurrence of esc character is copied verbatim. To disable the escape characters simply set esc to 0.

Returns:
length of the result.
See also:
Detecting overflow.

Definition at line 214 of file stringop.c.



libvlfeat
Author(s): Andrea Vedaldi
autogenerated on Thu Jun 6 2019 20:25:52