Speeds up font compilation by around 200%

Cython is used to compile some hot paths into native Python extensions.
These hot paths were identified through running ufocompile with the hotshot
profiler and then converting file by file to Cython, starting with the "hottest"
paths and continuing until returns were deminishing. This means that only a few
Python files were converted to Cython.

Closes #23
Closes #20 (really this time)
This commit is contained in:
Rasmus Andersson 2017-09-03 23:03:17 -04:00
parent 31ae014e0c
commit 8234b62ab7
108 changed files with 26933 additions and 110 deletions

View file

@ -0,0 +1,106 @@
"""A couple of point pens which return the glyph as a list of basic values."""
from robofab.pens.pointPen import AbstractPointPen
class DigestPointPen(AbstractPointPen):
"""Calculate a digest of all points
AND coordinates
AND components
in a glyph.
"""
def __init__(self, ignoreSmoothAndName=False):
self._data = []
self.ignoreSmoothAndName = ignoreSmoothAndName
def beginPath(self):
self._data.append('beginPath')
def endPath(self):
self._data.append('endPath')
def addPoint(self, pt, segmentType=None, smooth=False, name=None, **kwargs):
if self.ignoreSmoothAndName:
self._data.append((pt, segmentType))
else:
self._data.append((pt, segmentType, smooth, name))
def addComponent(self, baseGlyphName, transformation):
t = []
for v in transformation:
if int(v) == v:
t.append(int(v))
else:
t.append(v)
self._data.append((baseGlyphName, tuple(t)))
def getDigest(self):
return tuple(self._data)
def getDigestPointsOnly(self, needSort=True):
""" Return a tuple with all coordinates of all points,
but without smooth info or drawing instructions.
For instance if you want to compare 2 glyphs in shape,
but not interpolatability.
"""
points = []
from types import TupleType
for item in self._data:
if type(item) == TupleType:
points.append(item[0])
if needSort:
points.sort()
return tuple(points)
class DigestPointStructurePen(DigestPointPen):
"""Calculate a digest of the structure of the glyph
NOT coordinates
NOT values.
"""
def addPoint(self, pt, segmentType=None, smooth=False, name=None, **kwargs):
self._data.append(segmentType)
def addComponent(self, baseGlyphName, transformation):
self._data.append(baseGlyphName)
if __name__ == "__main__":
"""
beginPath
((112, 651), 'line', False, None)
((112, 55), 'line', False, None)
((218, 55), 'line', False, None)
((218, 651), 'line', False, None)
endPath
"""
# a test
from robofab.objects.objectsRF import RGlyph
g = RGlyph()
p = g.getPen()
p.moveTo((112, 651))
p.lineTo((112, 55))
p.lineTo((218, 55))
p.lineTo((218, 651))
p.closePath()
print g, len(g)
digestPen = DigestPointPen()
g.drawPoints(digestPen)
print
print "getDigest", digestPen.getDigest()
print
print "getDigestPointsOnly", digestPen.getDigestPointsOnly()