Split command reader into separate commands.
[xudocci.git] / src / main / java / net / pterodactylus / xdcc / ui / stdin / AbortDownloadCommand.java
1 /*
2  * XdccDownloader - AbortDownloadCommand.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.xdcc.ui.stdin;
19
20 import java.io.IOException;
21 import java.io.Writer;
22 import java.util.Arrays;
23 import java.util.Collection;
24 import java.util.List;
25
26 import net.pterodactylus.xdcc.core.Core;
27
28 import com.google.common.primitives.Ints;
29
30 /**
31  * Command that will abort a running download.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  * @see State#getLastDownloads()
35  */
36 public class AbortDownloadCommand implements Command {
37
38         /** The core to operate on. */
39         private final Core core;
40
41         /**
42          * Creates a new abort download command.
43          *
44          * @param core
45          *              The core to operate on
46          */
47         public AbortDownloadCommand(Core core) {
48                 this.core = core;
49         }
50
51         //
52         // COMMAND METHODS
53         //
54
55         @Override
56         public String getName() {
57                 return "abort";
58         }
59
60         @Override
61         public Collection<String> getAliases() {
62                 return Arrays.asList("cancel");
63         }
64
65         @Override
66         public State execute(State state, List<String> parameters, Writer outputWriter) throws IOException {
67                 Integer index = Ints.tryParse(parameters.get(0));
68                 if ((index != null) && (index < state.getLastDownloads().size())) {
69                         core.cancelDownload(state.getLastDownloads().get(index).bot(), state.getLastDownloads().get(index).pack());
70                 }
71                 return state;
72         }
73
74 }