org.elasticsearch.transport.FakeTcpChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Elasticsearch subproject :test:framework
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.transport;
import org.elasticsearch.action.ActionListener;
import org.elasticsearch.common.bytes.BytesReference;
import org.elasticsearch.common.util.concurrent.ListenableFuture;
import java.net.InetSocketAddress;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicReference;
public class FakeTcpChannel implements TcpChannel {
private final boolean isServer;
private final InetSocketAddress localAddress;
private final InetSocketAddress remoteAddress;
private final String profile;
private final ChannelStats stats = new ChannelStats();
private final ListenableFuture closeContext = new ListenableFuture<>();
private final AtomicBoolean closed = new AtomicBoolean(false);
private final AtomicReference messageCaptor;
private final AtomicReference> listenerCaptor;
public FakeTcpChannel() {
this(false, "profile", new AtomicReference<>());
}
public FakeTcpChannel(boolean isServer) {
this(isServer, "profile", new AtomicReference<>());
}
public FakeTcpChannel(boolean isServer, InetSocketAddress localAddress, InetSocketAddress remoteAddress) {
this(isServer, localAddress, remoteAddress, "profile", new AtomicReference<>());
}
public FakeTcpChannel(boolean isServer, String profile, AtomicReference messageCaptor) {
this(isServer, null, null, profile, messageCaptor);
}
public FakeTcpChannel(
boolean isServer,
InetSocketAddress localAddress,
InetSocketAddress remoteAddress,
String profile,
AtomicReference messageCaptor
) {
this.isServer = isServer;
this.localAddress = localAddress;
this.remoteAddress = remoteAddress;
this.profile = profile;
this.messageCaptor = messageCaptor;
this.listenerCaptor = new AtomicReference<>();
}
@Override
public boolean isServerChannel() {
return isServer;
}
@Override
public String getProfile() {
return profile;
}
@Override
public InetSocketAddress getLocalAddress() {
return localAddress;
}
@Override
public InetSocketAddress getRemoteAddress() {
return remoteAddress;
}
@Override
public void sendMessage(BytesReference reference, ActionListener listener) {
messageCaptor.set(reference);
listenerCaptor.set(listener);
}
@Override
public void addConnectListener(ActionListener listener) {
}
@Override
public void close() {
if (closed.compareAndSet(false, true)) {
closeContext.onResponse(null);
}
}
@Override
public void addCloseListener(ActionListener listener) {
closeContext.addListener(listener);
}
@Override
public boolean isOpen() {
return closed.get() == false;
}
@Override
public ChannelStats getChannelStats() {
return stats;
}
public AtomicReference getMessageCaptor() {
return messageCaptor;
}
public AtomicReference> getListenerCaptor() {
return listenerCaptor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy