X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=include%2Fd1_absyn.h;h=44a3a03746cbca98c3638a5a6985f90ff1899f11;hp=771911a037127fc22cdf7b9732d81b69368fa5e9;hb=d02c4c703a93e0ad3f4ccde4519879f1f57a6824;hpb=22963c0b23a178529bc71e5879c7e4f9c3c9b7f9 diff --git a/include/d1_absyn.h b/include/d1_absyn.h index 771911a..44a3a03 100644 --- a/include/d1_absyn.h +++ b/include/d1_absyn.h @@ -1,8 +1,27 @@ +/* This file is part of the Zebra server. + Copyright (C) 1994-2011 Index Data + +Zebra 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, or (at your option) any later +version. + +Zebra 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 + +*/ #ifndef D1_ABSYN_H #define D1_ABSYN_H 1 #define ENHANCED_XELM 1 +#define OPTIMIZE_MELM 1 #include #include @@ -11,21 +30,25 @@ typedef struct data1_xpelement { char *xpath_expr; -#ifdef ENHANCED_XELM +#ifdef ENHANCED_XELM struct xpath_location_step xpath[XPATH_STEP_COUNT]; int xpath_len; #endif - struct DFA *dfa; + struct DFA *dfa; data1_termlist *termlists; struct data1_xpelement *next; +#if OPTIMIZE_MELM + const char *regexp; +#endif + int match_state; + struct data1_xpelement *match_next; } data1_xpelement; struct data1_absyn { char *name; - oid_value reference; + Odr_oid *oid; data1_tagset *tagset; - data1_attset *attset; data1_varset *varset; data1_esetname *esetnames; data1_maptab *maptabs; @@ -35,7 +58,16 @@ struct data1_absyn struct data1_xpelement *xp_elements; /* pop */ struct data1_systag *systags; char *encoding; - int enable_xpath_indexing; + enum DATA1_XPATH_INDEXING xpath_indexing; }; #endif +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +