Move nick changes into simple command handler.
[xudocci.git] / src / main / java / net / pterodactylus / irc / Connection.java
1 /*
2  * XdccDownloader - Connection.java - Copyright © 2013 David Roden
3  *
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.
8  *
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.
13  *
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/>.
16  */
17
18 package net.pterodactylus.irc;
19
20 import static com.google.common.base.Preconditions.checkState;
21 import static java.util.Arrays.asList;
22 import static java.util.concurrent.TimeUnit.SECONDS;
23
24 import java.io.BufferedReader;
25 import java.io.Closeable;
26 import java.io.EOFException;
27 import java.io.IOException;
28 import java.io.InputStream;
29 import java.io.InputStreamReader;
30 import java.io.OutputStream;
31 import java.io.UnsupportedEncodingException;
32 import java.net.Socket;
33 import java.util.ArrayList;
34 import java.util.List;
35 import java.util.concurrent.TimeUnit;
36 import java.util.concurrent.atomic.AtomicBoolean;
37
38 import javax.net.SocketFactory;
39
40 import net.pterodactylus.irc.connection.ChannelNickHandler;
41 import net.pterodactylus.irc.connection.ChannelNotJoinedHandler;
42 import net.pterodactylus.irc.connection.ConnectionEstablishHandler;
43 import net.pterodactylus.irc.connection.CtcpHandler;
44 import net.pterodactylus.irc.connection.Handler;
45 import net.pterodactylus.irc.connection.MessageHandler;
46 import net.pterodactylus.irc.connection.MotdHandler;
47 import net.pterodactylus.irc.connection.PrefixHandler;
48 import net.pterodactylus.irc.connection.SimpleCommandHandler;
49 import net.pterodactylus.irc.event.ChannelJoined;
50 import net.pterodactylus.irc.event.ChannelLeft;
51 import net.pterodactylus.irc.event.ChannelTopic;
52 import net.pterodactylus.irc.event.ClientQuit;
53 import net.pterodactylus.irc.event.ConnectionClosed;
54 import net.pterodactylus.irc.event.ConnectionEstablished;
55 import net.pterodactylus.irc.event.ConnectionFailed;
56 import net.pterodactylus.irc.event.KickedFromChannel;
57 import net.pterodactylus.irc.event.NicknameChanged;
58 import net.pterodactylus.irc.event.NicknameInUseReceived;
59 import net.pterodactylus.irc.event.NoNicknameGivenReceived;
60 import net.pterodactylus.irc.event.ReplyReceived;
61 import net.pterodactylus.irc.event.UnknownReplyReceived;
62 import net.pterodactylus.irc.util.RandomNickname;
63 import net.pterodactylus.xdcc.util.io.BandwidthCountingInputStream;
64 import net.pterodactylus.xdcc.util.io.BandwidthCountingOutputStream;
65
66 import com.google.common.base.Optional;
67 import com.google.common.eventbus.EventBus;
68 import com.google.common.eventbus.Subscribe;
69 import com.google.common.io.Closeables;
70 import com.google.common.util.concurrent.AbstractExecutionThreadService;
71 import com.google.common.util.concurrent.Service;
72 import org.apache.log4j.Logger;
73
74 /**
75  * A connection to an IRC server.
76  *
77  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
78  */
79 public class Connection extends AbstractExecutionThreadService implements Service {
80
81         /* The logger. */
82         private static final Logger logger = Logger.getLogger(Connection.class.getName());
83
84         /** The event bus. */
85         private final EventBus eventBus;
86
87         /** The socket factory. */
88         private final SocketFactory socketFactory;
89
90         /** The hostname to connect to. */
91         private final String hostname;
92
93         /** The port to connect to. */
94         private final int port;
95
96         /** The nickname chooser. */
97         private NicknameChooser nicknameChooser = new NicknameChooser() {
98
99                 @Override
100                 public String getNickname() {
101                         return RandomNickname.get();
102                 }
103         };
104
105         /** The nickname. */
106         private String nickname = null;
107
108         /** The username. */
109         private Optional<String> username = Optional.absent();
110
111         /** The real name. */
112         private Optional<String> realName = Optional.absent();
113
114         /** The optional password for the connection. */
115         private Optional<String> password = Optional.absent();
116
117         /** The connection handler. */
118         private ConnectionHandler connectionHandler;
119
120         /** Whether the connection has already been established. */
121         private final AtomicBoolean established = new AtomicBoolean();
122
123         /**
124          * Creates a new connection.
125          *
126          * @param eventBus
127          *              The event bus
128          * @param socketFactory
129          *              The socket factory
130          * @param hostname
131          *              The hostname of the IRC server
132          * @param port
133          *              The port number of the IRC server
134          */
135         public Connection(EventBus eventBus, SocketFactory socketFactory, String hostname, int port) {
136                 this.eventBus = eventBus;
137                 this.socketFactory = socketFactory;
138                 this.hostname = hostname;
139                 this.port = port;
140         }
141
142         //
143         // ACCESSORS
144         //
145
146         /**
147          * Returns the hostname of the remote end of the connection.
148          *
149          * @return The remote’s hostname
150          */
151         public String hostname() {
152                 return hostname;
153         }
154
155         /**
156          * Returns the port number of the remote end of the connection.
157          *
158          * @return The remote’s port number
159          */
160         public int port() {
161                 return port;
162         }
163
164         /**
165          * Returns whether this connection has already been established.
166          *
167          * @return {@code true} as long as this connection is established, {@code
168          *         false} otherwise
169          */
170         public boolean established() {
171                 return established.get();
172         }
173
174         /**
175          * Returns the nickname that is currently in use by this connection. The
176          * nickname is only available once the connection has been {@link #start()}ed.
177          *
178          * @return The current nickname
179          */
180         public String nickname() {
181                 return nickname;
182         }
183
184         //
185         // MUTATORS
186         //
187
188         /**
189          * Sets the nickname chooser. The nickname chooser is only used during the
190          * creation of the connection.
191          *
192          * @param nicknameChooser
193          *              The nickname chooser
194          * @return This connection
195          */
196         public Connection nicknameChooser(NicknameChooser nicknameChooser) {
197                 this.nicknameChooser = nicknameChooser;
198                 return this;
199         }
200
201         /**
202          * Sets the username to use.
203          *
204          * @param username
205          *              The username to use
206          * @return This connection
207          */
208         public Connection username(String username) {
209                 this.username = Optional.fromNullable(username);
210                 return this;
211         }
212
213         /**
214          * Sets the real name to use.
215          *
216          * @param realName
217          *              The real name to use
218          * @return This connection
219          */
220         public Connection realName(String realName) {
221                 this.realName = Optional.fromNullable(realName);
222                 return this;
223         }
224
225         /**
226          * Sets the optional password for the connection.
227          *
228          * @param password
229          *              The password for the connection
230          * @return This connection
231          */
232         public Connection password(String password) {
233                 this.password = Optional.fromNullable(password);
234                 return this;
235         }
236
237         //
238         // ACTIONS
239         //
240
241         /**
242          * Returns the current rate of the connection’s incoming side.
243          *
244          * @return The current input rate (in bytes per second)
245          */
246         public long getInputRate() {
247                 return (connectionHandler != null) ? connectionHandler.getInputRate() : 0;
248         }
249
250         /**
251          * Returns the current rate of the connection’s outgoing side.
252          *
253          * @return The current output rate (in bytes per second)
254          */
255         public long getOutputRate() {
256                 return (connectionHandler != null) ? connectionHandler.getOutputRate() : 0;
257         }
258
259         /**
260          * Checks whether the given source is the client represented by this
261          * connection.
262          *
263          * @param source
264          *              The source to check
265          * @return {@code true} if this connection represents the given source, {@code
266          *         false} otherwise
267          */
268         public boolean isSource(Source source) {
269                 return source.nick().isPresent() && source.nick().get().equals(nickname);
270         }
271
272         /**
273          * Joins the given channel.
274          *
275          * @param channel
276          *              The channel to join
277          * @throws IOException
278          *              if an I/O error occurs
279          */
280         public void joinChannel(final String channel) throws IOException {
281                 connectionHandler.sendCommand("JOIN", channel);
282         }
283
284         /**
285          * Sends a message to the given recipient, which may be a channel or another
286          * nickname.
287          *
288          * @param recipient
289          *              The recipient of the message
290          * @param message
291          *              The message
292          * @throws IOException
293          *              if an I/O error occurs
294          */
295         public void sendMessage(String recipient, String message) throws IOException {
296                 connectionHandler.sendCommand("PRIVMSG", recipient, message);
297         }
298
299         /**
300          * Sends a DCC RESUME request to the given recipient.
301          *
302          * @param recipient
303          *              The recipient of the request
304          * @param filename
305          *              The name of the file to resume
306          * @param port
307          *              The port number from the original DCC SEND request
308          * @param position
309          *              The position at which to resume the transfer
310          * @throws IOException
311          *              if an I/O error occurs
312          */
313         public void sendDccResume(String recipient, String filename, int port, long position) throws IOException {
314                 connectionHandler.sendCommand("PRIVMSG", recipient, String.format("\u0001DCC RESUME %s %d %d\u0001", filename, port, position));
315         }
316
317         /**
318          * Closes this connection.
319          *
320          * @throws IOException
321          *              if an I/O error occurs
322          */
323         public void close() throws IOException {
324                 if (connectionHandler != null) {
325                         connectionHandler.close();
326                 }
327         }
328
329         //
330         // ABSTRACTEXECUTIONTHREADSERVICE METHODS
331         //
332
333         @Override
334         protected void startUp() throws IllegalStateException {
335                 checkState(username.isPresent(), "username must be set");
336                 checkState(realName.isPresent(), "realName must be set");
337         }
338
339         @Override
340         protected void run() {
341
342                 /* connect to remote socket. */
343                 try {
344                         Socket socket = socketFactory.createSocket(hostname, port);
345                         socket.setSoTimeout((int) TimeUnit.MINUTES.toMillis(3));
346                         connectionHandler = new ConnectionHandler(socket.getInputStream(), socket.getOutputStream());
347
348                         /* register connection. */
349                         if (password.isPresent()) {
350                                 connectionHandler.sendCommand("PASSWORD", password.get());
351                         }
352                         connectionHandler.sendCommand("USER", username.get(), "8", "*", realName.get());
353                         nickname = nicknameChooser.getNickname();
354                         connectionHandler.sendCommand("NICK", nickname);
355
356                 } catch (IOException ioe1) {
357                         eventBus.post(new ConnectionFailed(this, ioe1));
358                         return;
359                 }
360
361                 eventBus.register(this);
362                 /* now read replies and react. */
363                 try {
364                         /* some status variables. */
365                         boolean connected = true;
366
367                         PrefixHandler prefixHandler = new PrefixHandler();
368                         List<Handler> handlers = asList(
369                                         new MessageHandler(eventBus, this, prefixHandler),
370                                         new CtcpHandler(eventBus, this),
371                                         new ChannelNickHandler(eventBus, this, prefixHandler),
372                                         new SimpleCommandHandler()
373                                                         .addCommand("431", (s, p) -> eventBus.post(
374                                                                         new NoNicknameGivenReceived(this)))
375                                                         .addCommand("NICK", (s, p) -> eventBus.post(
376                                                                         new NicknameChanged(this, s.get(),
377                                                                                         p.get(0)))),
378                                         new MotdHandler(eventBus, this),
379                                         new ChannelNotJoinedHandler(eventBus, this),
380                                         new ConnectionEstablishHandler(eventBus, this),
381                                         prefixHandler
382                         );
383
384                         while (connected) {
385                                 Reply reply = connectionHandler.readReply();
386                                 eventBus.post(new ReplyReceived(this, reply));
387                                 logger.trace(String.format("<< %s", reply));
388                                 String command = reply.command();
389                                 List<String> parameters = reply.parameters();
390
391                                 for (Handler handler : handlers) {
392                                         if (handler.willHandle(reply)) {
393                                                 handler.handleReply(reply);
394                                                 break;
395                                         }
396                                 }
397
398                                 /* 43x replies are for nick change errors. */
399                                 if (command.equals("433")) {
400                                         if (!established.get()) {
401                                                 nickname = nicknameChooser.getNickname();
402                                                 connectionHandler.sendCommand("NICK", nickname);
403                                         } else {
404                                                 eventBus.post(new NicknameInUseReceived(this, reply));
405                                         }
406
407                                 /* channel stuff. */
408                                 } else if (command.equalsIgnoreCase("JOIN")) {
409                                         eventBus.post(new ChannelJoined(this, parameters.get(0), reply.source().get()));
410                                 } else if (command.equals("331")) {
411                                         /* no topic is set. */
412                                 } else if (command.equals("332")) {
413                                         eventBus.post(new ChannelTopic(this, parameters.get(1), parameters.get(2)));
414                                 } else if (command.equalsIgnoreCase("PART")) {
415                                         eventBus.post(new ChannelLeft(this, parameters.get(0), reply.source().get(), getOptional(parameters, 1)));
416                                 } else if (command.equalsIgnoreCase("QUIT")) {
417                                         eventBus.post(new ClientQuit(this, reply.source().get(), parameters.get(0)));
418
419                                 /* basic connection housekeeping. */
420                                 } else if (command.equalsIgnoreCase("PING")) {
421                                         connectionHandler.sendCommand("PONG", getOptional(parameters, 0), getOptional(parameters, 1));
422
423                                 } else if (command.equalsIgnoreCase("KICK")) {
424                                         eventBus.post(new KickedFromChannel(this, parameters.get(0), reply.source().get(), parameters.get(1), getOptional(parameters, 2)));
425
426                                 /* okay, everything else. */
427                                 } else {
428                                         eventBus.post(new UnknownReplyReceived(this, reply));
429                                 }
430                         }
431                         eventBus.post(new ConnectionClosed(this));
432                 } catch (IOException ioe1) {
433                         logger.warn("I/O error", ioe1);
434                         eventBus.post(new ConnectionClosed(this, ioe1));
435                 } catch (RuntimeException re1) {
436                         logger.error("Runtime error", re1);
437                         eventBus.post(new ConnectionClosed(this, re1));
438                 } finally {
439                         established.set(false);
440                         eventBus.unregister(this);
441                         logger.info("Closing Connection.");
442                         try {
443                                 Closeables.close(connectionHandler, true);
444                         } catch (IOException ioe1) {
445                                 /* will not be thrown. */
446                         }
447                 }
448
449         }
450
451         @Subscribe
452         public void connectionEstablished(ConnectionEstablished connectionEstablished) {
453                 if (connectionEstablished.connection() == this) {
454                         established.set(true);
455                 }
456         }
457
458         //
459         // PRIVATE METHODS
460         //
461
462         /**
463          * Returns an item from the list, or {@link Optional#absent()} if the list is
464          * shorter than required for the given index.
465          *
466          * @param list
467          *              The list to get an item from
468          * @param index
469          *              The index of the item
470          * @param <T>
471          *              The type of the list items
472          * @return This list item wrapped in an {@link Optional}, or {@link
473          *         Optional#absent()} if the list is not long enough
474          */
475         private static <T> Optional<T> getOptional(List<T> list, int index) {
476                 if (index < list.size()) {
477                         return Optional.fromNullable(list.get(index));
478                 }
479                 return Optional.absent();
480         }
481
482         /** Handles input and output for the connection. */
483         private class ConnectionHandler implements Closeable {
484
485                 /** The output stream of the connection. */
486                 private final BandwidthCountingOutputStream outputStream;
487
488                 /** The input stream. */
489                 private final BandwidthCountingInputStream inputStream;
490
491                 /** The input stream of the connection. */
492                 private final BufferedReader inputStreamReader;
493
494                 /**
495                  * Creates a new connection handler for the given input stream and output
496                  * stream.
497                  *
498                  * @param inputStream
499                  *              The input stream of the connection
500                  * @param outputStream
501                  *              The output stream of the connection
502                  * @throws UnsupportedEncodingException
503                  *              if the encoding (currently “UTF-8”) is not valid
504                  */
505                 private ConnectionHandler(InputStream inputStream, OutputStream outputStream) throws UnsupportedEncodingException {
506                         this.outputStream = new BandwidthCountingOutputStream(outputStream, 5, SECONDS);
507                         this.inputStream = new BandwidthCountingInputStream(inputStream, 5, SECONDS);
508                         inputStreamReader = new BufferedReader(new InputStreamReader(this.inputStream, "UTF-8"));
509                 }
510
511                 //
512                 // ACTIONS
513                 //
514
515                 /**
516                  * Returns the current rate of the connection’s incoming side.
517                  *
518                  * @return The current input rate (in bytes per second)
519                  */
520                 public long getInputRate() {
521                         return inputStream.getCurrentRate();
522                 }
523
524                 /**
525                  * Returns the current rate of the connection’s outgoing side.
526                  *
527                  * @return The current output rate (in bytes per second)
528                  */
529                 public long getOutputRate() {
530                         return outputStream.getCurrentRate();
531                 }
532
533                 /**
534                  * Sends a command with the given parameters, skipping all {@link
535                  * Optional#absent()} optionals.
536                  *
537                  * @param command
538                  *              The command to send
539                  * @param parameters
540                  *              The parameters
541                  * @throws IOException
542                  *              if an I/O error occurs
543                  */
544                 public void sendCommand(String command, Optional<String>... parameters) throws IOException {
545                         List<String> setParameters = new ArrayList<String>();
546                         for (Optional<String> maybeSetParameter : parameters) {
547                                 if (maybeSetParameter.isPresent()) {
548                                         setParameters.add(maybeSetParameter.get());
549                                 }
550                         }
551                         sendCommand(command, setParameters.toArray(new String[setParameters.size()]));
552                 }
553
554                 /**
555                  * Sends a command with the given parameters.
556                  *
557                  * @param command
558                  *              The command to send
559                  * @param parameters
560                  *              The parameters of the command
561                  * @throws IOException
562                  *              if an I/O error occurs
563                  * @throws IllegalArgumentException
564                  *              if any parameter but that last contains a space character
565                  */
566                 public void sendCommand(String command, String... parameters) throws IOException, IllegalArgumentException {
567                         StringBuilder commandBuilder = new StringBuilder();
568
569                         commandBuilder.append(command);
570                         for (int parameterIndex = 0; parameterIndex < parameters.length; ++parameterIndex) {
571                                 String parameter = parameters[parameterIndex];
572                                 /* space is only allowed in the last parameter. */
573                                 commandBuilder.append(' ');
574                                 if (parameter.contains(" ")) {
575                                         if (parameterIndex == (parameters.length - 1)) {
576                                                 commandBuilder.append(':');
577                                         } else {
578                                                 throw new IllegalArgumentException(String.format("parameter “%s” must not contain space!", parameter));
579                                         }
580                                 }
581                                 commandBuilder.append(parameter);
582                         }
583
584                         logger.trace(String.format(">> %s", commandBuilder));
585                         outputStream.write((commandBuilder.toString() + "\r\n").getBytes("UTF-8"));
586                         outputStream.flush();
587                 }
588
589                 /**
590                  * Reads a line of reply from the connection.
591                  *
592                  * @return The reply
593                  * @throws IOException
594                  *              if an I/O error occurs
595                  * @throws EOFException
596                  *              if EOF was reached
597                  */
598                 public Reply readReply() throws IOException, EOFException {
599                         String line = inputStreamReader.readLine();
600                         if (line == null) {
601                                 throw new EOFException();
602                         }
603
604                         return Reply.parseLine(line);
605                 }
606
607                 //
608                 // CLOSEABLE METHODS
609                 //
610
611                 @Override
612                 public void close() throws IOException {
613                         Closeables.close(outputStream, true);
614                         Closeables.close(inputStreamReader, true);
615                         Closeables.close(inputStream, true);
616                 }
617
618         }
619
620 }