blob: 8eaea5960dffe14461ccb4c07ecb2f8f6c255a2a [file] [log] [blame]
Guido van Rossum105bd981997-07-11 18:39:031#! /usr/bin/env python
2
Guido van Rossum85347411994-09-09 11:10:153# Copyright 1994 by Lance Ellinghouse
4# Cathedral City, California Republic, United States of America.
5# All Rights Reserved
Tim Peterse1190062001-01-15 03:34:386# 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:158# provided that the above copyright notice appear in all copies and that
Tim Peterse1190062001-01-15 03:34:389# both that copyright notice and this permission notice appear in
Guido van Rossum85347411994-09-09 11:10:1510# supporting documentation, and that the name of Lance Ellinghouse
Tim Peterse1190062001-01-15 03:34:3811# not be used in advertising or publicity pertaining to distribution
Guido van Rossum85347411994-09-09 11:10:1512# 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:3820#
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:3025# - Arguments more compliant with python standard
Guido van Rossum85347411994-09-09 11:10:1526
Guido van Rossume7b146f2000-02-04 15:28:4227"""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:1532
Jack Jansen0a2eaac1995-08-07 14:37:3833import binascii
Jack Jansen8b745121995-08-30 12:19:3034import os
Guido van Rossumfbba3041998-10-22 16:18:2535import sys
Guido van Rossum85347411994-09-09 11:10:1536
Skip Montanaro40fc1602001-03-01 04:27:1937__all__ = ["Error", "encode", "decode"]
38
Fred Drake9b8d8012000-08-17 04:45:1339class Error(Exception):
40 pass
Jack Jansen8b745121995-08-30 12:19:3041
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 Pitrou3917c092010-10-31 13:12:4847 opened_files = []
48 try:
49 if in_file == '-':
50 in_file = sys.stdin
51 elif isinstance(in_file, basestring):
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
66 elif isinstance(out_file, basestring):
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:4572 if name is None:
Antoine Pitrou3917c092010-10-31 13:12:4873 name = '-'
Fred Drake8152d322000-12-12 23:20:4574 if mode is None:
Antoine Pitrou3917c092010-10-31 13:12:4875 mode = 0666
Matthew Rollingsa016d4e2019-12-03 18:18:5276
77 #
78 # Remove newline chars from name
79 #
80 name = name.replace('\n','\\n')
81 name = name.replace('\r','\\r')
82
Antoine Pitrou3917c092010-10-31 13:12:4883 #
84 # Write the data
85 #
86 out_file.write('begin %o %s\n' % ((mode&0777),name))
Walter Dörwald91043f32005-11-22 12:58:1987 data = in_file.read(45)
Antoine Pitrou3917c092010-10-31 13:12:4888 while len(data) > 0:
89 out_file.write(binascii.b2a_uu(data))
90 data = in_file.read(45)
91 out_file.write(' \nend\n')
92 finally:
93 for f in opened_files:
94 f.close()
Guido van Rossum85347411994-09-09 11:10:1595
Guido van Rossum85347411994-09-09 11:10:1596
Barry Warsaw59dae8a2001-08-17 19:59:3497def decode(in_file, out_file=None, mode=None, quiet=0):
Jack Jansen8b745121995-08-30 12:19:3098 """Decode uuencoded file"""
99 #
100 # Open the input file, if needed.
101 #
Antoine Pitrou61d14b72010-10-31 16:17:36102 opened_files = []
Jack Jansen8b745121995-08-30 12:19:30103 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24104 in_file = sys.stdin
Walter Dörwald09f0dd52005-11-21 19:10:07105 elif isinstance(in_file, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24106 in_file = open(in_file)
Antoine Pitrou61d14b72010-10-31 16:17:36107 opened_files.append(in_file)
108 try:
109 #
110 # Read until a begin is encountered or we've exhausted the file
111 #
112 while True:
113 hdr = in_file.readline()
114 if not hdr:
115 raise Error('No valid begin line found in input file')
116 if not hdr.startswith('begin'):
117 continue
118 hdrfields = hdr.split(' ', 2)
119 if len(hdrfields) == 3 and hdrfields[0] == 'begin':
120 try:
121 int(hdrfields[1], 8)
122 break
123 except ValueError:
124 pass
125 if out_file is None:
126 out_file = hdrfields[2].rstrip()
127 if os.path.exists(out_file):
128 raise Error('Cannot overwrite existing file: %s' % out_file)
129 if mode is None:
130 mode = int(hdrfields[1], 8)
131 #
132 # Open the output file
133 #
134 if out_file == '-':
135 out_file = sys.stdout
136 elif isinstance(out_file, basestring):
137 fp = open(out_file, 'wb')
Guido van Rossum45e2fbc1998-03-26 21:13:24138 try:
Antoine Pitrou61d14b72010-10-31 16:17:36139 os.path.chmod(out_file, mode)
140 except AttributeError:
Guido van Rossum45e2fbc1998-03-26 21:13:24141 pass
Antoine Pitrou61d14b72010-10-31 16:17:36142 out_file = fp
143 opened_files.append(out_file)
144 #
145 # Main decoding loop
146 #
Guido van Rossum44941011999-01-05 18:02:24147 s = in_file.readline()
Antoine Pitrou61d14b72010-10-31 16:17:36148 while s and s.strip() != 'end':
149 try:
150 data = binascii.a2b_uu(s)
151 except binascii.Error, v:
152 # Workaround for broken uuencoders by /Fredrik Lundh
153 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) // 3
154 data = binascii.a2b_uu(s[:nbytes])
155 if not quiet:
156 sys.stderr.write("Warning: %s\n" % v)
157 out_file.write(data)
158 s = in_file.readline()
159 if not s:
160 raise Error('Truncated input file')
161 finally:
162 for f in opened_files:
163 f.close()
Guido van Rossum85347411994-09-09 11:10:15164
165def test():
Jack Jansen8b745121995-08-30 12:19:30166 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30167
Walter Dörwaldd331b432005-11-22 14:12:21168 import optparse
169 parser = optparse.OptionParser(usage='usage: %prog [-d] [-t] [input [output]]')
170 parser.add_option('-d', '--decode', dest='decode', help='Decode (instead of encode)?', default=False, action='store_true')
171 parser.add_option('-t', '--text', dest='text', help='data is text, encoded format unix-compatible text?', default=False, action='store_true')
172
173 (options, args) = parser.parse_args()
174 if len(args) > 2:
Anthony Baxterb4e41652006-04-07 05:39:17175 parser.error('incorrect number of arguments')
Guido van Rossum45e2fbc1998-03-26 21:13:24176 sys.exit(1)
Tim Peterse1190062001-01-15 03:34:38177
Walter Dörwaldd331b432005-11-22 14:12:21178 input = sys.stdin
179 output = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30180 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24181 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30182 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24183 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30184
Walter Dörwaldd331b432005-11-22 14:12:21185 if options.decode:
186 if options.text:
Walter Dörwald09f0dd52005-11-21 19:10:07187 if isinstance(output, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24188 output = open(output, 'w')
189 else:
190 print sys.argv[0], ': cannot do -t to stdout'
191 sys.exit(1)
192 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15193 else:
Walter Dörwaldd331b432005-11-22 14:12:21194 if options.text:
Walter Dörwald09f0dd52005-11-21 19:10:07195 if isinstance(input, basestring):
Guido van Rossum45e2fbc1998-03-26 21:13:24196 input = open(input, 'r')
197 else:
198 print sys.argv[0], ': cannot do -t from stdin'
199 sys.exit(1)
200 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15201
202if __name__ == '__main__':
203 test()