blob: a7b8eb06e80275ecd03efcf8de487394c5297142 (
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
|
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/* $Id$ */
package org.apache.fop.apps;
// Java
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
// FOP
import org.apache.fop.render.awt.AWTRenderer;
/**
* 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;
InputHandler inputHandler = null;
BufferedOutputStream bos = null;
try {
Driver driver = new Driver();
options = new CommandLineOptions(args);
driver.setUserAgent(options.getFOUserAgent());
inputHandler = options.getInputHandler();
try {
if (options.getOutputMode() == CommandLineOptions.AWT_OUTPUT) {
driver.setRenderer(new AWTRenderer(inputHandler));
} else {
driver.setRenderer(options.getRenderer());
if (options.getOutputFile() != null) {
bos = new BufferedOutputStream(new FileOutputStream(
options.getOutputFile()));
driver.setOutputStream(bos);
}
}
driver.render(inputHandler);
} finally {
if (bos != null) {
bos.close();
}
}
// System.exit(0) called to close AWT/SVG-created threads, if any.
// AWTRenderer closes with window shutdown, so exit() should not
// be called here
if (options.getOutputMode() != CommandLineOptions.AWT_OUTPUT) {
System.exit(0);
}
} catch (FOPException e) {
if (e.getMessage() == null) {
System.err.println("Exception occured with a null error message");
} else {
System.err.println("" + e.getMessage());
}
if (options != null && options.getLogger().isDebugEnabled()) {
e.printStackTrace();
} else {
System.err.println("Turn on debugging for more information");
}
System.exit(1);
} catch (java.io.IOException e) {
System.err.println("" + e.getMessage());
if (options != null && options.getLogger().isDebugEnabled()) {
e.printStackTrace();
} else {
System.err.println("Turn on debugging for more information");
}
System.exit(1);
}
}
/**
* Get the version of FOP
* @return the version string
*/
public static String getVersion() {
return "1.0dev";
}
}
|