-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscope.cpp
90 lines (76 loc) · 1.88 KB
/
scope.cpp
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/* ollieberzs 2018
** scope.cpp
** scope to hold named stuff
*/
#include <iostream>
#include "oca.hpp"
OCA_BEGIN
Scope::Scope(Scope* parent) : parent(parent) {}
// ----------------------------
void Scope::set(const std::string& name, ValuePtr value, bool pub) {
uint index = 0;
for (index = 0; index < vars.size(); ++index) {
auto var = vars.at(index);
if (var.name == name)
break;
}
auto copy = value->copy();
if (!copy)
copy = value;
copy->scope.parent = this;
if (vars.size() > index && vars[index].value)
vars[index] = {vars[index].publicity, name, copy};
else
vars.push_back({pub, name, copy});
}
bool Scope::remove(const std::string& name) {
for (uint i = 0; i < vars.size(); ++i) {
if (vars[i].name == name) {
vars.erase(vars.begin() + i);
return true;
break;
}
}
return false;
}
ValuePtr Scope::get(const std::string& name, bool super) {
ValuePtr val = Nil::in(this);
for (auto& var : vars) {
if (var.name == name) {
val = var.value;
if (!super && !var.publicity)
throw Error(NOT_PUBLIC);
break;
}
}
return val;
}
std::string Scope::get(ValuePtr value) {
for (auto& var : vars) {
if (var.value.get() == value.get())
return var.name;
}
return "";
}
void Scope::add(const Scope& scope) {
for (auto var : scope.vars) {
set(var.name, var.value, true);
}
}
// -----------------------------
void Scope::print() {
std::string out = "{";
for (auto& var : vars) {
if (!var.publicity)
out += "[";
out += var.name;
if (!var.publicity)
out += "]";
out += " ";
}
if (out.size() > 1)
out.pop_back();
out += "}";
std::cout << out << "\n";
}
OCA_END