-
-
Notifications
You must be signed in to change notification settings - Fork 417
/
Copy pathAbstractWebSocketEndpoint.java
220 lines (175 loc) · 8.49 KB
/
AbstractWebSocketEndpoint.java
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
/*
* SteVe - SteckdosenVerwaltung - https://github.com/steve-community/steve
* Copyright (C) 2013-2025 SteVe Community Team
* All Rights Reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package de.rwth.idsg.steve.ocpp.ws;
import com.google.common.base.Strings;
import de.rwth.idsg.steve.config.WebSocketConfiguration;
import de.rwth.idsg.steve.config.DelegatingTaskScheduler;
import de.rwth.idsg.steve.ocpp.OcppTransport;
import de.rwth.idsg.steve.ocpp.OcppVersion;
import de.rwth.idsg.steve.ocpp.ws.data.CommunicationContext;
import de.rwth.idsg.steve.ocpp.ws.data.SessionContext;
import de.rwth.idsg.steve.ocpp.ws.pipeline.IncomingPipeline;
import de.rwth.idsg.steve.repository.OcppServerRepository;
import de.rwth.idsg.steve.service.notification.OcppStationWebSocketConnected;
import de.rwth.idsg.steve.service.notification.OcppStationWebSocketDisconnected;
import org.joda.time.DateTime;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationEventPublisher;
import org.springframework.web.socket.BinaryMessage;
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.PongMessage;
import org.springframework.web.socket.SubProtocolCapable;
import org.springframework.web.socket.TextMessage;
import org.springframework.web.socket.WebSocketMessage;
import org.springframework.web.socket.WebSocketSession;
import java.time.Instant;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Deque;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ScheduledFuture;
import java.util.function.Consumer;
/**
* @author Sevket Goekay <[email protected]>
* @since 17.03.2015
*/
public abstract class AbstractWebSocketEndpoint extends ConcurrentWebSocketHandler implements SubProtocolCapable {
@Autowired private DelegatingTaskScheduler asyncTaskScheduler;
@Autowired private OcppServerRepository ocppServerRepository;
@Autowired private FutureResponseContextStore futureResponseContextStore;
@Autowired private ApplicationEventPublisher applicationEventPublisher;
public static final String CHARGEBOX_ID_KEY = "CHARGEBOX_ID_KEY";
private final SessionContextStore sessionContextStore = new SessionContextStore();
private final List<Consumer<String>> connectedCallbackList = new ArrayList<>();
private final List<Consumer<String>> disconnectedCallbackList = new ArrayList<>();
private final Object sessionContextLock = new Object();
private IncomingPipeline pipeline;
public abstract OcppVersion getVersion();
public void init(IncomingPipeline pipeline) {
this.pipeline = pipeline;
connectedCallbackList.add((chargeBoxId) -> applicationEventPublisher.publishEvent(new OcppStationWebSocketConnected(chargeBoxId)));
disconnectedCallbackList.add((chargeBoxId) -> applicationEventPublisher.publishEvent(new OcppStationWebSocketDisconnected(chargeBoxId)));
}
@Override
public List<String> getSubProtocols() {
return Collections.singletonList(getVersion().getValue());
}
@Override
public void onMessage(WebSocketSession session, WebSocketMessage<?> message) throws Exception {
if (message instanceof TextMessage) {
handleTextMessage(session, (TextMessage) message);
} else if (message instanceof PongMessage) {
handlePongMessage(session);
} else if (message instanceof BinaryMessage) {
session.close(CloseStatus.NOT_ACCEPTABLE.withReason("Binary messages not supported"));
} else {
throw new IllegalStateException("Unexpected WebSocket message type: " + message);
}
}
private void handleTextMessage(WebSocketSession session, TextMessage webSocketMessage) throws Exception {
String incomingString = webSocketMessage.getPayload();
String chargeBoxId = getChargeBoxId(session);
// https://github.com/steve-community/steve/issues/66
if (Strings.isNullOrEmpty(incomingString)) {
WebSocketLogger.receivedEmptyText(chargeBoxId, session);
return;
}
WebSocketLogger.receivedText(chargeBoxId, session, incomingString);
CommunicationContext context = new CommunicationContext(session, chargeBoxId);
context.setIncomingString(incomingString);
pipeline.accept(context);
}
private void handlePongMessage(WebSocketSession session) {
WebSocketLogger.receivedPong(getChargeBoxId(session), session);
ocppServerRepository.updateChargeboxHeartbeat(getChargeBoxId(session), DateTime.now());
}
@Override
public void onOpen(WebSocketSession session) throws Exception {
String chargeBoxId = getChargeBoxId(session);
WebSocketLogger.connected(chargeBoxId, session);
ocppServerRepository.updateOcppProtocol(chargeBoxId, getVersion().toProtocol(OcppTransport.JSON));
// Just to keep the connection alive, such that the servers do not close
// the connection because of a idle timeout, we ping-pong at fixed intervals.
ScheduledFuture pingSchedule = asyncTaskScheduler.scheduleAtFixedRate(
new PingTask(chargeBoxId, session),
Instant.now().plus(WebSocketConfiguration.PING_INTERVAL),
WebSocketConfiguration.PING_INTERVAL
);
futureResponseContextStore.addSession(session);
int sizeBeforeAdd;
synchronized (sessionContextLock) {
sizeBeforeAdd = sessionContextStore.getSize(chargeBoxId);
sessionContextStore.add(chargeBoxId, session, pingSchedule);
}
// Take into account that there might be multiple connections to a charging station.
// Send notification only for the change 0 -> 1.
if (sizeBeforeAdd == 0) {
connectedCallbackList.forEach(consumer -> consumer.accept(chargeBoxId));
}
}
@Override
public void onClose(WebSocketSession session, CloseStatus closeStatus) throws Exception {
String chargeBoxId = getChargeBoxId(session);
WebSocketLogger.closed(chargeBoxId, session, closeStatus);
futureResponseContextStore.removeSession(session);
int sizeAfterRemove;
synchronized (sessionContextLock) {
sessionContextStore.remove(chargeBoxId, session);
sizeAfterRemove = sessionContextStore.getSize(chargeBoxId);
}
// Take into account that there might be multiple connections to a charging station.
// Send notification only for the change 1 -> 0.
if (sizeAfterRemove == 0) {
disconnectedCallbackList.forEach(consumer -> consumer.accept(chargeBoxId));
}
}
@Override
public void onError(WebSocketSession session, Throwable throwable) throws Exception {
WebSocketLogger.transportError(getChargeBoxId(session), session, throwable);
}
@Override
public boolean supportsPartialMessages() {
return false;
}
// -------------------------------------------------------------------------
// Helpers
// -------------------------------------------------------------------------
protected String getChargeBoxId(WebSocketSession session) {
return (String) session.getAttributes().get(CHARGEBOX_ID_KEY);
}
protected void registerConnectedCallback(Consumer<String> consumer) {
connectedCallbackList.add(consumer);
}
protected void registerDisconnectedCallback(Consumer<String> consumer) {
disconnectedCallbackList.add(consumer);
}
public List<String> getChargeBoxIdList() {
return sessionContextStore.getChargeBoxIdList();
}
public int getNumberOfChargeBoxes() {
return sessionContextStore.getNumberOfChargeBoxes();
}
public Map<String, Deque<SessionContext>> getACopy() {
return sessionContextStore.getACopy();
}
public WebSocketSession getSession(String chargeBoxId) {
return sessionContextStore.getSession(chargeBoxId);
}
}