pietsch 2003/01/13 13:05:13
Modified: src/org/apache/fop/apps AWTStarter.java
CommandLineOptions.java CommandLineStarter.java
Driver.java ErrorHandler.java FOInputHandler.java
FOPException.java Fop.java InputHandler.java
LayoutHandler.java
Log:
Fixed more style problems.
Revision Changes Path
1.17 +15 -7 xml-fop/src/org/apache/fop/apps/AWTStarter.java
Index: AWTStarter.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/AWTStarter.java,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- AWTStarter.java 6 Nov 2002 14:30:15 -0000 1.16
+++ AWTStarter.java 13 Jan 2003 21:05:12 -0000 1.17
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -13,8 +13,8 @@
import org.apache.fop.viewer.Translator;
//Java
-import javax.swing.UIManager;
-import java.awt.*;
+import java.awt.Dimension;
+import java.awt.Toolkit;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.util.Locale;
@@ -36,7 +36,13 @@
private Driver driver;
private XMLReader parser;
- public AWTStarter(CommandLineOptions commandLineOptions) throws FOPException {
+ /**
+ * Construct an AWTStarter
+ * @param commandLineOptions the parsed command line options
+ * @throws FOPException if anything goes wrong during initialization.
+ */
+ public AWTStarter(CommandLineOptions commandLineOptions)
+ throws FOPException {
super(commandLineOptions);
init();
}
@@ -44,10 +50,11 @@
private void init() throws FOPException {
//Creates Translator according to the language
String language = commandLineOptions.getLanguage();
- if (language == null)
+ if (language == null) {
translator = new Translator(Locale.getDefault());
- else
+ } else {
translator = new Translator(new Locale(language, ""));
+ }
AWTRenderer renderer = new AWTRenderer(translator);
frame = createPreviewDialog(renderer, translator);
renderer.setComponent(frame);
@@ -61,6 +68,7 @@
/**
* Runs formatting.
+ * @throws FOPException FIXME should not happen.
*/
public void run() throws FOPException {
driver.reset();
1.21 +82 -96 xml-fop/src/org/apache/fop/apps/CommandLineOptions.java
Index: CommandLineOptions.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/CommandLineOptions.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- CommandLineOptions.java 31 Oct 2002 17:26:04 -0000 1.20
+++ CommandLineOptions.java 13 Jan 2003 21:05:12 -0000 1.21
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -8,19 +8,13 @@
package org.apache.fop.apps;
// java
-import java.util.Vector;
import java.io.File;
import java.io.FileNotFoundException;
-// FOP
-import org.apache.fop.apps.FOPException;
-
// Avalon
import org.apache.avalon.framework.logger.ConsoleLogger;
import org.apache.avalon.framework.logger.Logger;
-import java.io.*;
-
/**
* Options parses the commandline arguments
*/
@@ -54,32 +48,38 @@
private static final int RTF_OUTPUT = 10;
/* show configuration information */
- Boolean dumpConfiguration = Boolean.FALSE;
+ private Boolean dumpConfiguration = Boolean.FALSE;
/* suppress any progress information */
- Boolean quiet = Boolean.FALSE;
+ private Boolean quiet = Boolean.FALSE;
/* for area tree XML output, only down to block area level */
- Boolean suppressLowLevelAreas = Boolean.FALSE;
+ private Boolean suppressLowLevelAreas = Boolean.FALSE;
/* user configuration file */
- File userConfigFile = null;
+ private File userConfigFile = null;
/* input fo file */
- File fofile = null;
+ private File fofile = null;
/* xsltfile (xslt transformation as input) */
- File xsltfile = null;
+ private File xsltfile = null;
/* xml file (xslt transformation as input) */
- File xmlfile = null;
+ private File xmlfile = null;
/* output file */
- File outfile = null;
+ private File outfile = null;
/* input mode */
- int inputmode = NOT_SET;
+ private int inputmode = NOT_SET;
/* output mode */
- int outputmode = NOT_SET;
+ private int outputmode = NOT_SET;
/* language for user information */
- String language = null;
+ private String language = null;
private java.util.HashMap rendererOptions;
private Logger log;
+ /**
+ * Construct a command line option object from command line arguments
+ * @param args command line parameters
+ * @throws FOPException for general errors
+ * @throws FileNotFoundException if an input file wasn't found.
+ */
public CommandLineOptions(String[] args)
throws FOPException, FileNotFoundException {
@@ -99,16 +99,19 @@
printUsage();
throw e;
}
-
}
+ /**
+ * Get the logger.
+ * @return the logger
+ */
public Logger getLogger() {
return log;
}
/**
* parses the commandline arguments
- * @return true if parse was successful and procesing can continue, false if
processing should stop
+ * @return true if parse was successful and processing can continue, false if
processing should stop
* @exception FOPException if there was an error in the format of the options
*/
private boolean parseOptions(String args[]) throws FOPException {
@@ -333,7 +336,8 @@
} // end checkSettings
/**
- * returns the chosen renderer, throws FOPException
+ * @return the type chosen renderer
+ * @throws FOPException for invalid output modes
*/
public int getRenderer() throws FOPException {
switch (outputmode) {
@@ -366,7 +370,8 @@
}
/**
- *
+ * Get the input handler.
+ * @return the input handler
*/
public InputHandler getInputHandler() {
switch (inputmode) {
@@ -379,42 +384,39 @@
}
}
+ /**
+ * Get the renderer specific options.
+ * @return hash map with option/value pairs.
+ */
public java.util.HashMap getRendererOptions() {
return rendererOptions;
}
+ /**
+ * Get the starter for the process.
+ * @return the starter.
+ */
public Starter getStarter() throws FOPException {
Starter starter = null;
switch (outputmode) {
case AWT_OUTPUT:
try {
- starter =
((Starter)Class.forName("org.apache.fop.apps.AWTStarter").getConstructor(new Class[] {
- CommandLineOptions.class
- }).newInstance(new Object[] {
- this
- }));
+ starter = new AWTStarter(this);
+ } catch (FOPException e) {
+ throw e;
} catch (Exception e) {
- if (e instanceof FOPException) {
- throw (FOPException)e;
- }
throw new FOPException("AWTStarter could not be loaded.", e);
}
- break;
+ break;
case PRINT_OUTPUT:
try {
- starter =
((Starter)Class.forName("org.apache.fop.apps.PrintStarter").getConstructor(new Class[]
{
- CommandLineOptions.class
- }).newInstance(new Object[] {
- this
- }));
+ starter = new PrintStarter(this);
+ } catch (FOPException e) {
+ throw e;
} catch (Exception e) {
- if (e instanceof FOPException) {
- throw (FOPException)e;
- }
- throw new FOPException("PrintStarter could not be loaded.",
- e);
+ throw new FOPException("PrintStarter could not be loaded.", e);
}
- break;
+ break;
default:
starter = new CommandLineStarter(this);
}
@@ -467,7 +469,7 @@
}
/**
- * return either the fofile or the xmlfile
+ * @return either the fofile or the xmlfile
*/
public File getInputFile() {
switch (inputmode) {
@@ -485,48 +487,48 @@
*/
public static void printUsage() {
System.err.println("\nUSAGE\nFop [options] [-fo|-xml] infile [-xsl file]
[-awt|-pdf|-mif|-rtf|-pcl|-ps|-txt|-at|-print] <outfile>\n"
- + " [OPTIONS] \n"
- + " -d debug mode \n"
- + " -x dump configuration settings \n"
- + " -q quiet mode \n"
- + " -c cfg.xml use additional configuration file
cfg.xml\n"
- + " -l lang the language to use for user
information \n"
- + " -s for area tree XML, down to block
areas only\n\n"
- + " [INPUT] \n"
- + " infile xsl:fo input file (the same
as the next) \n"
- + " -fo infile xsl:fo input file \n"
- + " -xml infile xml input file, must be used
together with -xsl \n"
- + " -xsl stylesheet xslt stylesheet \n \n"
- + " [OUTPUT] \n"
- + " outfile input will be rendered as pdf
file into outfile \n"
- + " -pdf outfile input will be rendered as pdf
file (outfile req'd) \n"
- + " -awt input will be displayed on
screen \n"
- + " -mif outfile input will be rendered as mif
file (outfile req'd)\n"
- + " -rtf outfile input will be rendered as rtf
file (outfile req'd)\n"
- + " -pcl outfile input will be rendered as pcl
file (outfile req'd) \n"
- + " -ps outfile input will be rendered as
PostScript file (outfile req'd) \n"
- + " -txt outfile input will be rendered as
text file (outfile req'd) \n"
- + " -svg outfile input will be rendered as an
svg slides file (outfile req'd) \n"
- + " -at outfile representation of area tree
as XML (outfile req'd) \n"
- + " -print input file will be rendered
and sent to the printer \n"
- + " see options with \"-print
help\" \n\n"
- + " [Examples]\n" + " Fop foo.fo foo.pdf \n"
- + " Fop -fo foo.fo -pdf foo.pdf (does the same as
the previous line)\n"
- + " Fop -xsl foo.xsl -xml foo.xml -pdf foo.pdf\n"
- + " Fop foo.fo -mif foo.mif\n"
- + " Fop foo.fo -rtf foo.rtf\n"
- + " Fop foo.fo -print or Fop -print foo.fo \n"
- + " Fop foo.fo -awt \n");
+ + " [OPTIONS] \n"
+ + " -d debug mode \n"
+ + " -x dump configuration settings \n"
+ + " -q quiet mode \n"
+ + " -c cfg.xml use additional configuration file
cfg.xml\n"
+ + " -l lang the language to use for user
information \n"
+ + " -s for area tree XML, down to block areas
only\n\n"
+ + " [INPUT] \n"
+ + " infile xsl:fo input file (the same as
the next) \n"
+ + " -fo infile xsl:fo input file \n"
+ + " -xml infile xml input file, must be used
together with -xsl \n"
+ + " -xsl stylesheet xslt stylesheet \n \n"
+ + " [OUTPUT] \n"
+ + " outfile input will be rendered as pdf
file into outfile \n"
+ + " -pdf outfile input will be rendered as pdf
file (outfile req'd) \n"
+ + " -awt input will be displayed on screen
\n"
+ + " -mif outfile input will be rendered as mif
file (outfile req'd)\n"
+ + " -rtf outfile input will be rendered as rtf
file (outfile req'd)\n"
+ + " -pcl outfile input will be rendered as pcl
file (outfile req'd) \n"
+ + " -ps outfile input will be rendered as
PostScript file (outfile req'd) \n"
+ + " -txt outfile input will be rendered as text
file (outfile req'd) \n"
+ + " -svg outfile input will be rendered as an svg
slides file (outfile req'd) \n"
+ + " -at outfile representation of area tree as
XML (outfile req'd) \n"
+ + " -print input file will be rendered and
sent to the printer \n"
+ + " see options with \"-print help\"
\n\n"
+ + " [Examples]\n" + " Fop foo.fo foo.pdf \n"
+ + " Fop -fo foo.fo -pdf foo.pdf (does the same as the
previous line)\n"
+ + " Fop -xsl foo.xsl -xml foo.xml -pdf foo.pdf\n"
+ + " Fop foo.fo -mif foo.mif\n"
+ + " Fop foo.fo -rtf foo.rtf\n"
+ + " Fop foo.fo -print or Fop -print foo.fo \n"
+ + " Fop foo.fo -awt \n");
}
-
+
/**
* shows the options for print output
*/
public void printUsagePrintOutput() {
System.err.println("USAGE: -print [-Dstart=i] [-Dend=i] [-Dcopies=i]
[-Deven=true|false] "
- + " org.apache.fop.apps.Fop (..) -print \n"
- + "Example:\n"
- + "java -Dstart=1 -Dend=2 org.apache.Fop.apps.Fop
infile.fo -print ");
+ + " org.apache.fop.apps.Fop (..) -print \n"
+ + "Example:\n"
+ + "java -Dstart=1 -Dend=2 org.apache.Fop.apps.Fop
infile.fo -print ");
}
@@ -621,22 +623,6 @@
log.debug("quiet mode off [default]");
}
- }
-
- // debug: create class and output all settings
- public static void main(String args[]) {
- /*
- * for (int i = 0; i < args.length; i++) {
- * log.debug(">"+args[i]+"<");
- * }
- */
- try {
- CommandLineOptions options = new CommandLineOptions(args);
- } catch (Exception e) {
- e.printStackTrace();
- }
-
- // options.debug();
}
}
1.20 +6 -9 xml-fop/src/org/apache/fop/apps/CommandLineStarter.java
Index: CommandLineStarter.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/CommandLineStarter.java,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- CommandLineStarter.java 4 Sep 2002 08:36:35 -0000 1.19
+++ CommandLineStarter.java 13 Jan 2003 21:05:12 -0000 1.20
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -9,13 +9,10 @@
// SAX
import org.xml.sax.XMLReader;
-import org.xml.sax.InputSource;
-import org.xml.sax.SAXException;
-import org.xml.sax.SAXParseException;
// Java
-import java.io.*;
-import java.net.URL;
+import java.io.BufferedOutputStream;
+import java.io.FileOutputStream;
/**
@@ -25,7 +22,7 @@
*/
public class CommandLineStarter extends Starter {
- CommandLineOptions commandLineOptions;
+ protected CommandLineOptions commandLineOptions;
public CommandLineStarter(CommandLineOptions commandLineOptions)
throws FOPException {
@@ -54,7 +51,7 @@
BufferedOutputStream bos = new BufferedOutputStream(new
FileOutputStream(
commandLineOptions.getOutputFile()));
driver.setOutputStream(bos);
- if(driver.getRenderer() != null) {
+ if (driver.getRenderer() != null) {
driver.getRenderer().setOptions(
commandLineOptions.getRendererOptions());
}
1.59 +126 -104 xml-fop/src/org/apache/fop/apps/Driver.java
Index: Driver.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/Driver.java,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- Driver.java 29 Nov 2002 23:18:52 -0000 1.58
+++ Driver.java 13 Jan 2003 21:05:12 -0000 1.59
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -8,37 +8,39 @@
package org.apache.fop.apps;
// FOP
-import org.apache.fop.fo.FOUserAgent;
-import org.apache.fop.fo.FOTreeBuilder;
import org.apache.fop.fo.ElementMapping;
+import org.apache.fop.fo.FOTreeBuilder;
+import org.apache.fop.fo.FOUserAgent;
import org.apache.fop.render.Renderer;
import org.apache.fop.tools.DocumentInputSource;
import org.apache.fop.tools.DocumentReader;
-import org.apache.fop.render.pdf.PDFRenderer;
// Avalon
import org.apache.avalon.framework.logger.ConsoleLogger;
-import org.apache.avalon.framework.logger.Logger;
import org.apache.avalon.framework.logger.LogEnabled;
-import org.apache.avalon.framework.logger.AbstractLogEnabled;
+import org.apache.avalon.framework.logger.Logger;
// DOM
import org.w3c.dom.Document;
-import org.w3c.dom.Node;
-import org.w3c.dom.NamedNodeMap;
-import org.w3c.dom.Attr;
// SAX
import org.xml.sax.ContentHandler;
import org.xml.sax.InputSource;
-import org.xml.sax.XMLReader;
import org.xml.sax.SAXException;
-import org.xml.sax.helpers.AttributesImpl;
+import org.xml.sax.XMLReader;
+import javax.xml.parsers.ParserConfigurationException;
// Java
-import java.io.*;
-import java.util.*;
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.io.OutputStream;
+import java.io.Reader;
+import java.util.Enumeration;
+import java.util.Hashtable;
+import java.util.Vector;
/**
* Primary class that drives overall FOP process.
@@ -142,17 +144,17 @@
/**
* the FO tree builder
*/
- private FOTreeBuilder _treeBuilder;
+ private FOTreeBuilder treeBuilder;
/**
* the renderer type code given by setRenderer
*/
- private int _rendererType;
+ private int rendererType;
/**
* the renderer to use to output the area tree
*/
- private Renderer _renderer;
+ private Renderer renderer;
/**
* the structure handler
@@ -162,17 +164,17 @@
/**
* the source of the FO file
*/
- private InputSource _source;
+ private InputSource source;
/**
* the stream to use to output the results of the renderer
*/
- private OutputStream _stream;
+ private OutputStream stream;
/**
* The XML parser to use when building the FO tree
*/
- private XMLReader _reader;
+ private XMLReader reader;
/**
* the system resources that FOP will use
@@ -182,7 +184,8 @@
public static final String getParserClassName() {
try {
- return
javax.xml.parsers.SAXParserFactory.newInstance().newSAXParser().getXMLReader().getClass().getName();
+ return javax.xml.parsers.SAXParserFactory.newInstance()
+ .newSAXParser().getXMLReader().getClass().getName();
} catch (javax.xml.parsers.ParserConfigurationException e) {
return null;
} catch (org.xml.sax.SAXException e) {
@@ -194,19 +197,19 @@
* create a new Driver
*/
public Driver() {
- _stream = null;
+ stream = null;
}
public Driver(InputSource source, OutputStream stream) {
this();
- _source = source;
- _stream = stream;
+ this.source = source;
+ this.stream = stream;
}
public void initialize() {
- _stream = null;
- _treeBuilder = new FOTreeBuilder();
- _treeBuilder.setUserAgent(getUserAgent());
+ stream = null;
+ treeBuilder = new FOTreeBuilder();
+ treeBuilder.setUserAgent(getUserAgent());
setupDefaultMappings();
}
@@ -218,7 +221,7 @@
if (userAgent == null) {
userAgent = new FOUserAgent();
userAgent.enableLogging(getLogger());
- userAgent.setBaseURL("file:/.");
+ userAgent.setBaseURL("");
}
return userAgent;
}
@@ -247,14 +250,14 @@
* The output stream is cleared. The renderer is cleared.
*/
public synchronized void reset() {
- _source = null;
- _stream = null;
- _reader = null;
- _treeBuilder.reset();
+ source = null;
+ stream = null;
+ reader = null;
+ treeBuilder.reset();
}
public boolean hasData() {
- return (_treeBuilder.hasData());
+ return (treeBuilder.hasData());
}
/**
@@ -264,7 +267,7 @@
*
*/
public void setOutputStream(OutputStream stream) {
- _stream = stream;
+ this.stream = stream;
}
/**
@@ -273,15 +276,16 @@
* @see DocumentInputSource
*/
public void setInputSource(InputSource source) {
- _source = source;
+ this.source = source;
}
/**
* Sets the reader used when reading in the source. If not set,
* this defaults to a basic SAX parser.
+ * @param reader the reader to use.
*/
public void setXMLReader(XMLReader reader) {
- _reader = reader;
+ this.reader = reader;
}
/**
@@ -301,29 +305,31 @@
String str = (String)providers.nextElement();
try {
addElementMapping(str);
- } catch (IllegalArgumentException e) {}
+ } catch (IllegalArgumentException e) {
+ }
}
}
}
/**
- * Set the rendering type to use. Must be one of
+ * Shortcut to set the rendering type to use. Must be one of
* <ul>
- * <li>RENDER_PDF
- * <li>RENDER_AWT
- * <li>RENDER_MIF
- * <li>RENDER_XML
- * <li>RENDER_PCL
- * <li>RENDER_PS
- * <li>RENDER_TXT
- * <li>RENDER_SVG
- * <li>RENDER_RTF
+ * <li>RENDER_PDF</li>
+ * <li>RENDER_AWT</li>
+ * <li>RENDER_MIF</li>
+ * <li>RENDER_XML</li>
+ * <li>RENDER_PCL</li>
+ * <li>RENDER_PS</li>
+ * <li>RENDER_TXT</li>
+ * <li>RENDER_SVG</li>
+ * <li>RENDER_RTF</li>
* </ul>
* @param renderer the type of renderer to use
+ * @throws IllegalArgumentException if an unsupported renderer type was
required.
*/
public void setRenderer(int renderer) throws IllegalArgumentException {
- _rendererType = renderer;
+ rendererType = renderer;
switch (renderer) {
case RENDER_PDF:
setRenderer("org.apache.fop.render.pdf.PDFRenderer");
@@ -364,15 +370,15 @@
*/
public void setRenderer(Renderer renderer) {
renderer.setUserAgent(getUserAgent());
- _renderer = renderer;
+ this.renderer = renderer;
}
public Renderer getRenderer() {
- return _renderer;
+ return renderer;
}
/**
- * @deprecated use renderer.setProducer(version) + setRenderer(renderer) or
just setRenderer(renderer_type) which will use the default producer string.
+ * @deprecated use renderer.setProducer(version) + setRenderer(renderer) or
just setRenderer(rendererType) which will use the default producer string.
* @see #setRenderer(int)
* @see #setRenderer(Renderer)
*/
@@ -391,26 +397,23 @@
public void setRenderer(String rendererClassName)
throws IllegalArgumentException {
try {
- _renderer =
+ renderer =
(Renderer)Class.forName(rendererClassName).newInstance();
- if (_renderer instanceof LogEnabled) {
- ((LogEnabled)_renderer).enableLogging(getLogger());
+ if (renderer instanceof LogEnabled) {
+ ((LogEnabled)renderer).enableLogging(getLogger());
}
- _renderer.setProducer(Version.getVersion());
- _renderer.setUserAgent(getUserAgent());
+ renderer.setProducer(Version.getVersion());
+ renderer.setUserAgent(getUserAgent());
} catch (ClassNotFoundException e) {
throw new IllegalArgumentException("Could not find "
+ rendererClassName);
- }
- catch (InstantiationException e) {
+ } catch (InstantiationException e) {
throw new IllegalArgumentException("Could not instantiate "
+ rendererClassName);
- }
- catch (IllegalAccessException e) {
+ } catch (IllegalAccessException e) {
throw new IllegalArgumentException("Could not access "
+ rendererClassName);
- }
- catch (ClassCastException e) {
+ } catch (ClassCastException e) {
throw new IllegalArgumentException(rendererClassName
+ " is not a renderer");
}
@@ -423,14 +426,16 @@
* @param mapping the element mappingto add
*/
public void addElementMapping(ElementMapping mapping) {
- mapping.addToBuilder(_treeBuilder);
+ mapping.addToBuilder(treeBuilder);
}
/**
- * add the element mapping with the given class name
+ * Add the element mapping with the given class name.
+ * @param the class name representing the element mapping.
+ * @throws IllegalArgumentException if there was not such element mapping.
*/
public void addElementMapping(String mappingClassName)
- throws IllegalArgumentException {
+ throws IllegalArgumentException {
try {
ElementMapping mapping =
(ElementMapping)Class.forName(mappingClassName).newInstance();
@@ -438,16 +443,13 @@
} catch (ClassNotFoundException e) {
throw new IllegalArgumentException("Could not find "
+ mappingClassName);
- }
- catch (InstantiationException e) {
+ } catch (InstantiationException e) {
throw new IllegalArgumentException("Could not instantiate "
+ mappingClassName);
- }
- catch (IllegalAccessException e) {
+ } catch (IllegalAccessException e) {
throw new IllegalArgumentException("Could not access "
+ mappingClassName);
- }
- catch (ClassCastException e) {
+ } catch (ClassCastException e) {
throw new IllegalArgumentException(mappingClassName
+ " is not an ElementMapping");
}
@@ -459,62 +461,73 @@
* Used in situations where SAX is used but not via a FOP-invoked
* SAX parser. A good example is an XSLT engine that fires SAX
* events but isn't a SAX Parser itself.
+ * @return a content handler for handling the SAX events.
*/
public ContentHandler getContentHandler() {
// TODO - do this stuff in a better way
- if(_rendererType == RENDER_MIF) {
- structHandler = new org.apache.fop.mif.MIFHandler(_stream);
- } else if(_rendererType == RENDER_RTF) {
- structHandler = new org.apache.fop.rtf.renderer.RTFHandler(_stream);
+ // PIJ: I guess the structure handler should be created by the renderer.
+ if (rendererType == RENDER_MIF) {
+ structHandler = new org.apache.fop.mif.MIFHandler(stream);
+ } else if (rendererType == RENDER_RTF) {
+ structHandler = new org.apache.fop.rtf.renderer.RTFHandler(stream);
} else {
- if (_renderer == null) throw new Error("_renderer not set when using
standard structHandler");
- structHandler = new LayoutHandler(_stream, _renderer, true);
+ if (renderer == null) {
+ throw new Error("Renderer not set when using standard
structHandler");
+ }
+ structHandler = new LayoutHandler(stream, renderer, true);
}
structHandler.enableLogging(getLogger());
- _treeBuilder.setUserAgent(getUserAgent());
- _treeBuilder.setStructHandler(structHandler);
+ treeBuilder.setUserAgent(getUserAgent());
+ treeBuilder.setStructHandler(structHandler);
- return _treeBuilder;
+ return treeBuilder;
}
/**
- * Build the formatting object tree using the given SAX Parser and
- * SAX InputSource
+ * Render the FO document read by a SAX Parser from an InputSource.
+ * @param parser the SAX parser.
+ * @param source the input source the parser reads from.
+ * @throws FOPException if anything goes wrong.
*/
public synchronized void render(XMLReader parser, InputSource source)
- throws FOPException {
+ throws FOPException {
parser.setContentHandler(getContentHandler());
try {
parser.parse(source);
} catch (SAXException e) {
if (e.getException() instanceof FOPException) {
+ // Undo exception tunneling.
throw (FOPException)e.getException();
} else {
throw new FOPException(e);
}
- }
- catch (IOException e) {
+ } catch (IOException e) {
throw new FOPException(e);
}
}
/**
- * Build the formatting object tree using the given DOM Document
+ * Render the FO ducument represented by a DOM Document.
+ * @param document the DOM document to read from
+ * @throws FOPException if anything goes wrong.
*/
public synchronized void render(Document document)
- throws FOPException {
-
+ throws FOPException {
try {
DocumentInputSource source = new DocumentInputSource(document);
DocumentReader reader = new DocumentReader();
reader.setContentHandler(getContentHandler());
reader.parse(source);
} catch (SAXException e) {
- throw new FOPException(e);
- }
- catch (IOException e) {
+ if (e.getException() instanceof FOPException) {
+ // Undo exception tunneling.
+ throw (FOPException)e.getException();
+ } else {
+ throw new FOPException(e);
+ }
+ } catch (IOException e) {
throw new FOPException(e);
}
@@ -522,31 +535,40 @@
/**
* Runs the formatting and renderering process using the previously set
- * inputsource and outputstream
- */
- public synchronized void run() throws IOException, FOPException {
- if (_renderer == null) {
+ * parser, input source, renderer and output stream.
+ * If the renderer was not set, default to PDF.
+ * If no parser was set, and the input source is not a dom document,
+ * get a default SAX parser.
+ * @throws IOException in case of IO errors.
+ * @throws FOPException if anything else goes wrong.
+ */
+ public synchronized void run()
+ throws IOException, FOPException {
+ if (renderer == null) {
setRenderer(RENDER_PDF);
}
- if (_source == null) {
+ if (source == null) {
throw new FOPException("InputSource is not set.");
}
- if (_reader == null) {
- if (!(_source instanceof DocumentInputSource)) {
+ if (reader == null) {
+ if (!(source instanceof DocumentInputSource)) {
try {
- _reader =
javax.xml.parsers.SAXParserFactory.newInstance().newSAXParser().getXMLReader();
- } catch(Exception e) {
+ reader = javax.xml.parsers.SAXParserFactory.newInstance()
+ .newSAXParser().getXMLReader();
+ } catch (SAXException e) {
+ throw new FOPException(e);
+ } catch (ParserConfigurationException e) {
throw new FOPException(e);
}
}
}
- if (_source instanceof DocumentInputSource) {
- render(((DocumentInputSource)_source).getDocument());
+ if (source instanceof DocumentInputSource) {
+ render(((DocumentInputSource)source).getDocument());
} else {
- render(_reader, _source);
+ render(reader, source);
}
}
@@ -561,7 +583,7 @@
*/
class Service {
- static Hashtable providerMap = new Hashtable();
+ static private Hashtable providerMap = new Hashtable();
public static synchronized Enumeration providers(Class cls) {
ClassLoader cl = cls.getClassLoader();
1.7 +4 -3 xml-fop/src/org/apache/fop/apps/ErrorHandler.java
Index: ErrorHandler.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/ErrorHandler.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ErrorHandler.java 30 Jul 2001 20:29:18 -0000 1.6
+++ ErrorHandler.java 13 Jan 2003 21:05:12 -0000 1.7
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -10,4 +10,5 @@
/**
* not implemented yet
*/
-public interface ErrorHandler {}
+public interface ErrorHandler {
+}
1.8 +19 -4 xml-fop/src/org/apache/fop/apps/FOInputHandler.java
Index: FOInputHandler.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/FOInputHandler.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FOInputHandler.java 25 Oct 2002 09:29:39 -0000 1.7
+++ FOInputHandler.java 13 Jan 2003 21:05:12 -0000 1.8
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001-2002 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources.
*/
@@ -19,17 +19,29 @@
* Manages input if it is an xsl:fo file
*/
public class FOInputHandler extends InputHandler {
- File fofile = null;
- URL foURL = null;
+ private File fofile = null;
+ private URL foURL = null;
+ /*
+ * Create a FOInputHandler for a file.
+ * @param file the file to read the FO document.
+ */
public FOInputHandler (File fofile) {
this.fofile = fofile;
}
+ /*
+ * Create a FOInputHandler for an URL.
+ * @param file the URL to read the FO document.
+ */
public FOInputHandler (URL url) {
this.foURL = url;
}
+
+ /*
+ * Get the input source associated with this input handler.
+ */
public InputSource getInputSource () {
if (fofile != null) {
return super.fileInputSource(fofile);
@@ -37,6 +49,9 @@
return super.urlInputSource(foURL);
}
+ /*
+ * Get the SAX parser associated with this input handler.
+ */
public XMLReader getParser() throws FOPException {
return super.createParser();
}
1.11 +13 -13 xml-fop/src/org/apache/fop/apps/FOPException.java
Index: FOPException.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/FOPException.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- FOPException.java 2 Jan 2003 20:59:07 -0000 1.10
+++ FOPException.java 13 Jan 2003 21:05:12 -0000 1.11
@@ -1,6 +1,6 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 The Apache Software Foundation. All rights reserved.
* For details on use and redistribution please refer to the
* LICENSE file included with these sources."
*/
@@ -17,7 +17,7 @@
private static final String EXCEPTION_SEPARATOR = "\n---------\n";
- private Throwable _exception;
+ private Throwable exception;
/**
* create a new FOP Exception
@@ -39,15 +39,15 @@
}
protected void setException(Throwable t) {
- _exception = t;
+ exception = t;
}
public Throwable getException() {
- return _exception;
+ return exception;
}
protected Throwable getRootException() {
- Throwable result = _exception;
+ Throwable result = exception;
if (result instanceof SAXException) {
result = ((SAXException)result).getException();
@@ -56,7 +56,7 @@
result =
((java.lang.reflect.InvocationTargetException)result).getTargetException();
}
- if (result != _exception) {
+ if (result != exception) {
return result;
}
return null;
@@ -66,9 +66,9 @@
public void printStackTrace() {
synchronized (System.err) {
super.printStackTrace();
- if (_exception != null) {
+ if (exception != null) {
System.err.println(EXCEPTION_SEPARATOR);
- _exception.printStackTrace();
+ exception.printStackTrace();
}
if (getRootException() != null) {
System.err.println(EXCEPTION_SEPARATOR);
@@ -80,9 +80,9 @@
public void printStackTrace(java.io.PrintStream stream) {
synchronized (stream) {
super.printStackTrace(stream);
- if (_exception != null) {
+ if (exception != null) {
stream.println(EXCEPTION_SEPARATOR);
- _exception.printStackTrace(stream);
+ exception.printStackTrace(stream);
}
if (getRootException() != null) {
stream.println(EXCEPTION_SEPARATOR);
@@ -94,9 +94,9 @@
public void printStackTrace(java.io.PrintWriter writer) {
synchronized (writer) {
super.printStackTrace(writer);
- if (_exception != null) {
+ if (exception != null) {
writer.println(EXCEPTION_SEPARATOR);
- _exception.printStackTrace(writer);
+ exception.printStackTrace(writer);
}
if (getRootException() != null) {
writer.println(EXCEPTION_SEPARATOR);
1.14 +11 -3 xml-fop/src/org/apache/fop/apps/Fop.java
Index: Fop.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/Fop.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- Fop.java 4 Sep 2002 08:36:35 -0000 1.13
+++ Fop.java 13 Jan 2003 21:05:12 -0000 1.14
@@ -1,13 +1,21 @@
/*
* $Id$
- * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
+ * Copyright (C) 2001-2003 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.apps;
+/*
+ * The main application class for the FOP command line interface (CLI).
+ */
public class Fop {
+
+ /*
+ * The main routine for the command line interface
+ * @param args the command line parameters
+ */
public static void main(String[] args) {
CommandLineOptions options = null;
@@ -16,7 +24,7 @@
Starter starter = options.getStarter();
starter.run();
} catch (FOPException e) {
- if("null".equals("" + e.getMessage())) {
+ if (e.getMessage()==null) {
System.err.println("Exception occured with a null error message");
} else {
System.err.println("" + e.getMessage());
1.10 +7 -1 xml-fop/src/org/apache/fop/apps/InputHandler.java
Index: InputHandler.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/InputHandler.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- InputHandler.java 16 Dec 2002 22:01:43 -0000 1.9
+++ InputHandler.java 13 Jan 2003 21:05:12 -0000 1.10
@@ -18,6 +18,11 @@
import java.net.URL;
import java.io.File;
+/*
+ * Abstract super class for input handlers.
+ * Should be used to abstract the various possibilities on how input
+ * can be provided to FOP (but actually isn't).
+ */
public abstract class InputHandler {
public abstract InputSource getInputSource();
@@ -53,6 +58,7 @@
* Creates <code>XMLReader</code> object using default
* <code>SAXParserFactory</code>
* @return the created <code>XMLReader</code>
+ * @throws FOPException if the parser couldn't be created or configured for
proper operation.
*/
protected static XMLReader createParser() throws FOPException {
try {
1.11 +9 -5 xml-fop/src/org/apache/fop/apps/LayoutHandler.java
Index: LayoutHandler.java
===================================================================
RCS file: /home/cvs/xml-fop/src/org/apache/fop/apps/LayoutHandler.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- LayoutHandler.java 22 Dec 2002 22:40:31 -0000 1.10
+++ LayoutHandler.java 13 Jan 2003 21:05:12 -0000 1.11
@@ -8,19 +8,23 @@
package org.apache.fop.apps;
// Java
-import java.io.OutputStream;
import java.io.IOException;
+import java.io.OutputStream;
import java.util.List;
// SAX
import org.xml.sax.SAXException;
// FOP
+import org.apache.fop.area.AreaTree;
+import org.apache.fop.area.AreaTreeModel;
+import org.apache.fop.area.StorePagesModel;
+import org.apache.fop.area.Title;
+import org.apache.fop.area.TreeExt;
+import org.apache.fop.fo.pagination.LayoutMasterSet;
+import org.apache.fop.fo.pagination.PageSequence;
import org.apache.fop.layout.FontInfo;
-import org.apache.fop.area.*;
import org.apache.fop.render.Renderer;
-import org.apache.fop.fo.pagination.PageSequence;
-import org.apache.fop.fo.pagination.LayoutMasterSet;
/**
* Layout handler that receives the structure events.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]