-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmethodStorage.h
76 lines (54 loc) · 2.04 KB
/
methodStorage.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#ifndef METHODSTORAGE_H
#define METHODSTORAGE_H
#include <vector>
#include <map>
//################ PROTOTYPES ################//
class MethodDefinition {
protected:
public:
std::string code, returnType;
std::vector< std::map<std::string, std::string> > vocabulary;
std::vector<bool> isOptional;
std::vector<std::string> paramType;
bool isSTDL, isPostFixFunc;
MethodDefinition(std::string, std::string, std::vector< std::map<std::string, std::string> >, std::vector<std::string>, std::vector<bool>, bool = false, bool = false);
~MethodDefinition();
void toString() const;
int calculateMatch(std::vector<std::string>, std::vector<std::string>) const;
};
class MethodStorage {
protected:
std::multimap<std::map<std::string, std::string>, MethodDefinition *> methods;
public:
MethodStorage();
~MethodStorage();
void clearMemory();
bool methodExists(std::string) const;
const MethodDefinition * getMethod(std::string);
bool isSTDL(std::string) const;
void addMethod(std::string, std::string, std::vector< std::map<std::string, std::string> >, std::vector<std::string>, std::vector<bool>, bool = false, bool = false);
void toString() const;
const MethodDefinition * findMatch(std::vector<std::string>, std::vector<std::string>) const;
bool isPostFixFunc(std::string) const;
};
class MethodStack {
protected:
std::vector<MethodStorage *> methodStack; // method stack
public:
MethodStack();
MethodStack(const MethodStack *);
~MethodStack();
void clearMemory();
void pop();
bool methodExists(std::string) const;
const MethodDefinition * getMethod(std::string);
bool isSTDL(std::string) const;
void addMethod(std::string, std::string, std::vector< std::map<std::string, std::string> >, std::vector<std::string>, std::vector<bool>, bool = false, bool = false);
void pushStorage(MethodStorage * = NULL);
void toString() const;
const MethodDefinition * findMatch(std::vector<std::string>, std::vector<std::string>) const;
bool isPostFixFunc(std::string) const;
int stackSize() const;
};
/// ################################ ///
#endif