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
|
# -*- coding: utf-8 -*-
# Helper classes for the new Paragraph-Implementation
from copy import copy
import reportlab.pdfbase.pdfmetrics as pdfmetrics
from reportlab.lib.abag import ABag
from wordaxe.hyphen import HyphenationPoint, SHY, HyphenatedWord
class Style(ABag):
"This is used to store style attributes."
class Fragment(object):
"A fragment representing a piece of text or other information"
class StyledFragment(Fragment):
def __init__(self, style):
self.style = style
@staticmethod
def str_width(text, style):
"Compute the width of a styled text"
return pdfmetrics.stringWidth(text, style.fontName, style.fontSize)
def __repr__(self):
return self.__class__.__name__
__str__ = __repr__
class StyledText(StyledFragment):
"A string in some style"
def __init__(self, text, style):
assert isinstance(text, unicode)
super(StyledText, self).__init__(style)
self.text = text
self.width = self.str_width(text, style)
if hasattr(style, "nobr"):
self.nobr = True
cbDefn = getattr(style,"cbDefn", None)
if cbDefn is not None and not self.width:
self.width = getattr(cbDefn, "width", 0)
self.ascent, self.descent = pdfmetrics.getAscentDescent(style.fontName, style.fontSize)
def __str__(self):
return "ST(%s)" % self.text.encode("utf-8")
__repr__ = __str__
@staticmethod
def fromParaFrag(frag):
"This allows to reuse the good old paraparser.py"
text = frag.text
if not isinstance(text, unicode):
text = unicode(text, "utf-8")
return StyledText(text, frag)
class StyledWhiteSpace(StyledFragment):
"Used for every token that delimits words."
class StyledSpace(StyledWhiteSpace):
"A spacer in some style"
def __init__(self, style, text=u" "):
super(StyledSpace, self).__init__(style)
self.text = unicode(text)
self.width = self.str_width(text, style)
def __str__(self):
return "SP(%s)" % self.text.encode("utf-8")
__repr__ = __str__
class StyledNewLine(StyledWhiteSpace):
"A new line"
def __str__(self):
return "NL"
def __init__(self, style):
super(StyledNewLine, self).__init__(style)
self.width = 0
self.text = u""
__repr__ = __str__
class StyledWord(Fragment):
"A word compound of some styled strings"
def __init__(self, fragments):
for frag in fragments: assert isinstance(frag, StyledText)
self.fragments = fragments
# Breite berechnen
self.text = u"".join([f.text for f in fragments])
self.width = sum([f.width for f in fragments])
for f in fragments:
if hasattr(f, "nobr"):
self.nobr = True
break
def __str__(self):
return "SW(%s)" % self.text.encode("utf-8")
__repr__ = __str__
def splitAt(self, hp):
"""
Splits the styled word at a given hyphenation point
(see wordaxe.hyphen).
The result is a tuple (left, right) of StyledWords.
Works just like HyphenatedWord.split, but for a StyledWord.
"""
#print self, "splitAt", hp
assert isinstance(self.text, HyphenatedWord)
# first get the unstyled versions
ltext, rtext = self.text.split(hp)
#print " unstyled would return", ltext, rtext
if isinstance(hp, int):
indx = hp
nl = nr = 0
sl = SHY
sr = u""
else:
indx = hp.indx
nl = hp.nl
nr = hp.nr
sl = hp.sl
sr = hp.sr
lfrags = []
rfrags = []
n = 0
stillLeftPart = True
firstRight = False
for frag in self.fragments:
if not isinstance(frag, StyledText):
if stillLeftPart:
lfrags.append(frag)
else:
rfrags.append(frag)
continue
text = frag.text
if stillLeftPart:
if len(text) < indx-n:
# fragment still before the hyphenation point
lfrags.append(frag)
n += len(text)
elif len(text) == indx-n:
# fragment boundary exactly at the hyphenation point
if nl>0: text = text[:-nl]
if sl: text += sl
if text is frag.text:
lfrags.append(frag)
else:
lfrags.append(StyledText(text, frag.style))
n += len(text)
stillLeftPart = False
firstRight = True
else:
# fragment crosses the hyphenation point
n1 = indx-n
tl = text[:n1-nl] + sl
tr = sr + text[n1+nr:]
lfrags.append(StyledText(tl, frag.style))
rfrags.append(StyledText(tr, frag.style))
stillLeftPart = False
elif firstRight and (sr or nr):
rfrags.append(StyledText(sr + frag.text[nr:], frag.style))
firstRight = False
else:
rfrags.append(frag)
left = StyledWord(lfrags)
right = StyledWord(rfrags)
#print "splitWordAt returns %s, %s" % (left, right)
assert left.text == ltext
assert unicode(right.text) == rtext
right.text = rtext
return left, right
class Line(object):
"A single line in the paragraph"
def __init__(self, fragments, width, height, baseline, space_wasted, keepWhiteSpace):
for frag in fragments: assert isinstance(frag, Fragment)
self.fragments = fragments
self.width = width
#print fragments
self.height = height
self.baseline = baseline
self.keepWhiteSpace = keepWhiteSpace
assert 0 <= self.baseline
assert baseline <= height
self.space_wasted = space_wasted
# don't consider WhiteSpace at the start and end of the line
# for the width calculation
print_indx_start, print_indx_end = (0, len(self.fragments))
if not keepWhiteSpace:
while print_indx_start < len(fragments) \
and isinstance(fragments[print_indx_start], StyledWhiteSpace):
print_indx_start += 1
while print_indx_end > print_indx_start \
and isinstance(fragments[print_indx_end-1], StyledWhiteSpace):
print_indx_end -= 1
# TODO: What to do with two differently styled spaces
# in the middle of the line?
self.print_indx_start = print_indx_start
self.print_indx_end = print_indx_end
#assert abs(self.width - sum(getattr(f,"width",0) for f in fragments[print_indx_start:print_indx_end])) <= 1e-5
if not abs(self.width - sum(getattr(f,"width",0) for f in fragments[print_indx_start:print_indx_end])) <= 1e-5:
print "Assertion failure"
print "self.width=%f" % self.width
print "nFrags=%d" % len(fragments)
print "printrange=%d:%d" % (self.print_indx_start, print_indx_end)
print "printwidth=%f" % sum(getattr(f,"width",0) for f in fragments[print_indx_start:print_indx_end])
for i,f in enumerate(fragments): print i, f, getattr(f, "width")
# Compute font size
max_size = 0
max_ascent = min_descent = 0
for frag in self.iter_flattened_frags():
if isinstance(frag, StyledText):
size = getattr(frag.style, "fontSize", 0)
ascent, descent = frag.ascent, frag.descent
if not max_size:
max_size = size
max_ascent = ascent
max_descent = descent
else:
max_size = max(max_size, size)
max_ascent = max(max_ascent, ascent)
min_descent = min(min_descent, descent)
self.fontSize = max_size
self.ascent = max_ascent
self.descent = min_descent
def __str__(self):
return "Line(%s)" % (",".join(str(frag) for frag in self.fragments))
__repr__ = __str__
def iter_flattened_frags(self):
"""
Returns the fragments flattened (one word may contribute several fragments).
"""
return flatten_frags(self.fragments)
def iter_print_frags(self):
"""
Returns the fragments (to print) flattened (one word may contribute several fragments).
"""
return flatten_frags(self.fragments[self.print_indx_start:self.print_indx_end])
def frags_to_StyledFragments(frag_list):
"""
A helper function for frags_reportlab_to_wordaxe.
Yields StyledWords, StyledSpace and other entries,
"""
for f in frag_list:
#if hasattr(f, "cbDefn") and f.cbDefn.kind!="img": print "convert", f
if getattr(f, "lineBreak", False):
assert not f.text
yield StyledNewLine(f)
text = f.text
del f.text
if not isinstance(text, unicode):
text = unicode(text, "utf-8")
while u" " in text:
indxSpace = text.find(u" ")
if indxSpace > 0:
yield StyledText(text[:indxSpace], f)
indxNext = indxSpace
while text[indxNext:].startswith(u" "):
indxNext += 1
yield StyledSpace(f) # we ignore repeated blanks
text = text[indxNext:]
if text or hasattr(f, "cbDefn"):
yield StyledText(text, f)
def frags_reportlab_to_wordaxe(frags, style):
"""
Converts an iterator of reportlab frags to wordaxe frags.
Yields StyledWords, StyledSpace and other entries,
but StyledTexts are grouped to StyledWords.
"""
word_frags = []
for frag in frags_to_StyledFragments(frags):
if isinstance(frag, StyledText):
word_frags.append(frag)
else:
if word_frags:
yield StyledWord(word_frags)
word_frags = []
yield frag
if word_frags:
yield StyledWord(word_frags)
def flatten_frags(frags):
"""
A helper function that flattens the StyledFragments,
i.e. StyledWords are split into StyledText fragments.
"""
for frag in frags:
if isinstance(frag, StyledWord):
for f in frag.fragments:
yield f
else:
yield frag
def frags_wordaxe_to_reportlab(frags):
"""
Converts an iterator of wordaxe frags to reportlab frags.
Fragments of the same style will be joined.
"""
last_frag = None
for frag in flatten_frags(frags):
if last_frag is None or not hasattr(frag,"text") or last_style is not frag.style:
if last_frag is not None:
yield last_frag
last_style = frag.style
last_frag = copy(frag)
else:
last_frag.text += frag.text
last_frag.width += frag.width
if last_frag is not None:
yield last_frag
|