File: ToS.cpp

package info (click to toggle)
storm-lang 0.7.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 52,004 kB
  • sloc: ansic: 261,462; cpp: 140,405; sh: 14,891; perl: 9,846; python: 2,525; lisp: 2,504; asm: 860; makefile: 678; pascal: 70; java: 52; xml: 37; awk: 12
file content (196 lines) | stat: -rw-r--r-- 5,798 bytes parent folder | download
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
#include "stdafx.h"
#include "ToS.h"
#include "Package.h"
#include "Scope.h"
#include "Type.h"
#include "Exception.h"
#include "Engine.h"

namespace storm {

	/**
	 * Generation of toS() from toS(StrBuf):
	 */


	ToSTemplate::ToSTemplate() : Template(new (engine()) Str(S("toS"))) {}

	MAYBE(Named *) ToSTemplate::generate(SimplePart *part) {
		Array<Value> *params = part->params;
		if (params->count() != 1)
			return null;

		Value type = params->at(0);

		// Only ever needed for value types or built-in types.
		if (!type.isValue())
			return null;

		if (type.type == null)
			return null;

		// Find a toS(StrBuf) function for the type:
		SimplePart *toFind = new (this) SimplePart(S("toS"));
		toFind->params->push(thisPtr(type.type));
		toFind->params->push(StrBuf::stormType(engine()));

		// We only examine member functions of the type:
		if (Function *found = as<Function>(type.type->findHere(toFind, engine().scope())))
			return new (this) ToSFunction(found);

		// Otherwise, nothing to generate.
		return null;
	}


	ToSFunction::ToSFunction(Function *use)
		: Function(Value(StormInfo<Str>::type(use->engine())),
				new (use) Str(S("toS")),
				new (use) Array<Value>(1, thisPtr(use->params->at(0).type))),
		  use (use) {

		setCode(new (engine()) LazyCode(fnPtr(engine(), &ToSFunction::create, this)));

		// Add a listener to the target type and remove ourselves whenever that function gains a toS
		// function.
		use->params->at(0).type->watchAdd(this);
	}

	void ToSFunction::notifyAdded(NameSet *to, Named *added) {
		if (*added->name == S("toS") && added->params->count() == 1 && added->params->at(0).type == to && as<Function>(added)) {
			// Found a toS function that was added. Remove ourselves from our parent:
			if (NameSet *inside = as<NameSet>(parentLookup())) {
				inside->remove(this);
				to->watchRemove(this);
			}
		}
	}

	CodeGen *ToSFunction::create() {
		using namespace code;
		Value type = params->at(0);

		CodeGen *to = new (this) CodeGen(use->runOn(), isMember(), Value(Str::stormType(engine())));
		Var param = to->createParam(type);

		*to->l << prolog();

		Type *strBufT = StrBuf::stormType(engine());
		Var strBuf = allocObject(to, strBufT);

		// Call the toS function:
		Array<Operand> *p = new (this) Array<Operand>();
		p->push(param);
		p->push(strBuf);
		use->localCall(to, p, new (this) CodeResult(), false);

		// Call 'toS' on the StrBuf to get the string.
		Function *toS = as<Function>(strBufT->find(S("toS"), thisPtr(strBufT), engine().scope()));
		if (!toS)
			throw new (this) InternalError(S("Can not find 'toS' for the StrBuf type!"));

		CodeResult *str = new (this) CodeResult(result, to->l->root());
		p = new (this) Array<Operand>();
		p->push(strBuf);
		toS->localCall(to, p, str, false);

		to->returnValue(str->location(to));
		return to;
	}



	/**
	 * Generation of '<<' from 'toS()' or 'toS(StrBuf)':
	 */

	OutputOperatorTemplate::OutputOperatorTemplate() : Template(new (engine()) Str(S("<<"))) {}

	MAYBE(Named *) OutputOperatorTemplate::generate(SimplePart *part) {
		Array<Value> *params = part->params;
		if (params->count() != 2)
			return null;

		Type *strBufType = StrBuf::stormType(engine());
		// Note: We accept subtypes to StrBuf if anyone subclasses it.
		if (!Value(strBufType).mayStore(params->at(0).asRef(false)))
			return null;

		// Only needed for value types:
		Value type = params->at(1);
		if (!type.type || !type.isValue())
			return null;

		// Find a toS(StrBuf), this is prioritized if it exists:
		SimplePart *toFind = new (this) SimplePart(S("toS"));
		toFind->params->push(thisPtr(type.type));
		toFind->params->push(Value(strBufType));

		// We only need to look inside the type:
		if (Function *found = as<Function>(type.type->findHere(toFind, engine().scope())))
			return new (this) OutputOperator(found);

		// If we did not find it, try without the StrBuf parameter:
		toFind->params->pop();
		if (Function *found = as<Function>(type.type->findHere(toFind, engine().scope())))
			return new (this) OutputOperator(found);

		// Otherwise, give up.
		return null;
	}


	OutputOperator::OutputOperator(Function *use)
		: Function(Value(StrBuf::stormType(use->engine())),
				new (use) Str(S("<<")),
				valList(use->engine(), 2, Value(StrBuf::stormType(use->engine())), use->params->at(0))),
		  use(use) {

		setCode(new (engine()) LazyCode(fnPtr(engine(), &OutputOperator::create, this)));
	}

	CodeGen *OutputOperator::create() {
		using namespace code;

		Value strBuf = params->at(0);
		Value srcType = params->at(1);

		CodeGen *to = new (this) CodeGen(runOn(), isMember(), strBuf);
		Var strBufParam = to->createParam(strBuf);
		Var srcParam = to->createParam(srcType);

		*to->l << prolog();

		// Two options, either 'toS()' or 'toS(StrBuf)':
		if (use->params->count() == 2) {
			// toS(StrBuf):
			Array<Operand> *ops = new (this) Array<Operand>();
			ops->push(srcParam);
			ops->push(strBufParam);
			use->autoCall(to, ops, new (this) CodeResult());
		} else {
			// toS():
			Value strType(Str::stormType(engine()));
			CodeResult *strResult = new (this) CodeResult(strType, to->l->root());

			Array<Operand> *ops = new (this) Array<Operand>();
			ops->push(srcParam);
			use->autoCall(to, ops, strResult);

			// Find the regular <<(Str) operator:
			Array<Value> *params = new (this) Array<Value>(2, thisPtr(strBuf.type));
			params->at(1) = strType;
			Function *outputStr = as<Function>(strBuf.type->find(S("<<"), params, engine().scope()));
			if (!outputStr)
				throw new (this) InternalError(S("Can not find '<<(StrBuf, Str)' in StrBuf!"));

			ops = new (this) Array<Operand>();
			ops->push(strBufParam);
			ops->push(strResult->location(to));
			outputStr->autoCall(to, ops, new (this) CodeResult());
		}

		to->returnValue(strBufParam);
		return to;
	}
}