binhex.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  1. """Macintosh binhex compression/decompression.
  2. easy interface:
  3. binhex(inputfilename, outputfilename)
  4. hexbin(inputfilename, outputfilename)
  5. """
  6. #
  7. # Jack Jansen, CWI, August 1995.
  8. #
  9. # The module is supposed to be as compatible as possible. Especially the
  10. # easy interface should work "as expected" on any platform.
  11. # XXXX Note: currently, textfiles appear in mac-form on all platforms.
  12. # We seem to lack a simple character-translate in python.
  13. # (we should probably use ISO-Latin-1 on all but the mac platform).
  14. # XXXX The simple routines are too simple: they expect to hold the complete
  15. # files in-core. Should be fixed.
  16. # XXXX It would be nice to handle AppleDouble format on unix
  17. # (for servers serving macs).
  18. # XXXX I don't understand what happens when you get 0x90 times the same byte on
  19. # input. The resulting code (xx 90 90) would appear to be interpreted as an
  20. # escaped *value* of 0x90. All coders I've seen appear to ignore this nicety...
  21. #
  22. import io
  23. import os
  24. import struct
  25. import binascii
  26. __all__ = ["binhex","hexbin","Error"]
  27. class Error(Exception):
  28. pass
  29. # States (what have we written)
  30. _DID_HEADER = 0
  31. _DID_DATA = 1
  32. # Various constants
  33. REASONABLY_LARGE = 32768 # Minimal amount we pass the rle-coder
  34. LINELEN = 64
  35. RUNCHAR = b"\x90"
  36. #
  37. # This code is no longer byte-order dependent
  38. class FInfo:
  39. def __init__(self):
  40. self.Type = '????'
  41. self.Creator = '????'
  42. self.Flags = 0
  43. def getfileinfo(name):
  44. finfo = FInfo()
  45. with io.open(name, 'rb') as fp:
  46. # Quick check for textfile
  47. data = fp.read(512)
  48. if 0 not in data:
  49. finfo.Type = 'TEXT'
  50. fp.seek(0, 2)
  51. dsize = fp.tell()
  52. dir, file = os.path.split(name)
  53. file = file.replace(':', '-', 1)
  54. return file, finfo, dsize, 0
  55. class openrsrc:
  56. def __init__(self, *args):
  57. pass
  58. def read(self, *args):
  59. return b''
  60. def write(self, *args):
  61. pass
  62. def close(self):
  63. pass
  64. class _Hqxcoderengine:
  65. """Write data to the coder in 3-byte chunks"""
  66. def __init__(self, ofp):
  67. self.ofp = ofp
  68. self.data = b''
  69. self.hqxdata = b''
  70. self.linelen = LINELEN - 1
  71. def write(self, data):
  72. self.data = self.data + data
  73. datalen = len(self.data)
  74. todo = (datalen // 3) * 3
  75. data = self.data[:todo]
  76. self.data = self.data[todo:]
  77. if not data:
  78. return
  79. self.hqxdata = self.hqxdata + binascii.b2a_hqx(data)
  80. self._flush(0)
  81. def _flush(self, force):
  82. first = 0
  83. while first <= len(self.hqxdata) - self.linelen:
  84. last = first + self.linelen
  85. self.ofp.write(self.hqxdata[first:last] + b'\n')
  86. self.linelen = LINELEN
  87. first = last
  88. self.hqxdata = self.hqxdata[first:]
  89. if force:
  90. self.ofp.write(self.hqxdata + b':\n')
  91. def close(self):
  92. if self.data:
  93. self.hqxdata = self.hqxdata + binascii.b2a_hqx(self.data)
  94. self._flush(1)
  95. self.ofp.close()
  96. del self.ofp
  97. class _Rlecoderengine:
  98. """Write data to the RLE-coder in suitably large chunks"""
  99. def __init__(self, ofp):
  100. self.ofp = ofp
  101. self.data = b''
  102. def write(self, data):
  103. self.data = self.data + data
  104. if len(self.data) < REASONABLY_LARGE:
  105. return
  106. rledata = binascii.rlecode_hqx(self.data)
  107. self.ofp.write(rledata)
  108. self.data = b''
  109. def close(self):
  110. if self.data:
  111. rledata = binascii.rlecode_hqx(self.data)
  112. self.ofp.write(rledata)
  113. self.ofp.close()
  114. del self.ofp
  115. class BinHex:
  116. def __init__(self, name_finfo_dlen_rlen, ofp):
  117. name, finfo, dlen, rlen = name_finfo_dlen_rlen
  118. close_on_error = False
  119. if isinstance(ofp, str):
  120. ofname = ofp
  121. ofp = io.open(ofname, 'wb')
  122. close_on_error = True
  123. try:
  124. ofp.write(b'(This file must be converted with BinHex 4.0)\r\r:')
  125. hqxer = _Hqxcoderengine(ofp)
  126. self.ofp = _Rlecoderengine(hqxer)
  127. self.crc = 0
  128. if finfo is None:
  129. finfo = FInfo()
  130. self.dlen = dlen
  131. self.rlen = rlen
  132. self._writeinfo(name, finfo)
  133. self.state = _DID_HEADER
  134. except:
  135. if close_on_error:
  136. ofp.close()
  137. raise
  138. def _writeinfo(self, name, finfo):
  139. nl = len(name)
  140. if nl > 63:
  141. raise Error('Filename too long')
  142. d = bytes([nl]) + name.encode("latin-1") + b'\0'
  143. tp, cr = finfo.Type, finfo.Creator
  144. if isinstance(tp, str):
  145. tp = tp.encode("latin-1")
  146. if isinstance(cr, str):
  147. cr = cr.encode("latin-1")
  148. d2 = tp + cr
  149. # Force all structs to be packed with big-endian
  150. d3 = struct.pack('>h', finfo.Flags)
  151. d4 = struct.pack('>ii', self.dlen, self.rlen)
  152. info = d + d2 + d3 + d4
  153. self._write(info)
  154. self._writecrc()
  155. def _write(self, data):
  156. self.crc = binascii.crc_hqx(data, self.crc)
  157. self.ofp.write(data)
  158. def _writecrc(self):
  159. # XXXX Should this be here??
  160. # self.crc = binascii.crc_hqx('\0\0', self.crc)
  161. if self.crc < 0:
  162. fmt = '>h'
  163. else:
  164. fmt = '>H'
  165. self.ofp.write(struct.pack(fmt, self.crc))
  166. self.crc = 0
  167. def write(self, data):
  168. if self.state != _DID_HEADER:
  169. raise Error('Writing data at the wrong time')
  170. self.dlen = self.dlen - len(data)
  171. self._write(data)
  172. def close_data(self):
  173. if self.dlen != 0:
  174. raise Error('Incorrect data size, diff=%r' % (self.rlen,))
  175. self._writecrc()
  176. self.state = _DID_DATA
  177. def write_rsrc(self, data):
  178. if self.state < _DID_DATA:
  179. self.close_data()
  180. if self.state != _DID_DATA:
  181. raise Error('Writing resource data at the wrong time')
  182. self.rlen = self.rlen - len(data)
  183. self._write(data)
  184. def close(self):
  185. if self.state is None:
  186. return
  187. try:
  188. if self.state < _DID_DATA:
  189. self.close_data()
  190. if self.state != _DID_DATA:
  191. raise Error('Close at the wrong time')
  192. if self.rlen != 0:
  193. raise Error("Incorrect resource-datasize, diff=%r" % (self.rlen,))
  194. self._writecrc()
  195. finally:
  196. self.state = None
  197. ofp = self.ofp
  198. del self.ofp
  199. ofp.close()
  200. def binhex(inp, out):
  201. """binhex(infilename, outfilename): create binhex-encoded copy of a file"""
  202. finfo = getfileinfo(inp)
  203. ofp = BinHex(finfo, out)
  204. with io.open(inp, 'rb') as ifp:
  205. # XXXX Do textfile translation on non-mac systems
  206. while True:
  207. d = ifp.read(128000)
  208. if not d: break
  209. ofp.write(d)
  210. ofp.close_data()
  211. ifp = openrsrc(inp, 'rb')
  212. while True:
  213. d = ifp.read(128000)
  214. if not d: break
  215. ofp.write_rsrc(d)
  216. ofp.close()
  217. ifp.close()
  218. class _Hqxdecoderengine:
  219. """Read data via the decoder in 4-byte chunks"""
  220. def __init__(self, ifp):
  221. self.ifp = ifp
  222. self.eof = 0
  223. def read(self, totalwtd):
  224. """Read at least wtd bytes (or until EOF)"""
  225. decdata = b''
  226. wtd = totalwtd
  227. #
  228. # The loop here is convoluted, since we don't really now how
  229. # much to decode: there may be newlines in the incoming data.
  230. while wtd > 0:
  231. if self.eof: return decdata
  232. wtd = ((wtd + 2) // 3) * 4
  233. data = self.ifp.read(wtd)
  234. #
  235. # Next problem: there may not be a complete number of
  236. # bytes in what we pass to a2b. Solve by yet another
  237. # loop.
  238. #
  239. while True:
  240. try:
  241. decdatacur, self.eof = binascii.a2b_hqx(data)
  242. break
  243. except binascii.Incomplete:
  244. pass
  245. newdata = self.ifp.read(1)
  246. if not newdata:
  247. raise Error('Premature EOF on binhex file')
  248. data = data + newdata
  249. decdata = decdata + decdatacur
  250. wtd = totalwtd - len(decdata)
  251. if not decdata and not self.eof:
  252. raise Error('Premature EOF on binhex file')
  253. return decdata
  254. def close(self):
  255. self.ifp.close()
  256. class _Rledecoderengine:
  257. """Read data via the RLE-coder"""
  258. def __init__(self, ifp):
  259. self.ifp = ifp
  260. self.pre_buffer = b''
  261. self.post_buffer = b''
  262. self.eof = 0
  263. def read(self, wtd):
  264. if wtd > len(self.post_buffer):
  265. self._fill(wtd - len(self.post_buffer))
  266. rv = self.post_buffer[:wtd]
  267. self.post_buffer = self.post_buffer[wtd:]
  268. return rv
  269. def _fill(self, wtd):
  270. self.pre_buffer = self.pre_buffer + self.ifp.read(wtd + 4)
  271. if self.ifp.eof:
  272. self.post_buffer = self.post_buffer + \
  273. binascii.rledecode_hqx(self.pre_buffer)
  274. self.pre_buffer = b''
  275. return
  276. #
  277. # Obfuscated code ahead. We have to take care that we don't
  278. # end up with an orphaned RUNCHAR later on. So, we keep a couple
  279. # of bytes in the buffer, depending on what the end of
  280. # the buffer looks like:
  281. # '\220\0\220' - Keep 3 bytes: repeated \220 (escaped as \220\0)
  282. # '?\220' - Keep 2 bytes: repeated something-else
  283. # '\220\0' - Escaped \220: Keep 2 bytes.
  284. # '?\220?' - Complete repeat sequence: decode all
  285. # otherwise: keep 1 byte.
  286. #
  287. mark = len(self.pre_buffer)
  288. if self.pre_buffer[-3:] == RUNCHAR + b'\0' + RUNCHAR:
  289. mark = mark - 3
  290. elif self.pre_buffer[-1:] == RUNCHAR:
  291. mark = mark - 2
  292. elif self.pre_buffer[-2:] == RUNCHAR + b'\0':
  293. mark = mark - 2
  294. elif self.pre_buffer[-2:-1] == RUNCHAR:
  295. pass # Decode all
  296. else:
  297. mark = mark - 1
  298. self.post_buffer = self.post_buffer + \
  299. binascii.rledecode_hqx(self.pre_buffer[:mark])
  300. self.pre_buffer = self.pre_buffer[mark:]
  301. def close(self):
  302. self.ifp.close()
  303. class HexBin:
  304. def __init__(self, ifp):
  305. if isinstance(ifp, str):
  306. ifp = io.open(ifp, 'rb')
  307. #
  308. # Find initial colon.
  309. #
  310. while True:
  311. ch = ifp.read(1)
  312. if not ch:
  313. raise Error("No binhex data found")
  314. # Cater for \r\n terminated lines (which show up as \n\r, hence
  315. # all lines start with \r)
  316. if ch == b'\r':
  317. continue
  318. if ch == b':':
  319. break
  320. hqxifp = _Hqxdecoderengine(ifp)
  321. self.ifp = _Rledecoderengine(hqxifp)
  322. self.crc = 0
  323. self._readheader()
  324. def _read(self, len):
  325. data = self.ifp.read(len)
  326. self.crc = binascii.crc_hqx(data, self.crc)
  327. return data
  328. def _checkcrc(self):
  329. filecrc = struct.unpack('>h', self.ifp.read(2))[0] & 0xffff
  330. #self.crc = binascii.crc_hqx('\0\0', self.crc)
  331. # XXXX Is this needed??
  332. self.crc = self.crc & 0xffff
  333. if filecrc != self.crc:
  334. raise Error('CRC error, computed %x, read %x'
  335. % (self.crc, filecrc))
  336. self.crc = 0
  337. def _readheader(self):
  338. len = self._read(1)
  339. fname = self._read(ord(len))
  340. rest = self._read(1 + 4 + 4 + 2 + 4 + 4)
  341. self._checkcrc()
  342. type = rest[1:5]
  343. creator = rest[5:9]
  344. flags = struct.unpack('>h', rest[9:11])[0]
  345. self.dlen = struct.unpack('>l', rest[11:15])[0]
  346. self.rlen = struct.unpack('>l', rest[15:19])[0]
  347. self.FName = fname
  348. self.FInfo = FInfo()
  349. self.FInfo.Creator = creator
  350. self.FInfo.Type = type
  351. self.FInfo.Flags = flags
  352. self.state = _DID_HEADER
  353. def read(self, *n):
  354. if self.state != _DID_HEADER:
  355. raise Error('Read data at wrong time')
  356. if n:
  357. n = n[0]
  358. n = min(n, self.dlen)
  359. else:
  360. n = self.dlen
  361. rv = b''
  362. while len(rv) < n:
  363. rv = rv + self._read(n-len(rv))
  364. self.dlen = self.dlen - n
  365. return rv
  366. def close_data(self):
  367. if self.state != _DID_HEADER:
  368. raise Error('close_data at wrong time')
  369. if self.dlen:
  370. dummy = self._read(self.dlen)
  371. self._checkcrc()
  372. self.state = _DID_DATA
  373. def read_rsrc(self, *n):
  374. if self.state == _DID_HEADER:
  375. self.close_data()
  376. if self.state != _DID_DATA:
  377. raise Error('Read resource data at wrong time')
  378. if n:
  379. n = n[0]
  380. n = min(n, self.rlen)
  381. else:
  382. n = self.rlen
  383. self.rlen = self.rlen - n
  384. return self._read(n)
  385. def close(self):
  386. if self.state is None:
  387. return
  388. try:
  389. if self.rlen:
  390. dummy = self.read_rsrc(self.rlen)
  391. self._checkcrc()
  392. finally:
  393. self.state = None
  394. self.ifp.close()
  395. def hexbin(inp, out):
  396. """hexbin(infilename, outfilename) - Decode binhexed file"""
  397. ifp = HexBin(inp)
  398. finfo = ifp.FInfo
  399. if not out:
  400. out = ifp.FName
  401. with io.open(out, 'wb') as ofp:
  402. # XXXX Do translation on non-mac systems
  403. while True:
  404. d = ifp.read(128000)
  405. if not d: break
  406. ofp.write(d)
  407. ifp.close_data()
  408. d = ifp.read_rsrc(128000)
  409. if d:
  410. ofp = openrsrc(out, 'wb')
  411. ofp.write(d)
  412. while True:
  413. d = ifp.read_rsrc(128000)
  414. if not d: break
  415. ofp.write(d)
  416. ofp.close()
  417. ifp.close()