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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
|
#!/usr/bin/python3 -tt
# Copyright 2012 Jussi Pakkanen
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import parser
import nodes
import environment
import os
class InterpreterException(Exception):
pass
class InvalidCode(InterpreterException):
pass
class InvalidArguments(InterpreterException):
pass
class InterpreterObject():
def __init__(self):
self.methods = {}
def method_call(self, method_name, args):
if method_name in self.methods:
return self.methods[method_name](args)
raise InvalidCode('Unknown method "%s" in object.' % method_name)
class IncludeDirs(InterpreterObject):
def __init__(self, curdir, dirs):
InterpreterObject.__init__(self)
self.curdir = curdir
self.incdirs = dirs
# Fixme: check that the directories actually exist.
# Also that they don't contain ".." or somesuch.
def get_curdir(self):
return self.curdir
def get_incdirs(self):
return self.incdirs
class Headers(InterpreterObject):
def __init__(self, sources):
InterpreterObject.__init__(self)
self.sources = sources
self.methods.update({'set_subdir' : self.set_subdir})
self.subdir = ''
def set_subdir(self, args):
self.subdir = args[0]
def get_subdir(self):
return self.subdir
def get_sources(self):
return self.sources
class Data(InterpreterObject):
def __init__(self, subdir, sources):
InterpreterObject.__init__(self)
self.subdir = subdir
self.sources = sources
def get_subdir(self):
return self.subdir
def get_sources(self):
return self.sources
class ConfigureFile(InterpreterObject):
def __init__(self, subdir, sourcename, targetname):
InterpreterObject.__init__(self)
self.subdir = subdir
self.sourcename = sourcename
self.targetname = targetname
def get_sources(self):
return self.sources
def get_subdir(self):
return self.subdir
def get_source_name(self):
return self.sourcename
def get_target_name(self):
return self.targetname
class Man(InterpreterObject):
def __init__(self, sources):
InterpreterObject.__init__(self)
self.sources = sources
self.validate_sources()
def validate_sources(self):
for s in self.sources:
num = int(s.split('.')[-1])
if num < 1 or num > 8:
raise InvalidArguments('Man file must have a file extension of a number between 1 and 8')
def get_sources(self):
return self.sources
class BuildTarget(InterpreterObject):
def __init__(self, name, subdir, sources):
InterpreterObject.__init__(self)
self.name = name
self.subdir = subdir
self.sources = sources
self.external_deps = []
self.include_dirs = []
self.methods.update({'add_dep': self.add_dep_method,
'link' : self.link_method,
'install': self.install_method,
'pch' : self.pch_method,
'add_include_dirs': self.add_include_dirs_method,
})
self.link_targets = []
self.filename = 'no_name'
self.need_install = False
self.pch = []
def get_filename(self):
return self.filename
def get_dependencies(self):
return self.link_targets
def get_basename(self):
return self.name
def get_source_subdir(self):
return self.subdir
def get_sources(self):
return self.sources
def should_install(self):
return self.need_install
def has_pch(self):
return len(self.pch) > 0
def get_pch(self):
return self.pch
def get_include_dirs(self):
return self.include_dirs
def add_external_dep(self, dep):
if not isinstance(dep, environment.PkgConfigDependency):
raise InvalidArguments('Argument is not an external dependency')
self.external_deps.append(dep)
def get_external_deps(self):
return self.external_deps
def add_dep_method(self, args):
[self.add_external_dep(dep) for dep in args]
def link_method(self, args):
target = args[0]
if not isinstance(target, StaticLibrary) and \
not isinstance(target, SharedLibrary):
raise InvalidArguments('Link target is not library.')
self.link_targets.append(target)
def install_method(self, args):
if len(args) != 0:
raise InvalidArguments('Install() takes no arguments.')
self.need_install = True
def pch_method(self, args):
if len(args) == 0:
raise InvalidArguments('Pch requires arguments.')
for a in args:
self.pch.append(a)
def add_include_dirs_method(self, args):
for a in args:
if not isinstance(a, IncludeDirs):
raise InvalidArguments('Include directory to be added is not an include directory object.')
self.include_dirs += args
class Executable(BuildTarget):
def __init__(self, name, subdir, sources, environment):
BuildTarget.__init__(self, name, subdir, sources)
suffix = environment.get_exe_suffix()
if suffix != '':
self.filename = self.name + '.' + suffix
else:
self.filename = self.name
class StaticLibrary(BuildTarget):
def __init__(self, name, subdir, sources, environment):
BuildTarget.__init__(self, name, subdir, sources)
prefix = environment.get_static_lib_prefix()
suffix = environment.get_static_lib_suffix()
self.filename = prefix + self.name + '.' + suffix
class SharedLibrary(BuildTarget):
def __init__(self, name, subdir, sources, environment):
BuildTarget.__init__(self, name, subdir, sources)
prefix = environment.get_shared_lib_prefix()
suffix = environment.get_shared_lib_suffix()
self.filename = prefix + self.name + '.' + suffix
class Test(InterpreterObject):
def __init__(self, name, exe):
InterpreterObject.__init__(self)
self.name = name
self.exe = exe
def get_exe(self):
return self.exe
def get_name(self):
return self.name
class Interpreter():
def __init__(self, code, build):
self.build = build
self.ast = parser.build_ast(code)
self.sanity_check_ast()
self.variables = {}
self.environment = build.environment
self.build_func_dict()
self.subdir = ''
def build_func_dict(self):
self.funcs = {'project' : self.func_project,
'message' : self.func_message,
'executable': self.func_executable,
'find_dep' : self.func_find_dep,
'static_library' : self.func_static_lib,
'shared_library' : self.func_shared_lib,
'add_test' : self.func_add_test,
'headers' : self.func_headers,
'man' : self.func_man,
'subdir' : self.func_subdir,
'data' : self.func_data,
'configure_file' : self.func_configure_file,
'include_directories' : self.func_include_directories,
}
def get_variables(self):
return self.variables
def sanity_check_ast(self):
if not isinstance(self.ast, nodes.CodeBlock):
raise InvalidCode('AST is of invalid type. Possibly a bug in the parser.')
if len(self.ast.get_statements()) == 0:
raise InvalidCode('No statements in code.')
first = self.ast.get_statements()[0]
if not isinstance(first, nodes.FunctionCall) or first.get_function_name() != 'project':
raise InvalidCode('First statement must be a call to project')
def run(self):
self.evaluate_codeblock(self.ast)
def evaluate_codeblock(self, node):
if node is None:
return
if not isinstance(node, nodes.CodeBlock):
raise InvalidCode('Line %d: Tried to execute a non-codeblock. Possibly a bug in the parser.' % node.lineno())
statements = node.get_statements()
i = 0
while i < len(statements):
cur = statements[i]
self.evaluate_statement(cur)
i += 1 # In THE FUTURE jump over blocks and stuff.
def evaluate_statement(self, cur):
if isinstance(cur, nodes.FunctionCall):
return self.function_call(cur)
elif isinstance(cur, nodes.Assignment):
return self.assignment(cur)
elif isinstance(cur, nodes.MethodCall):
return self.method_call(cur)
elif isinstance(cur, nodes.StringStatement):
return cur
elif isinstance(cur, nodes.BoolStatement):
return cur
elif isinstance(cur, nodes.IfStatement):
return self.evaluate_if(cur)
elif isinstance(cur, nodes.AtomStatement):
varname = cur.get_value()
if varname in self.variables:
return self.variables[varname]
raise InvalidCode('Line %d: unknown variable "%s".' % (cur.lineno(), varname))
elif isinstance(cur, nodes.Comparison):
return self.evaluate_comparison(cur)
elif isinstance(cur, nodes.ArrayStatement):
return self.evaluate_arraystatement(cur)
else:
raise InvalidCode("Line %d: Unknown statement." % cur.lineno())
def validate_arguments(self, args, argcount, arg_types):
if argcount is not None:
if argcount != len(args):
raise InvalidArguments('Expected %d arguments, got %d',
argcount, len(args))
for i in range(min(len(args), len(arg_types))):
wanted = arg_types[i]
actual = args[i]
if wanted != None:
if not isinstance(actual, wanted):
raise InvalidArguments('Incorrect argument type.')
def func_project(self, node, args):
if len(args) < 2:
raise InvalidArguments('Not enough arguments to project(). Needs at least the project name and one language')
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
if self.build.project is not None:
raise InvalidCode('Second call to project() on line %d.' % node.lineno())
self.build.project = args[0]
print('Project name is "%s".' % self.build.project)
self.add_languages(node, args[1:])
def func_message(self, node, args):
self.validate_arguments(args, 1, [str])
print('Message: %s' % args[0])
def add_languages(self, node, args):
for lang in args:
if lang.lower() == 'c':
comp = self.environment.detect_c_compiler()
comp.sanity_check(self.environment.get_scratch_dir())
self.build.compilers.append(comp)
elif lang.lower() == 'c++':
comp = self.environment.detect_cxx_compiler()
comp.sanity_check(self.environment.get_scratch_dir())
self.build.compilers.append(comp)
else:
raise InvalidCode('Tried to use unknown language "%s".' % lang)
def func_find_dep(self, node, args):
self.validate_arguments(args, 1, [str])
name = args[0]
dep = environment.find_external_dependency(name)
return dep
def func_executable(self, node, args):
return self.build_target(node, args, Executable)
def func_static_lib(self, node, args):
return self.build_target(node, args, StaticLibrary)
def func_shared_lib(self, node, args):
return self.build_target(node, args, SharedLibrary)
def func_add_test(self, node, args):
self.validate_arguments(args, 2, [str, Executable])
t = Test(args[0], args[1])
self.build.tests.append(t)
print('Adding test "%s"' % args[0])
def func_headers(self, node, args):
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
h = Headers(args)
self.build.headers.append(h)
return h
def func_man(self, node, args):
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
m = Man(args)
self.build.man.append(m)
return m
def func_subdir(self, node, args):
self.validate_arguments(args, 1, [str])
prev_subdir = self.subdir
self.subdir = os.path.join(prev_subdir, args[0])
buildfilename = os.path.join(self.subdir, environment.builder_filename)
code = open(os.path.join(self.environment.get_source_dir(), buildfilename)).read()
assert(isinstance(code, str))
codeblock = parser.build_ast(code)
print('Going to subdirectory "%s".' % self.subdir)
self.evaluate_codeblock(codeblock)
self.subdir = prev_subdir
def func_data(self, node, args):
if len(args ) < 2:
raise InvalidArguments('Line %d: Data function must have at least two arguments: name and source file(s)' % node.lineno())
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
data = Data(args[0], args[1:])
self.build.data.append(data)
return data
def func_configure_file(self, node, args):
self.validate_arguments(args, 2, [str, str])
c = ConfigureFile(self.subdir, args[0], args[1])
self.build.configure_files.append(c)
def func_include_directories(self, node, args):
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
i = IncludeDirs(self.subdir, args)
return i
def flatten(self, args):
result = []
for a in args:
if isinstance(a, list):
result = result + self.flatten(a)
else:
result.append(a)
return result
def build_target(self, node, args, targetclass):
args = self.flatten(args)
for a in args:
if not isinstance(a, str):
raise InvalidArguments('Line %d: Argument %s is not a string.' % (node.lineno(), str(a)))
name = args[0]
sources = []
for s in args[1:]:
print(s)
if not self.environment.is_header(s):
sources.append(s)
if len(sources) == 0:
raise InvalidArguments('Line %d: target has no source files.' % node.lineno())
if name in self.build.targets:
raise InvalidCode('Line %d: tried to create target "%s", but a target of that name already exists.' % (node.lineno(), name))
l = targetclass(name, self.subdir, sources, self.environment)
self.build.targets[name] = l
print('Creating build target "%s" with %d files.' % (name, len(sources)))
return l
def function_call(self, node):
func_name = node.get_function_name()
args = self.reduce_arguments(node.arguments)
if func_name in self.funcs:
return self.funcs[func_name](node, args)
else:
raise InvalidCode('Unknown function "%s".' % func_name)
def is_assignable(self, value):
if isinstance(value, InterpreterObject) or \
isinstance(value, environment.PkgConfigDependency) or\
isinstance(value, nodes.StringStatement) or\
isinstance(value, nodes.BoolStatement) or\
isinstance(value, list):
return True
return False
def assignment(self, node):
var_name = node.var_name
if not isinstance(var_name, nodes.AtomExpression):
raise InvalidArguments('Line %d: Tried to assign value to a non-variable.' % node.lineno())
var_name = var_name.get_value()
value = self.evaluate_statement(node.value)
if value is None:
raise InvalidCode('Line %d: Can not assign None to variable.' % node.lineno())
if not self.is_assignable(value):
raise InvalidCode('Line %d: Tried to assign an invalid value to variable.' % node.lineno())
self.variables[var_name] = value
return value
def reduce_arguments(self, args):
assert(isinstance(args, nodes.Arguments))
reduced = []
for arg in args.arguments:
if isinstance(arg, nodes.AtomExpression) or isinstance(arg, nodes.AtomStatement):
if arg.value not in self.variables:
raise InvalidCode('Line %d: variable "%s" is not set' % (arg.lineno(), arg.value))
r = self.variables[arg.value]
elif isinstance(arg, nodes.StringExpression) or isinstance(arg, nodes.StringStatement):
r = arg.get_value()
elif isinstance(arg, nodes.FunctionCall):
r = self.function_call(arg)
elif isinstance(arg, nodes.MethodCall):
r = self.method_call(arg)
else:
raise InvalidCode('Line %d: Irreducible argument.' % args.lineno())
reduced.append(r)
assert(len(reduced) == len(args))
return reduced
def method_call(self, node):
object_name = node.object_name.get_value()
method_name = node.method_name.get_value()
args = node.arguments
if not object_name in self.variables:
raise InvalidArguments('Line %d: unknown variable "%s".' % (node.lineno(), object_name))
obj = self.variables[object_name]
if not isinstance(obj, InterpreterObject):
raise InvalidArguments('Line %d: variable "%s" is not callable.' % (node.lineno(), object_name))
return obj.method_call(method_name, self.reduce_arguments(args))
def evaluate_if(self, node):
result = self.evaluate_statement(node.get_clause())
cond = None
if isinstance(result, nodes.BoolExpression) or \
isinstance(result, nodes.BoolStatement):
cond = result.get_value()
if isinstance(result, bool):
cond = result
if cond is not None:
if cond:
self.evaluate_codeblock(node.get_trueblock())
else:
self.evaluate_codeblock(node.get_falseblock())
else:
print(node.get_clause())
print(result)
raise InvalidCode('Line %d: If clause does not evaluate to true or false.' % node.lineno())
def evaluate_comparison(self, node):
v1 = self.evaluate_statement(node.get_first())
v2 = self.evaluate_statement(node.get_second())
val1 = v1.get_value()
val2 = v2.get_value()
assert(type(val1) == type(val2))
if node.get_ctype() == '==':
return val1 == val2
elif node.get_ctype() == '!=':
return val1 != val2
else:
raise InvalidCode('You broke me.')
def evaluate_arraystatement(self, cur):
arguments = self.reduce_arguments(cur.get_args())
return arguments
if __name__ == '__main__':
code = """project('myawesomeproject')
message('I can haz text printed out?')
language('c')
prog = executable('prog', 'prog.c', 'subfile.c')
dep = find_dep('gtk+-3.0')
prog.add_dep(dep)
"""
i = Interpreter(code, environment.Environment('.', 'work area'))
i.run()
|