-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathClient.java
More file actions
212 lines (187 loc) · 7.97 KB
/
Client.java
File metadata and controls
212 lines (187 loc) · 7.97 KB
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
package eu.chargetime.ocpp;
/*
ChargeTime.eu - Java-OCA-OCPP
Copyright (C) 2015-2016 Thomas Volden <tv@chargetime.eu>
MIT License
Copyright (C) 2016-2018 Thomas Volden
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
import eu.chargetime.ocpp.feature.Feature;
import eu.chargetime.ocpp.model.Confirmation;
import eu.chargetime.ocpp.model.Request;
import java.util.Optional;
import java.util.UUID;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionException;
import javax.annotation.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Handles basic client logic: Holds a list of supported features. Keeps track of outgoing request.
* Calls back when a confirmation is received.
*
* <p>Must be overloaded in order to support specific protocols and formats.
*/
public class Client {
private static final Logger logger = LoggerFactory.getLogger(Client.class);
private final ISession session;
private final IPromiseRepository promiseRepository;
/**
* Handle required injections.
*
* @param session Inject session object
* @param promiseRepository Inject promise repository
* @see Session
*/
public Client(ISession session, IPromiseRepository promiseRepository) {
this.session = session;
this.promiseRepository = promiseRepository;
}
/**
* Connect to server
*
* @param uri url and port of the server
* @param events client events for connect/disconnect
*/
public void connect(String uri, ClientEvents events) {
session.open(
uri,
new SessionEvents() {
@Override
public void handleConfirmation(String uniqueId, @Nullable Confirmation confirmation) {
Optional<CompletableFuture<Confirmation>> promiseOptional =
promiseRepository.getPromise(uniqueId);
if (promiseOptional.isPresent()) {
promiseOptional.get().complete(confirmation);
// join completion to catch and rethrow any exceptions thrown in the last added
// completion action, so that a CALLRESULTERROR may be produced from it.
try {
promiseOptional.get().join();
} catch (CompletionException e) {
Throwable cause = e.getCause() != null ? e.getCause() : e;
if (cause instanceof RuntimeException) {
throw (RuntimeException) cause;
} else {
throw new RuntimeException(cause);
}
}
} else {
logger.debug("Promise not found for confirmation {}", confirmation);
}
}
@Override
public Confirmation handleRequest(Request request) throws UnsupportedFeatureException {
Optional<Feature> featureOptional = session.getFeatureRepository().findFeature(request);
if (featureOptional.isPresent()) {
return featureOptional.get().handleRequest(getSessionId(), request);
} else {
throw new UnsupportedFeatureException();
}
}
@Override
public boolean asyncCompleteRequest(String uniqueId, Confirmation confirmation)
throws UnsupportedFeatureException, OccurenceConstraintException {
return session.completePendingPromise(uniqueId, confirmation);
}
@Override
public void handleError(
String uniqueId, String errorCode, String errorDescription, Object payload) {
Optional<CompletableFuture<Confirmation>> promiseOptional =
promiseRepository.getPromise(uniqueId);
if (promiseOptional.isPresent()) {
promiseOptional
.get()
.completeExceptionally(
new CallErrorException(errorCode, errorDescription, payload));
} else {
logger.debug("Promise not found for error {}", errorDescription);
}
}
@Override
public void handleConfirmationError(
String uniqueId, String errorCode, String errorDescription, Object payload) {
logger.error(
"Received an error which occurred while processing a call result: "
+ "uniqueId {}: errorCode: {}, errorDescription: {}",
uniqueId,
errorCode,
errorDescription);
events.confirmationError(uniqueId, errorCode, errorDescription, payload);
}
@Override
public void handleConnectionClosed() {
if (events != null) events.connectionClosed();
}
@Override
public void handleConnectionOpened() {
if (events != null) events.connectionOpened();
}
});
}
/** Disconnect from server */
public void disconnect() {
try {
session.close();
} catch (Exception ex) {
logger.info("session.close() failed", ex);
}
}
/**
* Send a {@link Request} to the server. Can only send {@link Request} that the client supports.
*
* @param request outgoing request
* @return call back object, will be fulfilled with confirmation when received or {@code null} if
* the request has no confirmation, or exceptionally if a local or remote error occurred.
* @throws UnsupportedFeatureException trying to send a request from an unsupported feature
* @throws OccurenceConstraintException Thrown if the request isn't valid.
* @see CompletableFuture
*/
public CompletableFuture<Confirmation> send(Request request)
throws UnsupportedFeatureException, OccurenceConstraintException {
Optional<Feature> featureOptional = session.getFeatureRepository().findFeature(request);
if (!featureOptional.isPresent()) {
logger.error("Can't send request: unsupported feature. Payload: {}", request);
throw new UnsupportedFeatureException();
}
if (!request.validate()) {
logger.error("Can't send request: not validated. Payload {}: ", request);
throw new OccurenceConstraintException();
}
String requestUuid = session.storeRequest(request);
CompletableFuture<Confirmation> promise = promiseRepository.createPromise(requestUuid);
// Clean up after the promise has completed, no matter if it was successful or had an error or a
// timeout.
promise.whenComplete(
(confirmation, throwable) -> {
session.removeRequest(requestUuid);
promiseRepository.removePromise(requestUuid);
});
if (featureOptional.get().getConfirmationType() != null) {
session.sendRequest(featureOptional.get().getAction(), request, requestUuid);
} else {
session.sendMessage(featureOptional.get().getAction(), request, requestUuid);
}
return promise;
}
public UUID getSessionId() {
return this.session.getSessionId();
}
public boolean asyncCompleteRequest(String uniqueId, Confirmation confirmation)
throws UnsupportedFeatureException, OccurenceConstraintException {
return session.completePendingPromise(uniqueId, confirmation);
}
}