00001 #ifndef __SYMTABLE_H__
00002 #define __SYMTABLE_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 class tName : public list<string>
00038 {
00039 protected:
00040
00041
00042 void split(const string& i_st, const char* i_sep = ":")
00043 {
00044 _buffer<char> buf(i_st.size() + 1, i_st.c_str());
00045
00046 clear();
00047 char* tok = strtok (buf.ptr(), i_sep);
00048 while (tok != NULL)
00049 {
00050 push_back(tok);
00051 tok = strtok (NULL, i_sep);
00052 }
00053 }
00054
00055 public:
00056
00057
00058 tName() {}
00059 tName(const string& i_stId) { split(i_stId); }
00060 tName(const tName& i_oName) : list<string>(i_oName) {}
00061
00062
00063 string toString() const
00064 {
00065 stringstream sst;
00066 string st;
00067 for(const_iterator p = begin(); p != end(); p ++)
00068 {
00069 sst << st << *p;
00070 if (st.empty()) st = ":";
00071 }
00072
00073 return sst.str();
00074 }
00075 };
00076
00077
00078
00079
00080 class iSymTable;
00081 typedef _s_ptr<iSymTable> spiSymTable;
00082
00083 class iSymTable
00084 {
00085 protected:
00086
00087
00088 iSymTable() {}
00089
00090 public:
00091
00092
00093 virtual ~iSymTable() {}
00094
00095
00096 virtual tName GetName(const operator_t i_nId) = 0;
00097
00098
00099 virtual operator_t GetId(const tName& i_oName, const operator_t i_nType) = 0;
00100
00101
00102 virtual operator_t AddName(const tName& i_oName, const operator_t i_nType) = 0;
00103
00104
00105 static spiSymTable Create(const spiStore& i_spStore);
00106 };
00107 }
00108
00109 #endif //__SYMTABLE_H__