summaryrefslogtreecommitdiffstats
path: root/awlsimcli
blob: f0692374fc3afd2e28c730853bd082c66cadc4dc (plain)
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# AWL simulator - Commandline interface
# Copyright 2012 Michael Buesch <m@bues.ch>
#
# Licensed under the terms of the GNU General Public License version 2.
#

import getopt

from awlsim import *


opt_onecycle = False
opt_quiet = False


def usage():
	print("%s [OPTIONS] AWL-source" % sys.argv[0])
	print("")
	print("Options:")
	print(" -1|--onecycle         Only run one cycle")
	print(" -q|--quiet            No status messages")

def writeStdout(message):
	if not opt_quiet:
		sys.stdout.write(message)
		sys.stdout.flush()

nextScreenUpdate = 0.0
lastDump = ""

def blockExitCallback(cpu):
	global nextScreenUpdate
	global lastDump

	now = time.time()
	if now < nextScreenUpdate and\
	   not opt_onecycle:
		return
	nextScreenUpdate = now + 0.1
	dump = str(cpu)
	# Pad lines
	dump = [ line + (79 - len(line)) * ' ' + '|'
		 for line in dump.splitlines() ]
	dump = '\n'.join(dump)
	lastDump = dump
	writeStdout("\x1B[H" + dump)

def main():
	global opt_onecycle
	global opt_quiet

	try:
		(opts, args) = getopt.getopt(sys.argv[1:],
			"h1q",
			[ "help", "onecycle", "quiet", ])
	except getopt.GetoptError as e:
		print(e)
		usage()
		return 1
	for (o, v) in opts:
		if o in ("-h", "--help"):
			usage()
			return 0
		if o in ("-1", "--onecycle"):
			opt_onecycle = True
		if o in ("-q", "--quiet"):
			opt_quiet = True
	if len(args) != 1:
		usage()
		return 1
	awlSource = args[0]

	try:
		p = AwlParser()
		p.parseFile(awlSource)
		s = AwlSim()
		s.load(p.getParseTree())
		s.getCPU().setBlockExitCallback(blockExitCallback,
						s.getCPU())
		try:
			writeStdout("\x1B[?25l\x1B[2J")
			while 1:
				s.runCycle()
				if opt_onecycle:
					break
		finally:
			writeStdout("\x1B[?25h\x1B[2J\x1B[H")
			writeStdout(lastDump + '\n')
	except AwlSimError as e:
		print("-- AWL simulator error --")
		print(str(e))
		return 1
	return 0

if __name__ == "__main__":
	sys.exit(main())
bues.ch cgit interface