X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fxdcc%2Fdata%2FBot.java;h=211dde7e78130da750d645ba6cea55369474f0e5;hb=a1ad62aece998bef7d62cab8fa31a839d1d16ef8;hp=46bca1896b5a7ec2f7bbc9d7083c1c4a56327266;hpb=afec2edc48b0151823ad0696965e533b7dec9184;p=xudocci.git diff --git a/src/main/java/net/pterodactylus/xdcc/data/Bot.java b/src/main/java/net/pterodactylus/xdcc/data/Bot.java index 46bca18..211dde7 100644 --- a/src/main/java/net/pterodactylus/xdcc/data/Bot.java +++ b/src/main/java/net/pterodactylus/xdcc/data/Bot.java @@ -17,11 +17,13 @@ package net.pterodactylus.xdcc.data; +import static com.google.common.base.Preconditions.checkNotNull; + import java.util.Collection; import java.util.Iterator; import java.util.Map; -import com.beust.jcommander.internal.Maps; +import com.google.common.collect.Maps; /** * A bot is a client in a {@link Network} that carries {@link Pack}s which are @@ -33,6 +35,7 @@ public class Bot implements Iterable { /** The network this bot is on. */ private final Network network; + private final String channel; /** The packs this bot carries. */ private final Map packs = Maps.newHashMap(); @@ -40,14 +43,10 @@ public class Bot implements Iterable { /** The current name of the bot. */ private String name; - /** - * Creates a new bot. - * - * @param network - * The network the bot is on - */ - public Bot(Network network) { - this.network = network; + public Bot(Network network, String channel, String name) { + this.network = checkNotNull(network, "network must not be null"); + this.channel = checkNotNull(channel, "channel must not be null"); + this.name = checkNotNull(name, "name must not be null"); } // @@ -63,6 +62,10 @@ public class Bot implements Iterable { return network; } + public String channel() { + return channel; + } + /** * Returns the current name of this bot. * @@ -93,7 +96,7 @@ public class Bot implements Iterable { * @return This bot */ public Bot name(String name) { - this.name = name; + this.name = checkNotNull(name, "name must not be null"); return this; } @@ -125,6 +128,20 @@ public class Bot implements Iterable { // @Override + public boolean equals(Object object) { + if (!(object instanceof Bot)) { + return false; + } + Bot bot = (Bot) object; + return network().equals(bot.network()) && name().equals(bot.name()); + } + + @Override + public int hashCode() { + return network().hashCode() ^ name().hashCode(); + } + + @Override public String toString() { return String.format("%s/%s", name(), network().name()); }