00001 #ifndef __STORE_H__
00002 #define __STORE_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 typedef pair<operator_t, string> tIdentifier;
00038
00039
00040
00041 class iStore;
00042 typedef _s_ptr<iStore> spiStore;
00043
00044 class iStore
00045 {
00046 public:
00047
00048
00049 virtual ~iStore() {}
00050
00051
00052 virtual void Open() = 0;
00053
00054
00055 virtual void Close() = 0;
00056
00057
00058 virtual void Begin() = 0;
00059
00060
00061 virtual void Commit() = 0;
00062
00063
00064 virtual void Rollback() = 0;
00065
00066
00067 virtual dword LoadUID() = 0;
00068
00069
00070 virtual dword NextUID() = 0;
00071
00072
00073 virtual void UpdateUID() = 0;
00074
00075
00076 virtual bool GetDefinition(const operator_t i_nId, _buffer<byte>& o_oDef) = 0;
00077
00078
00079 virtual void AddDefinition(const operator_t i_nOntology, const operator_t i_nId, const _buffer<byte>& i_oDef) = 0;
00080
00081
00082 virtual void GetDefinitionList(const operator_t i_nOntology) = 0;
00083
00084
00085 virtual operator_t GetNextDefinition() = 0;
00086
00087
00088 virtual bool GetSymbol(const operator_t i_nId, tIdentifier& o_oIdent) = 0;
00089
00090
00091 virtual void AddSymbol(const operator_t i_nId, const tIdentifier& i_oIdent) = 0;
00092
00093
00094 virtual operator_t GetId(const tIdentifier& i_oIdent, const operator_t i_nType) = 0;
00095
00096
00097 virtual void GetIdList(const operator_t i_nType) = 0;
00098
00099
00100 virtual operator_t GetNextId() = 0;
00101 };
00102
00103
00104
00105 class StoreFactorySQLite
00106 {
00107 public:
00108
00109
00110 static spiStore Create(const char* i_pszPath);
00111
00112
00113 static spiStore CreateNew(const char* i_pszPath);
00114 };
00115 }
00116
00117 #endif //__STORE_H__