00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _VMap_incl_
00021 #define _VMap_incl_
00022
00023
00024 #include <string>
00025 #include <typeinfo>
00026
00027 #include <rel/TypeStream.h>
00028 #include <rel/SmartPtr.h>
00029 #include <rel/VMapIterator.h>
00030
00031 using namespace std;
00032
00033
00034 namespace rel
00035 {
00036
00037
00067 class VMap
00068 {
00069 public:
00070 typedef SmartPtr<VMap> Ptr;
00071
00079 virtual ~VMap();
00080
00089 enum ErrorCode
00090 {
00092 Success = 0,
00093
00095 TypeMismatch = 1,
00097 NotFound = 2,
00099 AlreadyExists = 3,
00100
00102 NotPermitted = 4,
00104 Unsupported = 5,
00106 ArgumentError = 6,
00107
00109 BackendError = 7
00110 };
00115 enum DirFlags
00116 {
00118 NoFlags = 0x00,
00120 FindOrCreate = 0x01
00121 };
00122
00138 virtual Ptr findDirectory(const string &name, int flags = NoFlags);
00168 virtual Ptr findDirectory(const TypeStream &path, int flags = NoFlags);
00169
00173 virtual Ptr createDirectory(const string &name);
00174
00175
00176
00177 virtual Ptr createDirectory(const TypeStream &path);
00178
00179
00180
00181
00182 virtual OpaqueValue find(const string &name);
00183
00184
00185
00186
00187 virtual OpaqueValue find(const TypeStream &path);
00188
00189
00190
00191 virtual VMapIterator begin();
00192 virtual VMapIterator end();
00193 virtual VMapIterator at(const string &name);
00194
00195
00196
00197
00198 virtual ErrorCode insert(const string &name, const OpaqueValue &value);
00199
00200
00201
00202
00203
00204
00205 virtual ErrorCode insert(const TypeStream &path,
00206 const OpaqueValue &value,
00207 int flags = FindOrCreate);
00208
00209
00210
00211
00212 virtual ErrorCode assign(const string &name, const OpaqueValue &value);
00213
00214
00215
00216 virtual ErrorCode assign(const TypeStream &path,
00217 const OpaqueValue &value);
00218
00219
00220
00221
00222 virtual ErrorCode erase(const string &name);
00223 virtual ErrorCode erase(const TypeStream &path);
00224
00226
00227 virtual ErrorCode clear();
00228
00229 protected:
00230
00231
00232 virtual void advanceIterator(const OpaqueValue &) const;
00233
00234 virtual bool equalIteratorData(const OpaqueValue &a,
00235 const OpaqueValue &b) const;
00236
00237 virtual void assignIteratorData(const OpaqueValue &src,
00238 const OpaqueValue &dest) const;
00239
00240 virtual void getKeyValue(const OpaqueValue &iteratorData,
00241 std::pair<std::string,OpaqueValue> *result);
00242
00243 friend VMapIterator;
00244 };
00245
00246 typedef VMap::Ptr VMapPtr;
00247
00248
00255 OpaqueValue findFirst (VMapPtr &map,
00256 const TypeStream &path, const string &key);
00263 OpaqueValue findDeepest(VMapPtr &map,
00264 const TypeStream &path, const string &key);
00265
00266
00267
00268
00269 template<>
00270 bool smartPtrInterpret<VMap>(VMap *value,
00271 const std::type_info &resultType,
00272 const OpaqueValue *args,
00273 OpaqueValue *output);
00274
00275
00276 }
00277
00278
00279
00283 rel::VMapPtr GlobalObjectMap();
00284
00285 void SetGlobalObjectMap(const rel::VMapPtr &globalMap);
00286
00287
00291 #define GOM GlobalObjectMap()
00292
00293
00294
00295
00296 #endif
00297