]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/mathml_editor/src/TDictionary.hh
* licenses updated
[helm.git] / helm / DEVEL / mathml_editor / src / TDictionary.hh
1 /* This file is part of EdiTeX, an editor of mathematical
2  * expressions based on TeX syntax.
3  * 
4  * Copyright (C) 2002-2003 Luca Padovani <lpadovan@cs.unibo.it>,
5  *                    2003 Paolo Marinelli <pmarinel@cs.unibo.it>.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  * For more information, please visit the project's home page
22  * http://helm.cs.unibo.it/editex/
23  * or send an email to <lpadovan@cs.unibo.it>
24  */
25
26 #ifndef __TDictionary_hh__
27 #define __TDictionary_hh__
28
29 #include <config.h>
30
31 #include <string>
32 #include <vector>
33 #include <hash_map>
34
35 #include "dom.hh"
36 #include "TToken.hh"
37
38 class TDictionary
39 {
40 public:
41   TDictionary(class ALogger& l) : logger(l) { };
42   ~TDictionary() { };
43
44   enum Form
45     {
46       INFIX,
47       PREFIX,
48       POSTFIX
49     };
50
51   enum EntryClass
52     {
53       UNDEFINED,
54       MACRO,
55       OPERATOR,
56       IDENTIFIER,
57       NUMBER
58     };
59
60   struct Entry
61   {
62     Entry(void)
63     { 
64       cls = UNDEFINED;
65       table = delimiter = limits = embellishment = leftOpen = rightOpen = 0;
66     };
67
68     std::vector<TToken> pattern;
69     std::string value;
70
71     bool defined(void) const { return cls != UNDEFINED; };
72     bool hasArguments(void) const { return !pattern.empty(); };
73     bool paramDelimited(unsigned) const;
74     bool lastDelimiter(unsigned) const;
75     unsigned previousParam(unsigned) const;
76
77     EntryClass cls;
78     unsigned delimiter : 1;
79     unsigned limits : 1;
80     unsigned embellishment : 1;
81     unsigned leftOpen : 1;
82     unsigned rightOpen : 1;
83     unsigned table : 1;
84   };
85
86   void load(const std::string&);
87   void load(const std::string&, const std::string&);
88   void load(const DOM::Document&, const std::string& = "");
89   const Entry& find(const std::string&) const;
90
91 private:
92   struct StringHash : public std::unary_function< std::string, size_t >
93   { size_t operator()(const std::string& s) const { return hash<char*>()(s.c_str()); } };
94
95 #if 0
96   struct StringEq : public std::binary_function< std::string, std::string, bool >
97   { bool operator()(const std::string&, const class String*) const; };
98 #endif
99
100   class ALogger& logger;
101 #if defined(HAVE_EXT_HASH_MAP)
102   typedef __gnu_cxx::hash_map< std::string, Entry, StringHash > Dictionary;
103 #elif defined(HAVE_HASH_MAP)
104   typedef std::hash_map< std::string, Entry, StringHash > Dictionary;
105 #else
106 #error "no hash_map could be found"
107 #endif
108   Dictionary entries;
109 };
110
111 #endif // __TDictionary_hh__
112