-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroot.h
60 lines (59 loc) · 1.74 KB
/
root.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef ROOT_H
#define ROOT_H
#include <string>
#include <memory>
#include <vector>
#include "log.h"
template<typename T, typename... Args>
std::unique_ptr<T> _make_unique(Args&& ... args) {
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
class variable;
class domain;
class root
#ifdef UsingMemoryLeakCheck
: MemoryLeak_Probe
#endif
{
public:
explicit root(std::string type,root * parent = nullptr);
virtual ~root();
//Interface
virtual root* new_this() { return this; };
virtual void delete_this() { delete this; };
virtual root* make_copy() = 0;
virtual std::unique_ptr<root> convert_type(const std::string&);
virtual std::string what() { return type; };
virtual variable* access_member(const std::string& name);
virtual variable* execute(const std::vector<variable*>&) { return nullptr; };
//virtual variable* _PLUS(variable*) { return nullptr; };
//virtual variable* _MINUS(variable*) { return nullptr; };
//virtual variable* _MULTIPLY(variable*) { return nullptr; };
//virtual variable* _DIVISION(variable*) { return nullptr; };
//virtual variable* _NOT() { return nullptr; };
template<typename T>
T* to() { return dynamic_cast<T*>(this); };
domain* member = nullptr;
protected:
root* parent = nullptr;
private:
bool is_member_own = true;
std::string type;
};
/*
* Using the macro to get the ptr with the type
* Example:
* std::cout << GET_TYPE("string",root_string,arg)->access();
* Obj:
* The dest type's dynamic type (string)
* Dst:
* The dest type
* Ptr:
* The source ptr
*/
#define GET_TYPE(Obj,Dst,Ptr) (((Ptr)->what() == ((Obj)))?((Ptr)->to<Dst>()) : ((Ptr)->convert_type(Obj)->to<Dst>()))
/*
* Use the macro to check if the type is correct
*/
#define CHECK_TYPE(Obj,Ptr) ((Ptr)->what() == ((Obj)))
#endif // ROOT_H