2 * XdccDownloader - Bot.java - Copyright © 2013 David Roden
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package net.pterodactylus.xdcc.data;
20 import static com.google.common.base.Preconditions.checkNotNull;
22 import java.util.Collection;
23 import java.util.Iterator;
26 import com.google.common.collect.Maps;
29 * A bot is a client in a {@link Network} that carries {@link Pack}s which are
30 * available for download.
32 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34 public class Bot implements Iterable<Pack> {
36 /** The network this bot is on. */
37 private final Network network;
39 /** The packs this bot carries. */
40 private final Map<String, Pack> packs = Maps.newHashMap();
42 /** The current name of the bot. */
49 * The network the bot is on
53 public Bot(Network network, String name) {
54 this.network = checkNotNull(network, "network must not be null");
55 this.name = checkNotNull(name, "name must not be null");
63 * Returns the network the bot is on.
65 * @return The network the bot is on
67 public Network network() {
72 * Returns the current name of this bot.
74 * @return The current name of this bot
76 public String name() {
81 * Returns the packs this bot carries.
83 * @return The packs this bot carries
85 public Collection<Pack> packs() {
86 return packs.values();
94 * Sets the current name of this bot.
97 * The name of this bot
100 public Bot name(String name) {
101 this.name = checkNotNull(name, "name must not be null");
110 * Adds the given pack to this bot.
115 public void addPack(Pack pack) {
116 packs.put(pack.id(), pack);
124 public Iterator<Pack> iterator() {
125 return packs.values().iterator();
133 public boolean equals(Object object) {
134 if (!(object instanceof Bot)) {
137 Bot bot = (Bot) object;
138 return network().equals(bot.network()) && name().equals(bot.name());
142 public int hashCode() {
143 return network().hashCode() ^ name().hashCode();
147 public String toString() {
148 return String.format("%s/%s", name(), network().name());