/usr/lib/python2.7/dist-packages/xhtml2pdf/paragraph.py is in python-xhtml2pdf 0.2.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2010 Dirk Holtwick, holtwick.it
#
# 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.
"""
A paragraph class to be used with ReportLab Platypus.
TODO
====
- Bullets
- Weblinks and internal links
- Borders and margins (Box)
- Underline, Background, Strike
- Images
- Hyphenation
+ Alignment
+ Breakline, empty lines
+ TextIndent
- Sub and super
"""
import copy
import logging
import re
import six
from reportlab.lib.colors import Color
from reportlab.lib.enums import TA_CENTER, TA_JUSTIFY, TA_LEFT, TA_RIGHT
from reportlab.pdfbase.pdfmetrics import stringWidth
from reportlab.platypus.flowables import Flowable
logger = logging.getLogger("xhtml2pdf")
class Style(dict):
"""
Style.
Single place for style definitions: Paragraphs and Fragments. The
naming follows the convention of CSS written in camelCase letters.
"""
DEFAULT = {
"textAlign": TA_LEFT,
"textIndent": 0.0,
"width": None,
"height": None,
"fontName": "Times-Roman",
"fontSize": 10.0,
"color": Color(0, 0, 0),
"lineHeight": 1.5,
"lineHeightAbsolute": None,
"pdfLineSpacing": 0,
"link": None,
}
def __init__(self, **kw):
self.update(self.DEFAULT)
self.update(kw)
self.spaceBefore = 0
self.spaceAfter = 0
self.keepWithNext = False
class Box(dict):
"""
Box.
Handles the following styles:
backgroundColor, backgroundImage
paddingLeft, paddingRight, paddingTop, paddingBottom
marginLeft, marginRight, marginTop, marginBottom
borderLeftColor, borderLeftWidth, borderLeftStyle
borderRightColor, borderRightWidth, borderRightStyle
borderTopColor, borderTopWidth, borderTopStyle
borderBottomColor, borderBottomWidth, borderBottomStyle
Not used in inline Elements:
paddingTop, paddingBottom
marginTop, marginBottom
"""
name = "box"
def drawBox(self, canvas, x, y, w, h):
canvas.saveState()
# Background
bg = self.get("backgroundColor", None)
if bg is not None:
# draw a filled rectangle (with no stroke) using bg color
canvas.setFillColor(bg)
canvas.rect(x, y, w, h, fill=1, stroke=0)
# Borders
def _drawBorderLine(bstyle, width, color, x1, y1, x2, y2):
# We need width and border style to be able to draw a border
if width and bstyle:
# If no color for border is given, the text color is used (like defined by W3C)
if color is None:
color = self.get("textColor", Color(0, 0, 0))
if color is not None:
canvas.setStrokeColor(color)
canvas.setLineWidth(width)
canvas.line(x1, y1, x2, y2)
_drawBorderLine(self.get("borderLeftStyle", None),
self.get("borderLeftWidth", None),
self.get("borderLeftColor", None),
x, y, x, y + h)
_drawBorderLine(self.get("borderRightStyle", None),
self.get("borderRightWidth", None),
self.get("borderRightColor", None),
x + w, y, x + w, y + h)
_drawBorderLine(self.get("borderTopStyle", None),
self.get("borderTopWidth", None),
self.get("borderTopColor", None),
x, y + h, x + w, y + h)
_drawBorderLine(self.get("borderBottomStyle", None),
self.get("borderBottomWidth", None),
self.get("borderBottomColor", None),
x, y, x + w, y)
canvas.restoreState()
class Fragment(Box):
"""
Fragment.
text: String containing text
fontName:
fontSize:
width: Width of string
height: Height of string
"""
name = "fragment"
isSoft = False
isText = False
isLF = False
def calc(self):
self["width"] = 0
class Word(Fragment):
"""
A single word.
"""
name = "word"
isText = True
def calc(self):
"""
XXX Cache stringWith if not accelerated?!
"""
self["width"] = stringWidth(self["text"], self["fontName"], self["fontSize"])
class Space(Fragment):
"""
A space between fragments that is the usual place for line breaking.
"""
name = "space"
isSoft = True
def calc(self):
self["width"] = stringWidth(" ", self["fontName"], self["fontSize"])
class LineBreak(Fragment):
"""
Line break.
"""
name = "br"
isSoft = True
isLF = True
pass
class BoxBegin(Fragment):
name = "begin"
def calc(self):
self["width"] = self.get("marginLeft", 0) + self.get("paddingLeft", 0) # + border if border
def draw(self, canvas, y):
# if not self["length"]:
x = self.get("marginLeft", 0) + self["x"]
w = self["length"] + self.get("paddingRight", 0)
h = self["fontSize"]
self.drawBox(canvas, x, y, w, h)
class BoxEnd(Fragment):
name = "end"
def calc(self):
self["width"] = self.get("marginRight", 0) + self.get("paddingRight", 0) # + border
class Image(Fragment):
name = "image"
pass
class Line(list):
"""
Container for line fragments.
"""
LINEHEIGHT = 1.0
def __init__(self, style):
self.width = 0
self.height = 0
self.isLast = False
self.style = style
self.boxStack = []
list.__init__(self)
def doAlignment(self, width, alignment):
# Apply alignment
if alignment != TA_LEFT:
lineWidth = self[- 1]["x"] + self[- 1]["width"]
emptySpace = width - lineWidth
if alignment == TA_RIGHT:
for frag in self:
frag["x"] += emptySpace
elif alignment == TA_CENTER:
for frag in self:
frag["x"] += emptySpace / 2.0
elif alignment == TA_JUSTIFY and not self.isLast: # XXX last line before split
delta = emptySpace / (len(self) - 1)
for i, frag in enumerate(self):
frag["x"] += i * delta
# Boxes
for frag in self:
x = frag["x"] + frag["width"]
if isinstance(frag, BoxBegin):
self.boxStack.append(frag)
elif isinstance(frag, BoxEnd):
if self.boxStack:
frag = self.boxStack.pop()
frag["length"] = x - frag["x"]
# Handle the rest
for frag in self.boxStack:
frag["length"] = x - frag["x"]
def doLayout(self, width):
"""
Align words in previous line.
"""
# Calculate dimensions
self.width = width
font_sizes = [0] + [frag.get("fontSize", 0) for frag in self]
self.fontSize = max(font_sizes)
self.height = self.lineHeight = max(frag * self.LINEHEIGHT for frag in font_sizes)
# Apply line height
y = (self.lineHeight - self.fontSize) # / 2
for frag in self:
frag["y"] = y
return self.height
def dumpFragments(self):
logger.debug("Line")
logger.debug(40 * "-")
for frag in self:
logger.debug("%s", frag.get("text", frag.name.upper()))
class Text(list):
"""
Container for text fragments.
Helper functions for splitting text into lines and calculating sizes
and positions.
"""
def __init__(self, data=None, style=None):
# Mutable arguments are a shit idea
if data is None:
data = []
self.lines = []
self.width = 0
self.height = 0
self.maxWidth = 0
self.maxHeight = 0
self.style = style
list.__init__(self, data)
def calc(self):
"""
Calculate sizes of fragments.
"""
for word in self:
word.calc()
def splitIntoLines(self, maxWidth, maxHeight, splitted=False):
"""
Split text into lines and calculate X positions. If we need more
space in height than available we return the rest of the text
"""
self.lines = []
self.height = 0
self.maxWidth = self.width = maxWidth
self.maxHeight = maxHeight
boxStack = []
style = self.style
x = 0
# Start with indent in first line of text
if not splitted:
x = style["textIndent"]
lenText = len(self)
pos = 0
while pos < lenText:
# Reset values for new line
posBegin = pos
line = Line(style)
# Update boxes for next line
for box in copy.copy(boxStack):
box["x"] = 0
line.append(BoxBegin(box))
while pos < lenText:
# Get fragment, its width and set X
frag = self[pos]
fragWidth = frag["width"]
frag["x"] = x
pos += 1
# Keep in mind boxes for next lines
if isinstance(frag, BoxBegin):
boxStack.append(frag)
elif isinstance(frag, BoxEnd):
boxStack.pop()
# If space or linebreak handle special way
if frag.isSoft:
if frag.isLF:
line.append(frag)
break
# First element of line should not be a space
if x == 0:
continue
# Keep in mind last possible line break
# The elements exceed the current line
elif fragWidth + x > maxWidth:
break
# Add fragment to line and update x
x += fragWidth
line.append(frag)
# Remove trailing white spaces
while line and line[-1].name in ("space", "br"):
line.pop()
# Add line to list
line.dumpFragments()
# if line:
self.height += line.doLayout(self.width)
self.lines.append(line)
# If not enough space for current line force to split
if self.height > maxHeight:
return posBegin
# Reset variables
x = 0
# Apply alignment
self.lines[- 1].isLast = True
for line in self.lines:
line.doAlignment(maxWidth, style["textAlign"])
return None
def dumpLines(self):
"""
For debugging dump all line and their content
"""
for i, line in enumerate(self.lines):
logger.debug("Line %d:", i)
logger.debug(line.dumpFragments())
class Paragraph(Flowable):
"""
A simple Paragraph class respecting alignment.
Does text without tags.
Respects only the following global style attributes:
fontName, fontSize, leading, firstLineIndent, leftIndent,
rightIndent, textColor, alignment.
(spaceBefore, spaceAfter are handled by the Platypus framework.)
"""
def __init__(self, text, style, debug=False, splitted=False, **kwDict):
Flowable.__init__(self)
self.text = text
self.text.calc()
self.style = style
self.text.style = style
self.debug = debug
self.splitted = splitted
# More attributes
for k, v in six.iteritems(kwDict):
setattr(self, k, v)
# set later...
self.splitIndex = None
# overwritten methods from Flowable class
def wrap(self, availWidth, availHeight):
"""
Determine the rectangle this paragraph really needs.
"""
# memorize available space
self.avWidth = availWidth
self.avHeight = availHeight
logger.debug("*** wrap (%f, %f)", availWidth, availHeight)
if not self.text:
logger.debug("*** wrap (%f, %f) needed", 0, 0)
return 0, 0
# Split lines
width = availWidth
self.splitIndex = self.text.splitIntoLines(width, availHeight)
self.width, self.height = availWidth, self.text.height
logger.debug("*** wrap (%f, %f) needed, splitIndex %r", self.width, self.height, self.splitIndex)
return self.width, self.height
def split(self, availWidth, availHeight):
"""
Split ourselves in two paragraphs.
"""
logger.debug("*** split (%f, %f)", availWidth, availHeight)
splitted = []
if self.splitIndex:
text1 = self.text[:self.splitIndex]
text2 = self.text[self.splitIndex:]
p1 = Paragraph(Text(text1), self.style, debug=self.debug)
p2 = Paragraph(Text(text2), self.style, debug=self.debug, splitted=True)
splitted = [p1, p2]
logger.debug("*** text1 %s / text %s", len(text1), len(text2))
logger.debug('*** return %s', self.splitted)
return splitted
def draw(self):
"""
Render the content of the paragraph.
"""
logger.debug("*** draw")
if not self.text:
return
canvas = self.canv
style = self.style
canvas.saveState()
# Draw box arround paragraph for debugging
if self.debug:
bw = 0.5
bc = Color(1, 1, 0)
bg = Color(0.9, 0.9, 0.9)
canvas.setStrokeColor(bc)
canvas.setLineWidth(bw)
canvas.setFillColor(bg)
canvas.rect(
style.leftIndent,
0,
self.width,
self.height,
fill=1,
stroke=1)
y = 0
dy = self.height
for line in self.text.lines:
y += line.height
for frag in line:
# Box
if hasattr(frag, "draw"):
frag.draw(canvas, dy - y)
# Text
if frag.get("text", ""):
canvas.setFont(frag["fontName"], frag["fontSize"])
canvas.setFillColor(frag.get("color", style["color"]))
canvas.drawString(frag["x"], dy - y + frag["y"], frag["text"])
# XXX LINK
link = frag.get("link", None)
if link:
_scheme_re = re.compile('^[a-zA-Z][-+a-zA-Z0-9]+$')
x, y, w, h = frag["x"], dy - y, frag["width"], frag["fontSize"]
rect = (x, y, w, h)
if isinstance(link, six.text_type):
link = link.encode('utf8')
parts = link.split(':', 1)
scheme = len(parts) == 2 and parts[0].lower() or ''
if _scheme_re.match(scheme) and scheme != 'document':
kind = scheme.lower() == 'pdf' and 'GoToR' or 'URI'
if kind == 'GoToR':
link = parts[1]
canvas.linkURL(link, rect, relative=1, kind=kind)
else:
if link[0] == '#':
link = link[1:]
scheme = ''
canvas.linkRect("", scheme != 'document' and link or parts[1], rect, relative=1)
canvas.restoreState()
|