Compare commits
2 Commits
v2.0.2
...
feature/as
Author | SHA1 | Date | |
---|---|---|---|
9b62867b3f
|
|||
c494c0c81b
|
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -11,11 +11,11 @@ jobs:
|
||||
analysis: true
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Set up Java
|
||||
uses: actions/setup-java@v2
|
||||
uses: actions/setup-java@v3
|
||||
with:
|
||||
java-version: ${{ matrix.jdk }}
|
||||
distribution: 'temurin'
|
||||
|
17
CHANGELOG.md
17
CHANGELOG.md
@ -1,6 +1,17 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## unreleased
|
||||
|
||||
### Features
|
||||
* New methods for asynchronous trip, stop and message retrieval (#15)
|
||||
|
||||
|
||||
## 2.0.3 - 2022-08-30
|
||||
### Security
|
||||
* Updated dependencies
|
||||
|
||||
|
||||
## 2.0.2 - 2022-04-13
|
||||
### Security
|
||||
* Updated dependencies
|
||||
@ -31,6 +42,12 @@ All notable changes to this project will be documented in this file.
|
||||
|
||||
----
|
||||
|
||||
## 1.3.2 - 2022-08-30
|
||||
|
||||
### Improvements
|
||||
* Dependency updates
|
||||
|
||||
|
||||
## 1.3.1 - 2020-12-12
|
||||
### Fixed
|
||||
* Allow reopening an `AsyncUraTripReader` without raising an exception (#13)
|
||||
|
14
pom.xml
14
pom.xml
@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>de.stklcode.pubtrans</groupId>
|
||||
<artifactId>juraclient</artifactId>
|
||||
<version>2.0.2</version>
|
||||
<version>2.1.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
@ -50,13 +50,13 @@
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>2.13.2.2</version>
|
||||
<version>2.13.3</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.junit.jupiter</groupId>
|
||||
<artifactId>junit-jupiter</artifactId>
|
||||
<version>5.8.2</version>
|
||||
<version>5.9.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@ -68,7 +68,7 @@
|
||||
<dependency>
|
||||
<groupId>com.github.tomakehurst</groupId>
|
||||
<artifactId>wiremock-jre8</artifactId>
|
||||
<version>2.33.0</version>
|
||||
<version>2.33.2</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
@ -91,12 +91,14 @@
|
||||
<version>3.10.1</version>
|
||||
<configuration>
|
||||
<release>11</release>
|
||||
<source>11</source>
|
||||
<target>11</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<version>3.2.0</version>
|
||||
<version>3.2.2</version>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
@ -176,7 +178,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.3.2</version>
|
||||
<version>3.4.1</version>
|
||||
<configuration>
|
||||
<overview>${basedir}/src/main/javadoc/overview.html</overview>
|
||||
<source>11</source>
|
||||
|
@ -17,6 +17,7 @@
|
||||
package de.stklcode.pubtrans.ura;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import de.stklcode.pubtrans.ura.exception.AsyncUraClientException;
|
||||
import de.stklcode.pubtrans.ura.exception.UraClientConfigurationException;
|
||||
import de.stklcode.pubtrans.ura.exception.UraClientException;
|
||||
import de.stklcode.pubtrans.ura.model.Message;
|
||||
@ -33,6 +34,8 @@ import java.net.http.HttpResponse;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.CompletableFuture;
|
||||
import java.util.concurrent.CompletionException;
|
||||
import java.util.function.Consumer;
|
||||
|
||||
import static java.nio.charset.StandardCharsets.UTF_8;
|
||||
@ -244,7 +247,6 @@ public class UraClient implements Serializable {
|
||||
* @param query The query.
|
||||
* @return List of trips.
|
||||
* @throws UraClientException Error with API communication.
|
||||
* @throws UraClientException Error with API communication.
|
||||
* @since 1.0
|
||||
* @since 2.0 Throws {@link UraClientException}.
|
||||
*/
|
||||
@ -263,27 +265,84 @@ public class UraClient implements Serializable {
|
||||
* @since 2.0 Throws {@link UraClientException}.
|
||||
*/
|
||||
public List<Trip> getTrips(final Query query, final Integer limit) throws UraClientException {
|
||||
List<Trip> trips = new ArrayList<>();
|
||||
try (InputStream is = requestInstant(REQUEST_TRIP, query);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String version = null;
|
||||
String line = br.readLine();
|
||||
while (line != null && (limit == null || trips.size() < limit)) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty()) {
|
||||
if (l.get(0).equals(RES_TYPE_URA_VERSION)) {
|
||||
version = l.get(1).toString();
|
||||
} else if (l.get(0).equals(RES_TYPE_PREDICTION)) {
|
||||
trips.add(new Trip(l, version));
|
||||
}
|
||||
}
|
||||
line = br.readLine();
|
||||
try {
|
||||
return getTripsAsync(query, limit).join();
|
||||
} catch (CompletionException e) {
|
||||
if (e.getCause() instanceof AsyncUraClientException) {
|
||||
throw new UraClientException((AsyncUraClientException) e.getCause());
|
||||
} else {
|
||||
throw new UraClientException("Asynchronous trip request failed to complete", e.getCause());
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new UraClientException("Failed to read trips from API", e);
|
||||
}
|
||||
return trips;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of trips asynchronously.
|
||||
* If forStops() and/or forLines() has been called, those will be used as filter.
|
||||
*
|
||||
* @return List of trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Trip>> getTripsAsync() {
|
||||
return getTripsAsync(new Query(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of trips with limit asynchronously.
|
||||
* If forStops() and/or forLines() has been called, those will be used as filter.
|
||||
*
|
||||
* @param limit Maximum number of results.
|
||||
* @return List of trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Trip>> getTripsAsync(final Integer limit) {
|
||||
return getTripsAsync(new Query(), limit);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of trips asynchronously.
|
||||
* If forStops() and/or forLines() has been called, those will be used as filter.
|
||||
*
|
||||
* @param query The query.
|
||||
* @return List of trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Trip>> getTripsAsync(final Query query) {
|
||||
return getTripsAsync(query, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of trips for given stopIDs and lineIDs with result limit asynchronously.
|
||||
*
|
||||
* @param query The query.
|
||||
* @param limit Maximum number of results.
|
||||
* @return List of trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Trip>> getTripsAsync(final Query query, final Integer limit) {
|
||||
return requestInstantAsync(REQUEST_TRIP, query).thenApply(is -> {
|
||||
List<Trip> trips = new ArrayList<>();
|
||||
try (is; BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String version = null;
|
||||
String line = br.readLine();
|
||||
while (line != null && (limit == null || trips.size() < limit)) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty()) {
|
||||
if (l.get(0).equals(RES_TYPE_URA_VERSION)) {
|
||||
version = l.get(1).toString();
|
||||
} else if (l.get(0).equals(RES_TYPE_PREDICTION)) {
|
||||
trips.add(new Trip(l, version));
|
||||
}
|
||||
}
|
||||
line = br.readLine();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new AsyncUraClientException("Failed to read trips from API", e);
|
||||
}
|
||||
|
||||
return trips;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
@ -351,21 +410,52 @@ public class UraClient implements Serializable {
|
||||
* @since 2.0 Throws {@link UraClientException}.
|
||||
*/
|
||||
public List<Stop> getStops(final Query query) throws UraClientException {
|
||||
List<Stop> stops = new ArrayList<>();
|
||||
try (InputStream is = requestInstant(REQUEST_STOP, query);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String line;
|
||||
while ((line = br.readLine()) != null) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty() && l.get(0).equals(RES_TYPE_STOP)) {
|
||||
stops.add(new Stop(l));
|
||||
}
|
||||
try {
|
||||
return getStopsAsync(query).join();
|
||||
} catch (CompletionException e) {
|
||||
if (e.getCause() instanceof AsyncUraClientException) {
|
||||
throw new UraClientException((AsyncUraClientException) e.getCause());
|
||||
} else {
|
||||
throw new UraClientException("Asynchronous stop request failed to complete", e.getCause());
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new UraClientException("Failed to read stops from API", e);
|
||||
}
|
||||
return stops;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of stops without filters asynchronously.
|
||||
*
|
||||
* @return The list of stops.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Stop>> getStopsAsync() {
|
||||
return getStopsAsync(new Query());
|
||||
}
|
||||
|
||||
/**
|
||||
* List available stopIDs asynchronously.
|
||||
* If forStops() and/or forLines() has been called, those will be used as filter.
|
||||
*
|
||||
* @param query The query.
|
||||
* @return The list.
|
||||
* @since 2.0
|
||||
*/
|
||||
public CompletableFuture<List<Stop>> getStopsAsync(final Query query) {
|
||||
return requestInstantAsync(REQUEST_TRIP, query).thenApply(is -> {
|
||||
List<Stop> stops = new ArrayList<>();
|
||||
try (is; BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String line;
|
||||
while ((line = br.readLine()) != null) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty() && l.get(0).equals(RES_TYPE_STOP)) {
|
||||
stops.add(new Stop(l));
|
||||
}
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new AsyncUraClientException("Failed to read stops from API", e);
|
||||
}
|
||||
return stops;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
@ -406,39 +496,83 @@ public class UraClient implements Serializable {
|
||||
* @since 2.0 Throw {@link UraClientException}.
|
||||
*/
|
||||
public List<Message> getMessages(final Query query, final Integer limit) throws UraClientException {
|
||||
List<Message> messages = new ArrayList<>();
|
||||
try (InputStream is = requestInstant(REQUEST_MESSAGE, query);
|
||||
BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String version = null;
|
||||
String line = br.readLine();
|
||||
while (line != null && (limit == null || messages.size() < limit)) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty()) {
|
||||
if (l.get(0).equals(RES_TYPE_URA_VERSION)) {
|
||||
version = l.get(1).toString();
|
||||
} else if (l.get(0).equals(RES_TYPE_FLEX_MESSAGE)) {
|
||||
messages.add(new Message(l, version));
|
||||
}
|
||||
}
|
||||
line = br.readLine();
|
||||
try {
|
||||
return getMessagesAsync(query, limit).join();
|
||||
} catch (CompletionException e) {
|
||||
if (e.getCause() instanceof AsyncUraClientException) {
|
||||
throw new UraClientException((AsyncUraClientException) e.getCause());
|
||||
} else {
|
||||
throw new UraClientException("Asynchronous message request failed to complete", e.getCause());
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new UraClientException("Failed to read messages from API", e);
|
||||
}
|
||||
return messages;
|
||||
}
|
||||
|
||||
/**
|
||||
* Issue request to instant endpoint and return input stream.
|
||||
* Get list of messages.
|
||||
*
|
||||
* @return List of messages.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Message>> getMessagesAsync() {
|
||||
return getMessagesAsync(new Query(), null);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get list of messages asynchronously.
|
||||
* If forStops() has been called, those will be used as filter.
|
||||
*
|
||||
* @param query The query.
|
||||
* @return List of messages.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Message>> getMessagesAsync(final Query query) {
|
||||
return getMessagesAsync(query, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of messages for given stopIDs with result limit asynchronously.
|
||||
*
|
||||
* @param query The query.
|
||||
* @param limit Maximum number of results.
|
||||
* @return List of messages.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Message>> getMessagesAsync(final Query query, final Integer limit) {
|
||||
return requestInstantAsync(REQUEST_MESSAGE, query).thenApply(is -> {
|
||||
List<Message> messages = new ArrayList<>();
|
||||
try (is; BufferedReader br = new BufferedReader(new InputStreamReader(is))) {
|
||||
String version = null;
|
||||
String line = br.readLine();
|
||||
while (line != null && (limit == null || messages.size() < limit)) {
|
||||
List<Serializable> l = mapper.readValue(line, mapper.getTypeFactory().constructCollectionType(List.class, Serializable.class));
|
||||
/* Check if result exists and has correct response type */
|
||||
if (l != null && !l.isEmpty()) {
|
||||
if (l.get(0).equals(RES_TYPE_URA_VERSION)) {
|
||||
version = l.get(1).toString();
|
||||
} else if (l.get(0).equals(RES_TYPE_FLEX_MESSAGE)) {
|
||||
messages.add(new Message(l, version));
|
||||
}
|
||||
}
|
||||
line = br.readLine();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
throw new AsyncUraClientException("Failed to read messages from API", e);
|
||||
}
|
||||
return messages;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Issue asynchronous request to instant endpoint and return input stream.
|
||||
*
|
||||
* @param returnList Fields to fetch.
|
||||
* @param query The query.
|
||||
* @return Response {@link InputStream}.
|
||||
* @throws IOException on errors
|
||||
* @since 2.1
|
||||
*/
|
||||
private InputStream requestInstant(final String[] returnList, final Query query) throws IOException {
|
||||
return request(requestURL(config.getBaseURL() + config.getInstantPath(), returnList, query));
|
||||
private CompletableFuture<InputStream> requestInstantAsync(final String[] returnList, final Query query) {
|
||||
return requestAsync(requestURL(config.getBaseURL() + config.getInstantPath(), returnList, query));
|
||||
}
|
||||
|
||||
/**
|
||||
@ -498,6 +632,28 @@ public class UraClient implements Serializable {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Open given URL as InputStream.
|
||||
*
|
||||
* @param url The URL.
|
||||
* @return Response {@link InputStream}.
|
||||
* @since 2.1
|
||||
*/
|
||||
private CompletableFuture<InputStream> requestAsync(String url) {
|
||||
var clientBuilder = HttpClient.newBuilder();
|
||||
if (config.getConnectTimeout() != null) {
|
||||
clientBuilder.connectTimeout(config.getConnectTimeout());
|
||||
}
|
||||
|
||||
var reqBuilder = HttpRequest.newBuilder(URI.create(url)).GET();
|
||||
if (config.getTimeout() != null) {
|
||||
reqBuilder.timeout(config.getTimeout());
|
||||
}
|
||||
|
||||
return clientBuilder.build().sendAsync(reqBuilder.build(), HttpResponse.BodyHandlers.ofInputStream())
|
||||
.thenApply(HttpResponse::body);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a URL parameter with list of values, if filled.
|
||||
*
|
||||
@ -630,6 +786,16 @@ public class UraClient implements Serializable {
|
||||
return UraClient.this.getStops(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get stops for set filters asynchronously.
|
||||
*
|
||||
* @return List of matching trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Stop>> getStopsAsync() {
|
||||
return UraClient.this.getStopsAsync(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trips for set filters.
|
||||
*
|
||||
@ -642,6 +808,16 @@ public class UraClient implements Serializable {
|
||||
return UraClient.this.getTrips(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trips for set filters asynchronously.
|
||||
*
|
||||
* @return List of matching trips.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Trip>> getTripsAsync() {
|
||||
return UraClient.this.getTripsAsync(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trips for set filters.
|
||||
*
|
||||
@ -678,5 +854,15 @@ public class UraClient implements Serializable {
|
||||
public List<Message> getMessages() throws UraClientException {
|
||||
return UraClient.this.getMessages(this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get trips for set filters asynchronously.
|
||||
*
|
||||
* @return List of matching messages.
|
||||
* @since 2.1
|
||||
*/
|
||||
public CompletableFuture<List<Message>> getMessagesAsync() {
|
||||
return UraClient.this.getMessagesAsync(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Copyright 2016-2021 Stefan Kalscheuer
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package de.stklcode.pubtrans.ura.exception;
|
||||
|
||||
/**
|
||||
* Custom exception class indicating an error with the URA API communication.
|
||||
*
|
||||
* @author Stefan Kalscheuer
|
||||
* @since 2.1
|
||||
*/
|
||||
public class AsyncUraClientException extends RuntimeException {
|
||||
private static final long serialVersionUID = -7530123149703928296L;
|
||||
|
||||
/**
|
||||
* Default constructor.
|
||||
*
|
||||
* @param message The detail message (which is saved for later retrieval by the {@link #getMessage()} method)
|
||||
* @param cause The cause (which is saved for later retrieval by the {@link #getCause()} method).
|
||||
*/
|
||||
public AsyncUraClientException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
@ -36,4 +36,13 @@ public class UraClientException extends IOException {
|
||||
public UraClientException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor from asynchronous exception.
|
||||
*
|
||||
* @param e Asynchronous exception to wrap.
|
||||
*/
|
||||
public UraClientException(AsyncUraClientException e) {
|
||||
super(e.getMessage(), e.getCause());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user