blob: 37bdf6af565ac75b19729bbe1c97bdda93516556 [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
Fred Drake9b8d8012000-08-17 04:45:13 +000037class Error(Exception):
38 pass
Jack Jansen8b745121995-08-30 12:19:30 +000039
40def encode(in_file, out_file, name=None, mode=None):
41 """Uuencode file"""
42 #
43 # If in_file is a pathname open it and change defaults
44 #
45 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000046 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:30 +000047 elif type(in_file) == type(''):
Fred Drake8152d322000-12-12 23:20:45 +000048 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000049 name = os.path.basename(in_file)
Fred Drake8152d322000-12-12 23:20:45 +000050 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000051 try:
52 mode = os.stat(in_file)[0]
53 except AttributeError:
54 pass
55 in_file = open(in_file, 'rb')
Jack Jansen8b745121995-08-30 12:19:30 +000056 #
57 # Open out_file if it is a pathname
58 #
59 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000060 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30 +000061 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000062 out_file = open(out_file, 'w')
Jack Jansen8b745121995-08-30 12:19:30 +000063 #
64 # Set defaults for name and mode
65 #
Fred Drake8152d322000-12-12 23:20:45 +000066 if name is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000067 name = '-'
Fred Drake8152d322000-12-12 23:20:45 +000068 if mode is None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000069 mode = 0666
Jack Jansen8b745121995-08-30 12:19:30 +000070 #
71 # Write the data
72 #
73 out_file.write('begin %o %s\n' % ((mode&0777),name))
Guido van Rossum85347411994-09-09 11:10:15 +000074 str = in_file.read(45)
75 while len(str) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000076 out_file.write(binascii.b2a_uu(str))
77 str = in_file.read(45)
Guido van Rossum85347411994-09-09 11:10:15 +000078 out_file.write(' \nend\n')
Guido van Rossum85347411994-09-09 11:10:15 +000079
Guido van Rossum85347411994-09-09 11:10:15 +000080
Jack Jansen8b745121995-08-30 12:19:30 +000081def decode(in_file, out_file=None, mode=None):
82 """Decode uuencoded file"""
83 #
84 # Open the input file, if needed.
85 #
86 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000087 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:30 +000088 elif type(in_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000089 in_file = open(in_file)
Jack Jansen8b745121995-08-30 12:19:30 +000090 #
Guido van Rossum2ebaa171997-04-08 19:46:02 +000091 # Read until a begin is encountered or we've exhausted the file
Jack Jansen8b745121995-08-30 12:19:30 +000092 #
Guido van Rossum3ccd2f11997-04-08 19:46:53 +000093 while 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000094 hdr = in_file.readline()
95 if not hdr:
96 raise Error, 'No valid begin line found in input file'
97 if hdr[:5] != 'begin':
98 continue
Guido van Rossum62c11152001-01-10 19:14:28 +000099 hdrfields = hdr.split(" ", 2)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000100 if len(hdrfields) == 3 and hdrfields[0] == 'begin':
101 try:
Guido van Rossum62c11152001-01-10 19:14:28 +0000102 int(hdrfields[1], 8)
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000103 break
104 except ValueError:
105 pass
Fred Drake8152d322000-12-12 23:20:45 +0000106 if out_file is None:
Guido van Rossum62c11152001-01-10 19:14:28 +0000107 out_file = hdrfields[2].rstrip()
Fred Drake8152d322000-12-12 23:20:45 +0000108 if mode is None:
Guido van Rossum62c11152001-01-10 19:14:28 +0000109 mode = int(hdrfields[1], 8)
Jack Jansen8b745121995-08-30 12:19:30 +0000110 #
111 # Open the output file
112 #
113 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000114 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30 +0000115 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000116 fp = open(out_file, 'wb')
117 try:
118 os.path.chmod(out_file, mode)
119 except AttributeError:
120 pass
121 out_file = fp
Jack Jansen8b745121995-08-30 12:19:30 +0000122 #
123 # Main decoding loop
124 #
Guido van Rossum44941011999-01-05 18:02:24 +0000125 s = in_file.readline()
126 while s and s != 'end\n':
127 try:
128 data = binascii.a2b_uu(s)
129 except binascii.Error, v:
130 # Workaround for broken uuencoders by /Fredrik Lundh
131 nbytes = (((ord(s[0])-32) & 63) * 4 + 5) / 3
132 data = binascii.a2b_uu(s[:nbytes])
133 sys.stderr.write("Warning: %s\n" % str(v))
134 out_file.write(data)
135 s = in_file.readline()
Jack Jansen8b745121995-08-30 12:19:30 +0000136 if not str:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000137 raise Error, 'Truncated input file'
Guido van Rossum85347411994-09-09 11:10:15 +0000138
139def test():
Jack Jansen8b745121995-08-30 12:19:30 +0000140 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30 +0000141 import getopt
142
143 dopt = 0
144 topt = 0
145 input = sys.stdin
146 output = sys.stdout
147 ok = 1
148 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000149 optlist, args = getopt.getopt(sys.argv[1:], 'dt')
Jack Jansen8b745121995-08-30 12:19:30 +0000150 except getopt.error:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000151 ok = 0
Jack Jansen8b745121995-08-30 12:19:30 +0000152 if not ok or len(args) > 2:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000153 print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]'
154 print ' -d: Decode (in stead of encode)'
155 print ' -t: data is text, encoded format unix-compatible text'
156 sys.exit(1)
Tim Peterse1190062001-01-15 03:34:38 +0000157
Jack Jansen8b745121995-08-30 12:19:30 +0000158 for o, a in optlist:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000159 if o == '-d': dopt = 1
160 if o == '-t': topt = 1
Jack Jansen8b745121995-08-30 12:19:30 +0000161
162 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000163 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30 +0000164 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000165 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30 +0000166
167 if dopt:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000168 if topt:
169 if type(output) == type(''):
170 output = open(output, 'w')
171 else:
172 print sys.argv[0], ': cannot do -t to stdout'
173 sys.exit(1)
174 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000175 else:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000176 if topt:
177 if type(input) == type(''):
178 input = open(input, 'r')
179 else:
180 print sys.argv[0], ': cannot do -t from stdin'
181 sys.exit(1)
182 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000183
184if __name__ == '__main__':
185 test()