2022-11-04 22:51:07 +00:00
|
|
|
# State machine for the charger
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
#------------------------------------------------------------
|
|
|
|
|
|
|
|
import pyPlcTcpSocket
|
|
|
|
import time # for time.sleep()
|
2022-11-08 11:01:54 +00:00
|
|
|
from helpers import prettyHexMessage
|
2022-11-07 12:38:06 +00:00
|
|
|
from exiConnector import * # for EXI data handling/converting
|
2022-11-04 22:51:07 +00:00
|
|
|
|
|
|
|
stateWaitForSupportedApplicationProtocolRequest = 0
|
|
|
|
stateWaitForSessionSetupRequest = 1
|
|
|
|
stateWaitForServiceDiscoveryRequest = 2
|
|
|
|
stateWaitForPaymentServiceSelectionRequest = 3
|
|
|
|
stateWaitForAuthorizationRequest = 4
|
|
|
|
stateWaitForChargeParameterRequest = 5
|
|
|
|
stateWaitForCableCheckRequest = 6
|
|
|
|
stateWaitForPreChargeRequest = 7
|
|
|
|
stateWaitForPowerDeliveryRequest = 8
|
|
|
|
|
|
|
|
class fsmEvse():
|
|
|
|
def enterState(self, n):
|
|
|
|
print("from " + str(self.state) + " entering " + str(n))
|
|
|
|
self.state = n
|
|
|
|
self.cyclesInState = 0
|
|
|
|
|
|
|
|
def isTooLong(self):
|
|
|
|
# The timeout handling function.
|
2022-11-08 11:01:54 +00:00
|
|
|
return (self.cyclesInState > 50)
|
2022-11-04 22:51:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def stateFunctionWaitForSupportedApplicationProtocolRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
2022-11-08 11:01:54 +00:00
|
|
|
print("In state WaitForSupportedApplicationProtocolRequest, received " + prettyHexMessage(self.rxData))
|
2022-11-07 12:38:06 +00:00
|
|
|
exidata = removeV2GTPHeader(self.rxData)
|
2022-11-08 11:01:54 +00:00
|
|
|
print("received exi" + prettyHexMessage(exidata))
|
2022-11-04 22:51:07 +00:00
|
|
|
self.rxData = []
|
2022-11-07 12:38:06 +00:00
|
|
|
strConverterResult = exiDecode(exidata)
|
|
|
|
print(strConverterResult)
|
|
|
|
if (strConverterResult.find("ProtocolNamespace=urn:din")>0):
|
|
|
|
# todo: of course we should care for schemaID and prio also here
|
|
|
|
print("Detected DIN")
|
2022-11-08 11:01:54 +00:00
|
|
|
# Eh for encode handshake, SupportedApplicationProtocolResponse
|
|
|
|
msg = addV2GTPHeader(exiEncode("Eh"))
|
|
|
|
print("responding " + prettyHexMessage(msg))
|
2022-11-07 12:38:06 +00:00
|
|
|
self.Tcp.transmit(msg)
|
2022-11-08 11:01:54 +00:00
|
|
|
self.enterState(1)
|
2022-11-04 22:51:07 +00:00
|
|
|
|
|
|
|
def stateFunctionWaitForSessionSetupRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
2022-11-08 11:01:54 +00:00
|
|
|
print("In state stateFunctionWaitForSessionSetupRequest, received " + prettyHexMessage(self.rxData))
|
|
|
|
exidata = removeV2GTPHeader(self.rxData)
|
|
|
|
print("received exi" + prettyHexMessage(exidata))
|
2022-11-04 22:51:07 +00:00
|
|
|
self.rxData = []
|
2022-11-08 11:01:54 +00:00
|
|
|
strConverterResult = exiDecode(exidata)
|
|
|
|
print(strConverterResult)
|
|
|
|
if (True):
|
|
|
|
# todo: check the request content, and fill response parameters
|
|
|
|
msg = addV2GTPHeader(exiEncode("EDa")) # EDa for Encode, Din, SessionSetupResponse
|
|
|
|
print("responding " + prettyHexMessage(msg))
|
|
|
|
self.Tcp.transmit(msg)
|
|
|
|
self.enterState(2)
|
2022-11-04 22:51:07 +00:00
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForServiceDiscoveryRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(3)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForPaymentServiceSelectionRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(4)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForAuthorizationRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(5)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForChargeParameterRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(6)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForCableCheckRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(7)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForPreChargeRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(8)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
def stateFunctionWaitForPowerDeliveryRequest(self):
|
|
|
|
if (len(self.rxData)>0):
|
|
|
|
self.rxData = []
|
|
|
|
self.enterState(0)
|
|
|
|
if (self.isTooLong()):
|
|
|
|
self.enterState(0)
|
|
|
|
|
|
|
|
|
|
|
|
stateFunctions = {
|
|
|
|
stateWaitForSupportedApplicationProtocolRequest: stateFunctionWaitForSupportedApplicationProtocolRequest,
|
|
|
|
stateWaitForSessionSetupRequest: stateFunctionWaitForSessionSetupRequest,
|
|
|
|
stateWaitForServiceDiscoveryRequest: stateFunctionWaitForServiceDiscoveryRequest,
|
|
|
|
stateWaitForPaymentServiceSelectionRequest: stateFunctionWaitForPaymentServiceSelectionRequest,
|
|
|
|
stateWaitForAuthorizationRequest: stateFunctionWaitForAuthorizationRequest,
|
|
|
|
stateWaitForChargeParameterRequest: stateFunctionWaitForChargeParameterRequest,
|
|
|
|
stateWaitForCableCheckRequest: stateFunctionWaitForCableCheckRequest,
|
|
|
|
stateWaitForPreChargeRequest: stateFunctionWaitForPreChargeRequest,
|
|
|
|
stateWaitForPowerDeliveryRequest: stateFunctionWaitForPowerDeliveryRequest,
|
|
|
|
}
|
|
|
|
|
2022-11-07 08:21:25 +00:00
|
|
|
def reInit(self):
|
|
|
|
print("re-initializing fsmEvse")
|
|
|
|
self.state = 0
|
|
|
|
self.cyclesInState = 0
|
|
|
|
self.rxData = []
|
|
|
|
|
2022-11-04 22:51:07 +00:00
|
|
|
def __init__(self):
|
|
|
|
print("initializing fsmEvse")
|
|
|
|
self.Tcp = pyPlcTcpSocket.pyPlcTcpServerSocket()
|
|
|
|
self.state = 0
|
|
|
|
self.cyclesInState = 0
|
|
|
|
self.rxData = []
|
|
|
|
|
|
|
|
def mainfunction(self):
|
|
|
|
self.Tcp.mainfunction() # call the lower-level worker
|
|
|
|
if (self.Tcp.isRxDataAvailable()):
|
|
|
|
self.rxData = self.Tcp.getRxData()
|
2022-11-08 11:01:54 +00:00
|
|
|
#print("received " + str(self.rxData))
|
2022-11-04 22:51:07 +00:00
|
|
|
#msg = "ok, you sent " + str(self.rxData)
|
|
|
|
#print("responding " + msg)
|
|
|
|
#self.Tcp.transmit(bytes(msg, "utf-8"))
|
|
|
|
# run the state machine:
|
|
|
|
self.cyclesInState += 1 # for timeout handling, count how long we are in a state
|
|
|
|
self.stateFunctions[self.state](self)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
print("Testing the evse state machine")
|
|
|
|
evse = fsmEvse()
|
|
|
|
print("Press Ctrl-Break for aborting")
|
|
|
|
while (True):
|
|
|
|
time.sleep(0.1)
|
|
|
|
evse.mainfunction()
|
|
|
|
|
|
|
|
|