aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/apache/fop/layout/LineArea.java
blob: 51bc7ad4d72c12c9eceae03a74738b39ec84b606 (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
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
/*>$File$ -- $Id$ -- 

 ============================================================================
                   The Apache Software License, Version 1.1
 ============================================================================
 
    Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
 
 Redistribution and use in source and binary forms, with or without modifica-
 tion, are permitted provided that the following conditions are met:
 
 1. Redistributions of  source code must  retain the above copyright  notice,
    this list of conditions and the following disclaimer.
 
 2. Redistributions in binary form must reproduce the above copyright notice,
    this list of conditions and the following disclaimer in the documentation
    and/or other materials provided with the distribution.
 
 3. The end-user documentation included with the redistribution, if any, must
    include  the following  acknowledgment:  "This product includes  software
    developed  by the  Apache Software Foundation  (http://www.apache.org/)."
    Alternately, this  acknowledgment may  appear in the software itself,  if
    and wherever such third-party acknowledgments normally appear.
 
 4. The names "Fop" and  "Apache Software Foundation"  must not be used to
    endorse  or promote  products derived  from this  software without  prior
    written permission. For written permission, please contact
    apache@apache.org.
 
 5. Products  derived from this software may not  be called "Apache", nor may
    "Apache" appear  in their name,  without prior written permission  of the
    Apache Software Foundation.
 
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
 APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
 INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
 DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
 OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
 ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
 (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 This software  consists of voluntary contributions made  by many individuals
 on  behalf of the Apache Software  Foundation and was  originally created by
 James Tauber <jtauber@jtauber.com>. For more  information on the Apache 
 Software Foundation, please see <http://www.apache.org/>.
 
 */
package org.apache.xml.fop.layout;

import org.apache.xml.fop.render.Renderer;

import java.util.Vector;
import java.util.Enumeration;

import org.apache.xml.fop.fo.properties.WrapOption; // for enumerated
// values 
import org.apache.xml.fop.fo.properties.WhiteSpaceTreatment; // for
// enumerated values 
import org.apache.xml.fop.fo.properties.TextAlign; // for enumerated
// values 
import org.apache.xml.fop.fo.properties.TextAlignLast; // for enumerated
// values 

public class LineArea extends Area {
	
    protected int lineHeight;
    protected int halfLeading;
    protected int nominalFontSize;
    protected int nominalGlyphHeight;
    
    protected int allocationHeight;
    protected int startIndent;
    protected int endIndent;
    
    private int placementOffset;
    
    private FontState currentFontState; // not the nominal, which is
    // in this.fontState 
    private float red, green, blue;
    private int wrapOption;
    private int whiteSpaceTreatment;

    /* the width of text that has definitely made it into the line
       area */
    protected int finalWidth = 0;

    /* the width of the current word so far */
    protected int wordWidth = 0;

    /* values that prev (below) may take */
    protected static final int NOTHING = 0;
    protected static final int WHITESPACE = 1;
    protected static final int TEXT = 2;

    /* the character type of the previous character */
    protected int prev = NOTHING;

    /* the position in data[] of the start of the current word */
    protected int wordStart;

    /* the length (in characters) of the current word */
    protected int wordLength = 0;

    /* width of spaces before current word */
    protected int spaceWidth = 0;

    /* the inline areas that have not yet been added to the line
       because subsequent characters to come (in a different addText)
       may be part of the same word */
    protected Vector pendingAreas = new Vector();

    /* the width of the pendingAreas */
    protected int pendingWidth = 0;

    public LineArea(FontState fontState, int lineHeight, int
		    halfLeading, int allocationWidth, int startIndent,
		    int endIndent) { 
	super(fontState);        
	
	this.currentFontState = fontState;
	this.lineHeight = lineHeight;
	this.nominalFontSize = fontState.getFontSize();
	this.nominalGlyphHeight = fontState.getAscender() -
	    fontState.getDescender(); 
	
	this.placementOffset = fontState.getAscender();
	this.contentRectangleWidth = allocationWidth - startIndent -
	    endIndent; 
	this.fontState = fontState;
	
	this.allocationHeight = this.nominalGlyphHeight;
	this.halfLeading = this.lineHeight - this.allocationHeight;
	
	this.startIndent = startIndent;
	this.endIndent = endIndent;
	
    }
    
    public void render(Renderer renderer) {
	renderer.renderLineArea(this);
    }

    public int addText(char data[], int start, int end) {
	boolean overrun = false;

	wordStart = start;
	wordLength = 0;
	wordWidth = 0;

	/* iterate over each character */
	for (int i = start; i < end; i++) {
	    int charWidth;
	    /* get the character */
	    char c = data[i];
	    
	    if (c > 127) {
		/* this class shouldn't be hard coded */
		char d =
		    org.apache.xml.fop.render.pdf.CodePointMapping.map[c];
		if (d != 0) {
		    c = data[i] = d;
		} else {
		    System.err.print("ch"
				       + (int)c + "?");
		    c = data[i] = '#';
		}
	    }
	    
	    charWidth = currentFontState.width(c);
	    
	    if ((c == ' ') ||
		(c == '\n') ||
		(c == '\r') ||
		(c == '\t')) { // whitespace
		
		if (prev == WHITESPACE) {

		    // if current & previous are WHITESPACE
		    
		    if (this.whiteSpaceTreatment ==
			WhiteSpaceTreatment.PRESERVE) { 
			if (c == ' ') {
			    spaceWidth += currentFontState.width(32);
			} else if (c == '\n') {
			    // force line break
			    return i;
			} else if (c == '\t') {
			    spaceWidth += 8 * currentFontState.width(32);
			}
		    } // else ignore it
		    
		} else if (prev == TEXT) {
		    
		    // if current is WHITESPACE and previous TEXT
		
		    // the current word made it, so

		    // add the space before the current word (if there
		    // was some)
    
		    if (spaceWidth > 0) {
			addChild(new InlineSpace(spaceWidth));
			finalWidth += spaceWidth;
			spaceWidth = 0;
		    }
		    
		    // add any pending areas

		    Enumeration e = pendingAreas.elements();
		    while (e.hasMoreElements()) {
			InlineArea inlineArea = (InlineArea) e.nextElement();
			addChild(inlineArea);
		    }
		    finalWidth += pendingWidth;

		    // reset pending areas array
		    pendingWidth = 0;
		    pendingAreas = new Vector();

		    // add the current word

		    if (wordLength > 0) {
			addChild(new InlineArea(currentFontState,
						this.red, this.green,
						this.blue, new
						String(data, wordStart,
						       wordLength),
						wordWidth)); 
			finalWidth += wordWidth;

			// reset word width
			wordWidth = 0;
		    }

		    // deal with this new whitespace following the
		    // word we just added

		    prev = WHITESPACE;
		    
		    if (this.whiteSpaceTreatment ==
			WhiteSpaceTreatment.IGNORE) {
			// do nothing
		    } else {
		        spaceWidth = currentFontState.width(32);
		    }
		    if (this.whiteSpaceTreatment ==
			WhiteSpaceTreatment.PRESERVE) { 
			if (c == '\n') {
			    // force a line break
			    return i;
			} else if (c == '\t') {
			    spaceWidth = currentFontState.width(32);
			}
		    }
		    
		} else {
		    
		    // if current is WHITESPACE and no previous
		    
		    if (this.whiteSpaceTreatment ==
			WhiteSpaceTreatment.PRESERVE) { 
			prev = WHITESPACE;
			spaceWidth = currentFontState.width(32);
		    } else {
			// skip over it
			start++;
		    }
		}
		
	    } else { // current is TEXT
		
		if (prev == WHITESPACE) {
		    
		    // if current is TEXT and previous WHITESPACE

		    wordWidth = charWidth;
		    if ((finalWidth + spaceWidth + wordWidth) >
			this.contentRectangleWidth) { 
			if (overrun)
			    System.err.print(">");
			if (this.wrapOption == WrapOption.WRAP)
			    return i;
		    }
		    prev = TEXT;
		    wordStart = i;
		    wordLength = 1;
		} else if (prev == TEXT) {
		    wordLength++;
		    wordWidth += charWidth;
		} else { // nothing previous
		    prev = TEXT;
		    wordStart = i;
		    wordLength = 1;
		    wordWidth = charWidth;
		}

		if ((finalWidth + spaceWidth + pendingWidth + wordWidth) >
		    this.contentRectangleWidth) { 
		    
		    // BREAK MID WORD
		    if (wordStart == start) { // if couldn't even fit
			// first word 
			overrun = true;
			// if not at start of line, return word start
			// to try again on a new line
			if (finalWidth > 0) {
			    return wordStart;
			}
		    } else if (this.wrapOption == WrapOption.WRAP) {
			return wordStart;
		    }
		}

	    }
	} // end of iteration over text

	if (prev == TEXT) {
	    pendingAreas.addElement(new InlineArea(currentFontState, this.red,
				    this.green, this.blue, new
				    String(data, wordStart,
					   wordLength), wordWidth)); 
	    pendingWidth += wordWidth;
	    wordWidth = 0;
	}

	if (overrun)
	    System.err.print(">");
	return -1;
    }

    public void addPending() {
	if (spaceWidth > 0) {
	    addChild(new InlineSpace(spaceWidth));
	    finalWidth += spaceWidth;
	    spaceWidth = 0;
	}

	Enumeration e = pendingAreas.elements();
	while (e.hasMoreElements()) {
	    InlineArea inlineArea = (InlineArea) e.nextElement();
	    addChild(inlineArea);
	}
	finalWidth += pendingWidth;
	
	// reset pending areas array
	pendingWidth = 0;
	pendingAreas = new Vector();
    }

    public void align(int type) {
	int padding;
	
	switch (type) {
	case TextAlign.START: // left
	    padding = this.contentRectangleWidth - finalWidth;
	    endIndent += padding;
	    break;
	case TextAlign.END: // right
	    padding = this.contentRectangleWidth - finalWidth;
	    startIndent += padding;
	    break;
	case TextAlign.CENTERED: // center
	    padding = (this.contentRectangleWidth - finalWidth)/2;
	    startIndent += padding;
	    endIndent += padding;
	    break;
	case TextAlign.JUSTIFIED: // justify
	    Vector spaceList = new Vector();

	    int spaceCount = 0;
	    Enumeration e = children.elements();
	    while (e.hasMoreElements()) {
		Box b = (Box)e.nextElement();
		if (b instanceof InlineSpace) { 
		    InlineSpace space = (InlineSpace)b;
		    spaceList.addElement(space);
		    spaceCount++;
		}
	    }
	    if (spaceCount > 0) {
		padding = (this.contentRectangleWidth - finalWidth) /
		    spaceCount; 
	    } else { // no spaces
		padding = 0;
	    }
	    Enumeration f = spaceList.elements();
	    while (f.hasMoreElements()) {
		InlineSpace space2 = (InlineSpace)f.nextElement();
		int i = space2.getSize();
		space2.setSize(i + padding);
	    }
	}
    }
    
    public void changeColor(float red, float green, float blue) {
	this.red = red;
	this.green = green;
	this.blue = blue;
    }
    
    public void changeFont(FontState fontState) {
	this.currentFontState = fontState;
    }
    
    public void changeWhiteSpaceTreatment(int whiteSpaceTreatment) {
	this.whiteSpaceTreatment = whiteSpaceTreatment;
    }
    
    public void changeWrapOption(int wrapOption) {
	this.wrapOption = wrapOption;
    }
    
    public int getEndIndent() {
	return endIndent;
    }
    
    public int getHeight() {
	return this.allocationHeight;
    }
    
    public int getPlacementOffset() {
	return this.placementOffset;
    }
    
    public int getStartIndent() {
	return startIndent;
    }
    
    public boolean isEmpty() {
	return (prev==0);
    }

    public Vector getPendingAreas() {
	return pendingAreas;
    }

    public int getPendingWidth() {
	return pendingWidth;
    }

    public void setPendingAreas(Vector areas) {
	pendingAreas = areas;
    }

    public void setPendingWidth(int width) {
	pendingWidth = width;
    }
}