2008-01-08 14:52:32 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Eliot
|
|
|
|
* Copyright (C) 1999-2006 Antoine Fraboulet
|
|
|
|
* Authors: Antoine Fraboulet <antoine.fraboulet @@ free.fr>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*****************************************************************************/
|
2005-04-19 18:26:50 +02:00
|
|
|
|
|
|
|
/**
|
2005-11-05 18:56:22 +01:00
|
|
|
* \file regexp.h
|
2006-01-01 20:51:00 +01:00
|
|
|
* \brief Regular Expression functions
|
2005-04-19 18:26:50 +02:00
|
|
|
* \author Antoine Fraboulet
|
|
|
|
* \date 2005
|
2004-06-20 22:13:59 +02:00
|
|
|
*/
|
2005-04-19 18:26:50 +02:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
#ifndef _REGEXP_H_
|
|
|
|
#define _REGEXP_H_
|
2004-06-20 22:13:59 +02:00
|
|
|
|
|
|
|
#define NODE_TOP 0
|
|
|
|
#define NODE_VAR 1
|
|
|
|
#define NODE_OR 2
|
|
|
|
#define NODE_AND 3
|
|
|
|
#define NODE_STAR 4
|
2005-04-25 10:18:24 +02:00
|
|
|
#define NODE_PLUS 5
|
2004-06-20 22:13:59 +02:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
|
|
|
|
typedef struct node
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
char var;
|
|
|
|
struct node *fg;
|
|
|
|
struct node *fd;
|
|
|
|
int number;
|
|
|
|
int position;
|
|
|
|
int annulable;
|
|
|
|
int PP;
|
|
|
|
int DP;
|
2004-06-20 22:13:59 +02:00
|
|
|
} NODE;
|
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
/**
|
|
|
|
* different letters in the dictionary
|
|
|
|
*/
|
|
|
|
#define DIC_LETTERS 27
|
|
|
|
|
2005-04-27 19:35:03 +02:00
|
|
|
/**
|
|
|
|
* maximum number of accepted terminals in regular expressions
|
|
|
|
*/
|
2005-11-04 21:00:05 +01:00
|
|
|
#define REGEXP_MAX 32
|
2005-04-09 21:16:09 +02:00
|
|
|
|
2005-11-04 21:00:05 +01:00
|
|
|
/**
|
|
|
|
* special terminals that should not appear in the dictionary
|
2005-04-27 19:35:03 +02:00
|
|
|
*/
|
2005-05-06 01:45:04 +02:00
|
|
|
#define RE_EPSILON (DIC_LETTERS + 0)
|
2005-04-27 19:35:03 +02:00
|
|
|
#define RE_FINAL_TOK (DIC_LETTERS + 1)
|
|
|
|
#define RE_ALL_MATCH (DIC_LETTERS + 2)
|
|
|
|
#define RE_VOWL_MATCH (DIC_LETTERS + 3)
|
|
|
|
#define RE_CONS_MATCH (DIC_LETTERS + 4)
|
|
|
|
#define RE_USR1_MATCH (DIC_LETTERS + 5)
|
|
|
|
#define RE_USR2_MATCH (DIC_LETTERS + 6)
|
2005-11-04 21:00:05 +01:00
|
|
|
|
|
|
|
/**
|
2005-04-27 19:35:03 +02:00
|
|
|
* number of lists for regexp letter match \n
|
|
|
|
* 0 : all tiles \n
|
|
|
|
* 1 : vowels \n
|
|
|
|
* 2 : consonants \n
|
|
|
|
* 3 : user defined 1 \n
|
|
|
|
* 4 : user defined 2 \n
|
|
|
|
* x : lists used during parsing \n
|
|
|
|
*/
|
|
|
|
#define DIC_SEARCH_REGE_LIST (REGEXP_MAX)
|
2005-04-18 19:40:36 +02:00
|
|
|
|
2005-11-04 21:00:05 +01:00
|
|
|
/**
|
2005-04-27 19:35:03 +02:00
|
|
|
* Structure used for Dic_search_RegE \n
|
2005-11-04 21:00:05 +01:00
|
|
|
* this structure is used to explicit letters list that will be matched
|
2005-04-27 19:35:03 +02:00
|
|
|
* against special tokens in the regular expression search
|
|
|
|
*/
|
|
|
|
struct search_RegE_list_t {
|
2005-11-05 18:56:22 +01:00
|
|
|
/** maximum length for results */
|
|
|
|
int minlength;
|
|
|
|
/** maximum length for results */
|
|
|
|
int maxlength;
|
2005-04-27 19:35:03 +02:00
|
|
|
/** special symbol associated with the list */
|
2005-11-04 21:00:05 +01:00
|
|
|
char symbl[DIC_SEARCH_REGE_LIST];
|
2005-04-27 19:35:03 +02:00
|
|
|
/** 0 or 1 if list is valid */
|
2005-11-04 21:00:05 +01:00
|
|
|
int valid[DIC_SEARCH_REGE_LIST];
|
2005-04-27 19:35:03 +02:00
|
|
|
/** 0 or 1 if letter is present in the list */
|
2005-11-04 21:00:05 +01:00
|
|
|
char letters[DIC_SEARCH_REGE_LIST][DIC_LETTERS];
|
2005-04-27 19:35:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define RE_LIST_ALL_MATCH 0
|
|
|
|
#define RE_LIST_VOYL_MATCH 1
|
|
|
|
#define RE_LIST_CONS_MATCH 2
|
|
|
|
#define RE_LIST_USER_BEGIN 3
|
|
|
|
#define RE_LIST_USER_END 4
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a node for the syntactic tree used for
|
|
|
|
* parsing regular expressions \n
|
|
|
|
* The fonction is called by bison grammar rules
|
|
|
|
*/
|
2005-04-19 18:26:50 +02:00
|
|
|
NODE* regexp_createNODE(int type,char v,NODE *fg,NODE *fd);
|
2005-11-04 21:00:05 +01:00
|
|
|
|
2005-04-27 19:35:03 +02:00
|
|
|
/**
|
|
|
|
* delete regexp syntactic tree
|
|
|
|
*/
|
2005-04-19 18:26:50 +02:00
|
|
|
void regexp_delete_tree(NODE * root);
|
2005-04-16 22:55:51 +02:00
|
|
|
|
2005-04-27 19:35:03 +02:00
|
|
|
/**
|
|
|
|
* Computes positions, first positions (PP), last position (DP)
|
|
|
|
* and translation table 'position to letter' (ptl)
|
|
|
|
* @param p : max position found in the tree (must be initialized to 1)
|
|
|
|
* @param n : number of nodes in the tree (must be initialized to 1)
|
|
|
|
* @param ptl : position to letter translation table
|
|
|
|
*/
|
2005-04-19 18:26:50 +02:00
|
|
|
void regexp_parcours(NODE* r, int *p, int *n, int ptl[]);
|
2005-04-27 19:35:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Computes 'next position' table used for building the
|
|
|
|
* automaton
|
|
|
|
* @param r : root node of the syntactic tree
|
|
|
|
* @param PS : next position table, PS[0] must contain the
|
|
|
|
* number of terminals contained in the regular expression
|
|
|
|
*/
|
2005-04-19 18:26:50 +02:00
|
|
|
void regexp_possuivante(NODE* r, int PS[]);
|
2005-04-09 21:16:09 +02:00
|
|
|
|
2005-04-27 19:35:03 +02:00
|
|
|
#define MAX_REGEXP_ERROR_LENGTH 500
|
|
|
|
|
|
|
|
struct regexp_error_report_t {
|
|
|
|
int pos1;
|
|
|
|
int pos2;
|
|
|
|
char msg[MAX_REGEXP_ERROR_LENGTH];
|
|
|
|
};
|
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
#include <cstdio>
|
2005-04-09 21:16:09 +02:00
|
|
|
|
2005-04-19 18:26:50 +02:00
|
|
|
void regexp_print_letter(FILE* f, char l);
|
2005-04-27 19:35:03 +02:00
|
|
|
void regexp_print_letter2(FILE* f, char l);
|
2005-04-19 18:26:50 +02:00
|
|
|
void regexp_print_PS(int PS[]);
|
|
|
|
void regexp_print_ptl(int ptl[]);
|
|
|
|
void regexp_print_tree(NODE* n, char* name, int detail);
|
2004-06-20 22:13:59 +02:00
|
|
|
|
2008-01-08 14:52:32 +01:00
|
|
|
#endif /* _REGEXP_H_ */
|
2006-01-01 20:51:00 +01:00
|
|
|
|
|
|
|
/// Local Variables:
|
|
|
|
/// mode: c++
|
|
|
|
/// mode: hs-minor
|
|
|
|
/// c-basic-offset: 4
|
|
|
|
/// indent-tabs-mode: nil
|
|
|
|
/// End:
|