Don’t connect sources and sinks directly, use a pipeline to move data around.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / ExternalFilter.java
1 /*
2  * Sonitus - ExternalFilter.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.sonitus.data.filter;
19
20 import java.io.IOException;
21 import java.io.InputStream;
22 import java.io.OutputStream;
23 import java.util.logging.Logger;
24
25 import net.pterodactylus.sonitus.data.Metadata;
26 import net.pterodactylus.sonitus.io.InputStreamDrainer;
27
28 import com.google.common.collect.ImmutableList;
29 import com.google.common.collect.Iterables;
30
31 /**
32  * {@link net.pterodactylus.sonitus.data.Filter} implementation that runs its
33  * {@link net.pterodactylus.sonitus.data.Source} through an external program.
34  *
35  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
36  */
37 public abstract class ExternalFilter extends DummyFilter {
38
39         /** The logger. */
40         private final Logger logger = Logger.getLogger(getClass().getName());
41
42         /** The external process. */
43         private Process process;
44
45         //
46         // FILTER METHODS
47         //
48
49         @Override
50         public void open(Metadata metadata) throws IOException {
51                 process = Runtime.getRuntime().exec(Iterables.toArray(ImmutableList.<String>builder().add(binary(metadata)).addAll(parameters(metadata)).build(), String.class));
52                 InputStream processError = process.getErrorStream();
53                 new Thread(new InputStreamDrainer(processError)).start();
54                 super.open(metadata);
55         }
56
57         @Override
58         public void close() {
59                 process.destroy();
60         }
61
62         //
63         // DUMMYFILTER METHODS
64         //
65
66         @Override
67         protected InputStream createInputStream() throws IOException {
68                 return process.getInputStream();
69         }
70
71         @Override
72         protected OutputStream createOutputStream() throws IOException {
73                 return process.getOutputStream();
74         }
75
76         //
77         // SUBCLASS METHODS
78         //
79
80         /**
81          * Returns the location of the binary to execute.
82          *
83          * @param metadata
84          *              The metadata being processed
85          * @return The location of the binary to execute
86          */
87         protected abstract String binary(Metadata metadata);
88
89         /**
90          * Returns the parameters for the binary.
91          *
92          * @param metadata
93          *              The metadata being processed
94          * @return The parameters for the binary
95          */
96         protected abstract Iterable<String> parameters(Metadata metadata);
97
98 }