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
|
/*
* 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: Block.java,v 1.14 2004/04/02 13:50:52 cbowditch Exp $ */
package org.apache.fop.fo.flow;
// XML
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.SAXParseException;
// FOP
import org.apache.fop.datatypes.ColorType;
import org.apache.fop.fo.CharIterator;
import org.apache.fop.fo.FONode;
import org.apache.fop.fo.FObj;
import org.apache.fop.fo.FObjMixed;
import org.apache.fop.fo.RecursiveCharIterator;
import org.apache.fop.layoutmgr.AddLMVisitor;
import org.apache.fop.fo.Constants;
import org.apache.fop.fo.properties.CommonAccessibility;
import org.apache.fop.fo.properties.CommonAural;
import org.apache.fop.fo.properties.CommonBackground;
import org.apache.fop.fo.properties.CommonBorderAndPadding;
import org.apache.fop.fo.properties.CommonHyphenation;
import org.apache.fop.fo.properties.CommonMarginBlock;
import org.apache.fop.fo.properties.CommonRelativePosition;
import org.apache.fop.util.CharUtilities;
/*
Modified by Mark Lillywhite mark-fop@inomial.com. The changes
here are based on memory profiling and do not change functionality.
Essentially, the Block object had a pointer to a BlockArea object
that it created. The BlockArea was not referenced after the Block
was finished except to determine the size of the BlockArea, however
a reference to the BlockArea was maintained and this caused a lot of
GC problems, and was a major reason for FOP memory leaks. So,
the reference to BlockArea was made local, the required information
is now stored (instead of a reference to the complex BlockArea object)
and it appears that there are a lot of changes in this file, in fact
there are only a few sematic changes; mostly I just got rid of
"this." from blockArea since BlockArea is now local.
*/
/**
* Class modelling the fo:block object. See Sec. 6.5.2 of the XSL-FO Standard.
*/
public class Block extends FObjMixed {
private int align;
private int alignLast;
private int breakAfter;
private int lineHeight;
private int startIndent;
private int endIndent;
private int spaceBefore;
private int spaceAfter;
private int textIndent;
private int keepWithNext;
private ColorType backgroundColor;
private int blockWidows;
private int blockOrphans;
private String id;
private int span;
private int wsTreatment; //ENUMERATION
private int lfTreatment; //ENUMERATION
private boolean bWScollapse; //true if white-space-collapse=true
// this may be helpful on other FOs too
private boolean anythingLaidOut = false;
/**
* Index of first inline-type FO seen in a sequence.
* Used during FO tree building to do white-space handling.
*/
private FONode firstInlineChild = null;
/**
* @param parent FONode that is the parent of this object
*/
public Block(FONode parent) {
super(parent);
}
/**
* @see org.apache.fop.fo.FObj#addProperties
*/
protected void addProperties(Attributes attlist) throws SAXParseException {
super.addProperties(attlist);
this.span = this.propertyList.get(PR_SPAN).getEnum();
this.wsTreatment =
this.propertyList.get(PR_WHITE_SPACE_TREATMENT).getEnum();
this.bWScollapse =
(this.propertyList.get(PR_WHITE_SPACE_COLLAPSE).getEnum()
== Constants.TRUE);
this.lfTreatment =
this.propertyList.get(PR_LINEFEED_TREATMENT).getEnum();
setupID();
this.align = this.propertyList.get(PR_TEXT_ALIGN).getEnum();
this.alignLast =
this.propertyList.get(PR_TEXT_ALIGN_LAST).getEnum();
this.breakAfter = this.propertyList.get(PR_BREAK_AFTER).getEnum();
this.lineHeight = this.propertyList.get(
PR_LINE_HEIGHT).getLength().getValue();
this.startIndent = this.propertyList.get(
PR_START_INDENT).getLength().getValue();
this.endIndent = this.propertyList.get(
PR_END_INDENT).getLength().getValue();
this.spaceBefore = this.propertyList.get(
PR_SPACE_BEFORE | CP_OPTIMUM).getLength().getValue();
this.spaceAfter = this.propertyList.get(
PR_SPACE_AFTER | CP_OPTIMUM).getLength().getValue();
this.textIndent = this.propertyList.get(
PR_TEXT_INDENT).getLength().getValue();
this.keepWithNext =
this.propertyList.get(PR_KEEP_WITH_NEXT).getEnum();
this.blockWidows =
this.propertyList.get(PR_WIDOWS).getNumber().intValue();
this.blockOrphans =
this.propertyList.get(PR_ORPHANS).getNumber().intValue();
getFOInputHandler().startBlock(this);
}
/**
* @return true (Block can contain Markers)
*/
protected boolean containsMarkers() {
return true;
}
/**
* @return span for this Block, in millipoints (??)
*/
public int getSpan() {
return this.span;
}
/**
* @return false (Block cannot generate inline areas)
*/
public boolean generatesInlineAreas() {
return false;
}
/**
* @see org.apache.fop.fo.FONode#addChildNode(FONode)
*/
public void addChildNode(FONode child) {
// Handle whitespace based on values of properties
// Handle a sequence of inline-producing child nodes in
// one pass
if (child instanceof FObj && ((FObj) child).generatesInlineAreas()) {
if (firstInlineChild == null) {
firstInlineChild = child;
}
// lastInlineChild = childNodes.size();
} else {
// Handle whitespace in preceeding inline areas if any
handleWhiteSpace();
}
super.addChildNode(child);
}
/**
* @see org.apache.fop.fo.FONode#end
*/
protected void endOfNode() throws SAXParseException {
handleWhiteSpace();
getFOInputHandler().endBlock(this);
}
private void handleWhiteSpace() {
//getLogger().debug("fo:block: handleWhiteSpace");
if (firstInlineChild != null) {
boolean bInWS = false;
boolean bPrevWasLF = false;
/* bSeenNonWSYet is an indicator used for trimming all leading
whitespace for the first inline child of the block
*/
boolean bSeenNonWSYet = false;
RecursiveCharIterator charIter =
new RecursiveCharIterator(this, firstInlineChild);
LFchecker lfCheck = new LFchecker(charIter);
while (charIter.hasNext()) {
char currentChar = charIter.nextChar();
switch (CharUtilities.classOf(currentChar)) {
case CharUtilities.XMLWHITESPACE:
/* Some kind of whitespace character, except linefeed. */
boolean bIgnore = false;
switch (wsTreatment) {
case Constants.IGNORE:
bIgnore = true;
break;
case Constants.IGNORE_IF_BEFORE_LINEFEED:
bIgnore = lfCheck.nextIsLF();
break;
case Constants.IGNORE_IF_SURROUNDING_LINEFEED:
bIgnore = (bPrevWasLF
|| lfCheck.nextIsLF());
break;
case Constants.IGNORE_IF_AFTER_LINEFEED:
bIgnore = bPrevWasLF;
break;
case Constants.PRESERVE:
// nothing to do now, replacement takes place later
break;
}
// Handle ignore and replacement
if (bIgnore) {
charIter.remove();
} else if (bWScollapse) {
if (bInWS || (lfTreatment == Constants.PRESERVE
&& (bPrevWasLF || lfCheck.nextIsLF()))) {
charIter.remove();
} else {
// this is to retain a single space between words
bInWS = true;
// remove the space if no word in block
// encountered yet
if (!bSeenNonWSYet) {
charIter.remove();
} else {
if (currentChar != '\u0020') {
charIter.replaceChar('\u0020');
}
}
}
} else {
// !bWScollapse
if (currentChar != '\u0020') {
charIter.replaceChar('\u0020');
}
}
break;
case CharUtilities.LINEFEED:
/* A linefeed */
lfCheck.reset();
bPrevWasLF = true; // for following whitespace
switch (lfTreatment) {
case Constants.IGNORE:
charIter.remove();
break;
case Constants.TREAT_AS_SPACE:
if (bInWS) {
// only if bWScollapse=true
charIter.remove();
} else {
if (bWScollapse) {
bInWS = true;
// remove the linefeed if no word in block
// encountered yet
if (!bSeenNonWSYet) {
charIter.remove();
}
}
charIter.replaceChar('\u0020');
}
break;
case Constants.TREAT_AS_ZERO_WIDTH_SPACE:
charIter.replaceChar('\u200b');
// Fall through: this isn't XML whitespace
case Constants.PRESERVE:
bInWS = false;
break;
}
break;
case CharUtilities.EOT:
// A "boundary" objects such as non-character inline
// or nested block object was encountered.
// If any whitespace run in progress, finish it.
// FALL THROUGH
case CharUtilities.UCWHITESPACE: // Non XML-whitespace
case CharUtilities.NONWHITESPACE:
/* Any other character */
bInWS = bPrevWasLF = false;
bSeenNonWSYet = true;
lfCheck.reset();
break;
}
}
firstInlineChild = null;
}
}
private static class LFchecker {
private boolean bNextIsLF = false;
private RecursiveCharIterator charIter;
LFchecker(RecursiveCharIterator charIter) {
this.charIter = charIter;
}
boolean nextIsLF() {
if (bNextIsLF == false) {
CharIterator lfIter = charIter.mark();
while (lfIter.hasNext()) {
char c = lfIter.nextChar();
if (c == '\n') {
bNextIsLF = true;
break;
} else if (CharUtilities.classOf(c)
!= CharUtilities.XMLWHITESPACE) {
break;
}
}
}
return bNextIsLF;
}
void reset() {
bNextIsLF = false;
}
}
/**
* This is a hook for the AddLMVisitor class to be able to access
* this object.
* @param aLMV the AddLMVisitor object that can access this object.
*/
public void acceptVisitor(AddLMVisitor aLMV) {
aLMV.serveBlock(this);
}
public String getName() {
return "fo:block";
}
}
|