java/alt2xml-cli/src/cz/frantovo/alt2xml/cli/CLI.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Jun 2014 14:50:49 +0200
changeset 43 058c1c39251e
parent 40 4afb00b7b1a9
child 45 ce2013823604
permissions -rw-r--r--
ouptup modules framework + XML (echo) output module
     1 /**
     2  * Alt2XML
     3  * Copyright © 2014 František Kučera (frantovo.cz)
     4  *
     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.
     9  *
    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.
    14  *
    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/>.
    17  */
    18 package cz.frantovo.alt2xml.cli;
    19 
    20 import cz.frantovo.alt2xml.out.Action;
    21 import cz.frantovo.alt2xml.out.ActionContext;
    22 import cz.frantovo.alt2xml.out.ActionFactory;
    23 import java.io.File;
    24 import java.io.OutputStream;
    25 import java.util.Arrays;
    26 import java.util.HashMap;
    27 import java.util.Map;
    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.ext.LexicalHandler;
    34 import org.xml.sax.helpers.DefaultHandler;
    35 
    36 /**
    37  *
    38  * @author Ing. František Kučera (frantovo.cz)
    39  */
    40 public class CLI {
    41 
    42 	public static final String LEXICAL_HANDLER_PROPERTY = "http://xml.org/sax/properties/lexical-handler";
    43 	private static final Logger log = Logger.getLogger(CLI.class.getName());
    44 
    45 	public static void main(String[] args) {
    46 
    47 		try {
    48 			File vstup = new File(args[0]);
    49 			String actionCode = args[1];
    50 			OutputStream outputStream = System.out;
    51 
    52 			Map<String, ActionFactory> actionFactories = new HashMap<>();
    53 
    54 			for (ActionFactory f : ServiceLoader.load(ActionFactory.class)) {
    55 				String code = f.getActionCode();
    56 				actionFactories.put(code, f);
    57 				log.log(Level.CONFIG, "Discovered output module: {0} = {1}", new Object[]{code, f.getClass().getName()});
    58 			}
    59 
    60 			ActionFactory actionFactory = actionFactories.get(actionCode);
    61 
    62 			if (actionFactory == null) {
    63 				log.log(Level.SEVERE, "No such output action with code: {0}", actionCode);
    64 			} else {
    65 
    66 				ActionContext actionContext = new ActionContext(outputStream);
    67 				Action action = actionFactory.getAction(actionContext);
    68 
    69 				DefaultHandler defaultHandler = action.getDefaultHandler();
    70 				LexicalHandler lexicalHandler = action.getLexicalHandler();
    71 
    72 				SAXParserFactory t = SAXParserFactory.newInstance();
    73 				SAXParser p = t.newSAXParser();
    74 
    75 				if (lexicalHandler == null) {
    76 					log.log(Level.FINE, "No LexicalHandler provided.");
    77 				} else {
    78 					try {
    79 						p.setProperty(LEXICAL_HANDLER_PROPERTY, defaultHandler);
    80 					} catch (Exception e) {
    81 						log.log(Level.WARNING, "LexicalHandler registration exception:", e);
    82 						log.log(Level.WARNING,
    83 								"Tried to register the handler {0} as a LexicalHandler but LexicalHandlers are not supported by the parser {1}",
    84 								new Object[]{defaultHandler, p});
    85 					}
    86 				}
    87 
    88 				p.parse(vstup, defaultHandler);
    89 			}
    90 
    91 		} catch (Exception e) {
    92 			log.log(Level.SEVERE, "Error during processing: " + Arrays.toString(args), e);
    93 		}
    94 
    95 	}
    96 }