Guido van Rossum | 105bd98 | 1997-07-11 18:39:03 +0000 | [diff] [blame] | 1 | #! /usr/bin/env python |
| 2 | |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 3 | # Copyright 1994 by Lance Ellinghouse |
| 4 | # Cathedral City, California Republic, United States of America. |
| 5 | # All Rights Reserved |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 6 | # Permission to use, copy, modify, and distribute this software and its |
| 7 | # documentation for any purpose and without fee is hereby granted, |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 8 | # provided that the above copyright notice appear in all copies and that |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 9 | # both that copyright notice and this permission notice appear in |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 10 | # supporting documentation, and that the name of Lance Ellinghouse |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 11 | # not be used in advertising or publicity pertaining to distribution |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 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. |
Jack Jansen | 0a2eaac | 1995-08-07 14:37:38 +0000 | [diff] [blame] | 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. |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 25 | # - Arguments more compliant with python standard |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 26 | |
Guido van Rossum | e7b146f | 2000-02-04 15:28:42 +0000 | [diff] [blame] | 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 | """ |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 32 | |
Jack Jansen | 0a2eaac | 1995-08-07 14:37:38 +0000 | [diff] [blame] | 33 | import binascii |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 34 | import os |
Guido van Rossum | fbba304 | 1998-10-22 16:18:25 +0000 | [diff] [blame] | 35 | import sys |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 36 | from types import StringType |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 37 | |
Skip Montanaro | 40fc160 | 2001-03-01 04:27:19 +0000 | [diff] [blame] | 38 | __all__ = ["Error", "encode", "decode"] |
| 39 | |
Fred Drake | 9b8d801 | 2000-08-17 04:45:13 +0000 | [diff] [blame] | 40 | class Error(Exception): |
| 41 | pass |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 42 | |
| 43 | def encode(in_file, out_file, name=None, mode=None): |
| 44 | """Uuencode file""" |
| 45 | # |
| 46 | # If in_file is a pathname open it and change defaults |
| 47 | # |
| 48 | if in_file == '-': |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 49 | in_file = sys.stdin |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 50 | elif isinstance(in_file, StringType): |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 51 | if name is None: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 52 | name = os.path.basename(in_file) |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 53 | if mode is None: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 54 | try: |
Raymond Hettinger | 32200ae | 2002-06-01 19:51:15 +0000 | [diff] [blame] | 55 | mode = os.stat(in_file).st_mode |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 56 | except AttributeError: |
| 57 | pass |
| 58 | in_file = open(in_file, 'rb') |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 59 | # |
| 60 | # Open out_file if it is a pathname |
| 61 | # |
| 62 | if out_file == '-': |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 63 | out_file = sys.stdout |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 64 | elif isinstance(out_file, StringType): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 65 | out_file = open(out_file, 'w') |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 66 | # |
| 67 | # Set defaults for name and mode |
| 68 | # |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 69 | if name is None: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 70 | name = '-' |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 71 | if mode is None: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 72 | mode = 0666 |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 73 | # |
| 74 | # Write the data |
| 75 | # |
| 76 | out_file.write('begin %o %s\n' % ((mode&0777),name)) |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 77 | str = in_file.read(45) |
| 78 | while len(str) > 0: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 79 | out_file.write(binascii.b2a_uu(str)) |
| 80 | str = in_file.read(45) |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 81 | out_file.write(' \nend\n') |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 82 | |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 83 | |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 84 | def decode(in_file, out_file=None, mode=None, quiet=0): |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 85 | """Decode uuencoded file""" |
| 86 | # |
| 87 | # Open the input file, if needed. |
| 88 | # |
| 89 | if in_file == '-': |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 90 | in_file = sys.stdin |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 91 | elif isinstance(in_file, StringType): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 92 | in_file = open(in_file) |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 93 | # |
Guido van Rossum | 2ebaa17 | 1997-04-08 19:46:02 +0000 | [diff] [blame] | 94 | # Read until a begin is encountered or we've exhausted the file |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 95 | # |
Guido van Rossum | 3ccd2f1 | 1997-04-08 19:46:53 +0000 | [diff] [blame] | 96 | while 1: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 97 | hdr = in_file.readline() |
| 98 | if not hdr: |
| 99 | raise Error, 'No valid begin line found in input file' |
| 100 | if hdr[:5] != 'begin': |
| 101 | continue |
Guido van Rossum | 62c1115 | 2001-01-10 19:14:28 +0000 | [diff] [blame] | 102 | hdrfields = hdr.split(" ", 2) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 103 | if len(hdrfields) == 3 and hdrfields[0] == 'begin': |
| 104 | try: |
Guido van Rossum | 62c1115 | 2001-01-10 19:14:28 +0000 | [diff] [blame] | 105 | int(hdrfields[1], 8) |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 106 | break |
| 107 | except ValueError: |
| 108 | pass |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 109 | if out_file is None: |
Guido van Rossum | 62c1115 | 2001-01-10 19:14:28 +0000 | [diff] [blame] | 110 | out_file = hdrfields[2].rstrip() |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 111 | if os.path.exists(out_file): |
| 112 | raise Error, 'Cannot overwrite existing file: %s' % out_file |
Fred Drake | 8152d32 | 2000-12-12 23:20:45 +0000 | [diff] [blame] | 113 | if mode is None: |
Guido van Rossum | 62c1115 | 2001-01-10 19:14:28 +0000 | [diff] [blame] | 114 | mode = int(hdrfields[1], 8) |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 115 | # |
| 116 | # Open the output file |
| 117 | # |
| 118 | if out_file == '-': |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 119 | out_file = sys.stdout |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 120 | elif isinstance(out_file, StringType): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 121 | fp = open(out_file, 'wb') |
| 122 | try: |
| 123 | os.path.chmod(out_file, mode) |
| 124 | except AttributeError: |
| 125 | pass |
| 126 | out_file = fp |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 127 | # |
| 128 | # Main decoding loop |
| 129 | # |
Guido van Rossum | 4494101 | 1999-01-05 18:02:24 +0000 | [diff] [blame] | 130 | s = in_file.readline() |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 131 | while s and s.strip() != 'end': |
Guido van Rossum | 4494101 | 1999-01-05 18:02:24 +0000 | [diff] [blame] | 132 | try: |
| 133 | data = binascii.a2b_uu(s) |
| 134 | except binascii.Error, v: |
| 135 | # Workaround for broken uuencoders by /Fredrik Lundh |
| 136 | nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3 |
| 137 | data = binascii.a2b_uu(s[:nbytes]) |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 138 | if not quiet: |
| 139 | sys.stderr.write("Warning: %s\n" % str(v)) |
Guido van Rossum | 4494101 | 1999-01-05 18:02:24 +0000 | [diff] [blame] | 140 | out_file.write(data) |
| 141 | s = in_file.readline() |
Tim Peters | 79c8671 | 2001-07-11 04:08:49 +0000 | [diff] [blame] | 142 | if not s: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 143 | raise Error, 'Truncated input file' |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 144 | |
| 145 | def test(): |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 146 | """uuencode/uudecode main program""" |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 147 | import getopt |
| 148 | |
| 149 | dopt = 0 |
| 150 | topt = 0 |
| 151 | input = sys.stdin |
| 152 | output = sys.stdout |
| 153 | ok = 1 |
| 154 | try: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 155 | optlist, args = getopt.getopt(sys.argv[1:], 'dt') |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 156 | except getopt.error: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 157 | ok = 0 |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 158 | if not ok or len(args) > 2: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 159 | print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]' |
| 160 | print ' -d: Decode (in stead of encode)' |
| 161 | print ' -t: data is text, encoded format unix-compatible text' |
| 162 | sys.exit(1) |
Tim Peters | e119006 | 2001-01-15 03:34:38 +0000 | [diff] [blame] | 163 | |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 164 | for o, a in optlist: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 165 | if o == '-d': dopt = 1 |
| 166 | if o == '-t': topt = 1 |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 167 | |
| 168 | if len(args) > 0: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 169 | input = args[0] |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 170 | if len(args) > 1: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 171 | output = args[1] |
Jack Jansen | 8b74512 | 1995-08-30 12:19:30 +0000 | [diff] [blame] | 172 | |
| 173 | if dopt: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 174 | if topt: |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 175 | if isinstance(output, StringType): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 176 | output = open(output, 'w') |
| 177 | else: |
| 178 | print sys.argv[0], ': cannot do -t to stdout' |
| 179 | sys.exit(1) |
| 180 | decode(input, output) |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 181 | else: |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 182 | if topt: |
Barry Warsaw | 59dae8a | 2001-08-17 19:59:34 +0000 | [diff] [blame] | 183 | if isinstance(input, StringType): |
Guido van Rossum | 45e2fbc | 1998-03-26 21:13:24 +0000 | [diff] [blame] | 184 | input = open(input, 'r') |
| 185 | else: |
| 186 | print sys.argv[0], ': cannot do -t from stdin' |
| 187 | sys.exit(1) |
| 188 | encode(input, output) |
Guido van Rossum | 8534741 | 1994-09-09 11:10:15 +0000 | [diff] [blame] | 189 | |
| 190 | if __name__ == '__main__': |
| 191 | test() |