blob: 3f982407fd933be1cf588748d8bdb12767ce4d0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/*
* $Id$
* Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
package org.apache.fop.configuration;
// sax
import org.xml.sax.helpers.DefaultHandler;
import org.xml.sax.XMLReader;
import org.xml.sax.SAXException;
import java.io.IOException;
import org.xml.sax.InputSource;
// fop
import org.apache.fop.apps.Driver;
import org.apache.fop.messaging.MessageHandler;
import org.apache.fop.apps.FOPException;
import org.apache.fop.configuration.Configuration;
/**
* entry class for reading configuration from file and creating a configuration
* class. typical use looks like that: <br>
*
* <code>ConfigurationReader reader = new ConfigurationReader ("config.xml","standard");
* try {
* reader.start();
* } catch (org.apache.fop.apps.FOPException error) {
* reader.dumpError(error);
* }
* </code>
* Once the configuration has been setup, the information can be accessed with
* the methods of StandardConfiguration.
*/
public class ConfigurationReader {
/**
* show a full dump on error
*/
private static boolean errorDump = false;
/**
* inputsource for configuration file
*/
private InputSource filename;
/**
* creates a configuration reader
* @param filename the file which contains the configuration information
*/
public ConfigurationReader(InputSource filename) {
this.filename = filename;
}
/**
* intantiates parser and starts parsing of config file
*/
public void start() throws FOPException {
XMLReader parser = createParser();
// setting the parser features
try {
parser.setFeature("http://xml.org/sax/features/namespace-prefixes",
false);
} catch (SAXException e) {
throw new FOPException("You need a parser which supports SAX version 2",
e);
}
ConfigurationParser configurationParser = new ConfigurationParser();
parser.setContentHandler(configurationParser);
try {
parser.parse(filename);
} catch (SAXException e) {
if (e.getException() instanceof FOPException) {
throw (FOPException)e.getException();
} else {
throw new FOPException(e);
}
} catch (IOException e) {
throw new FOPException(e);
}
}
/**
* creates a SAX parser, using the value of org.xml.sax.parser
* defaulting to org.apache.xerces.parsers.SAXParser
*
* @return the created SAX parser
*/
public static XMLReader createParser() throws FOPException {
String parserClassName = Driver.getParserClassName();
if (errorDump) {
MessageHandler.logln("configuration reader using SAX parser "
+ parserClassName);
}
try {
return (XMLReader)Class.forName(parserClassName).newInstance();
} catch (ClassNotFoundException e) {
throw new FOPException("Could not find " + parserClassName, e);
} catch (InstantiationException e) {
throw new FOPException("Could not instantiate "
+ parserClassName, e);
} catch (IllegalAccessException e) {
throw new FOPException("Could not access " + parserClassName, e);
} catch (ClassCastException e) {
throw new FOPException(parserClassName + " is not a SAX driver",
e);
}
}
/**
* Dumps an error
*/
public void dumpError(Exception e) {
if (errorDump) {
if (e instanceof SAXException) {
e.printStackTrace();
if (((SAXException)e).getException() != null) {
((SAXException)e).getException().printStackTrace();
}
} else {
e.printStackTrace();
}
}
}
/**
* long or short error messages
*
*/
public void setDumpError(boolean dumpError) {
errorDump = dumpError;
}
}
|