summaryrefslogtreecommitdiffstats
path: root/Variable.cc
blob: bbbc80a913f7af2a466e8c1fa90ecf71e904f362 (plain) (blame)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
#include "Variable.h"
#include "TokenStream.h"

#include <iostream>

VariablePtr constructString(const std::string& Val, bool c)
{
	return new Variable(String,Val,c); 
}

VariablePtr constructList(bool c)
{
	return new Variable(List, "", c);
}

VariablePtr constructVoid(bool IsConst)
{
	return new Variable(Void,"",IsConst);
}

VariablePtr constructBool(bool Value, bool IsConst)
{
	return new Variable(BoolType, Value?"t":"", IsConst);
}

Variable::Variable(VarType T, const std::string& aValue, bool aConst)
: Type(T), Value(aValue), IsConst(aConst)
{
}

void Variable::remove(const std::string& Key)
{
	std::string::size_type idx = Key.find(".");
	if (idx == std::string::npos)
	{
		for (unsigned int i=0; i<Vars.size(); ++i)
			if (Vars[i].first == Key)
			{
				Vars.erase(Vars.begin() + i);
				return;
			}
	}
	else
	{
		std::string Part(Key.substr(0,idx));
		for (unsigned int i=0; i<Vars.size(); ++i)
			if (Vars[i].first == Part)
			{
				Vars[i].second->remove(Key.substr(idx+1,Key.length()));
				if (Vars[i].second->size() == 0)
					Vars.erase(Vars.begin() + i);
				return;
			}
	}
}

VarType Variable::type() const
{
	return Type;
}

std::string Variable::value() const
{
	return Value;
}

unsigned int Variable::size() const
{
	return Vars.size();
}

const VariablePtr& Variable::get(unsigned int idx) const
{
	return Vars[idx].second;
}

VariablePtr& Variable::get(unsigned int idx)
{
	return Vars[idx].second;
}

const std::string Variable::name(unsigned int idx) const
{
	return Vars[idx].first;
}

VariablePtr convertTo(VarType T, VariablePtr Src)
{
	if (Src->type() == T) return Src->deepCopy();
	switch (T)
	{
		case BoolType:
			if (Src->type() == String)
				return constructBool(Src->value().length() != 0,false);
			break;
	}
	return constructVoid(false);
}

VariablePtr Variable::deepCopy() const
{
	VariablePtr Copy(new Variable(Type,Value,IsConst));
	for (unsigned int i=0; i<Vars.size(); ++i)
		Copy->insert(Vars[i].first,Vars[i].second->deepCopy());
	return Copy;
}

void Variable::set(const std::string& Name, const VariablePtr& other)
{
	for (unsigned int i=0; i<Vars.size(); ++i)
		if (Vars[i].first == Name)
		{
			Vars[i].second = other->deepCopy();
			return;
		}
	Vars.push_back(std::make_pair(Name,other->deepCopy()));
}

void Variable::insert(const std::string& Name, const VariablePtr &other)
{
	if (Name == "")
		Type = List;
	Vars.push_back(std::make_pair(Name,other->deepCopy()));
}

VariablePtr Variable::find(const std::string& aName)
{
	for (unsigned int i=0; i<Vars.size(); ++i)
		if (Vars[i].first == aName)
			return Vars[i].second;
	return VariablePtr();
}

const VariablePtr Variable::find(const std::string& aName) const
{
	for (unsigned int i=0; i<Vars.size(); ++i)
		if (Vars[i].first == aName)
			return Vars[i].second;
	return VariablePtr();
}

VariablePtr Variable::findOrCreate(const std::string& aName)
{
	VariablePtr R = find(aName);
	if (!R.isNull()) return R;
	Vars.push_back(std::make_pair(aName,constructVoid(false)));
	return Vars[Vars.size()-1].second;
}


void print(const std::string& In, const VariablePtr& V)
{
	switch (V->type())
	{
	case String:
		std::cout << "String = " << V->value() << std::endl;
		break;
	case Void:
		std::cout << "Void" << std::endl;
		break;
	case List:
		std::cout << "List" << std::endl;
		break;
	case BoolType:
		std::cout << "Bool = ";
		if (isBoolTrue(V))
			std::cout << "{true}" << std::endl;
		else
			std::cout << "{false}" << std::endl;
		break;
	default:
		std::cout << "unkown" << std::endl;
	}
	std::string In2(In+"  ");
	for (unsigned int i=0; i<V->size(); ++i)
	{
		std::cout << In << V->name(i) << " : ";
		print(In2,V->get(i));
	}
}

bool isBoolTrue(VariablePtr T)
{
	return T->value().length() > 0;
}

std::string stringValue(const VariablePtr& T)
{
	if (T->type() == String)
		return T->value();
	return "";
}

VariablePtr parseFrom(TokenStream& s)
{
	if (s.literal("false"))
		return constructBool(false,false);
	else if (s.literal("true"))
		return constructBool(true,false);
	std::string V = s.cString();
	if (V.length())
		return constructString(V.substr(1,V.length()-1),false);
	return constructVoid(false);
}

const VariablePtr childOrVoid(const VariablePtr& Parent, const std::string& Name)
{
	std::string Key(Name);
	std::string Rest;

	std::string::size_type idx = Name.find(".");
	if (idx != std::string::npos)
	{
		Key = Name.substr(0,idx);
		Rest = Name.substr(idx+1,Name.length());
	}
	for (unsigned int i=0; i<Parent->size(); ++i)
		if (Parent->name(i) == Key)
		{
			if (Rest.length() == 0)
				return Parent->get(i);
			else
				return childOrVoid(Parent->get(i),Rest);
		}
	return constructVoid(true);
}