blob: 529a0a4ed857be319528b632322a3ea3a0e93e81 [file] [log] [blame]
Jack Jansend0fc42f2001-08-19 22:05:06 +00001"""Tools for use in AppleEvent clients and servers:
2conversion between AE types and python types
3
4pack(x) converts a Python object to an AEDesc object
5unpack(desc) does the reverse
6coerce(x, wanted_sample) coerces a python object to another python object
7"""
8
9#
10# This code was originally written by Guido, and modified/extended by Jack
11# to include the various types that were missing. The reference used is
12# Apple Event Registry, chapter 9.
13#
14
15import struct
16import string
17import types
18from string import strip
19from types import *
Jack Jansen5a6fdcd2001-08-25 12:15:04 +000020from Carbon import AE
21from Carbon.AppleEvents import *
Jack Jansend0fc42f2001-08-19 22:05:06 +000022import MacOS
Jack Jansen2b88dec2003-01-28 23:53:40 +000023import Carbon.File
Jack Jansend0fc42f2001-08-19 22:05:06 +000024import StringIO
25import aetypes
Jack Jansenfc710262003-03-31 13:32:59 +000026from aetypes import mkenum, ObjectSpecifier
Jack Jansen8b777672002-08-07 14:49:00 +000027import os
Jack Jansend0fc42f2001-08-19 22:05:06 +000028
29# These ones seem to be missing from AppleEvents
30# (they're in AERegistry.h)
31
32#typeColorTable = 'clrt'
33#typeDrawingArea = 'cdrw'
34#typePixelMap = 'cpix'
35#typePixelMapMinus = 'tpmm'
36#typeRotation = 'trot'
37#typeTextStyles = 'tsty'
38#typeStyledText = 'STXT'
39#typeAEText = 'tTXT'
40#typeEnumeration = 'enum'
41
42#
43# Some AE types are immedeately coerced into something
44# we like better (and which is equivalent)
45#
46unpacker_coercions = {
Jack Jansen0ae32202003-04-09 13:25:43 +000047 typeComp : typeFloat,
48 typeColorTable : typeAEList,
49 typeDrawingArea : typeAERecord,
50 typeFixed : typeFloat,
51 typeExtended : typeFloat,
52 typePixelMap : typeAERecord,
53 typeRotation : typeAERecord,
54 typeStyledText : typeAERecord,
55 typeTextStyles : typeAERecord,
Jack Jansend0fc42f2001-08-19 22:05:06 +000056};
57
58#
59# Some python types we need in the packer:
60#
Jack Jansenad5dcaf2002-03-30 23:44:58 +000061AEDescType = AE.AEDescType
Jack Jansen2b88dec2003-01-28 23:53:40 +000062FSSType = Carbon.File.FSSpecType
63FSRefType = Carbon.File.FSRefType
64AliasType = Carbon.File.AliasType
Jack Jansend0fc42f2001-08-19 22:05:06 +000065
Jack Jansen8b777672002-08-07 14:49:00 +000066def packkey(ae, key, value):
Jack Jansen0ae32202003-04-09 13:25:43 +000067 if hasattr(key, 'which'):
68 keystr = key.which
69 elif hasattr(key, 'want'):
70 keystr = key.want
71 else:
72 keystr = key
73 ae.AEPutParamDesc(keystr, pack(value))
Jack Jansen8b777672002-08-07 14:49:00 +000074
Jack Jansend0fc42f2001-08-19 22:05:06 +000075def pack(x, forcetype = None):
Jack Jansen0ae32202003-04-09 13:25:43 +000076 """Pack a python object into an AE descriptor"""
Tim Peters182b5ac2004-07-18 06:16:08 +000077
Jack Jansen0ae32202003-04-09 13:25:43 +000078 if forcetype:
79 if type(x) is StringType:
80 return AE.AECreateDesc(forcetype, x)
81 else:
82 return pack(x).AECoerceDesc(forcetype)
Tim Peters182b5ac2004-07-18 06:16:08 +000083
Jack Jansen0ae32202003-04-09 13:25:43 +000084 if x == None:
85 return AE.AECreateDesc('null', '')
Tim Peters182b5ac2004-07-18 06:16:08 +000086
Jack Jansen0ae32202003-04-09 13:25:43 +000087 if isinstance(x, AEDescType):
88 return x
89 if isinstance(x, FSSType):
90 return AE.AECreateDesc('fss ', x.data)
91 if isinstance(x, FSRefType):
92 return AE.AECreateDesc('fsrf', x.data)
93 if isinstance(x, AliasType):
94 return AE.AECreateDesc('alis', x.data)
95 if isinstance(x, IntType):
96 return AE.AECreateDesc('long', struct.pack('l', x))
97 if isinstance(x, FloatType):
98 return AE.AECreateDesc('doub', struct.pack('d', x))
99 if isinstance(x, StringType):
100 return AE.AECreateDesc('TEXT', x)
101 if isinstance(x, UnicodeType):
102 data = x.encode('utf16')
103 if data[:2] == '\xfe\xff':
104 data = data[2:]
105 return AE.AECreateDesc('utxt', data)
106 if isinstance(x, ListType):
107 list = AE.AECreateList('', 0)
108 for item in x:
109 list.AEPutDesc(0, pack(item))
110 return list
111 if isinstance(x, DictionaryType):
112 record = AE.AECreateList('', 1)
113 for key, value in x.items():
114 packkey(record, key, value)
115 #record.AEPutParamDesc(key, pack(value))
116 return record
117 if type(x) == types.ClassType and issubclass(x, ObjectSpecifier):
118 # Note: we are getting a class object here, not an instance
119 return AE.AECreateDesc('type', x.want)
120 if hasattr(x, '__aepack__'):
121 return x.__aepack__()
122 if hasattr(x, 'which'):
123 return AE.AECreateDesc('TEXT', x.which)
124 if hasattr(x, 'want'):
125 return AE.AECreateDesc('TEXT', x.want)
126 return AE.AECreateDesc('TEXT', repr(x)) # Copout
Jack Jansend0fc42f2001-08-19 22:05:06 +0000127
Jack Jansen8b777672002-08-07 14:49:00 +0000128def unpack(desc, formodulename=""):
Jack Jansen0ae32202003-04-09 13:25:43 +0000129 """Unpack an AE descriptor to a python object"""
130 t = desc.type
Tim Peters182b5ac2004-07-18 06:16:08 +0000131
Jack Jansen0ae32202003-04-09 13:25:43 +0000132 if unpacker_coercions.has_key(t):
133 desc = desc.AECoerceDesc(unpacker_coercions[t])
134 t = desc.type # This is a guess by Jack....
Tim Peters182b5ac2004-07-18 06:16:08 +0000135
Jack Jansen0ae32202003-04-09 13:25:43 +0000136 if t == typeAEList:
137 l = []
138 for i in range(desc.AECountItems()):
139 keyword, item = desc.AEGetNthDesc(i+1, '****')
140 l.append(unpack(item, formodulename))
141 return l
142 if t == typeAERecord:
143 d = {}
144 for i in range(desc.AECountItems()):
145 keyword, item = desc.AEGetNthDesc(i+1, '****')
146 d[keyword] = unpack(item, formodulename)
147 return d
148 if t == typeAEText:
149 record = desc.AECoerceDesc('reco')
150 return mkaetext(unpack(record, formodulename))
151 if t == typeAlias:
152 return Carbon.File.Alias(rawdata=desc.data)
153 # typeAppleEvent returned as unknown
154 if t == typeBoolean:
155 return struct.unpack('b', desc.data)[0]
156 if t == typeChar:
157 return desc.data
158 if t == typeUnicodeText:
159 return unicode(desc.data, 'utf16')
160 # typeColorTable coerced to typeAEList
161 # typeComp coerced to extended
162 # typeData returned as unknown
163 # typeDrawingArea coerced to typeAERecord
164 if t == typeEnumeration:
165 return mkenum(desc.data)
166 # typeEPS returned as unknown
167 if t == typeFalse:
168 return 0
169 if t == typeFloat:
170 data = desc.data
171 return struct.unpack('d', data)[0]
172 if t == typeFSS:
173 return Carbon.File.FSSpec(rawdata=desc.data)
174 if t == typeFSRef:
175 return Carbon.File.FSRef(rawdata=desc.data)
176 if t == typeInsertionLoc:
177 record = desc.AECoerceDesc('reco')
178 return mkinsertionloc(unpack(record, formodulename))
179 # typeInteger equal to typeLongInteger
180 if t == typeIntlText:
181 script, language = struct.unpack('hh', desc.data[:4])
182 return aetypes.IntlText(script, language, desc.data[4:])
183 if t == typeIntlWritingCode:
184 script, language = struct.unpack('hh', desc.data)
185 return aetypes.IntlWritingCode(script, language)
186 if t == typeKeyword:
187 return mkkeyword(desc.data)
188 if t == typeLongInteger:
189 return struct.unpack('l', desc.data)[0]
190 if t == typeLongDateTime:
191 a, b = struct.unpack('lL', desc.data)
192 return (long(a) << 32) + b
193 if t == typeNull:
194 return None
195 if t == typeMagnitude:
196 v = struct.unpack('l', desc.data)
197 if v < 0:
198 v = 0x100000000L + v
199 return v
200 if t == typeObjectSpecifier:
201 record = desc.AECoerceDesc('reco')
202 # If we have been told the name of the module we are unpacking aedescs for,
203 # we can attempt to create the right type of python object from that module.
204 if formodulename:
205 return mkobjectfrommodule(unpack(record, formodulename), formodulename)
206 return mkobject(unpack(record, formodulename))
207 # typePict returned as unknown
208 # typePixelMap coerced to typeAERecord
209 # typePixelMapMinus returned as unknown
210 # typeProcessSerialNumber returned as unknown
211 if t == typeQDPoint:
212 v, h = struct.unpack('hh', desc.data)
213 return aetypes.QDPoint(v, h)
214 if t == typeQDRectangle:
215 v0, h0, v1, h1 = struct.unpack('hhhh', desc.data)
216 return aetypes.QDRectangle(v0, h0, v1, h1)
217 if t == typeRGBColor:
218 r, g, b = struct.unpack('hhh', desc.data)
219 return aetypes.RGBColor(r, g, b)
220 # typeRotation coerced to typeAERecord
221 # typeScrapStyles returned as unknown
222 # typeSessionID returned as unknown
223 if t == typeShortFloat:
224 return struct.unpack('f', desc.data)[0]
225 if t == typeShortInteger:
226 return struct.unpack('h', desc.data)[0]
227 # typeSMFloat identical to typeShortFloat
228 # typeSMInt indetical to typeShortInt
229 # typeStyledText coerced to typeAERecord
230 if t == typeTargetID:
231 return mktargetid(desc.data)
232 # typeTextStyles coerced to typeAERecord
233 # typeTIFF returned as unknown
234 if t == typeTrue:
235 return 1
236 if t == typeType:
237 return mktype(desc.data, formodulename)
238 #
239 # The following are special
240 #
241 if t == 'rang':
242 record = desc.AECoerceDesc('reco')
243 return mkrange(unpack(record, formodulename))
244 if t == 'cmpd':
245 record = desc.AECoerceDesc('reco')
246 return mkcomparison(unpack(record, formodulename))
247 if t == 'logi':
248 record = desc.AECoerceDesc('reco')
249 return mklogical(unpack(record, formodulename))
250 return mkunknown(desc.type, desc.data)
Tim Peters182b5ac2004-07-18 06:16:08 +0000251
Jack Jansend0fc42f2001-08-19 22:05:06 +0000252def coerce(data, egdata):
Jack Jansen0ae32202003-04-09 13:25:43 +0000253 """Coerce a python object to another type using the AE coercers"""
254 pdata = pack(data)
255 pegdata = pack(egdata)
256 pdata = pdata.AECoerceDesc(pegdata.type)
257 return unpack(pdata)
Jack Jansend0fc42f2001-08-19 22:05:06 +0000258
259#
260# Helper routines for unpack
261#
262def mktargetid(data):
Jack Jansen0ae32202003-04-09 13:25:43 +0000263 sessionID = getlong(data[:4])
264 name = mkppcportrec(data[4:4+72])
265 location = mklocationnamerec(data[76:76+36])
266 rcvrName = mkppcportrec(data[112:112+72])
267 return sessionID, name, location, rcvrName
Jack Jansend0fc42f2001-08-19 22:05:06 +0000268
269def mkppcportrec(rec):
Jack Jansen0ae32202003-04-09 13:25:43 +0000270 namescript = getword(rec[:2])
271 name = getpstr(rec[2:2+33])
272 portkind = getword(rec[36:38])
273 if portkind == 1:
274 ctor = rec[38:42]
275 type = rec[42:46]
276 identity = (ctor, type)
277 else:
278 identity = getpstr(rec[38:38+33])
279 return namescript, name, portkind, identity
Jack Jansend0fc42f2001-08-19 22:05:06 +0000280
281def mklocationnamerec(rec):
Jack Jansen0ae32202003-04-09 13:25:43 +0000282 kind = getword(rec[:2])
283 stuff = rec[2:]
284 if kind == 0: stuff = None
285 if kind == 2: stuff = getpstr(stuff)
286 return kind, stuff
Jack Jansend0fc42f2001-08-19 22:05:06 +0000287
288def mkunknown(type, data):
Jack Jansen0ae32202003-04-09 13:25:43 +0000289 return aetypes.Unknown(type, data)
Jack Jansend0fc42f2001-08-19 22:05:06 +0000290
291def getpstr(s):
Jack Jansen0ae32202003-04-09 13:25:43 +0000292 return s[1:1+ord(s[0])]
Jack Jansend0fc42f2001-08-19 22:05:06 +0000293
294def getlong(s):
Jack Jansen0ae32202003-04-09 13:25:43 +0000295 return (ord(s[0])<<24) | (ord(s[1])<<16) | (ord(s[2])<<8) | ord(s[3])
Jack Jansend0fc42f2001-08-19 22:05:06 +0000296
297def getword(s):
Jack Jansen0ae32202003-04-09 13:25:43 +0000298 return (ord(s[0])<<8) | (ord(s[1])<<0)
Jack Jansend0fc42f2001-08-19 22:05:06 +0000299
300def mkkeyword(keyword):
Jack Jansen0ae32202003-04-09 13:25:43 +0000301 return aetypes.Keyword(keyword)
Jack Jansend0fc42f2001-08-19 22:05:06 +0000302
303def mkrange(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000304 return aetypes.Range(dict['star'], dict['stop'])
Jack Jansend0fc42f2001-08-19 22:05:06 +0000305
306def mkcomparison(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000307 return aetypes.Comparison(dict['obj1'], dict['relo'].enum, dict['obj2'])
Jack Jansend0fc42f2001-08-19 22:05:06 +0000308
309def mklogical(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000310 return aetypes.Logical(dict['logc'], dict['term'])
Jack Jansend0fc42f2001-08-19 22:05:06 +0000311
312def mkstyledtext(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000313 return aetypes.StyledText(dict['ksty'], dict['ktxt'])
Tim Peters182b5ac2004-07-18 06:16:08 +0000314
Jack Jansend0fc42f2001-08-19 22:05:06 +0000315def mkaetext(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000316 return aetypes.AEText(dict[keyAEScriptTag], dict[keyAEStyles], dict[keyAEText])
Tim Peters182b5ac2004-07-18 06:16:08 +0000317
Jack Jansend0fc42f2001-08-19 22:05:06 +0000318def mkinsertionloc(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000319 return aetypes.InsertionLoc(dict[keyAEObject], dict[keyAEPosition])
Jack Jansend0fc42f2001-08-19 22:05:06 +0000320
321def mkobject(dict):
Jack Jansen0ae32202003-04-09 13:25:43 +0000322 want = dict['want'].type
323 form = dict['form'].enum
324 seld = dict['seld']
325 fr = dict['from']
326 if form in ('name', 'indx', 'rang', 'test'):
327 if want == 'text': return aetypes.Text(seld, fr)
328 if want == 'cha ': return aetypes.Character(seld, fr)
329 if want == 'cwor': return aetypes.Word(seld, fr)
330 if want == 'clin': return aetypes.Line(seld, fr)
331 if want == 'cpar': return aetypes.Paragraph(seld, fr)
332 if want == 'cwin': return aetypes.Window(seld, fr)
333 if want == 'docu': return aetypes.Document(seld, fr)
334 if want == 'file': return aetypes.File(seld, fr)
335 if want == 'cins': return aetypes.InsertionPoint(seld, fr)
336 if want == 'prop' and form == 'prop' and aetypes.IsType(seld):
337 return aetypes.Property(seld.type, fr)
338 return aetypes.ObjectSpecifier(want, form, seld, fr)
Jack Jansend0fc42f2001-08-19 22:05:06 +0000339
Jack Jansen8b777672002-08-07 14:49:00 +0000340# Note by Jack: I'm not 100% sure of the following code. This was
341# provided by Donovan Preston, but I wonder whether the assignment
342# to __class__ is safe. Moreover, shouldn't there be a better
343# initializer for the classes in the suites?
344def mkobjectfrommodule(dict, modulename):
Jack Jansen0ae32202003-04-09 13:25:43 +0000345 if type(dict['want']) == types.ClassType and issubclass(dict['want'], ObjectSpecifier):
346 # The type has already been converted to Python. Convert back:-(
347 classtype = dict['want']
348 dict['want'] = aetypes.mktype(classtype.want)
349 want = dict['want'].type
350 module = __import__(modulename)
351 codenamemapper = module._classdeclarations
352 classtype = codenamemapper.get(want, None)
353 newobj = mkobject(dict)
354 if classtype:
355 assert issubclass(classtype, ObjectSpecifier)
356 newobj.__class__ = classtype
357 return newobj
Tim Peters182b5ac2004-07-18 06:16:08 +0000358
Jack Jansenfc710262003-03-31 13:32:59 +0000359def mktype(typecode, modulename=None):
Jack Jansen0ae32202003-04-09 13:25:43 +0000360 if modulename:
361 module = __import__(modulename)
362 codenamemapper = module._classdeclarations
363 classtype = codenamemapper.get(typecode, None)
364 if classtype:
365 return classtype
366 return aetypes.mktype(typecode)