io.appium.java_client.ws.StringWebSocketClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java client for Appium Mobile Webdriver
The newest version!
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
* 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 io.appium.java_client.ws;
import org.openqa.selenium.remote.http.HttpClient;
import org.openqa.selenium.remote.http.HttpMethod;
import org.openqa.selenium.remote.http.HttpRequest;
import org.openqa.selenium.remote.http.WebSocket;
import javax.annotation.Nullable;
import java.lang.ref.WeakReference;
import java.net.URI;
import java.util.List;
import java.util.Objects;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.function.Consumer;
public class StringWebSocketClient implements WebSocket.Listener,
CanHandleMessages, CanHandleErrors, CanHandleConnects, CanHandleDisconnects {
private final List> messageHandlers = new CopyOnWriteArrayList<>();
private final List> errorHandlers = new CopyOnWriteArrayList<>();
private final List connectHandlers = new CopyOnWriteArrayList<>();
private final List disconnectHandlers = new CopyOnWriteArrayList<>();
private volatile boolean isListening = false;
private final WeakReference httpClient;
public StringWebSocketClient(HttpClient httpClient) {
this.httpClient = new WeakReference<>(httpClient);
}
private URI endpoint;
private void setEndpoint(URI endpoint) {
this.endpoint = endpoint;
}
@Nullable
public URI getEndpoint() {
return this.endpoint;
}
public boolean isListening() {
return isListening;
}
/**
* Connects web socket client.
*
* @param endpoint The full address of an endpoint to connect to.
* Usually starts with 'ws://'.
*/
public void connect(URI endpoint) {
if (endpoint.equals(this.getEndpoint()) && isListening) {
return;
}
HttpRequest request = new HttpRequest(HttpMethod.GET, endpoint.toString());
Objects.requireNonNull(httpClient.get()).openSocket(request, this);
onOpen();
setEndpoint(endpoint);
}
/**
* The callback method invoked on websocket opening.
*/
public void onOpen() {
try {
getConnectionHandlers().forEach(Runnable::run);
} finally {
isListening = true;
}
}
@Override
public void onClose(int code, String reason) {
try {
getDisconnectionHandlers().forEach(Runnable::run);
} finally {
isListening = false;
}
}
@Override
public void onError(Throwable t) {
getErrorHandlers().forEach(x -> x.accept(t));
}
@Override
public void onText(CharSequence data) {
String text = data.toString();
getMessageHandlers().forEach(x -> x.accept(text));
}
@Override
public List> getMessageHandlers() {
return messageHandlers;
}
@Override
public List> getErrorHandlers() {
return errorHandlers;
}
@Override
public List getConnectionHandlers() {
return connectHandlers;
}
@Override
public List getDisconnectionHandlers() {
return disconnectHandlers;
}
/**
* Remove all the registered handlers.
*/
public void removeAllHandlers() {
removeMessageHandlers();
removeErrorHandlers();
removeConnectionHandlers();
removeDisconnectionHandlers();
}
}