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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
|
/*
* Copyright 2006 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.area;
import java.awt.geom.Rectangle2D;
import java.util.Stack;
import java.util.StringTokenizer;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerConfigurationException;
import javax.xml.transform.TransformerException;
import javax.xml.transform.dom.DOMResult;
import javax.xml.transform.sax.SAXResult;
import javax.xml.transform.sax.SAXTransformerFactory;
import javax.xml.transform.sax.TransformerHandler;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.fop.apps.FOUserAgent;
import org.apache.fop.area.Trait.Background;
import org.apache.fop.area.Trait.Color;
import org.apache.fop.area.inline.AbstractTextArea;
import org.apache.fop.area.inline.Character;
import org.apache.fop.area.inline.ForeignObject;
import org.apache.fop.area.inline.Image;
import org.apache.fop.area.inline.InlineBlockParent;
import org.apache.fop.area.inline.InlineParent;
import org.apache.fop.area.inline.Leader;
import org.apache.fop.area.inline.Space;
import org.apache.fop.area.inline.SpaceArea;
import org.apache.fop.area.inline.TextArea;
import org.apache.fop.area.inline.Viewport;
import org.apache.fop.area.inline.WordArea;
import org.apache.fop.fo.Constants;
import org.apache.fop.fo.ElementMappingRegistry;
import org.apache.fop.fonts.Font;
import org.apache.fop.fonts.FontTriplet;
import org.apache.fop.image.FopImage;
import org.apache.fop.image.ImageFactory;
import org.apache.fop.traits.BorderProps;
import org.apache.fop.util.DefaultErrorListener;
import org.w3c.dom.DOMImplementation;
import org.w3c.dom.Document;
import org.xml.sax.Attributes;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
/**
* This is a parser for the area tree XML (intermediate format) which is used to reread an area
* tree (or part of it) into memory again for rendering to the final output format.
*/
public class AreaTreeParser {
/** Logger instance */
protected static Log log = LogFactory.getLog(AreaTreeParser.class);
private static SAXTransformerFactory tFactory
= (SAXTransformerFactory)SAXTransformerFactory.newInstance();
/**
* Parses an intermediate file (area tree XML) into an AreaTreeModel instance by adding
* pages to it.
* @param src the Source instance pointing to the intermediate file
* @param treeModel the AreaTreeModel that the parsed pages are added to
* @param userAgent the user agent
* @throws TransformerException if an error occurs while parsing the area tree XML
*/
public void parse(Source src, AreaTreeModel treeModel, FOUserAgent userAgent)
throws TransformerException {
Transformer transformer = tFactory.newTransformer();
transformer.setErrorListener(new DefaultErrorListener(log));
SAXResult res = new SAXResult(getContentHandler(treeModel, userAgent));
transformer.transform(src, res);
}
/**
* Creates a new ContentHandler instance that you can send the area tree XML to. The parsed
* pages are added to the AreaTreeModel instance you pass in as a parameter.
* @param treeModel the AreaTreeModel that the parsed pages are added to
* @param userAgent the user agent
* @return the ContentHandler instance to receive the SAX stream from the area tree XML
*/
public ContentHandler getContentHandler(AreaTreeModel treeModel, FOUserAgent userAgent) {
//TODO Retrieve this instance from the environment class once it has been created.
ElementMappingRegistry elementMappingRegistry = new ElementMappingRegistry(userAgent);
return new Handler(treeModel, userAgent, elementMappingRegistry);
}
private static class Handler extends DefaultHandler {
private AreaTreeModel treeModel;
private FOUserAgent userAgent;
private ElementMappingRegistry elementMappingRegistry;
private Attributes lastAttributes;
private StringBuffer content = new StringBuffer();
private PageViewport currentPageViewport;
private Stack areaStack = new Stack();
private boolean firstFlow;
private Stack delegateStack = new Stack();
private ContentHandler delegate;
private DOMImplementation domImplementation;
public Handler(AreaTreeModel treeModel, FOUserAgent userAgent,
ElementMappingRegistry elementMappingRegistry) {
this.treeModel = treeModel;
this.userAgent = userAgent;
this.elementMappingRegistry = elementMappingRegistry;
}
private static Rectangle2D parseRect(String rect) {
StringTokenizer tokenizer = new StringTokenizer(rect, " ");
return new Rectangle2D.Double(
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()));
}
private Area findAreaType(Class clazz) {
if (areaStack.size() > 0) {
int pos = areaStack.size() - 1;
Object obj = null;
while (pos >= 0 && !(clazz.isInstance(obj = areaStack.get(pos)))) {
pos--;
}
if (pos >= 0) {
return (Area)obj;
}
}
return null;
}
private RegionViewport getCurrentRegionViewport() {
return (RegionViewport)findAreaType(RegionViewport.class);
}
private BodyRegion getCurrentBodyRegion() {
return (BodyRegion)findAreaType(BodyRegion.class);
}
private BlockParent getCurrentBlockParent() {
return (BlockParent)findAreaType(BlockParent.class);
}
private AbstractTextArea getCurrentText() {
return (AbstractTextArea)findAreaType(AbstractTextArea.class);
}
private Viewport getCurrentViewport() {
return (Viewport)findAreaType(Viewport.class);
}
/** @see org.xml.sax.helpers.DefaultHandler */
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
if (delegate != null) {
delegateStack.push(qName);
delegate.startElement(uri, localName, qName, attributes);
} else if (domImplementation != null) {
TransformerHandler handler;
try {
handler = tFactory.newTransformerHandler();
} catch (TransformerConfigurationException e) {
throw new SAXException("Error creating a new TransformerHandler", e);
}
Document doc = domImplementation.createDocument(uri, qName, null);
//It's easier to work with an empty document, so remove the root element
doc.removeChild(doc.getDocumentElement());
handler.setResult(new DOMResult(doc));
Area parent = (Area)areaStack.peek();
((ForeignObject)parent).setDocument(doc);
//activate delegate for nested foreign document
this.delegate = handler;
delegateStack.push(qName);
delegate.startDocument();
delegate.startElement(uri, localName, qName, attributes);
} else {
lastAttributes = attributes;
boolean handled = true;
if ("".equals(uri)) {
if ("areaTree".equals(localName)) {
//nop
} else if ("pageSequence".equals(localName)) {
treeModel.startPageSequence(null);
} else if ("pageViewport".equals(localName)) {
if (currentPageViewport != null) {
throw new IllegalStateException("currentPageViewport must be null");
}
Rectangle2D viewArea = parseRect(attributes.getValue("bounds"));
currentPageViewport = new PageViewport(viewArea, attributes.getValue("nr"));
} else if ("page".equals(localName)) {
Page p = new Page();
currentPageViewport.setPage(p);
} else if ("regionViewport".equals(localName)) {
RegionViewport rv = getCurrentRegionViewport();
if (rv != null) {
throw new IllegalStateException("Current RegionViewport must be null");
}
Rectangle2D viewArea = parseRect(attributes.getValue("rect"));
rv = new RegionViewport(viewArea);
rv.setClip(getAttributeAsBoolean(attributes, "clipped", false));
setAreaAttributes(attributes, rv);
setTraits(attributes, rv);
areaStack.push(rv);
} else if ("regionBefore".equals(localName)) {
pushNewRegionReference(attributes, Constants.FO_REGION_BEFORE);
} else if ("regionAfter".equals(localName)) {
pushNewRegionReference(attributes, Constants.FO_REGION_AFTER);
} else if ("regionStart".equals(localName)) {
pushNewRegionReference(attributes, Constants.FO_REGION_START);
} else if ("regionEnd".equals(localName)) {
pushNewRegionReference(attributes, Constants.FO_REGION_END);
} else if ("regionBody".equals(localName)) {
BodyRegion body = getCurrentBodyRegion();
if (body != null) {
throw new IllegalStateException("Current BodyRegion must be null");
}
String regionName = attributes.getValue("name");
int columnCount = getAttributeAsInteger(attributes, "columnCount", 1);
int columnGap = getAttributeAsInteger(attributes, "columnGap", 0);
RegionViewport rv = getCurrentRegionViewport();
body = new BodyRegion(Constants.FO_REGION_BODY,
regionName, rv, columnCount, columnGap);
body.setCTM(getAttributeAsCTM(attributes, "ctm"));
setAreaAttributes(attributes, body);
rv.setRegionReference(body);
currentPageViewport.getPage().setRegionViewport(
Constants.FO_REGION_BODY, rv);
areaStack.push(body);
} else if ("mainReference".equals(localName)) {
//mainReference is created by the BodyRegion
setAreaAttributes(attributes, getCurrentBodyRegion().getMainReference());
} else if ("span".equals(localName)) {
int ipd = getAttributeAsInteger(attributes, "ipd", 0);
int columnCount = getAttributeAsInteger(attributes, "columnCount", 1);
BodyRegion body = getCurrentBodyRegion();
Span span = new Span(columnCount,
body.getColumnGap(), ipd);
setAreaAttributes(attributes, span);
body.getMainReference().getSpans().add(span);
firstFlow = true;
} else if ("flow".equals(localName)) {
BodyRegion body = getCurrentBodyRegion();
if (!firstFlow) {
body.getMainReference().getCurrentSpan().moveToNextFlow();
} else {
firstFlow = false;
}
NormalFlow flow = body.getMainReference().getCurrentSpan().getCurrentFlow();
setAreaAttributes(attributes, flow);
areaStack.push(flow);
} else if ("footnote".equals(localName)) {
areaStack.push(getCurrentBodyRegion().getFootnote());
} else if ("beforeFloat".equals(localName)) {
areaStack.push(getCurrentBodyRegion().getBeforeFloat());
} else if ("block".equals(localName)) {
boolean isViewport = getAttributeAsBoolean(attributes,
"is-viewport-area", false);
Block block;
if (isViewport) {
BlockViewport bv = new BlockViewport();
bv.setClip(getAttributeAsBoolean(attributes, "clipped", false));
bv.setCTM(getAttributeAsCTM(attributes, "ctm"));
if (bv.getPositioning() != BlockViewport.RELATIVE) {
bv.setXOffset(
getAttributeAsInteger(attributes, "left-position", 0));
bv.setYOffset(
getAttributeAsInteger(attributes, "top-position", 0));
}
block = bv;
} else {
block = new Block();
}
String positioning = attributes.getValue("positioning");
if ("absolute".equalsIgnoreCase(positioning)) {
block.setPositioning(Block.ABSOLUTE);
} else if ("fixed".equalsIgnoreCase(positioning)) {
block.setPositioning(Block.FIXED);
} else if ("relative".equalsIgnoreCase(positioning)) {
block.setPositioning(Block.RELATIVE);
} else {
block.setPositioning(Block.STACK);
}
if (attributes.getValue("left-offset") != null) {
block.setXOffset(getAttributeAsInteger(attributes, "left-offset", 0));
}
if (attributes.getValue("top-offset") != null) {
block.setYOffset(getAttributeAsInteger(attributes, "top-offset", 0));
}
setAreaAttributes(attributes, block);
setTraits(attributes, block);
Area parent = (Area)areaStack.peek();
//BlockParent parent = getCurrentBlockParent();
parent.addChildArea(block);
areaStack.push(block);
} else if ("lineArea".equals(localName)) {
LineArea line = new LineArea();
setAreaAttributes(attributes, line);
setTraits(attributes, line);
BlockParent parent = getCurrentBlockParent();
parent.addChildArea(line);
areaStack.push(line);
} else if ("inlineparent".equals(localName)) {
InlineParent ip = new InlineParent();
ip.setOffset(getAttributeAsInteger(attributes, "offset", 0));
setAreaAttributes(attributes, ip);
setTraits(attributes, ip);
Area parent = (Area)areaStack.peek();
parent.addChildArea(ip);
areaStack.push(ip);
} else if ("inlineblockparent".equals(localName)) {
InlineBlockParent ibp = new InlineBlockParent();
ibp.setOffset(getAttributeAsInteger(attributes, "offset", 0));
setAreaAttributes(attributes, ibp);
setTraits(attributes, ibp);
Area parent = (Area)areaStack.peek();
parent.addChildArea(ibp);
areaStack.push(ibp);
} else if ("text".equals(localName)) {
if (getCurrentText() != null) {
throw new IllegalStateException("Current Text must be null");
}
TextArea text = new TextArea();
setAreaAttributes(attributes, text);
setTraits(attributes, text);
text.setBaselineOffset(getAttributeAsInteger(attributes, "baseline", 0));
text.setTextLetterSpaceAdjust(getAttributeAsInteger(attributes,
"tlsadjust", 0));
text.setTextWordSpaceAdjust(getAttributeAsInteger(attributes,
"twsadjust", 0));
Area parent = (Area)areaStack.peek();
parent.addChildArea(text);
areaStack.push(text);
} else if ("word".equals(localName)) {
//handled in endElement
} else if ("space".equals(localName)) {
//handled in endElement
} else if ("char".equals(localName)) {
//handled in endElement
} else if ("leader".equals(localName)) {
Leader leader = new Leader();
setAreaAttributes(attributes, leader);
setTraits(attributes, leader);
leader.setOffset(getAttributeAsInteger(attributes, "offset", 0));
String ruleStyle = attributes.getValue("ruleStyle");
if (ruleStyle != null) {
leader.setRuleStyle(ruleStyle);
}
leader.setRuleThickness(
getAttributeAsInteger(attributes, "ruleThickness", 0));
Area parent = (Area)areaStack.peek();
parent.addChildArea(leader);
} else if ("viewport".equals(localName)) {
Viewport viewport = new Viewport(null);
setAreaAttributes(attributes, viewport);
setTraits(attributes, viewport);
viewport.setContentPosition(getAttributeAsRectangle2D(attributes, "pos"));
viewport.setClip(getAttributeAsBoolean(attributes, "clip", false));
viewport.setOffset(getAttributeAsInteger(attributes, "offset", 0));
Area parent = (Area)areaStack.peek();
parent.addChildArea(viewport);
areaStack.push(viewport);
} else if ("image".equals(localName)) {
String url = attributes.getValue("url");
Image image = new Image(url);
setAreaAttributes(attributes, image);
setTraits(attributes, image);
getCurrentViewport().setContent(image);
} else if ("foreignObject".equals(localName)) {
String ns = attributes.getValue("ns");
this.domImplementation
= elementMappingRegistry.getDOMImplementationForNamespace(ns);
if (this.domImplementation == null) {
throw new SAXException("No DOMImplementation could be"
+ " identified to handle namespace: " + ns);
}
ForeignObject foreign = new ForeignObject(ns);
setAreaAttributes(attributes, foreign);
setTraits(attributes, foreign);
getCurrentViewport().setContent(foreign);
areaStack.push(foreign);
} else {
handled = false;
}
} else {
handled = false;
}
if (!handled) {
throw new SAXException("Unhandled element " + localName
+ " in namespace: " + uri);
}
}
}
private void pushNewRegionReference(Attributes attributes, int side) {
String regionName = attributes.getValue("name");
RegionViewport rv = getCurrentRegionViewport();
RegionReference reg = new RegionReference(side,
regionName, rv);
reg.setCTM(getAttributeAsCTM(attributes, "ctm"));
setAreaAttributes(attributes, reg);
rv.setRegionReference(reg);
currentPageViewport.getPage().setRegionViewport(
side, rv);
areaStack.push(reg);
}
private void assertObjectOfClass(Object obj, Class clazz) {
if (!clazz.isInstance(obj)) {
throw new IllegalStateException("Object is not an instance of "
+ clazz.getName() + " but of " + obj.getClass().getName());
}
}
/** @see org.xml.sax.helpers.DefaultHandler */
public void endElement(String uri, String localName, String qName) throws SAXException {
if (delegate != null) {
delegate.endElement(uri, localName, qName);
delegateStack.pop();
if (delegateStack.size() == 0) {
delegate.endDocument();
delegate = null;
domImplementation = null;
}
} else {
if ("".equals(uri)) {
if ("pageSequence".equals(localName)) {
//end page-sequence
} else if ("page".equals(localName)) {
treeModel.addPage(currentPageViewport);
currentPageViewport = null;
} else if ("pageViewport".equals(localName)) {
//nop
} else if ("regionViewport".equals(localName)) {
assertObjectOfClass(areaStack.pop(), RegionViewport.class);
} else if ("regionBefore".equals(localName)) {
assertObjectOfClass(areaStack.pop(), RegionReference.class);
} else if ("regionAfter".equals(localName)) {
assertObjectOfClass(areaStack.pop(), RegionReference.class);
} else if ("regionStart".equals(localName)) {
assertObjectOfClass(areaStack.pop(), RegionReference.class);
} else if ("regionEnd".equals(localName)) {
assertObjectOfClass(areaStack.pop(), RegionReference.class);
} else if ("regionBody".equals(localName)) {
assertObjectOfClass(areaStack.pop(), BodyRegion.class);
} else if ("flow".equals(localName)) {
assertObjectOfClass(areaStack.pop(), NormalFlow.class);
} else if ("footnote".equals(localName)) {
assertObjectOfClass(areaStack.pop(), Footnote.class);
} else if ("beforeFloat".equals(localName)) {
assertObjectOfClass(areaStack.pop(), BeforeFloat.class);
} else if ("block".equals(localName)) {
assertObjectOfClass(areaStack.pop(), Block.class);
} else if ("lineArea".equals(localName)) {
assertObjectOfClass(areaStack.pop(), LineArea.class);
} else if ("inlineparent".equals(localName)) {
assertObjectOfClass(areaStack.pop(), InlineParent.class);
} else if ("inlineblockparent".equals(localName)) {
assertObjectOfClass(areaStack.pop(), InlineBlockParent.class);
} else if ("text".equals(localName)) {
assertObjectOfClass(areaStack.pop(), TextArea.class);
} else if ("word".equals(localName)) {
int offset = getAttributeAsInteger(lastAttributes, "offset", 0);
String txt = content.toString();
WordArea word = new WordArea(txt, offset);
AbstractTextArea text = getCurrentText();
word.setParentArea(text);
text.addChildArea(word);
} else if ("space".equals(localName)) {
int offset = getAttributeAsInteger(lastAttributes, "offset", 0);
String txt = content.toString();
//TODO the isAdjustable parameter is currently not used/implemented
if (txt.length() > 0) {
SpaceArea space = new SpaceArea(txt.charAt(0), offset, false);
AbstractTextArea text = getCurrentText();
space.setParentArea(text);
text.addChildArea(space);
} else {
Space space = new Space();
setAreaAttributes(lastAttributes, space);
setTraits(lastAttributes, space);
space.setOffset(getAttributeAsInteger(lastAttributes, "offset", 0));
Area parent = (Area)areaStack.peek();
parent.addChildArea(space);
}
} else if ("char".equals(localName)) {
String txt = content.toString();
Character ch = new Character(txt.charAt(0));
setAreaAttributes(lastAttributes, ch);
setTraits(lastAttributes, ch);
ch.setOffset(getAttributeAsInteger(lastAttributes, "offset", 0));
ch.setBaselineOffset(getAttributeAsInteger(lastAttributes, "baseline", 0));
Area parent = (Area)areaStack.peek();
parent.addChildArea(ch);
} else if ("viewport".equals(localName)) {
assertObjectOfClass(areaStack.pop(), Viewport.class);
} else if ("foreignObject".equals(localName)) {
assertObjectOfClass(areaStack.pop(), ForeignObject.class);
}
} else {
//log.debug("Ignoring " + localName + " in namespace: " + uri);
}
content.setLength(0); //Reset text buffer (see characters())
}
}
private void setAreaAttributes(Attributes attributes, Area area) {
area.setIPD(Integer.parseInt(attributes.getValue("ipd")));
area.setBPD(Integer.parseInt(attributes.getValue("bpd")));
}
private void setTraits(Attributes attributes, Area area) {
for (int i = 0, c = Trait.TRAIT_LIST.length; i < c; i++) {
Object trait = Trait.TRAIT_LIST[i];
Class cl = Trait.getTraitClass(trait);
if (cl == Boolean.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
area.addTrait(trait, Boolean.valueOf(value));
}
} else if (cl == Integer.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
area.addTrait(trait, new Integer(value));
}
} else if (cl == String.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
area.addTrait(trait, value);
}
} else if (cl == FontTriplet.class) {
String fontName = attributes.getValue("font-name");
if (fontName != null) {
String fontStyle = attributes.getValue("font-style");
int fontWeight = getAttributeAsInteger(
attributes, "font-weight", Font.NORMAL);
area.addTrait(trait,
new FontTriplet(fontName, fontStyle, fontWeight));
}
} else if (cl == Color.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
area.addTrait(trait, Color.valueOf(value));
}
} else if (cl == Background.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
Background bkg = new Background();
Color col = Color.valueOf(attributes.getValue("bkg-color"));
if (col != null) {
bkg.setColor(col);
}
String url = attributes.getValue("bkg-img");
if (url != null) {
bkg.setURL(url);
ImageFactory fact = ImageFactory.getInstance();
FopImage img = fact.getImage(url, userAgent);
if (img == null) {
log.error("Background image not available: " + url);
} else {
// load dimensions
if (!img.load(FopImage.DIMENSIONS)) {
log.error("Cannot read background image dimensions: "
+ url);
}
}
bkg.setFopImage(img);
String repeat = attributes.getValue("bkg-repeat");
if (repeat != null) {
bkg.setRepeat(repeat);
}
bkg.setHoriz(getAttributeAsInteger(attributes,
"bkg-horz-offset", 0));
bkg.setVertical(getAttributeAsInteger(attributes,
"bkg-vert-offset", 0));
}
area.addTrait(trait, bkg);
}
} else if (cl == BorderProps.class) {
String value = attributes.getValue(Trait.getTraitName(trait));
if (value != null) {
area.addTrait(trait, BorderProps.valueOf(value));
}
}
}
}
private boolean getAttributeAsBoolean(Attributes attributes, String name,
boolean defaultValue) {
String s = attributes.getValue(name);
if (s == null) {
return defaultValue;
} else {
return Boolean.valueOf(s).booleanValue();
}
}
private int getAttributeAsInteger(Attributes attributes, String name,
int defaultValue) {
String s = attributes.getValue(name);
if (s == null) {
return defaultValue;
} else {
return Integer.parseInt(s);
}
}
private CTM getAttributeAsCTM(Attributes attributes, String name) {
String s = attributes.getValue(name).trim();
if (s.startsWith("[") && s.endsWith("]")) {
s = s.substring(1, s.length() - 1);
StringTokenizer tokenizer = new StringTokenizer(s, " ");
double[] values = new double[] {
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken())};
return new CTM(values[0], values[1], values[2], values[3], values[4], values[5]);
} else {
throw new IllegalArgumentException("CTM must be surrounded by square brackets");
}
}
private Rectangle2D getAttributeAsRectangle2D(Attributes attributes, String name) {
String s = attributes.getValue(name).trim();
StringTokenizer tokenizer = new StringTokenizer(s, " ");
double[] values = new double[] {
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken()),
Double.parseDouble(tokenizer.nextToken())};
return new Rectangle2D.Double(values[0], values[1], values[2], values[3]);
}
/** @see org.xml.sax.ContentHandler#characters(char[], int, int) */
public void characters(char[] ch, int start, int length) throws SAXException {
if (delegate != null) {
delegate.characters(ch, start, length);
} else {
content.append(ch, start, length);
}
}
}
}
|