blob: d68d29374a8bbfafe7108fca56c40730215ada5e [file] [log] [blame]
Benjamin Peterson90f5ba52010-03-11 22:53:45 +00001#! /usr/bin/env python3
Guido van Rossum105bd981997-07-11 18:39:03 +00002
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 #
Antoine Pitroubfa34702010-10-30 13:03:56 +000047 opened_files = []
48 try:
49 if in_file == '-':
50 in_file = sys.stdin.buffer
51 elif isinstance(in_file, str):
52 if name is None:
53 name = os.path.basename(in_file)
54 if mode is None:
55 try:
56 mode = os.stat(in_file).st_mode
57 except AttributeError:
58 pass
59 in_file = open(in_file, 'rb')
60 opened_files.append(in_file)
61 #
62 # Open out_file if it is a pathname
63 #
64 if out_file == '-':
65 out_file = sys.stdout.buffer
66 elif isinstance(out_file, str):
67 out_file = open(out_file, 'wb')
68 opened_files.append(out_file)
69 #
70 # Set defaults for name and mode
71 #
Fred Drake8152d322000-12-12 23:20:45 +000072 if name is None:
Antoine Pitroubfa34702010-10-30 13:03:56 +000073 name = '-'
Fred Drake8152d322000-12-12 23:20:45 +000074 if mode is None:
Antoine Pitroubfa34702010-10-30 13:03:56 +000075 mode = 0o666
76 #
77 # Write the data
78 #
79 out_file.write(('begin %o %s\n' % ((mode & 0o777), name)).encode("ascii"))
Walter Dörwald91043f32005-11-22 12:58:19 +000080 data = in_file.read(45)
Antoine Pitroubfa34702010-10-30 13:03:56 +000081 while len(data) > 0:
82 out_file.write(binascii.b2a_uu(data))
83 data = in_file.read(45)
84 out_file.write(b' \nend\n')
85 finally:
86 for f in opened_files:
87 f.close()
Guido van Rossum85347411994-09-09 11:10:15 +000088
Guido van Rossum85347411994-09-09 11:10:15 +000089
Georg Brandlfe991052009-09-16 15:54:04 +000090def decode(in_file, out_file=None, mode=None, quiet=False):
Jack Jansen8b745121995-08-30 12:19:30 +000091 """Decode uuencoded file"""
92 #
93 # Open the input file, if needed.
94 #
Antoine Pitrouf5698262010-10-31 16:04:14 +000095 opened_files = []
Jack Jansen8b745121995-08-30 12:19:30 +000096 if in_file == '-':
Guido van Rossum34d19282007-08-09 01:03:29 +000097 in_file = sys.stdin.buffer
Guido van Rossum3172c5d2007-10-16 18:12:55 +000098 elif isinstance(in_file, str):
Guido van Rossum34d19282007-08-09 01:03:29 +000099 in_file = open(in_file, 'rb')
Antoine Pitrouf5698262010-10-31 16:04:14 +0000100 opened_files.append(in_file)
101
102 try:
103 #
104 # Read until a begin is encountered or we've exhausted the file
105 #
106 while True:
107 hdr = in_file.readline()
108 if not hdr:
109 raise Error('No valid begin line found in input file')
110 if not hdr.startswith(b'begin'):
111 continue
112 hdrfields = hdr.split(b' ', 2)
113 if len(hdrfields) == 3 and hdrfields[0] == b'begin':
114 try:
115 int(hdrfields[1], 8)
116 break
117 except ValueError:
118 pass
119 if out_file is None:
120 # If the filename isn't ASCII, what's up with that?!?
121 out_file = hdrfields[2].rstrip(b' \t\r\n\f').decode("ascii")
122 if os.path.exists(out_file):
123 raise Error('Cannot overwrite existing file: %s' % out_file)
124 if mode is None:
125 mode = int(hdrfields[1], 8)
126 #
127 # Open the output file
128 #
129 if out_file == '-':
130 out_file = sys.stdout.buffer
131 elif isinstance(out_file, str):
132 fp = open(out_file, 'wb')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000133 try:
Antoine Pitrouf5698262010-10-31 16:04:14 +0000134 os.path.chmod(out_file, mode)
135 except AttributeError:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000136 pass
Antoine Pitrouf5698262010-10-31 16:04:14 +0000137 out_file = fp
138 opened_files.append(out_file)
139 #
140 # Main decoding loop
141 #
Guido van Rossum44941011999-01-05 18:02:24 +0000142 s = in_file.readline()
Antoine Pitrouf5698262010-10-31 16:04:14 +0000143 while s and s.strip(b' \t\r\n\f') != b'end':
144 try:
145 data = binascii.a2b_uu(s)
146 except binascii.Error as v:
147 # Workaround for broken uuencoders by /Fredrik Lundh
148 nbytes = (((s[0]-32) & 63) * 4 + 5) // 3
149 data = binascii.a2b_uu(s[:nbytes])
150 if not quiet:
151 sys.stderr.write("Warning: %s\n" % v)
152 out_file.write(data)
153 s = in_file.readline()
154 if not s:
155 raise Error('Truncated input file')
156 finally:
157 for f in opened_files:
158 f.close()
Guido van Rossum85347411994-09-09 11:10:15 +0000159
160def test():
Jack Jansen8b745121995-08-30 12:19:30 +0000161 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30 +0000162
Walter Dörwaldd331b432005-11-22 14:12:21 +0000163 import optparse
164 parser = optparse.OptionParser(usage='usage: %prog [-d] [-t] [input [output]]')
165 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
166 parser.add_option('-t', '--text', dest='text', help='data is text, encoded format unix-compatible text?', default=False, action='store_true')
167
168 (options, args) = parser.parse_args()
169 if len(args) > 2:
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000170 parser.error('incorrect number of arguments')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000171 sys.exit(1)
Tim Peterse1190062001-01-15 03:34:38 +0000172
Guido van Rossum34d19282007-08-09 01:03:29 +0000173 # Use the binary streams underlying stdin/stdout
174 input = sys.stdin.buffer
175 output = sys.stdout.buffer
Jack Jansen8b745121995-08-30 12:19:30 +0000176 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000177 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30 +0000178 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000179 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30 +0000180
Walter Dörwaldd331b432005-11-22 14:12:21 +0000181 if options.decode:
182 if options.text:
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000183 if isinstance(output, str):
Guido van Rossum34d19282007-08-09 01:03:29 +0000184 output = open(output, 'wb')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000185 else:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000186 print(sys.argv[0], ': cannot do -t to stdout')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000187 sys.exit(1)
188 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000189 else:
Walter Dörwaldd331b432005-11-22 14:12:21 +0000190 if options.text:
Guido van Rossum3172c5d2007-10-16 18:12:55 +0000191 if isinstance(input, str):
Guido van Rossum34d19282007-08-09 01:03:29 +0000192 input = open(input, 'rb')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000193 else:
Guido van Rossumbe19ed72007-02-09 05:37:30 +0000194 print(sys.argv[0], ': cannot do -t from stdin')
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000195 sys.exit(1)
196 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000197
198if __name__ == '__main__':
199 test()