Mercurial > hg > Applications > Grep
view regexParser/regexParser.h @ 180:d97bcab546e8 pairPro
implement getNext
author | Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 24 Dec 2015 17:56:28 +0900 |
parents | 5e8c6857934c |
children | 7ae0a3070647 |
line wrap: on
line source
#include "error.h" #define NEW(type) (type*)malloc(sizeof(type)) #define SYNTAX_NODENUMBER 100 typedef struct bitVector { unsigned long bitContainer; }BitVector,*BitVectorPtr; typedef struct word { unsigned char *word; int length; } 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; BitVector nextState; } CharClass, *CharClassPtr; typedef struct node { unsigned char tokenType; unsigned long nodeNumber; CharClassPtr cc; struct node *left; struct node *right; } Node, *NodePtr; typedef struct regexInfo { unsigned char *ptr; unsigned char tokenType; unsigned char *tokenValue; int stateNumber; } RegexInfo, *RegexInfoPtr; CharClassPtr createCharClassRange(unsigned long begin, unsigned long end, CharClassPtr left, CharClassPtr right);