| 
									
										
										
										
											1997-07-11 18:39:03 +00:00
										 |  |  | #! /usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | # Copyright 1994 by Lance Ellinghouse | 
					
						
							|  |  |  | # Cathedral City, California Republic, United States of America. | 
					
						
							|  |  |  | #                        All Rights Reserved | 
					
						
							| 
									
										
										
										
											2001-01-15 03:34:38 +00:00
										 |  |  | # Permission to use, copy, modify, and distribute this software and its | 
					
						
							|  |  |  | # documentation for any purpose and without fee is hereby granted, | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | # provided that the above copyright notice appear in all copies and that | 
					
						
							| 
									
										
										
										
											2001-01-15 03:34:38 +00:00
										 |  |  | # both that copyright notice and this permission notice appear in | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | # supporting documentation, and that the name of Lance Ellinghouse | 
					
						
							| 
									
										
										
										
											2001-01-15 03:34:38 +00:00
										 |  |  | # not be used in advertising or publicity pertaining to distribution | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | # of the software without specific, written prior permission. | 
					
						
							|  |  |  | # LANCE ELLINGHOUSE DISCLAIMS ALL WARRANTIES WITH REGARD TO | 
					
						
							|  |  |  | # THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
					
						
							|  |  |  | # FITNESS, IN NO EVENT SHALL LANCE ELLINGHOUSE CENTRUM BE LIABLE | 
					
						
							|  |  |  | # FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | 
					
						
							|  |  |  | # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | 
					
						
							|  |  |  | # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT | 
					
						
							|  |  |  | # OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							| 
									
										
										
										
											1995-08-07 14:37:38 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # Modified by Jack Jansen, CWI, July 1995: | 
					
						
							|  |  |  | # - Use binascii module to do the actual line-by-line conversion | 
					
						
							|  |  |  | #   between ascii and binary. This results in a 1000-fold speedup. The C | 
					
						
							|  |  |  | #   version is still 5 times faster, though. | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  | # - Arguments more compliant with python standard | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:28:42 +00:00
										 |  |  | """Implementation of the UUencode and UUdecode functions.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | encode(in_file, out_file [,name, mode]) | 
					
						
							|  |  |  | decode(in_file [, out_file, mode]) | 
					
						
							|  |  |  | """
 | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-07 14:37:38 +00:00
										 |  |  | import binascii | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											1998-10-22 16:18:25 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-03-01 04:27:19 +00:00
										 |  |  | __all__ = ["Error", "encode", "decode"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-08-17 04:45:13 +00:00
										 |  |  | class Error(Exception): | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def encode(in_file, out_file, name=None, mode=None): | 
					
						
							|  |  |  |     """Uuencode file""" | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # If in_file is a pathname open it and change defaults | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     if in_file == '-': | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         in_file = sys.stdin | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |     elif isinstance(in_file, basestring): | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |         if name is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             name = os.path.basename(in_file) | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |         if mode is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2002-06-01 19:51:15 +00:00
										 |  |  |                 mode = os.stat(in_file).st_mode | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             except AttributeError: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |         in_file = open(in_file, 'rb') | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							|  |  |  |     # Open out_file if it is a pathname | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     if out_file == '-': | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         out_file = sys.stdout | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |     elif isinstance(out_file, basestring): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         out_file = open(out_file, 'w') | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							|  |  |  |     # Set defaults for name and mode | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |     if name is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         name = '-' | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |     if mode is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         mode = 0666 | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							|  |  |  |     # Write the data | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     out_file.write('begin %o %s\n' % ((mode&0777),name)) | 
					
						
							| 
									
										
										
										
											2005-11-22 12:58:19 +00:00
										 |  |  |     data = in_file.read(45) | 
					
						
							|  |  |  |     while len(data) > 0: | 
					
						
							|  |  |  |         out_file.write(binascii.b2a_uu(data)) | 
					
						
							|  |  |  |         data = in_file.read(45) | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  |     out_file.write(' \nend\n') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-08-17 19:59:34 +00:00
										 |  |  | def decode(in_file, out_file=None, mode=None, quiet=0): | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     """Decode uuencoded file""" | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     # Open the input file, if needed. | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  |     if in_file == '-': | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         in_file = sys.stdin | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |     elif isinstance(in_file, basestring): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         in_file = open(in_file) | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							| 
									
										
										
										
											1997-04-08 19:46:02 +00:00
										 |  |  |     # Read until a begin is encountered or we've exhausted the file | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |     while True: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         hdr = in_file.readline() | 
					
						
							|  |  |  |         if not hdr: | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |             raise Error('No valid begin line found in input file') | 
					
						
							|  |  |  |         if not hdr.startswith('begin'): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             continue | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |         hdrfields = hdr.split(' ', 2) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if len(hdrfields) == 3 and hdrfields[0] == 'begin': | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											2001-01-10 19:14:28 +00:00
										 |  |  |                 int(hdrfields[1], 8) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                 break | 
					
						
							|  |  |  |             except ValueError: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |     if out_file is None: | 
					
						
							| 
									
										
										
										
											2001-01-10 19:14:28 +00:00
										 |  |  |         out_file = hdrfields[2].rstrip() | 
					
						
							| 
									
										
										
										
											2001-08-17 19:59:34 +00:00
										 |  |  |         if os.path.exists(out_file): | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |             raise Error('Cannot overwrite existing file: %s' % out_file) | 
					
						
							| 
									
										
										
										
											2000-12-12 23:20:45 +00:00
										 |  |  |     if mode is None: | 
					
						
							| 
									
										
										
										
											2001-01-10 19:14:28 +00:00
										 |  |  |         mode = int(hdrfields[1], 8) | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							|  |  |  |     # Open the output file | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											2006-11-20 13:39:37 +00:00
										 |  |  |     opened = False | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     if out_file == '-': | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         out_file = sys.stdout | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |     elif isinstance(out_file, basestring): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         fp = open(out_file, 'wb') | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             os.path.chmod(out_file, mode) | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         out_file = fp | 
					
						
							| 
									
										
										
										
											2006-11-20 13:39:37 +00:00
										 |  |  |         opened = True | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     # | 
					
						
							|  |  |  |     # Main decoding loop | 
					
						
							|  |  |  |     # | 
					
						
							| 
									
										
										
										
											1999-01-05 18:02:24 +00:00
										 |  |  |     s = in_file.readline() | 
					
						
							| 
									
										
										
										
											2001-08-17 19:59:34 +00:00
										 |  |  |     while s and s.strip() != 'end': | 
					
						
							| 
									
										
										
										
											1999-01-05 18:02:24 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             data = binascii.a2b_uu(s) | 
					
						
							|  |  |  |         except binascii.Error, v: | 
					
						
							|  |  |  |             # Workaround for broken uuencoders by /Fredrik Lundh | 
					
						
							| 
									
										
										
										
											2006-03-28 10:29:45 +00:00
										 |  |  |             nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3 | 
					
						
							| 
									
										
										
										
											1999-01-05 18:02:24 +00:00
										 |  |  |             data = binascii.a2b_uu(s[:nbytes]) | 
					
						
							| 
									
										
										
										
											2001-08-17 19:59:34 +00:00
										 |  |  |             if not quiet: | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |                 sys.stderr.write("Warning: %s\n" % v) | 
					
						
							| 
									
										
										
										
											1999-01-05 18:02:24 +00:00
										 |  |  |         out_file.write(data) | 
					
						
							|  |  |  |         s = in_file.readline() | 
					
						
							| 
									
										
										
										
											2001-07-11 04:08:49 +00:00
										 |  |  |     if not s: | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |         raise Error('Truncated input file') | 
					
						
							| 
									
										
										
										
											2006-11-20 13:39:37 +00:00
										 |  |  |     if opened: | 
					
						
							|  |  |  |         out_file.close() | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test(): | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     """uuencode/uudecode main program""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |     import optparse | 
					
						
							|  |  |  |     parser = optparse.OptionParser(usage='usage: %prog [-d] [-t] [input [output]]') | 
					
						
							|  |  |  |     parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true') | 
					
						
							|  |  |  |     parser.add_option('-t', '--text', dest='text', help='data is text, encoded format unix-compatible text?', default=False, action='store_true') | 
					
						
							| 
									
										
										
										
											2001-01-15 03:34:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |     (options, args) = parser.parse_args() | 
					
						
							|  |  |  |     if len(args) > 2: | 
					
						
							| 
									
										
										
										
											2006-04-07 05:39:17 +00:00
										 |  |  |         parser.error('incorrect number of arguments') | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |         sys.exit(1) | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |     input = sys.stdin | 
					
						
							|  |  |  |     output = sys.stdout | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     if len(args) > 0: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         input = args[0] | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  |     if len(args) > 1: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         output = args[1] | 
					
						
							| 
									
										
										
										
											1995-08-30 12:19:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |     if options.decode: | 
					
						
							|  |  |  |         if options.text: | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |             if isinstance(output, basestring): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                 output = open(output, 'w') | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 print sys.argv[0], ': cannot do -t to stdout' | 
					
						
							|  |  |  |                 sys.exit(1) | 
					
						
							|  |  |  |         decode(input, output) | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2005-11-22 14:12:21 +00:00
										 |  |  |         if options.text: | 
					
						
							| 
									
										
										
										
											2005-11-21 19:10:07 +00:00
										 |  |  |             if isinstance(input, basestring): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |                 input = open(input, 'r') | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 print sys.argv[0], ': cannot do -t from stdin' | 
					
						
							|  |  |  |                 sys.exit(1) | 
					
						
							|  |  |  |         encode(input, output) | 
					
						
							| 
									
										
										
										
											1994-09-09 11:10:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     test() |