1 """Macintosh binhex compression/decompression.
4 binhex(inputfilename, outputfilename)
5 hexbin(inputfilename, outputfilename)
9 # Jack Jansen, CWI, August 1995.
11 # The module is supposed to be as compatible as possible. Especially the
12 # easy interface should work "as expected" on any platform.
13 # XXXX Note: currently, textfiles appear in mac-form on all platforms.
14 # We seem to lack a simple character-translate in python.
15 # (we should probably use ISO-Latin-1 on all but the mac platform).
16 # XXXX The simple routines are too simple: they expect to hold the complete
17 # files in-core. Should be fixed.
18 # XXXX It would be nice to handle AppleDouble format on unix
19 # (for servers serving macs).
20 # XXXX I don't understand what happens when you get 0x90 times the same byte on
21 # input. The resulting code (xx 90 90) would appear to be interpreted as an
22 # escaped *value* of 0x90. All coders I've seen appear to ignore this nicety...
29 __all__
= ["binhex","hexbin","Error"]
31 class Error(Exception):
34 # States (what have we written)
35 [_DID_HEADER
, _DID_DATA
, _DID_RSRC
] = range(3)
38 REASONABLY_LARGE
=32768 # Minimal amount we pass the rle-coder
40 RUNCHAR
=chr(0x90) # run-length introducer
43 # This code is no longer byte-order dependent
46 # Workarounds for non-mac machines.
52 except AttributeError:
53 # Backward compatibility
59 def getfileinfo(name
):
60 finfo
= macfs
.FSSpec(name
).GetFInfo()
61 dir, file = os
.path
.split(name
)
62 # XXXX Get resource/data sizes
66 fp
= openrf(name
, '*rb')
69 return file, finfo
, dlen
, rlen
71 def openrsrc(name
, *mode
):
76 return openrf(name
, mode
)
80 # Glue code for non-macintosh usage
89 def getfileinfo(name
):
91 # Quick check for textfile
93 data
= open(name
).read(256)
95 if not c
.isspace() and (c
<' ' or ord(c
) > 0x7f):
102 dir, file = os
.path
.split(name
)
103 file = file.replace(':', '-', 1)
104 return file, finfo
, dsize
, 0
107 def __init__(self
, *args
):
110 def read(self
, *args
):
113 def write(self
, *args
):
119 class _Hqxcoderengine
:
120 """Write data to the coder in 3-byte chunks"""
122 def __init__(self
, ofp
):
126 self
.linelen
= LINELEN
-1
128 def write(self
, data
):
129 self
.data
= self
.data
+ data
130 datalen
= len(self
.data
)
131 todo
= (datalen
//3)*3
132 data
= self
.data
[:todo
]
133 self
.data
= self
.data
[todo
:]
136 self
.hqxdata
= self
.hqxdata
+ binascii
.b2a_hqx(data
)
139 def _flush(self
, force
):
141 while first
<= len(self
.hqxdata
)-self
.linelen
:
142 last
= first
+ self
.linelen
143 self
.ofp
.write(self
.hqxdata
[first
:last
]+'\n')
144 self
.linelen
= LINELEN
146 self
.hqxdata
= self
.hqxdata
[first
:]
148 self
.ofp
.write(self
.hqxdata
+ ':\n')
153 self
.hqxdata
+ binascii
.b2a_hqx(self
.data
)
158 class _Rlecoderengine
:
159 """Write data to the RLE-coder in suitably large chunks"""
161 def __init__(self
, ofp
):
165 def write(self
, data
):
166 self
.data
= self
.data
+ data
167 if len(self
.data
) < REASONABLY_LARGE
:
169 rledata
= binascii
.rlecode_hqx(self
.data
)
170 self
.ofp
.write(rledata
)
175 rledata
= binascii
.rlecode_hqx(self
.data
)
176 self
.ofp
.write(rledata
)
181 def __init__(self
, (name
, finfo
, dlen
, rlen
), ofp
):
182 if type(ofp
) == type(''):
184 ofp
= open(ofname
, 'w')
186 fss
= macfs
.FSSpec(ofname
)
187 fss
.SetCreatorType('BnHq', 'TEXT')
188 ofp
.write('(This file must be converted with BinHex 4.0)\n\n:')
189 hqxer
= _Hqxcoderengine(ofp
)
190 self
.ofp
= _Rlecoderengine(hqxer
)
196 self
._writeinfo
(name
, finfo
)
197 self
.state
= _DID_HEADER
199 def _writeinfo(self
, name
, finfo
):
203 raise Error
, 'Filename too long'
204 d
= chr(nl
) + name
+ '\0'
205 d2
= finfo
.Type
+ finfo
.Creator
207 # Force all structs to be packed with big-endian
208 d3
= struct
.pack('>h', finfo
.Flags
)
209 d4
= struct
.pack('>ii', self
.dlen
, self
.rlen
)
210 info
= d
+ d2
+ d3
+ d4
214 def _write(self
, data
):
215 self
.crc
= binascii
.crc_hqx(data
, self
.crc
)
219 # XXXX Should this be here??
220 # self.crc = binascii.crc_hqx('\0\0', self.crc)
221 self
.ofp
.write(struct
.pack('>h', self
.crc
))
224 def write(self
, data
):
225 if self
.state
!= _DID_HEADER
:
226 raise Error
, 'Writing data at the wrong time'
227 self
.dlen
= self
.dlen
- len(data
)
230 def close_data(self
):
232 raise Error
, 'Incorrect data size, diff='+`self
.rlen`
234 self
.state
= _DID_DATA
236 def write_rsrc(self
, data
):
237 if self
.state
< _DID_DATA
:
239 if self
.state
!= _DID_DATA
:
240 raise Error
, 'Writing resource data at the wrong time'
241 self
.rlen
= self
.rlen
- len(data
)
245 if self
.state
< _DID_DATA
:
247 if self
.state
!= _DID_DATA
:
248 raise Error
, 'Close at the wrong time'
251 "Incorrect resource-datasize, diff="+`self
.rlen`
257 def binhex(inp
, out
):
258 """(infilename, outfilename) - Create binhex-encoded copy of a file"""
259 finfo
= getfileinfo(inp
)
260 ofp
= BinHex(finfo
, out
)
262 ifp
= open(inp
, 'rb')
263 # XXXX Do textfile translation on non-mac systems
271 ifp
= openrsrc(inp
, 'rb')
279 class _Hqxdecoderengine
:
280 """Read data via the decoder in 4-byte chunks"""
282 def __init__(self
, ifp
):
286 def read(self
, totalwtd
):
287 """Read at least wtd bytes (or until EOF)"""
291 # The loop here is convoluted, since we don't really now how
292 # much to decode: there may be newlines in the incoming data.
294 if self
.eof
: return decdata
296 data
= self
.ifp
.read(wtd
)
298 # Next problem: there may not be a complete number of
299 # bytes in what we pass to a2b. Solve by yet another
304 decdatacur
, self
.eof
= \
305 binascii
.a2b_hqx(data
)
307 except binascii
.Incomplete
:
309 newdata
= self
.ifp
.read(1)
312 'Premature EOF on binhex file'
313 data
= data
+ newdata
314 decdata
= decdata
+ decdatacur
315 wtd
= totalwtd
- len(decdata
)
316 if not decdata
and not self
.eof
:
317 raise Error
, 'Premature EOF on binhex file'
323 class _Rledecoderengine
:
324 """Read data via the RLE-coder"""
326 def __init__(self
, ifp
):
329 self
.post_buffer
= ''
333 if wtd
> len(self
.post_buffer
):
334 self
._fill
(wtd
-len(self
.post_buffer
))
335 rv
= self
.post_buffer
[:wtd
]
336 self
.post_buffer
= self
.post_buffer
[wtd
:]
339 def _fill(self
, wtd
):
340 self
.pre_buffer
= self
.pre_buffer
+ self
.ifp
.read(wtd
+4)
342 self
.post_buffer
= self
.post_buffer
+ \
343 binascii
.rledecode_hqx(self
.pre_buffer
)
348 # Obfuscated code ahead. We have to take care that we don't
349 # end up with an orphaned RUNCHAR later on. So, we keep a couple
350 # of bytes in the buffer, depending on what the end of
351 # the buffer looks like:
352 # '\220\0\220' - Keep 3 bytes: repeated \220 (escaped as \220\0)
353 # '?\220' - Keep 2 bytes: repeated something-else
354 # '\220\0' - Escaped \220: Keep 2 bytes.
355 # '?\220?' - Complete repeat sequence: decode all
356 # otherwise: keep 1 byte.
358 mark
= len(self
.pre_buffer
)
359 if self
.pre_buffer
[-3:] == RUNCHAR
+ '\0' + RUNCHAR
:
361 elif self
.pre_buffer
[-1] == RUNCHAR
:
363 elif self
.pre_buffer
[-2:] == RUNCHAR
+ '\0':
365 elif self
.pre_buffer
[-2] == RUNCHAR
:
370 self
.post_buffer
= self
.post_buffer
+ \
371 binascii
.rledecode_hqx(self
.pre_buffer
[:mark
])
372 self
.pre_buffer
= self
.pre_buffer
[mark
:]
378 def __init__(self
, ifp
):
379 if type(ifp
) == type(''):
382 # Find initial colon.
387 raise Error
, "No binhex data found"
388 # Cater for \r\n terminated lines (which show up as \n\r, hence
389 # all lines start with \r)
395 dummy
= ifp
.readline()
397 hqxifp
= _Hqxdecoderengine(ifp
)
398 self
.ifp
= _Rledecoderengine(hqxifp
)
402 def _read(self
, len):
403 data
= self
.ifp
.read(len)
404 self
.crc
= binascii
.crc_hqx(data
, self
.crc
)
408 filecrc
= struct
.unpack('>h', self
.ifp
.read(2))[0] & 0xffff
409 #self.crc = binascii.crc_hqx('\0\0', self.crc)
410 # XXXX Is this needed??
411 self
.crc
= self
.crc
& 0xffff
412 if filecrc
!= self
.crc
:
413 raise Error
, 'CRC error, computed %x, read %x' \
417 def _readheader(self
):
419 fname
= self
._read
(ord(len))
420 rest
= self
._read
(1+4+4+2+4+4)
425 flags
= struct
.unpack('>h', rest
[9:11])[0]
426 self
.dlen
= struct
.unpack('>l', rest
[11:15])[0]
427 self
.rlen
= struct
.unpack('>l', rest
[15:19])[0]
431 self
.FInfo
.Creator
= creator
432 self
.FInfo
.Type
= type
433 self
.FInfo
.Flags
= flags
435 self
.state
= _DID_HEADER
438 if self
.state
!= _DID_HEADER
:
439 raise Error
, 'Read data at wrong time'
442 n
= min(n
, self
.dlen
)
447 rv
= rv
+ self
._read
(n
-len(rv
))
448 self
.dlen
= self
.dlen
- n
451 def close_data(self
):
452 if self
.state
!= _DID_HEADER
:
453 raise Error
, 'close_data at wrong time'
455 dummy
= self
._read
(self
.dlen
)
457 self
.state
= _DID_DATA
459 def read_rsrc(self
, *n
):
460 if self
.state
== _DID_HEADER
:
462 if self
.state
!= _DID_DATA
:
463 raise Error
, 'Read resource data at wrong time'
466 n
= min(n
, self
.rlen
)
469 self
.rlen
= self
.rlen
- n
474 dummy
= self
.read_rsrc(self
.rlen
)
476 self
.state
= _DID_RSRC
479 def hexbin(inp
, out
):
480 """(infilename, outfilename) - Decode binhexed file"""
486 ofss
= macfs
.FSSpec(out
)
487 out
= ofss
.as_pathname()
489 ofp
= open(out
, 'wb')
490 # XXXX Do translation on non-mac systems
498 d
= ifp
.read_rsrc(128000)
500 ofp
= openrsrc(out
, 'wb')
503 d
= ifp
.read_rsrc(128000)
509 nfinfo
= ofss
.GetFInfo()
510 nfinfo
.Creator
= finfo
.Creator
511 nfinfo
.Type
= finfo
.Type
512 nfinfo
.Flags
= finfo
.Flags
513 ofss
.SetFInfo(nfinfo
)
519 fss
, ok
= macfs
.PromptGetFile('File to convert:')
522 fname
= fss
.as_pathname()
525 binhex(fname
, fname
+'.hqx')
526 hexbin(fname
+'.hqx', fname
+'.viahqx')
527 #hexbin(fname, fname+'.unpacked')
530 if __name__
== '__main__':