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;
20 import java.io.IOException;
21 import java.util.HashMap;
23 import org.xml.sax.ContentHandler;
24 import org.xml.sax.DTDHandler;
25 import org.xml.sax.EntityResolver;
26 import org.xml.sax.ErrorHandler;
27 import org.xml.sax.InputSource;
28 import org.xml.sax.SAXException;
29 import org.xml.sax.SAXNotRecognizedException;
30 import org.xml.sax.SAXNotSupportedException;
31 import org.xml.sax.XMLReader;
34 * Recommended base class for all alternative format readers.
36 * @author Ing. František Kučera (frantovo.cz)
38 public abstract class AbstractAlt2XmlReader implements XMLReader {
40 private static final String PROPERTY_BASE_URL = "https://alt2xml.globalcode.info/sax-property/";
41 protected ContentHandler contentHandler;
42 protected ErrorHandler errorHandler;
43 protected DTDHandler dtdHandler;
44 protected EntityResolver entityResolver;
45 protected Map<String, Object> properties = new HashMap<>();
46 protected Map<String, Boolean> features = new HashMap<>();
49 public void parse(String systemId) throws IOException, SAXException {
50 parse(new InputSource(systemId));
54 public boolean getFeature(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
57 * All XMLReaders are required to recognize
58 * the http://xml.org/sax/features/namespaces
59 * and the http://xml.org/sax/features/namespace-prefixes feature names.
61 Boolean feature = features.get(name);
62 return feature == null ? false : feature;
66 public void setFeature(String name, boolean value) throws SAXNotRecognizedException, SAXNotSupportedException {
68 * TODO: filtrovat – povolit jen náš jmenný prostor
70 features.put(name, value);
75 * @param readerId should be [a-z0-9] and same as specific part of the module/project name (e.g.
76 * alt2xml-in-properties → properties)
77 * @param propertyId should be [a-z0-9-] and unique per module/reader
80 protected static String constructPropertyName(String readerId, String propertyId) {
81 return PROPERTY_BASE_URL + readerId + "/" + propertyId;
85 public Object getProperty(String name) throws SAXNotRecognizedException, SAXNotSupportedException {
86 return properties.get(name);
90 public void setProperty(String name, Object value) throws SAXNotRecognizedException, SAXNotSupportedException {
91 properties.put(name, value);
95 public void setEntityResolver(EntityResolver entityResolver) {
96 this.entityResolver = entityResolver;
100 public EntityResolver getEntityResolver() {
101 return entityResolver;
105 public void setDTDHandler(DTDHandler dtdHandler) {
106 this.dtdHandler = dtdHandler;
110 public DTDHandler getDTDHandler() {
115 public void setContentHandler(ContentHandler contentHandler) {
116 this.contentHandler = contentHandler;
120 public ContentHandler getContentHandler() {
121 return contentHandler;
125 public void setErrorHandler(ErrorHandler errorHandler) {
126 this.errorHandler = errorHandler;
130 public ErrorHandler getErrorHandler() {