refactor(ocpp-server): code formatting
[e-mobility-charging-stations-simulator.git] / tests / ocpp-server / server.py
CommitLineData
fa16d389
S
1import asyncio
2import logging
fa16d389 3from datetime import datetime, timezone
aea49501 4from threading import Timer
fa16d389 5
a89844d4 6import ocpp.v201
1a0d2c47 7import websockets
fa16d389 8from ocpp.routing import on
5dd22b9f 9from ocpp.v201.enums import RegistrationStatusType, ClearCacheStatusType, AuthorizationStatusType, \
22c4f1fc 10 TransactionEventType, \
5dd22b9f 11 Action
fa16d389
S
12
13# Setting up the logging configuration to display debug level messages.
14logging.basicConfig(level=logging.DEBUG)
15
1a0d2c47 16
aea49501
JB
17class RepeatTimer(Timer):
18 """ Class that inherits from the Timer class. It will run a
19 function at regular intervals."""
20
21 def run(self):
22 while not self.finished.wait(self.interval):
23 self.function(*self.args, **self.kwargs)
24
25
fa16d389 26# Define a ChargePoint class inheriting from the OCPP 2.0.1 ChargePoint class.
a89844d4 27class ChargePoint(ocpp.v201.ChargePoint):
aea49501 28 # Message handlers to receive OCPP messages.
339f65ad 29 @on(Action.BootNotification)
d6488e8d
JB
30 async def on_boot_notification(self, charging_station, reason, **kwargs):
31 logging.info("Received BootNotification")
32 # Create and return a BootNotification response with the current time,
5dd22b9f 33 # an interval of 60 seconds, and an accepted status.
339f65ad 34 return ocpp.v201.call_result.BootNotification(
d6488e8d 35 current_time=datetime.now(timezone.utc).isoformat(),
115f3b17 36 interval=60,
d6488e8d
JB
37 status=RegistrationStatusType.accepted
38 )
1a0d2c47 39
115f3b17 40 @on(Action.Heartbeat)
5dd22b9f 41 async def on_heartbeat(self, **kwargs):
115f3b17
JB
42 logging.info("Received Heartbeat")
43 return ocpp.v201.call_result.Heartbeat(current_time=datetime.now(timezone.utc).isoformat())
44
65c0600c 45 @on(Action.StatusNotification)
5dd22b9f
JB
46 async def on_status_notification(self, timestamp, evse_id, connector_id, connector_status,
47 **kwargs):
65c0600c
JB
48 logging.info("Received StatusNotification")
49 return ocpp.v201.call_result.StatusNotification()
50
5dd22b9f
JB
51 @on(Action.Authorize)
52 async def on_authorize(self, id_token, **kwargs):
53 logging.info("Received Authorize")
54 return ocpp.v201.call_result.Authorize(
8430af0a
JB
55 id_token_info={'status': AuthorizationStatusType.accepted}
56 )
5dd22b9f 57
22c4f1fc
JB
58 @on(Action.TransactionEvent)
59 async def on_transaction_event(self, event_type, timestamp, trigger_reason, seq_no,
60 transaction_info, **kwargs):
61 match event_type:
62 case TransactionEventType.started:
63 logging.info("Received TransactionEvent Started")
64 return ocpp.v201.call_result.TransactionEvent(
8430af0a
JB
65 id_token_info={'status': AuthorizationStatusType.accepted}
66 )
22c4f1fc
JB
67 case TransactionEventType.updated:
68 logging.info("Received TransactionEvent Updated")
69 return ocpp.v201.call_result.TransactionEvent(
8430af0a
JB
70 total_cost=10
71 )
22c4f1fc
JB
72 case TransactionEventType.ended:
73 logging.info("Received TransactionEvent Ended")
74 return ocpp.v201.call_result.TransactionEvent()
75
5dd22b9f
JB
76 @on(Action.MeterValues)
77 async def on_meter_values(self, evse_id, meter_value, **kwargs):
78 logging.info("Received MeterValues")
79 return ocpp.v201.call_result.MeterValues()
80
d6488e8d 81 # Request handlers to emit OCPP messages.
a89844d4
JB
82 async def send_clear_cache(self):
83 request = ocpp.v201.call.ClearCache()
84 response = await self.call(request)
85
86 if response.status == ClearCacheStatusType.accepted:
e1c2dac9 87 logging.info("Cache clearing successful")
a89844d4
JB
88 else:
89 logging.info("Cache clearing failed")
1a0d2c47 90
fa16d389
S
91
92# Function to handle new WebSocket connections.
93async def on_connect(websocket, path):
d6488e8d
JB
94 """ For every new charge point that connects, create a ChargePoint instance and start
95 listening for messages."""
96 try:
97 requested_protocols = websocket.request_headers['Sec-WebSocket-Protocol']
98 except KeyError:
99 logging.info("Client hasn't requested any Subprotocol. Closing Connection")
100 return await websocket.close()
1a0d2c47 101
d6488e8d
JB
102 if websocket.subprotocol:
103 logging.info("Protocols Matched: %s", websocket.subprotocol)
104 else:
105 logging.warning('Protocols Mismatched | Expected Subprotocols: %s,'
106 ' but client supports %s | Closing connection',
107 websocket.available_subprotocols,
8430af0a
JB
108 requested_protocols
109 )
d6488e8d 110 return await websocket.close()
1a0d2c47 111
d6488e8d
JB
112 charge_point_id = path.strip('/')
113 cp = ChargePoint(charge_point_id, websocket)
1a0d2c47 114
d6488e8d
JB
115 # Start the ChargePoint instance to listen for incoming messages.
116 await cp.start()
1a0d2c47 117
fa16d389
S
118
119# Main function to start the WebSocket server.
120async def main():
d6488e8d
JB
121 # Create the WebSocket server and specify the handler for new connections.
122 server = await websockets.serve(
123 on_connect,
124 '127.0.0.1', # Listen on loopback.
125 9000, # Port number.
339f65ad 126 subprotocols=['ocpp2.0', 'ocpp2.0.1'] # Specify OCPP 2.0.1 subprotocols.
d6488e8d
JB
127 )
128 logging.info("WebSocket Server Started")
129 # Wait for the server to close (runs indefinitely).
130 await server.wait_closed()
1a0d2c47 131
fa16d389
S
132
133# Entry point of the script.
134if __name__ == '__main__':
d6488e8d
JB
135 # Run the main function to start the server.
136 asyncio.run(main())