Mercurial > hg > Members > masakoha > testcode
view regexParser/regexParser.h @ 272:5aa9d01926f1
Cerium version no compile errors
author | kono |
---|---|
date | Fri, 29 Jan 2016 20:38:18 +0900 |
parents | 6640b0d5bf13 |
children | b74e3b4b11d7 |
line wrap: on
line source
#define NEW(type) (type*)malloc(sizeof(type)) #ifndef INCLUDED_STRUCT #define INCLUDED_STRUCT #define BITBLOCK 64 typedef struct bitVector { unsigned long bitContainer; } BitVector,*BitVectorPtr; typedef struct word { unsigned char *word; int length; // look up table for BM search. // BitVector nextState; // struct word *next; } Word, *WordPtr; typedef struct utf8Range { unsigned long begin; unsigned long end; struct utf8Range *next; // only used in the parser. } RangeList , *RangeListPtr; typedef struct condition { RangeList range; Word w; } Condition, *ConditionList; typedef struct charClass { unsigned char type; struct charClass *left; struct charClass *right; Condition cond; int stateNum; BitVector nextState; } CharClass, *CharClassPtr; struct node; typedef struct state { int stateNum; BitVector bitState; CharClassPtr cc; bool accept; struct tState *tState; struct node *node; struct state *next; } State, *StatePtr; struct tsValue; typedef struct ccv { unsigned long begin; unsigned long end; Word w; BitVector state; struct tState *tState; } CCV,*CCVPtr; typedef struct tState { State *state; tsValue (*stateSkip)(tsValue); tsValue (*stateContinue)(tsValue); int ccvSize; CCVPtr ccv; } TState, *TStatePtr; typedef struct result { unsigned char *begin; unsigned char *end; struct result *next; } Result, *ResultPtr; typedef struct node { unsigned char tokenType; CharClassPtr cc; int stateNum; int nextStateNum; StatePtr state; StatePtr nextState; struct node *left; struct node *right; } Node, *NodePtr; typedef struct stateStack { BitVector state; struct stateStack *next; } StateStack, *StateStackPtr; typedef struct transitionGenerator { long totalStateCount; long totalBasicState; StateStackPtr stack; StatePtr stateEnd; StatePtr *stateArray; StatePtr stateList; StatePtr anyState; tsValue (*stateSkip)(tsValue tsv); tsValue (*stateMatch)(tsValue tsv); tsValue (*stateNothing)(tsValue tsv); } TransitionGenerator, *TransitionGeneratorPtr; typedef struct buffer { unsigned char *buff; unsigned char *buffptr; unsigned char *buffend; unsigned char *matchBegin; } Buffer, *BufferPtr; typedef struct tsValue { Buffer buff; ResultPtr result; ResultPtr *resultEnd; TransitionGeneratorPtr tg; TState *current; TState *blockBegin; TState *blockEnd; } TSValue, *TSValuePtr; typedef struct tgValue { StatePtr asterisk; // last * state of the expression StatePtr startState; StatePtr endState; TransitionGeneratorPtr tg; } TGValue, *TGValuePtr; enum charClassStackState { LEFT, SELF, RIGHT }; typedef struct charClassStack { charClassStackState turn; CharClassPtr cc; struct charClassStack *next; } CharClassStack, *CharClassStackPtr; typedef struct charClassWalker { CharClassStackPtr stack; charClassStackState turn; CharClassPtr next; } CharClassWalker, *CharClassWalkerPtr; typedef struct regexInfo { unsigned char *ptr; unsigned char tokenType; unsigned char *tokenValue; int stateNumber; } RegexInfo, *RegexInfoPtr; typedef struct { unsigned char* file_mmap; unsigned long size; } st_mmap_t; typedef struct search { TransitionGeneratorPtr tg; const char* filename; } Search, *SearchPtr; #endif extern NodePtr createNode(RegexInfoPtr ri,unsigned char type,CharClassPtr cc, NodePtr left, NodePtr right); extern CharClassPtr createCharClassRange(unsigned long begin, unsigned long end,unsigned long state, CharClassPtr left, CharClassPtr right); extern NodePtr regex(RegexInfoPtr);