2 * XdccDownloader - NetworkAcceptor.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.ui.stdin;
20 import java.io.InputStream;
21 import java.io.InputStreamReader;
22 import java.io.OutputStream;
23 import java.io.OutputStreamWriter;
24 import java.net.ServerSocket;
25 import java.net.Socket;
26 import java.net.SocketTimeoutException;
27 import java.util.concurrent.TimeUnit;
29 import net.pterodactylus.xdcc.core.Core;
31 import com.google.common.eventbus.EventBus;
32 import com.google.common.util.concurrent.AbstractExecutionThreadService;
33 import com.google.common.util.concurrent.MoreExecutors;
36 * Listens on a TCP port and feeds input and output to a {@link CommandReader}.
38 * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
40 public class NetworkAdapter extends AbstractExecutionThreadService {
43 private final EventBus eventBus;
45 /** The core being controlled. */
46 private final Core core;
49 * Creates a new network acceptor.
54 public NetworkAdapter(EventBus eventBus, Core core) {
55 this.eventBus = eventBus;
60 protected void run() throws Exception {
61 ServerSocket serverSocket = new ServerSocket(45678);
62 serverSocket.setSoTimeout((int) TimeUnit.SECONDS.toMillis(1));
65 Socket clientSocket = serverSocket.accept();
66 InputStream socketInputStream = clientSocket.getInputStream();
67 OutputStream socketOutputStream = clientSocket.getOutputStream();
68 final InputStreamReader socketInputStreamReader = new InputStreamReader(socketInputStream, "UTF-8");
69 final OutputStreamWriter socketOutputStreamWriter = new OutputStreamWriter(socketOutputStream, "UTF-8");
70 final CommandReader commandReader = new CommandReader(core, socketInputStreamReader, socketOutputStreamWriter);
71 eventBus.register(commandReader);
72 commandReader.addListener(new Listener() {
75 public void starting() {
79 public void running() {
83 public void stopping(State from) {
87 public void terminated(State from) {
88 eventBus.unregister(commandReader);
92 public void failed(State from, Throwable failure) {
93 eventBus.unregister(commandReader);
95 }, MoreExecutors.sameThreadExecutor());
96 commandReader.start();
97 } catch (SocketTimeoutException ste1) {