diff -r 9101a72a1da0 -r d631f8671c75 svghmi/svghmi.py --- a/svghmi/svghmi.py Fri Jan 10 13:15:07 2020 +0100 +++ b/svghmi/svghmi.py Fri Jan 10 17:00:01 2020 +0100 @@ -13,6 +13,7 @@ from pprint import pformat import hashlib import weakref +import shlex import wx import wx.dataview as dv @@ -375,8 +376,9 @@ - - + + + @@ -503,19 +505,37 @@ target_file.close() res += ((target_fname, open(target_path, "rb")),) + + svghmi_cmds = {} + for thing in ["Start", "Stop", "Watchdog"]: + given_command = self.GetParamsAttributes("SVGHMI.On"+thing)["value"] + if given_command: + svghmi_cmds[thing] = shlex.split(given_command) runtimefile_path = os.path.join(buildpath, "runtime_svghmi1_%s.py" % location_str) runtimefile = open(runtimefile_path, 'w') runtimefile.write(""" +# TODO : multi +svghmi_cmds = %(svghmi_cmds)s +def svghmi_cmd(cmd): + if cmd in svghmi_cmds: + Popen(svghmi_cmds[cmd]) + +def watchdog_trigger(): + svghmi_cmd("Watchdog") + def _runtime_svghmi1_%(location)s_start(): svghmi_root.putChild('%(view_name)s',File('%(xhtml)s', defaultType='application/xhtml+xml')) + svghmi_cmd("Start") def _runtime_svghmi1_%(location)s_stop(): svghmi_root.delEntity('%(view_name)s') + svghmi_cmd("Stop") """ % {"location": location_str, "xhtml": target_fname, - "view_name": view_name}) + "view_name": view_name, + "svghmi_cmds": repr(svghmi_cmds)}) runtimefile.close()