blob: da89f7298d44f277e34a45e069d61d74b030b3de [file] [log] [blame]
Guido van Rossum105bd981997-07-11 18:39:03 +00001#! /usr/bin/env python
2
Guido van Rossum85347411994-09-09 11:10:15 +00003# Copyright 1994 by Lance Ellinghouse
4# Cathedral City, California Republic, United States of America.
5# All Rights Reserved
Tim Peterse1190062001-01-15 03:34:38 +00006# Permission to use, copy, modify, and distribute this software and its
7# documentation for any purpose and without fee is hereby granted,
Guido van Rossum85347411994-09-09 11:10:15 +00008# provided that the above copyright notice appear in all copies and that
Tim Peterse1190062001-01-15 03:34:38 +00009# both that copyright notice and this permission notice appear in
Guido van Rossum85347411994-09-09 11:10:15 +000010# supporting documentation, and that the name of Lance Ellinghouse
Tim Peterse1190062001-01-15 03:34:38 +000011# not be used in advertising or publicity pertaining to distribution
Guido van Rossum85347411994-09-09 11:10:15 +000012# 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 Jansen0a2eaac1995-08-07 14:37:38 +000020#
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 Jansen8b745121995-08-30 12:19:30 +000025# - Arguments more compliant with python standard
Guido van Rossum85347411994-09-09 11:10:15 +000026
Guido van Rossume7b146f2000-02-04 15:28:42 +000027"""Implementation of the UUencode and UUdecode functions.
28
29encode(in_file, out_file [,name, mode])
30decode(in_file [, out_file, mode])
31"""
Guido van Rossum85347411994-09-09 11:10:15 +000032
Jack Jansen0a2eaac1995-08-07 14:37:38 +000033import binascii
Jack Jansen8b745121995-08-30 12:19:30 +000034import os
Guido van Rossumfbba3041998-10-22 16:18:25 +000035import sys
Guido van Rossum85347411994-09-09 11:10:15 +000036
Skip Montanaro40fc1602001-03-01 04:27:19 +000037__all__ = ["Error", "encode", "decode"]
38
Fred Drake9b8d8012000-08-17 04:45:13 +000039class Error(Exception):
40 pass
Jack Jansen8b745121995-08-30 12:19:30 +000041
42def encode(in_file, out_file, name=None, mode=None):
43 """Uuencode file"""
44 #
45 # If in_file is a pathname open it and change defaults
46 #
47 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000048 in_file = sys.stdin
Walter Dörwald09f0dd52005-11-21 19:10:07 +000049 elif isinstance(in_file, basestring):
Fred Drake8152d322000-12-12 23:20:45 +000050 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000051 name = os.path.basename(in_file)
Fred Drake8152d322000-12-12 23:20:45 +000052 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000053 try:
Raymond Hettinger32200ae2002-06-01 19:51:15 +000054 mode = os.stat(in_file).st_mode
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000055 except AttributeError:
56 pass
57 in_file = open(in_file, 'rb')
Jack Jansen8b745121995-08-30 12:19:30 +000058 #
59 # Open out_file if it is a pathname
60 #
61 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000062 out_file = sys.stdout
Walter Dörwald09f0dd52005-11-21 19:10:07 +000063 elif isinstance(out_file, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000064 out_file = open(out_file, 'w')
Jack Jansen8b745121995-08-30 12:19:30 +000065 #
66 # Set defaults for name and mode
67 #
Fred Drake8152d322000-12-12 23:20:45 +000068 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000069 name = '-'
Fred Drake8152d322000-12-12 23:20:45 +000070 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000071 mode = 0666
Jack Jansen8b745121995-08-30 12:19:30 +000072 #
73 # Write the data
74 #
75 out_file.write('begin %o %s\n' % ((mode&0777),name))
Walter Dörwald91043f32005-11-22 12:58:19 +000076 data = in_file.read(45)
77 while len(data) > 0:
78 out_file.write(binascii.b2a_uu(data))
79 data = in_file.read(45)
Guido van Rossum85347411994-09-09 11:10:15 +000080 out_file.write(' \nend\n')
Guido van Rossum85347411994-09-09 11:10:15 +000081
Guido van Rossum85347411994-09-09 11:10:15 +000082
Barry Warsaw59dae8a2001-08-17 19:59:34 +000083def decode(in_file, out_file=None, mode=None, quiet=0):
Jack Jansen8b745121995-08-30 12:19:30 +000084 """Decode uuencoded file"""
85 #
86 # Open the input file, if needed.
87 #
88 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000089 in_file = sys.stdin
Walter Dörwald09f0dd52005-11-21 19:10:07 +000090 elif isinstance(in_file, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000091 in_file = open(in_file)
Jack Jansen8b745121995-08-30 12:19:30 +000092 #
Guido van Rossum2ebaa171997-04-08 19:46:02 +000093 # Read until a begin is encountered or we've exhausted the file
Jack Jansen8b745121995-08-30 12:19:30 +000094 #
Walter Dörwaldd331b432005-11-22 14:12:21 +000095 while True:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000096 hdr = in_file.readline()
97 if not hdr:
Walter Dörwaldd331b432005-11-22 14:12:21 +000098 raise Error('No valid begin line found in input file')
99 if not hdr.startswith('begin'):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000100 continue
Walter Dörwaldd331b432005-11-22 14:12:21 +0000101 hdrfields = hdr.split(' ', 2)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000102 if len(hdrfields) == 3 and hdrfields[0] == 'begin':
103 try:
Guido van Rossum62c11152001-01-10 19:14:28 +0000104 int(hdrfields[1], 8)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000105 break
106 except ValueError:
107 pass
Fred Drake8152d322000-12-12 23:20:45 +0000108 if out_file is None:
Guido van Rossum62c11152001-01-10 19:14:28 +0000109 out_file = hdrfields[2].rstrip()
Barry Warsaw59dae8a2001-08-17 19:59:34 +0000110 if os.path.exists(out_file):
Walter Dörwaldd331b432005-11-22 14:12:21 +0000111 raise Error('Cannot overwrite existing file: %s' % out_file)
Fred Drake8152d322000-12-12 23:20:45 +0000112 if mode is None:
Guido van Rossum62c11152001-01-10 19:14:28 +0000113 mode = int(hdrfields[1], 8)
Jack Jansen8b745121995-08-30 12:19:30 +0000114 #
115 # Open the output file
116 #
Andrew M. Kuchling5dba6f72006-11-20 13:39:37 +0000117 opened = False
Jack Jansen8b745121995-08-30 12:19:30 +0000118 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000119 out_file = sys.stdout
Walter Dörwald09f0dd52005-11-21 19:10:07 +0000120 elif isinstance(out_file, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000121 fp = open(out_file, 'wb')
122 try:
123 os.path.chmod(out_file, mode)
124 except AttributeError:
125 pass
126 out_file = fp
Andrew M. Kuchling5dba6f72006-11-20 13:39:37 +0000127 opened = True
Jack Jansen8b745121995-08-30 12:19:30 +0000128 #
129 # Main decoding loop
130 #
Guido van Rossum44941011999-01-05 18:02:24 +0000131 s = in_file.readline()
Barry Warsaw59dae8a2001-08-17 19:59:34 +0000132 while s and s.strip() != 'end':
Guido van Rossum44941011999-01-05 18:02:24 +0000133 try:
134 data = binascii.a2b_uu(s)
135 except binascii.Error, v:
136 # Workaround for broken uuencoders by /Fredrik Lundh
Georg Brandlf8712702006-03-28 10:29:45 +0000137 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3
Guido van Rossum44941011999-01-05 18:02:24 +0000138 data = binascii.a2b_uu(s[:nbytes])
Barry Warsaw59dae8a2001-08-17 19:59:34 +0000139 if not quiet:
Walter Dörwaldd331b432005-11-22 14:12:21 +0000140 sys.stderr.write("Warning: %s\n" % v)
Guido van Rossum44941011999-01-05 18:02:24 +0000141 out_file.write(data)
142 s = in_file.readline()
Tim Peters79c86712001-07-11 04:08:49 +0000143 if not s:
Walter Dörwaldd331b432005-11-22 14:12:21 +0000144 raise Error('Truncated input file')
Andrew M. Kuchling5dba6f72006-11-20 13:39:37 +0000145 if opened:
146 out_file.close()
Guido van Rossum85347411994-09-09 11:10:15 +0000147
148def test():
Jack Jansen8b745121995-08-30 12:19:30 +0000149 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30 +0000150
Walter Dörwaldd331b432005-11-22 14:12:21 +0000151 import optparse
152 parser = optparse.OptionParser(usage='usage: %prog [-d] [-t] [input [output]]')
153 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
154 parser.add_option('-t', '--text', dest='text', help='data is text, encoded format unix-compatible text?', default=False, action='store_true')
155
156 (options, args) = parser.parse_args()
157 if len(args) > 2:
Anthony Baxterb4e41652006-04-07 05:39:17 +0000158 parser.error('incorrect number of arguments')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000159 sys.exit(1)
Tim Peterse1190062001-01-15 03:34:38 +0000160
Walter Dörwaldd331b432005-11-22 14:12:21 +0000161 input = sys.stdin
162 output = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30 +0000163 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000164 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30 +0000165 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000166 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30 +0000167
Walter Dörwaldd331b432005-11-22 14:12:21 +0000168 if options.decode:
169 if options.text:
Walter Dörwald09f0dd52005-11-21 19:10:07 +0000170 if isinstance(output, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000171 output = open(output, 'w')
172 else:
173 print sys.argv[0], ': cannot do -t to stdout'
174 sys.exit(1)
175 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000176 else:
Walter Dörwaldd331b432005-11-22 14:12:21 +0000177 if options.text:
Walter Dörwald09f0dd52005-11-21 19:10:07 +0000178 if isinstance(input, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000179 input = open(input, 'r')
180 else:
181 print sys.argv[0], ': cannot do -t from stdin'
182 sys.exit(1)
183 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000184
185if __name__ == '__main__':
186 test()