1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.xchain.namespaces.sax;
17
18 import org.apache.commons.jxpath.JXPathContext;
19
20 import org.xchain.Command;
21 import org.xchain.annotations.Attribute;
22 import org.xchain.annotations.AttributeType;
23 import org.xchain.annotations.Element;
24 import org.xchain.framework.net.UrlFactory;
25
26 import java.net.URL;
27
28 import java.io.OutputStream;
29 import java.io.File;
30 import java.io.FileOutputStream;
31 import java.io.Writer;
32
33 import javax.xml.transform.dom.DOMResult;
34 import javax.xml.transform.sax.SAXResult;
35 import javax.xml.transform.stream.StreamResult;
36 import javax.xml.transform.Result;
37
38 import org.xml.sax.ContentHandler;
39
40 import org.w3c.dom.Node;
41
42 import org.slf4j.Logger;
43 import org.slf4j.LoggerFactory;
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 @Element(localName = "result")
91 public abstract class ResultCommand implements Command {
92 public static Logger log = LoggerFactory.getLogger(ResultCommand.class);
93
94
95
96
97
98 @Attribute(localName = "systemId", type = AttributeType.JXPATH_VALUE)
99 public abstract String getSystemIdDepricated(JXPathContext context)
100 throws Exception;
101
102
103
104
105
106 public abstract boolean hasSystemIdDepricated();
107
108
109
110
111
112 @Attribute(localName="system-id", type = AttributeType.JXPATH_VALUE)
113 public abstract String getSystemId(JXPathContext context)
114 throws Exception;
115
116
117
118
119
120 public abstract boolean hasSystemId();
121
122
123
124
125
126 @Attribute(localName = "path", type = AttributeType.JXPATH_VALUE)
127 public abstract String getPath(JXPathContext context)
128 throws Exception;
129
130
131
132
133
134 public abstract boolean hasPath();
135
136
137
138
139
140 @Attribute(localName = "select", type = AttributeType.JXPATH_SELECT_SINGLE_NODE)
141 public abstract Object getSelect(JXPathContext context)
142 throws Exception;
143
144
145
146
147
148 public abstract boolean hasSelect();
149
150
151
152
153
154
155 public Result createResultForSelect(JXPathContext context)
156 throws Exception
157 {
158 Object object = getSelect(context);
159
160 if( object == null ) {
161 throw new IllegalArgumentException("The selected object cannot be null.");
162 }
163
164 else if( object instanceof Result ) {
165 return (Result) object;
166 }
167
168
169 else if( object instanceof OutputStream ) {
170 return new StreamResult((OutputStream) object);
171 } else if( object instanceof Writer ) {
172 return new StreamResult((Writer) object);
173 } else if( object instanceof File ) {
174 return new StreamResult((File) object);
175 }
176
177
178 else if( object instanceof ContentHandler ) {
179 return new SAXResult((ContentHandler) object);
180 }
181
182
183 else if( object instanceof Node ) {
184 return new DOMResult((Node) object);
185 }
186
187
188 else {
189 throw new IllegalArgumentException("The selected result object (" + object.getClass().getName() + ") is not a result object nor is it an output stream.");
190 }
191 }
192
193
194
195
196
197
198 public Result createResultForSystemId(JXPathContext context)
199 throws Exception
200 {
201
202
203 String systemId = null;
204 if( hasSystemId() ) {
205 systemId = getSystemId(context);
206 }
207 else {
208 systemId = getSystemIdDepricated(context);
209 }
210
211
212 URL url = UrlFactory.getInstance().newUrl(systemId);
213
214
215 OutputStream out = url.openConnection().getOutputStream();
216
217
218 StreamResult streamResult = new StreamResult();
219 streamResult.setSystemId(systemId);
220 streamResult.setOutputStream(out);
221
222 return streamResult;
223 }
224
225
226
227
228
229
230 public Result createResultForPath(JXPathContext context)
231 throws Exception
232 {
233
234 String path = getPath(context);
235
236
237 File file = new File(path);
238
239
240 File parentFile = file.getParentFile();
241 if( !parentFile.exists() ) {
242 parentFile.mkdirs();
243 }
244
245
246 file.createNewFile();
247
248
249 OutputStream out = new FileOutputStream(file);
250
251
252 StreamResult streamResult = new StreamResult();
253 streamResult.setSystemId(file.toURL().toExternalForm());
254 streamResult.setOutputStream(out);
255
256 return streamResult;
257 }
258
259
260
261
262 public boolean execute(JXPathContext context)
263 throws Exception
264 {
265 Result result = null;
266
267 if( hasSelect() ) {
268 result = createResultForSelect(context);
269 } else if( hasSystemId() || hasSystemIdDepricated() ) {
270 result = createResultForSystemId(context);
271 } else if( hasPath() ) {
272 result = createResultForPath(context);
273 } else {
274 throw new IllegalStateException("The system-id, path or select attribute must be set for the result tag.");
275 }
276
277
278 PipelineCommand.getPipelineConfig().getCompositeStage().setResult(result);
279
280 return false;
281 }
282 }