home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / UU.PY < prev    next >
Encoding:
Python Source  |  2000-09-28  |  5.6 KB  |  187 lines

  1. #! /usr/bin/env python
  2.  
  3. # Copyright 1994 by Lance Ellinghouse
  4. # Cathedral City, California Republic, United States of America.
  5. #                        All Rights Reserved
  6. # Permission to use, copy, modify, and distribute this software and its 
  7. # documentation for any purpose and without fee is hereby granted, 
  8. # provided that the above copyright notice appear in all copies and that
  9. # both that copyright notice and this permission notice appear in 
  10. # supporting documentation, and that the name of Lance Ellinghouse
  11. # not be used in advertising or publicity pertaining to distribution 
  12. # of the software without specific, written prior permission.
  13. # LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO
  14. # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  15. # FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE CENTRUM BE LIABLE
  16. # FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  17. # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  18. # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
  19. # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  20. #
  21. # Modified by Jack Jansen, CWI, July 1995:
  22. # - Use binascii module to do the actual line-by-line conversion
  23. #   between ascii and binary. This results in a 1000-fold speedup. The C
  24. #   version is still 5 times faster, though.
  25. # - Arguments more compliant with python standard
  26.  
  27. """Implementation of the UUencode and UUdecode functions.
  28.  
  29. encode(in_file, out_file [,name, mode])
  30. decode(in_file [, out_file, mode])
  31. """
  32.  
  33. import binascii
  34. import os
  35. import string
  36. import sys
  37.  
  38. class Error(Exception):
  39.     pass
  40.  
  41. def encode(in_file, out_file, name=None, mode=None):
  42.     """Uuencode file"""
  43.     #
  44.     # If in_file is a pathname open it and change defaults
  45.     #
  46.     if in_file == '-':
  47.         in_file = sys.stdin
  48.     elif type(in_file) == type(''):
  49.         if name == None:
  50.             name = os.path.basename(in_file)
  51.         if mode == None:
  52.             try:
  53.                 mode = os.stat(in_file)[0]
  54.             except AttributeError:
  55.                 pass
  56.         in_file = open(in_file, 'rb')
  57.     #
  58.     # Open out_file if it is a pathname
  59.     #
  60.     if out_file == '-':
  61.         out_file = sys.stdout
  62.     elif type(out_file) == type(''):
  63.         out_file = open(out_file, 'w')
  64.     #
  65.     # Set defaults for name and mode
  66.     #
  67.     if name == None:
  68.         name = '-'
  69.     if mode == None:
  70.         mode = 0666
  71.     #
  72.     # Write the data
  73.     #
  74.     out_file.write('begin %o %s\n' % ((mode&0777),name))
  75.     str = in_file.read(45)
  76.     while len(str) > 0:
  77.         out_file.write(binascii.b2a_uu(str))
  78.         str = in_file.read(45)
  79.     out_file.write(' \nend\n')
  80.  
  81.  
  82. def decode(in_file, out_file=None, mode=None):
  83.     """Decode uuencoded file"""
  84.     #
  85.     # Open the input file, if needed.
  86.     #
  87.     if in_file == '-':
  88.         in_file = sys.stdin
  89.     elif type(in_file) == type(''):
  90.         in_file = open(in_file)
  91.     #
  92.     # Read until a begin is encountered or we've exhausted the file
  93.     #
  94.     while 1:
  95.         hdr = in_file.readline()
  96.         if not hdr:
  97.             raise Error, 'No valid begin line found in input file'
  98.         if hdr[:5] != 'begin':
  99.             continue
  100.         hdrfields = string.split(hdr)
  101.         if len(hdrfields) == 3 and hdrfields[0] == 'begin':
  102.             try:
  103.                 string.atoi(hdrfields[1], 8)
  104.                 break
  105.             except ValueError:
  106.                 pass
  107.     if out_file == None:
  108.         out_file = hdrfields[2]
  109.     if mode == None:
  110.         mode = string.atoi(hdrfields[1], 8)
  111.     #
  112.     # Open the output file
  113.     #
  114.     if out_file == '-':
  115.         out_file = sys.stdout
  116.     elif type(out_file) == type(''):
  117.         fp = open(out_file, 'wb')
  118.         try:
  119.             os.path.chmod(out_file, mode)
  120.         except AttributeError:
  121.             pass
  122.         out_file = fp
  123.     #
  124.     # Main decoding loop
  125.     #
  126.     s = in_file.readline()
  127.     while s and s != 'end\n':
  128.         try:
  129.             data = binascii.a2b_uu(s)
  130.         except binascii.Error, v:
  131.             # Workaround for broken uuencoders by /Fredrik Lundh
  132.             nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3
  133.             data = binascii.a2b_uu(s[:nbytes])
  134.             sys.stderr.write("Warning: %s\n" % str(v))
  135.         out_file.write(data)
  136.         s = in_file.readline()
  137.     if not str:
  138.         raise Error, 'Truncated input file'
  139.  
  140. def test():
  141.     """uuencode/uudecode main program"""
  142.     import getopt
  143.  
  144.     dopt = 0
  145.     topt = 0
  146.     input = sys.stdin
  147.     output = sys.stdout
  148.     ok = 1
  149.     try:
  150.         optlist, args = getopt.getopt(sys.argv[1:], 'dt')
  151.     except getopt.error:
  152.         ok = 0
  153.     if not ok or len(args) > 2:
  154.         print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]'
  155.         print ' -d: Decode (in stead of encode)'
  156.         print ' -t: data is text, encoded format unix-compatible text'
  157.         sys.exit(1)
  158.         
  159.     for o, a in optlist:
  160.         if o == '-d': dopt = 1
  161.         if o == '-t': topt = 1
  162.  
  163.     if len(args) > 0:
  164.         input = args[0]
  165.     if len(args) > 1:
  166.         output = args[1]
  167.  
  168.     if dopt:
  169.         if topt:
  170.             if type(output) == type(''):
  171.                 output = open(output, 'w')
  172.             else:
  173.                 print sys.argv[0], ': cannot do -t to stdout'
  174.                 sys.exit(1)
  175.         decode(input, output)
  176.     else:
  177.         if topt:
  178.             if type(input) == type(''):
  179.                 input = open(input, 'r')
  180.             else:
  181.                 print sys.argv[0], ': cannot do -t from stdin'
  182.                 sys.exit(1)
  183.         encode(input, output)
  184.  
  185. if __name__ == '__main__':
  186.     test()
  187.