AbstractAction → AbstractHandlerAction; akce dostanou rovnou SAXParser a InputSource
3 * Copyright © 2014 František Kučera (frantovo.cz)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 package cz.frantovo.alt2xml.cli;
20 import cz.frantovo.alt2xml.out.Action;
21 import cz.frantovo.alt2xml.out.ActionContext;
22 import cz.frantovo.alt2xml.out.ActionFactory;
24 import java.io.OutputStream;
25 import java.util.Arrays;
26 import java.util.HashMap;
28 import java.util.ServiceLoader;
29 import java.util.logging.Level;
30 import java.util.logging.Logger;
31 import javax.xml.parsers.SAXParser;
32 import javax.xml.parsers.SAXParserFactory;
33 import org.xml.sax.InputSource;
37 * @author Ing. František Kučera (frantovo.cz)
41 private static final Logger log = Logger.getLogger(CLI.class.getName());
43 public static void main(String[] args) {
46 File inputFile = new File(args[0]);
47 String actionCode = args[1];
48 OutputStream outputStream = System.out;
50 Map<String, ActionFactory> actionFactories = new HashMap<>();
52 for (ActionFactory f : ServiceLoader.load(ActionFactory.class)) {
53 String code = f.getActionCode();
54 actionFactories.put(code, f);
55 log.log(Level.CONFIG, "Discovered output module: {0} = {1}", new Object[]{code, f.getClass().getName()});
58 ActionFactory actionFactory = actionFactories.get(actionCode);
60 if (actionFactory == null) {
61 log.log(Level.SEVERE, "No such output action with code: {0}", actionCode);
64 ActionContext actionContext = new ActionContext(outputStream);
65 Action action = actionFactory.getAction(actionContext);
67 SAXParserFactory t = SAXParserFactory.newInstance();
68 SAXParser p = t.newSAXParser();
70 action.run(p, new InputSource(inputFile.toURI().toASCIIString()));
73 } catch (Exception e) {
74 log.log(Level.SEVERE, "Error during processing: " + Arrays.toString(args), e);