bt.net.InetPeer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
The newest version!
/*
* Copyright (c) 2016—2021 Andrei Tomashpolskiy and individual contributors.
*
* 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 bt.net;
import bt.peer.PeerOptions;
import com.google.common.base.MoreObjects;
import java.net.InetAddress;
import java.util.Objects;
import java.util.Optional;
import java.util.function.Supplier;
/**
* @since 1.0
*/
public class InetPeer implements Peer {
public static final int UNKNOWN_PORT = -1;
private final Supplier addressSupplier;
private volatile int port;
private final Optional peerId;
private final PeerOptions options;
private InetPeer(Supplier addressSupplier, int port, PeerId peerId, PeerOptions options) {
this.addressSupplier = addressSupplier;
this.port = port;
this.peerId = Optional.ofNullable(peerId);
this.options = options;
}
@Override
public InetAddress getInetAddress() {
return addressSupplier.get();
}
@Override
public boolean isPortUnknown() {
return (port == UNKNOWN_PORT);
}
@Override
public int getPort() {
return port;
}
@Override
public Optional getPeerId() {
return peerId;
}
@Override
public PeerOptions getOptions() {
return options;
}
public void setPort(int newPort) {
checkPort(newPort);
if (port != UNKNOWN_PORT && port != newPort) {
throw new IllegalStateException("Port already set to: " + port + "." +
" Attempted to update to: " + newPort);
}
port = newPort;
}
private static void checkPort(int port) {
if (port < 0 || port > 65535) {
throw new IllegalArgumentException("Invalid port: " + port);
}
}
@Override
public String toString() {
MoreObjects.ToStringHelper builder = MoreObjects.toStringHelper(this)
.add("address", addressSupplier.get())
.add("port", port);
peerId.ifPresent(id -> builder.add("peerId", id));
return builder.toString();
}
public static Builder builder(InetPeerAddress holder) {
int port = holder.getPort();
checkPort(port);
return new Builder(holder::getAddress, port);
}
public static Builder builder(InetAddress address, int port) {
checkPort(port);
return new Builder(() -> address, port);
}
public static Builder builder(InetAddress address) {
return new Builder(() -> address, UNKNOWN_PORT);
}
public static InetPeer build(InetPeerAddress peerAddress) {
return builder(peerAddress).build();
}
public static InetPeer build(InetAddress address, int port) {
return builder(address, port).build();
}
public static InetPeer build(InetAddress address) {
return builder(address).build();
}
public static class Builder {
private final Supplier addressSupplier;
private final int port;
private PeerId peerId;
private PeerOptions options;
private Builder(Supplier addressSupplier, int port) {
this.addressSupplier = addressSupplier;
this.port = port;
}
public Builder peerId(PeerId peerId) {
this.peerId = Objects.requireNonNull(peerId);
return this;
}
public Builder options(PeerOptions options) {
this.options = Objects.requireNonNull(options);
return this;
}
public InetPeer build() {
PeerOptions options = (this.options == null) ?
PeerOptions.defaultOptions() : this.options;
return new InetPeer(addressSupplier, port, peerId, options);
}
}
}