pyPLC/pyPlcWorker.py

101 lines
4 KiB
Python
Raw Normal View History

# Worker for the pyPLC
#
# Tested on Windows10 with python 3.9
#
#------------------------------------------------------------
import pyPlcHomeplug
import fsmEvse
import fsmPev
from pyPlcModes import *
2022-11-11 10:21:28 +00:00
import addressManager
class pyPlcWorker():
2022-11-16 18:33:37 +00:00
def __init__(self, callbackAddToTrace=None, callbackShowStatus=None, mode=C_EVSE_MODE, isSimulationMode=0):
print("initializing pyPlcWorker")
self.nMainFunctionCalls=0
self.mode = mode
self.strUserAction = ""
2022-11-11 10:21:28 +00:00
self.addressManager = addressManager.addressManager()
self.addressManager.findLinkLocalIpv6Address()
self.callbackAddToTrace = callbackAddToTrace
self.callbackShowStatus = callbackShowStatus
2022-11-15 18:36:20 +00:00
self.oldAvlnStatus = 0
2022-11-16 18:33:37 +00:00
self.isSimulationMode = isSimulationMode
2022-11-22 20:34:27 +00:00
self.hp = pyPlcHomeplug.pyPlcHomeplug(self.workerAddToTrace, self.callbackShowStatus, self.mode, self.addressManager, self.callbackReadyForTcp, self.isSimulationMode)
self.hp.printToUdp("pyPlcWorker init")
if (self.mode == C_EVSE_MODE):
2022-11-22 20:34:27 +00:00
self.evse = fsmEvse.fsmEvse(self.workerAddToTrace)
if (self.mode == C_PEV_MODE):
2022-11-22 20:34:27 +00:00
self.pev = fsmPev.fsmPev(self.addressManager, self.workerAddToTrace)
2022-11-22 20:34:27 +00:00
def workerAddToTrace(self, s):
# The central logging function. All logging messages from the different parts of the project
# shall come here.
#print("workerAddToTrace " + s)
self.callbackAddToTrace(s) # give the message to the upper level, eg for console log.
self.hp.printToUdp(s) # give the message to the udp for remote logging.
def showStatus(self, s, selection = ""):
self.callbackShowStatus(s, selection)
2022-11-15 18:36:20 +00:00
2022-11-17 12:08:36 +00:00
def callbackReadyForTcp(self, status):
2022-11-15 18:36:20 +00:00
if (status==1):
2022-11-22 20:34:27 +00:00
self.workerAddToTrace("[PLCWORKER] Network is established, ready for TCP.")
2022-11-15 18:36:20 +00:00
if (self.oldAvlnStatus==0):
self.oldAvlnStatus = 1
if (self.mode == C_PEV_MODE):
self.pev.reInit()
else:
2022-11-22 20:34:27 +00:00
self.workerAddToTrace("[PLCWORKER] no network")
2022-11-15 18:36:20 +00:00
self.oldAvlnStatus = 0
def mainfunction(self):
self.nMainFunctionCalls+=1
2022-10-14 21:36:03 +00:00
#self.showStatus("pyPlcWorker loop " + str(self.nMainFunctionCalls))
self.hp.mainfunction() # call the lower-level worker
if (self.mode == C_EVSE_MODE):
self.evse.mainfunction() # call the evse state machine
if (self.mode == C_PEV_MODE):
self.pev.mainfunction() # call the pev state machine
def handleUserAction(self, strAction):
self.strUserAction = strAction
if (strAction == "P"):
print("switching to PEV mode")
self.mode = C_PEV_MODE
if (hasattr(self, 'evse')):
print("deleting evse")
del self.evse
self.hp.enterPevMode()
if (not hasattr(self, 'pev')):
print("creating pev")
2022-11-22 20:34:27 +00:00
self.pev = fsmPev.fsmPev(self.addressManager, self.workerAddToTrace)
self.pev.reInit()
if (strAction == "E"):
print("switching to EVSE mode")
self.mode = C_EVSE_MODE
if (hasattr(self, 'pev')):
print("deleting pev")
del self.pev
self.hp.enterEvseMode()
if (not hasattr(self, 'evse')):
print("creating fsmEvse")
2022-11-22 20:34:27 +00:00
self.evse = fsmEvse.fsmEvse(self.workerAddToTrace)
self.evse.reInit()
if (strAction == "L"):
print("switching to LISTEN mode")
self.mode = C_LISTEN_MODE
2022-10-24 21:19:45 +00:00
self.hp.enterListenMode()
if (hasattr(self, 'evse')):
print("deleting evse")
del self.evse
if (hasattr(self, 'pev')):
print("deleting pev")
del self.pev
2022-10-24 21:19:45 +00:00
# self.addToTrace("UserAction " + strAction)
2022-10-16 00:57:57 +00:00
self.hp.sendTestFrame(strAction)