00001 #ifndef __CONTEXT_H__
00002 #define __CONTEXT_H__
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 namespace DLITE
00034 {
00035
00036
00037
00038 class tContext;
00039 typedef _s_ptr<tContext> sptContext;
00040
00041 class tContext
00042 {
00043 private:
00044
00045 string m_stName;
00046 operator_t m_nId;
00047 spiStore m_spStore;
00048 spiTBox m_spTBox;
00049 spiSymTable m_spSymTable;
00050 list<string> m_oErrors;
00051
00052 tExprFactory m_oFactory;
00053
00054 protected:
00055
00056
00057 operator_t getNameId(const tName& i_oName, const operator_t i_nType)
00058 {
00059 operator_t nId = OP_INVALID;
00060 if (m_spTBox.null())
00061 {
00062 nId = m_spSymTable->GetId(i_oName, i_nType);
00063 if (OP_INVALID == nId)
00064 {
00065 string st = "Unknown symbol " + i_oName.toString();
00066 m_oErrors.push_back(st);
00067 }
00068 }
00069 else
00070 {
00071 nId = m_spSymTable->AddName(i_oName, i_nType);
00072 }
00073
00074 return nId;
00075 }
00076
00077 public:
00078
00079
00080 tContext(const string& i_stName, const spiStore& i_spStore);
00081
00082
00083 tContext(const spiStore& i_spStore);
00084
00085
00086 list<string> getErrors() const { return m_oErrors; }
00087 void addError(const string& i_stError) { m_oErrors.push_back(i_stError); }
00088
00089
00090 sptExpression getExpr() { return m_oFactory.expr(); }
00091
00092
00093 void clear()
00094 {
00095 m_oFactory.clear();
00096 m_oErrors.clear();
00097 }
00098
00099
00100 void s_ontology();
00101
00102 void s_header();
00103
00104 void lit_name(const pANTLR3_COMMON_TOKEN v);
00105
00106 void lit_version(const pANTLR3_COMMON_TOKEN v);
00107
00108 void s_attribute(const pANTLR3_COMMON_TOKEN n, const pANTLR3_COMMON_TOKEN v);
00109
00110 void s_include(const pANTLR3_COMMON_TOKEN v);
00111
00112 void ns_begin(const pANTLR3_COMMON_TOKEN v);
00113
00114 void ns_end();
00115
00116 void s_definition(const pANTLR3_COMMON_TOKEN n);
00117
00118 void s_expr();
00119
00120 void op_or();
00121
00122 void op_and();
00123
00124 void op_top();
00125
00126 void op_bottom();
00127
00128 void op_cond(const pANTLR3_COMMON_TOKEN v);
00129
00130 void op_atom(const pANTLR3_COMMON_TOKEN v);
00131
00132 void op_univ(const pANTLR3_COMMON_TOKEN r);
00133
00134 void op_exist(const pANTLR3_COMMON_TOKEN r);
00135
00136 void op_maxcard(const pANTLR3_COMMON_TOKEN n, const pANTLR3_COMMON_TOKEN r);
00137
00138 void op_mincard(const pANTLR3_COMMON_TOKEN n, const pANTLR3_COMMON_TOKEN r);
00139
00140 void op_constraint(const pANTLR3_COMMON_TOKEN a, const pANTLR3_COMMON_TOKEN o);
00141
00142 void op_not();
00143
00144 void lit_value_variable(const pANTLR3_COMMON_TOKEN v);
00145
00146 void lit_value_uint(const pANTLR3_COMMON_TOKEN v);
00147
00148 void lit_value_int(const pANTLR3_COMMON_TOKEN v);
00149
00150 void lit_value_float(const pANTLR3_COMMON_TOKEN v);
00151
00152 void lit_value_string(const pANTLR3_COMMON_TOKEN v);
00153
00154 void lit_list_begin();
00155
00156 void lit_list_end();
00157
00158 void lit_list_iten(const pANTLR3_COMMON_TOKEN v);
00159
00160 void op_in(const pANTLR3_COMMON_TOKEN a);
00161
00162 void s_concept();
00163
00164 void s_def(const pANTLR3_COMMON_TOKEN v);
00165
00166 void lit_constant(const pANTLR3_COMMON_TOKEN v);
00167
00168
00169 static void errorHdlr(pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_UINT8* tokenNames);
00170
00171
00172 static sptContext Create(const string& i_stName, const spiStore& i_spStore);
00173
00174
00175 static sptContext Create(const spiStore& i_spStore);
00176 };
00177 }
00178
00179 #endif //__CONTEXT_H__