MagickCore  6.7.5
token.c File Reference
Include dependency graph for token.c:

Go to the source code of this file.

Data Structures

struct  _TokenInfo

Defines

#define IN_WHITE   0
#define IN_TOKEN   1
#define IN_QUOTE   2
#define IN_OZONE   3

Functions

MagickExport TokenInfoAcquireTokenInfo (void)
MagickExport TokenInfoDestroyTokenInfo (TokenInfo *token_info)
MagickExport void GetMagickToken (const char *start, const char **end, char *token)
MagickExport MagickBooleanType GlobExpression (const char *expression, const char *pattern, const MagickBooleanType case_insensitive)
MagickPrivate MagickBooleanType IsGlob (const char *path)
static ssize_t sindex (int c, const char *string)
static void StoreToken (TokenInfo *token_info, char *string, size_t max_token_length, int c)
MagickExport int Tokenizer (TokenInfo *token_info, const unsigned flag, char *token, const size_t max_token_length, const char *line, const char *white, const char *break_set, const char *quote, const char escape, char *breaker, int *next, char *quoted)

Define Documentation

#define IN_OZONE   3

Definition at line 774 of file token.c.

Referenced by Tokenizer().

#define IN_QUOTE   2

Definition at line 773 of file token.c.

Referenced by StoreToken(), and Tokenizer().

#define IN_TOKEN   1

Definition at line 772 of file token.c.

Referenced by Tokenizer().

#define IN_WHITE   0

Definition at line 771 of file token.c.

Referenced by Tokenizer().


Function Documentation

MagickExport TokenInfo* AcquireTokenInfo ( void  )
MagickExport TokenInfo* DestroyTokenInfo ( TokenInfo token_info)
MagickPrivate MagickBooleanType IsGlob ( const char *  path)

Definition at line 593 of file token.c.

References IsPathAccessible(), MagickFalse, and MagickTrue.

Referenced by InterpretImageProperties(), and ExpandFilenames().

static ssize_t sindex ( int  c,
const char *  string 
) [static]

Definition at line 776 of file token.c.

Referenced by Tokenizer().

static void StoreToken ( TokenInfo token_info,
char *  string,
size_t  max_token_length,
int  c 
) [static]

Definition at line 787 of file token.c.

References _TokenInfo::offset, _TokenInfo::state, IN_QUOTE, and _TokenInfo::flag.

Referenced by Tokenizer().

MagickExport int Tokenizer ( TokenInfo token_info,
const unsigned  flag,
char *  token,
const size_t  max_token_length,
const char *  line,
const char *  white,
const char *  break_set,
const char *  quote,
const char  escape,
char *  breaker,
int *  next,
char *  quoted 
)