home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Information / mac-binary-ii.txt < prev    next >
Internet Message Format  |  1994-03-23  |  8KB

  1. Date: Tue, 29 Jun 1993 09:05:39 +0800 
  2. From: Peter N Lewis <peter.lewis@info.curtin.edu.au>
  3. Subject: dev/info - MacBinary II Specs 
  4.  
  5. Hi,
  6.  
  7. The specs for MB2 seem to have disappeared from the various sites, so here
  8. it is, reposted.  I didn't write this, I have no connection with it, I'm
  9. just posting it.
  10.    Peter.
  11. These are the new changes to the MacBinary Standard, as generally agreed
  12. upon in the MacBinary II Conference 6/21/87, and as changed in the followup
  13. conference 6/28/87.  Revised 7/24/87 to reflect suggestions and clarifications
  14. that came later, and to include all necessary information needed from the
  15. original MacBinary standard document to implement MacBinary II.
  16.  
  17. The new standard will be very similar to the original MacBinary standard as
  18. described in [MacBinary Standard].  (Reading the original standard is
  19. recommended for a full understanding of implementation and philosophy
  20. behind the MacBinary I and II formats.)  The binary format consists of a
  21. 128-byte header containing all the information necessary to reproduce the
  22. document's directory entry on the receiving Macintosh; followed by the
  23. document's Data Fork (if it has one), padded with nulls to a multiple of
  24. 128 bytes (if necessary); followed by the document's Resource Fork (again, 
  25. padded if necessary). The lengths of these forks (either or both of which
  26. may be zero) are contained in the header.
  27.  
  28. The format of the header for MacBinary II is as follows:
  29.  
  30.   Offset 000-Byte, old version number, must be kept at zero for compatibility
  31.   Offset 001-Byte, Length of filename (must be in the range 1-63)
  32.   Offset 002-1 to 63 chars, filename (only "length" bytes are significant).
  33.   Offset 065-Long Word, file type (normally expressed as four characters)
  34.   Offset 069-Long Word, file creator (normally expressed as four characters)
  35.   Offset 073-Byte, original Finder flags
  36.                                  Bit 7 - Locked.
  37.                                  Bit 6 - Invisible.
  38.                                  Bit 5 - Bundle.
  39.                                  Bit 4 - System.
  40.                                  Bit 3 - Bozo.
  41.                                  Bit 2 - Busy.
  42.                                  Bit 1 - Changed.
  43.                                  Bit 0 - Inited.
  44.   Offset 074-Byte, zero fill, must be zero for compatibility
  45.   Offset 075-Word, file's vertical position within its window.
  46.   Offset 077-Word, file's horizontal position within its window.
  47.   Offset 079-Word, file's window or folder ID.
  48.   Offset 081-Byte, "Protected" flag (in low order bit).
  49.   Offset 082-Byte, zero fill, must be zero for compatibility
  50.   Offset 083-Long Word, Data Fork length (bytes, zero if no Data Fork).
  51.   Offset 087-Long Word, Resource Fork length (bytes, zero if no R.F.).
  52.   Offset 091-Long Word, File's creation date
  53.   Offset 095-Long Word, File's "last modified" date.
  54.   Offset 099-Word, length of Get Info comment to be sent after the resource
  55.              fork (if implemented, see below).
  56.  *Offset 101-Byte, Finder Flags, bits 0-7. (Bits 8-15 are already in byte 73)
  57.  *Offset 116-Long Word, Length of total files when packed files are unpacked.
  58.              This is only used by programs that pack and unpack on the fly,
  59.              mimicing a standalone utility such as PackIt.  A program that is
  60.              uploading a single file must zero this location when sending a
  61.              file.  Programs that do not unpack/uncompress files when
  62.              downloading may ignore this value.
  63.  *Offset 120-Word, Length of a secondary header.  If this is non-zero,
  64.              Skip this many bytes (rounded up to the next multiple of 128)
  65.              This is for future expansion only, when sending files with
  66.              MacBinary, this word should be zero.
  67.  *Offset 122-Byte, Version number of Macbinary II that the uploading program
  68.              is written for (the version begins at 129)
  69.  *Offset 123-Byte, Minimum MacBinary II version needed to read this file
  70.              (start this value at 129 129)
  71.  *Offset 124-Word, CRC of previous 124 bytes
  72.  
  73.  *This is newly defined for MacBinary II.
  74.  
  75. All values are stored in normal 68000 order, with Most Significant Byte
  76. appearing first then the file.  Any bytes in the header not defined above
  77. should be set to zero.
  78.  
  79. The original MacBinary format was ammended to include the sending of the FCMT
  80. (Get Info comment) after the resource fork was sent, if the length for such
  81. comment, given in offset 99, is not zero.  To the best of our knowledge, no
  82. program has implemented this feature, due to Apple's stated position that no
  83. program should read or write these comments.  The definition remains in
  84. MacBinary II, so that should Apple ever provide a documented way of reading and
  85. writing these comments, terminal programs will be able to take advantage of
  86. this feature. 
  87.  
  88. All Finder flags and information would be uploaded, however, a downloading
  89. program should clear the Finder flag bits of
  90.   0 - Set if file/folder is on the desktop (Finder 5.0 and later)
  91.   1 - bFOwnAppl (used internally)
  92.   8 - Inited (seen by Finder)
  93.   9 - Changed (used internally by Finder)
  94.  10 - Busy (copied from File System busy bit)
  95.  
  96. Also, fdLocation and fdFldr should be zeroed
  97.  
  98. To determine if a header is a valid  MacBinary header, check bytes 0 and 74 to
  99. be both zero.  If they are both zero, either (a) the CRC should match, which
  100. means it is a MB II file, or (b) byte 82 is zero, which means it may be a MB I
  101. file.  (Note that, at the current version level, byte 82 is kept zero to
  102. maintain compatibility with MacBinary I. If at some point the MacBinary
  103. versions change sufficiently that it is necessary to keep MacBinary I programs
  104. from downloading these files, we can change byte 82 to non-zero.)
  105.  
  106. If the header is a MB II header, the program will check the minimum version
  107. byte, to see if it knows enough to decode the file.  If the minimum version in
  108. the header is greater than the version that the terminal program was written
  109. for, it will download the file as pure XModem (creating a "TEXT" file) and
  110. notify the user that conversion is needed because the MacBinary version was too
  111. high.
  112.  
  113. If the header does NOT represent a valid MB II header, the program must at
  114. minimum check byte 82 to be zero--if it is not zero, the file is not a MB I
  115. file.  It is possible to write a much more robust routine, by checking the
  116. following:
  117.   Offsets 101-125, Byte, should all be 0.
  118.   Offset 2, Byte, (the length of the file name) should be in the range of 1-63.
  119.   Offsets 83 and 87, Long Word, (the length of the forks) should be in the
  120.     range of 0-$007F FFFF.
  121.  
  122. If any of these tests fail, the file is not a valid MacBinary file.  It may
  123. still be desirable to distinguish between text files and foreign binary files
  124. (for stripping line feeds or similar helpful acts).  Some tests that would
  125. prove useful include:
  126.    A quantity of bytes in the first block with the high bit set would point to
  127.      a binary file (though this could be fooled by files with many extended
  128.      ascii characters, such as generated by the option key on a Mac).
  129.    A large quantity of zero bytes (nulls) would also point to a binary file.
  130.  
  131. ------------------------------------------------------------------------
  132.  
  133.  This proposal was adopted at two conferences attended by representatives from
  134. CompuServe, Delphi and BIX networks, and many terminal software publishers.  A
  135. partial list of those participating is:
  136.  
  137.     Peter Olson/ICONtac
  138.     Larry Loeb/BIX
  139.     Neil Shapiro/Maug
  140.     Mark Hagerman
  141.     Michael Pester
  142.     William Bond
  143.     Bill Steinberg
  144.     Don Brown
  145.     Bill Davis
  146.     Jean Hess
  147.     Scott Watson
  148.     Clay Maeckel
  149.     Harry Chesley
  150.     Jack Brindle
  151.     Raines/BMUG
  152.     Harry Conover
  153.     Chris Allen/Dreams of the Phoenix
  154.     
  155.  
  156.  
  157.  
  158.