File: macUtils.py

package info (click to toggle)
python-enable 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,220 kB
  • sloc: cpp: 57,417; python: 28,437; makefile: 314; sh: 43
file content (194 lines) | stat: -rw-r--r-- 8,066 bytes parent folder | download
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
"""ttLib.macUtils.py -- Various Mac-specific stuff."""


import os
if os.name <> "mac":
        raise ImportError, "This module is Mac-only!"

import cStringIO
import macfs
try:
        from Carbon import Res
except ImportError:
        import Res


def getSFNTResIndices(path):
        """Determine whether a file has a resource fork or not."""
        fss = macfs.FSSpec(path)
        try:
                resref = Res.FSpOpenResFile(fss, 1)  # read only
        except Res.Error:
                return []
        Res.UseResFile(resref)
        numSFNTs = Res.Count1Resources('sfnt')
        Res.CloseResFile(resref)
        return range(1, numSFNTs + 1)


def openTTFonts(path):
        """Given a pathname, return a list of TTFont objects. In the case
        of a flat TTF/OTF file, the list will contain just one font object;
        but in the case of a Mac font suitcase it will contain as many
        font objects as there are sfnt resources in the file.
        """
        from kiva.fonttools.fontTools import ttLib
        fonts = []
        sfnts = getSFNTResIndices(path)
        if not sfnts:
                fonts.append(ttLib.TTFont(path))
        else:
                for index in sfnts:
                        fonts.append(ttLib.TTFont(path, index))
                if not fonts:
                        raise ttLib.TTLibError, "no fonts found in file '%s'" % path
        return fonts


class SFNTResourceReader:

        """Simple (Mac-only) read-only file wrapper for 'sfnt' resources."""

        def __init__(self, path, res_name_or_index):
                fss = macfs.FSSpec(path)
                resref = Res.FSpOpenResFile(fss, 1)  # read-only
                Res.UseResFile(resref)
                if type(res_name_or_index) == type(""):
                        res = Res.Get1NamedResource('sfnt', res_name_or_index)
                else:
                        res = Res.Get1IndResource('sfnt', res_name_or_index)
                self.file = cStringIO.StringIO(res.data)
                Res.CloseResFile(resref)
                self.name = path

        def __getattr__(self, attr):
                # cheap inheritance
                return getattr(self.file, attr)


class SFNTResourceWriter:

        """Simple (Mac-only) file wrapper for 'sfnt' resources."""

        def __init__(self, path, ttFont, res_id=None):
                self.file = cStringIO.StringIO()
                self.name = path
                self.closed = 0
                fullname = ttFont['name'].getName(4, 1, 0) # Full name, mac, default encoding
                familyname = ttFont['name'].getName(1, 1, 0) # Fam. name, mac, default encoding
                psname = ttFont['name'].getName(6, 1, 0) # PostScript name, etc.
                if fullname is None or fullname is None or psname is None:
                        from kiva.fonttools.fontTools import ttLib
                        raise ttLib.TTLibError, "can't make 'sfnt' resource, no Macintosh 'name' table found"
                self.fullname = fullname.string
                self.familyname = familyname.string
                self.psname = psname.string
                if self.familyname <> self.psname[:len(self.familyname)]:
                        # ugh. force fam name to be the same as first part of ps name,
                        # fondLib otherwise barfs.
                        for i in range(min(len(self.psname), len(self.familyname))):
                                if self.familyname[i] <> self.psname[i]:
                                        break
                        self.familyname = self.psname[:i]

                self.ttFont = ttFont
                self.res_id = res_id
                fss = macfs.FSSpec(self.name)
                if os.path.exists(self.name):
                        os.remove(self.name)
                Res.FSpCreateResFile(fss, 'DMOV', 'FFIL', 0)
                self.resref = Res.FSpOpenResFile(fss, 3)  # exclusive read/write permission

        def close(self):
                if self.closed:
                        return
                Res.UseResFile(self.resref)
                try:
                        res = Res.Get1NamedResource('sfnt', self.fullname)
                except Res.Error:
                        pass
                else:
                        res.RemoveResource()
                res = Res.Resource(self.file.getvalue())
                if self.res_id is None:
                        self.res_id = Res.Unique1ID('sfnt')
                res.AddResource('sfnt', self.res_id, self.fullname)
                res.ChangedResource()

                self.createFond()
                del self.ttFont
                Res.CloseResFile(self.resref)
                self.file.close()
                self.closed = 1

        def createFond(self):
                fond_res = Res.Resource("")
                fond_res.AddResource('FOND', self.res_id, self.fullname)

                from kiva.fonttools.fontTools import fondLib
                fond = fondLib.FontFamily(fond_res, "w")

                fond.ffFirstChar = 0
                fond.ffLastChar = 255
                fond.fondClass = 0
                fond.fontAssoc = [(0, 0, self.res_id)]
                fond.ffFlags = 20480    # XXX ???
                fond.ffIntl = (0, 0)
                fond.ffLeading = 0
                fond.ffProperty = (0, 0, 0, 0, 0, 0, 0, 0, 0)
                fond.ffVersion = 0
                fond.glyphEncoding = {}
                if self.familyname == self.psname:
                        fond.styleIndices = (1,) * 48  # uh-oh, fondLib is too dumb.
                else:
                        fond.styleIndices = (2,) * 48
                fond.styleStrings = []
                fond.boundingBoxes = None
                fond.ffFamID = self.res_id
                fond.changed = 1
                fond.glyphTableOffset = 0
                fond.styleMappingReserved = 0

                # calc:
                scale = 4096.0 / self.ttFont['head'].unitsPerEm
                fond.ffAscent = scale * self.ttFont['hhea'].ascent
                fond.ffDescent = scale * self.ttFont['hhea'].descent
                fond.ffWidMax = scale * self.ttFont['hhea'].advanceWidthMax

                fond.ffFamilyName = self.familyname
                fond.psNames = {0: self.psname}

                fond.widthTables = {}
                fond.kernTables = {}
                cmap = self.ttFont['cmap'].getcmap(1, 0)
                if cmap:
                        names = {}
                        for code, name in cmap.cmap.items():
                                names[name] = code
                        if self.ttFont.has_key('kern'):
                                kern = self.ttFont['kern'].getkern(0)
                                if kern:
                                        fondkerning = []
                                        for (left, right), value in kern.kernTable.items():
                                                if names.has_key(left) and names.has_key(right):
                                                        fondkerning.append((names[left], names[right], scale * value))
                                        fondkerning.sort()
                                        fond.kernTables = {0: fondkerning}
                        if self.ttFont.has_key('hmtx'):
                                hmtx = self.ttFont['hmtx']
                                fondwidths = [2048] * 256 + [0, 0]  # default width, + plus two zeros.
                                for name, (width, lsb) in hmtx.metrics.items():
                                        if names.has_key(name):
                                                fondwidths[names[name]] = scale * width
                                fond.widthTables = {0: fondwidths}
                fond.save()

        def __del__(self):
                if not self.closed:
                        self.close()

        def __getattr__(self, attr):
                # cheap inheritance
                return getattr(self.file, attr)