1 package net.pterodactylus.fcp.quelaton;
3 import java.io.IOException;
4 import java.util.Optional;
5 import java.util.concurrent.ExecutionException;
6 import java.util.concurrent.ExecutorService;
7 import java.util.concurrent.atomic.AtomicBoolean;
8 import java.util.concurrent.atomic.AtomicReference;
10 import net.pterodactylus.fcp.ModifyPeer;
11 import net.pterodactylus.fcp.Peer;
12 import net.pterodactylus.fcp.UnknownNodeIdentifier;
14 import com.google.common.util.concurrent.ListenableFuture;
15 import com.google.common.util.concurrent.ListeningExecutorService;
16 import com.google.common.util.concurrent.MoreExecutors;
19 * Default {@link ModifyPeerCommand} implementation based on {@link FcpDialog}.
21 * @author <a href="mailto:bombe@freenetproject.org">David ‘Bombe’ Roden</a>
23 public class ModifyPeerCommandImpl implements ModifyPeerCommand {
25 private final ListeningExecutorService threadPool;
26 private final ConnectionSupplier connectionSupplier;
27 private final AtomicReference<String> nodeIdentifier = new AtomicReference<>();
28 private final AtomicReference<Boolean> enabled = new AtomicReference<>();
29 private final AtomicReference<Boolean> allowLocalAddresses = new AtomicReference<>();
30 private final AtomicReference<Boolean> burstOnly = new AtomicReference<>();
31 private final AtomicReference<Boolean> listenOnly = new AtomicReference<>();
33 public ModifyPeerCommandImpl(ExecutorService threadPool, ConnectionSupplier connectionSupplier) {
34 this.threadPool = MoreExecutors.listeningDecorator(threadPool);
35 this.connectionSupplier = connectionSupplier;
39 public ModifyPeerCommand enable() {
45 public ModifyPeerCommand disable() {
51 public ModifyPeerCommand allowLocalAddresses() {
52 allowLocalAddresses.set(true);
57 public ModifyPeerCommand disallowLocalAddresses() {
58 allowLocalAddresses.set(false);
63 public ModifyPeerCommand setBurstOnly() {
69 public ModifyPeerCommand clearBurstOnly() {
75 public ModifyPeerCommand setListenOnly() {
81 public Executable<Optional<Peer>> byName(String name) {
82 nodeIdentifier.set(name);
87 public Executable<Optional<Peer>> byIdentity(String nodeIdentity) {
88 nodeIdentifier.set(nodeIdentity);
93 public Executable<Optional<Peer>> byHostAndPort(String host, int port) {
94 nodeIdentifier.set(String.format("%s:%d", host, port));
98 private ListenableFuture<Optional<Peer>> execute() {
99 return threadPool.submit(this::executeSequence);
102 private Optional<Peer> executeSequence() throws IOException, ExecutionException, InterruptedException {
103 ModifyPeer modifyPeer = new ModifyPeer(new RandomIdentifierGenerator().generate(), nodeIdentifier.get());
104 Optional.ofNullable(enabled.get()).ifPresent(enabled -> modifyPeer.setEnabled(enabled));
105 Optional.ofNullable(allowLocalAddresses.get()).ifPresent(allowed -> modifyPeer.setAllowLocalAddresses(allowed));
106 Optional.ofNullable(burstOnly.get()).ifPresent(burstOnly -> modifyPeer.setBurstOnly(burstOnly));
107 Optional.ofNullable(listenOnly.get()).ifPresent(listenOnly -> modifyPeer.setListenOnly(listenOnly));
108 try (ModifyPeerDialog modifyPeerDialog = new ModifyPeerDialog()) {
109 return modifyPeerDialog.send(modifyPeer).get();
113 private class ModifyPeerDialog extends FcpDialog<Optional<Peer>> {
115 private final AtomicBoolean finished = new AtomicBoolean();
116 private final AtomicReference<Peer> peer = new AtomicReference<>();
118 public ModifyPeerDialog() throws IOException {
119 super(threadPool, connectionSupplier.get());
123 protected boolean isFinished() {
124 return finished.get();
128 protected Optional<Peer> getResult() {
129 return Optional.ofNullable(peer.get());
133 protected void consumePeer(Peer peer) {
139 protected void consumeUnknownNodeIdentifier(UnknownNodeIdentifier unknownNodeIdentifier) {