blob: 11a4e83f91f084440fb8ad1e1a526a0298ecfb5b [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 #
47 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:2448 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:3049 elif type(in_file) == type(''):
Fred Drake8152d322000-12-12 23:20:4550 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:2451 name = os.path.basename(in_file)
Fred Drake8152d322000-12-12 23:20:4552 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:2453 try:
54 mode = os.stat(in_file)[0]
55 except AttributeError:
56 pass
57 in_file = open(in_file, 'rb')
Jack Jansen8b745121995-08-30 12:19:3058 #
59 # Open out_file if it is a pathname
60 #
61 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:2462 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:3063 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:2464 out_file = open(out_file, 'w')
Jack Jansen8b745121995-08-30 12:19:3065 #
66 # Set defaults for name and mode
67 #
Fred Drake8152d322000-12-12 23:20:4568 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:2469 name = '-'
Fred Drake8152d322000-12-12 23:20:4570 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:2471 mode = 0666
Jack Jansen8b745121995-08-30 12:19:3072 #
73 # Write the data
74 #
75 out_file.write('begin %o %s\n' % ((mode&0777),name))
Guido van Rossum85347411994-09-09 11:10:1576 str = in_file.read(45)
77 while len(str) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:2478 out_file.write(binascii.b2a_uu(str))
79 str = in_file.read(45)
Guido van Rossum85347411994-09-09 11:10:1580 out_file.write(' \nend\n')
Guido van Rossum85347411994-09-09 11:10:1581
Guido van Rossum85347411994-09-09 11:10:1582
Jack Jansen8b745121995-08-30 12:19:3083def decode(in_file, out_file=None, mode=None):
84 """Decode uuencoded file"""
85 #
86 # Open the input file, if needed.
87 #
88 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:2489 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:3090 elif type(in_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:2491 in_file = open(in_file)
Jack Jansen8b745121995-08-30 12:19:3092 #
Guido van Rossum2ebaa171997-04-08 19:46:0293 # Read until a begin is encountered or we've exhausted the file
Jack Jansen8b745121995-08-30 12:19:3094 #
Guido van Rossum3ccd2f11997-04-08 19:46:5395 while 1:
Guido van Rossum45e2fbc1998-03-26 21:13:2496 hdr = in_file.readline()
97 if not hdr:
98 raise Error, 'No valid begin line found in input file'
99 if hdr[:5] != 'begin':
100 continue
Guido van Rossum62c11152001-01-10 19:14:28101 hdrfields = hdr.split(" ", 2)
Guido van Rossum45e2fbc1998-03-26 21:13:24102 if len(hdrfields) == 3 and hdrfields[0] == 'begin':
103 try:
Guido van Rossum62c11152001-01-10 19:14:28104 int(hdrfields[1], 8)
Guido van Rossum45e2fbc1998-03-26 21:13:24105 break
106 except ValueError:
107 pass
Fred Drake8152d322000-12-12 23:20:45108 if out_file is None:
Guido van Rossum62c11152001-01-10 19:14:28109 out_file = hdrfields[2].rstrip()
Fred Drake8152d322000-12-12 23:20:45110 if mode is None:
Guido van Rossum62c11152001-01-10 19:14:28111 mode = int(hdrfields[1], 8)
Jack Jansen8b745121995-08-30 12:19:30112 #
113 # Open the output file
114 #
115 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24116 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30117 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24118 fp = open(out_file, 'wb')
119 try:
120 os.path.chmod(out_file, mode)
121 except AttributeError:
122 pass
123 out_file = fp
Jack Jansen8b745121995-08-30 12:19:30124 #
125 # Main decoding loop
126 #
Guido van Rossum44941011999-01-05 18:02:24127 s = in_file.readline()
128 while s and s != 'end\n':
129 try:
130 data = binascii.a2b_uu(s)
131 except binascii.Error, v:
132 # Workaround for broken uuencoders by /Fredrik Lundh
133 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3
134 data = binascii.a2b_uu(s[:nbytes])
135 sys.stderr.write("Warning: %s\n" % str(v))
136 out_file.write(data)
137 s = in_file.readline()
Thomas Wouterse27a8b92001-07-11 11:38:20138 if not s:
Guido van Rossum45e2fbc1998-03-26 21:13:24139 raise Error, 'Truncated input file'
Guido van Rossum85347411994-09-09 11:10:15140
141def test():
Jack Jansen8b745121995-08-30 12:19:30142 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30143 import getopt
144
145 dopt = 0
146 topt = 0
147 input = sys.stdin
148 output = sys.stdout
149 ok = 1
150 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24151 optlist, args = getopt.getopt(sys.argv[1:], 'dt')
Jack Jansen8b745121995-08-30 12:19:30152 except getopt.error:
Guido van Rossum45e2fbc1998-03-26 21:13:24153 ok = 0
Jack Jansen8b745121995-08-30 12:19:30154 if not ok or len(args) > 2:
Guido van Rossum45e2fbc1998-03-26 21:13:24155 print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]'
156 print ' -d: Decode (in stead of encode)'
157 print ' -t: data is text, encoded format unix-compatible text'
158 sys.exit(1)
Tim Peterse1190062001-01-15 03:34:38159
Jack Jansen8b745121995-08-30 12:19:30160 for o, a in optlist:
Guido van Rossum45e2fbc1998-03-26 21:13:24161 if o == '-d': dopt = 1
162 if o == '-t': topt = 1
Jack Jansen8b745121995-08-30 12:19:30163
164 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24165 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30166 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24167 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30168
169 if dopt:
Guido van Rossum45e2fbc1998-03-26 21:13:24170 if topt:
171 if type(output) == type(''):
172 output = open(output, 'w')
173 else:
174 print sys.argv[0], ': cannot do -t to stdout'
175 sys.exit(1)
176 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15177 else:
Guido van Rossum45e2fbc1998-03-26 21:13:24178 if topt:
179 if type(input) == type(''):
180 input = open(input, 'r')
181 else:
182 print sys.argv[0], ': cannot do -t from stdin'
183 sys.exit(1)
184 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15185
186if __name__ == '__main__':
187 test()