blob: ecd76a86282a19333135fc1cb146cc3df7a36235 [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
6# Permission to use, copy, modify, and distribute this software and its
7# documentation for any purpose and without fee is hereby granted,
8# provided that the above copyright notice appear in all copies and that
9# both that copyright notice and this permission notice appear in
10# supporting documentation, and that the name of Lance Ellinghouse
11# not be used in advertising or publicity pertaining to distribution
12# 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
Jack Jansen0a2eaac1995-08-07 14:37:38 +000026#
Guido van Rossum85347411994-09-09 11:10:15 +000027# This file implements the UUencode and UUdecode functions.
28
Jack Jansen8b745121995-08-30 12:19:30 +000029# encode(in_file, out_file [,name, mode])
30# decode(in_file [, out_file, mode])
Guido van Rossum85347411994-09-09 11:10:15 +000031
Jack Jansen0a2eaac1995-08-07 14:37:38 +000032import binascii
Jack Jansen8b745121995-08-30 12:19:30 +000033import os
34import string
Guido van Rossumfbba3041998-10-22 16:18:25 +000035import sys
Guido van Rossum85347411994-09-09 11:10:15 +000036
Jack Jansen8b745121995-08-30 12:19:30 +000037Error = 'uu.Error'
38
39def encode(in_file, out_file, name=None, mode=None):
40 """Uuencode file"""
41 #
42 # If in_file is a pathname open it and change defaults
43 #
44 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000045 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:30 +000046 elif type(in_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000047 if name == None:
48 name = os.path.basename(in_file)
49 if mode == None:
50 try:
51 mode = os.stat(in_file)[0]
52 except AttributeError:
53 pass
54 in_file = open(in_file, 'rb')
Jack Jansen8b745121995-08-30 12:19:30 +000055 #
56 # Open out_file if it is a pathname
57 #
58 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000059 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30 +000060 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000061 out_file = open(out_file, 'w')
Jack Jansen8b745121995-08-30 12:19:30 +000062 #
63 # Set defaults for name and mode
64 #
65 if name == None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000066 name = '-'
Jack Jansen8b745121995-08-30 12:19:30 +000067 if mode == None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000068 mode = 0666
Jack Jansen8b745121995-08-30 12:19:30 +000069 #
70 # Write the data
71 #
72 out_file.write('begin %o %s\n' % ((mode&0777),name))
Guido van Rossum85347411994-09-09 11:10:15 +000073 str = in_file.read(45)
74 while len(str) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000075 out_file.write(binascii.b2a_uu(str))
76 str = in_file.read(45)
Guido van Rossum85347411994-09-09 11:10:15 +000077 out_file.write(' \nend\n')
Guido van Rossum85347411994-09-09 11:10:15 +000078
Guido van Rossum85347411994-09-09 11:10:15 +000079
Jack Jansen8b745121995-08-30 12:19:30 +000080def decode(in_file, out_file=None, mode=None):
81 """Decode uuencoded file"""
82 #
83 # Open the input file, if needed.
84 #
85 if in_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000086 in_file = sys.stdin
Jack Jansen8b745121995-08-30 12:19:30 +000087 elif type(in_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000088 in_file = open(in_file)
Jack Jansen8b745121995-08-30 12:19:30 +000089 #
Guido van Rossum2ebaa171997-04-08 19:46:02 +000090 # Read until a begin is encountered or we've exhausted the file
Jack Jansen8b745121995-08-30 12:19:30 +000091 #
Guido van Rossum3ccd2f11997-04-08 19:46:53 +000092 while 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +000093 hdr = in_file.readline()
94 if not hdr:
95 raise Error, 'No valid begin line found in input file'
96 if hdr[:5] != 'begin':
97 continue
98 hdrfields = string.split(hdr)
99 if len(hdrfields) == 3 and hdrfields[0] == 'begin':
100 try:
101 string.atoi(hdrfields[1], 8)
102 break
103 except ValueError:
104 pass
Jack Jansen8b745121995-08-30 12:19:30 +0000105 if out_file == None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000106 out_file = hdrfields[2]
Jack Jansen8b745121995-08-30 12:19:30 +0000107 if mode == None:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000108 mode = string.atoi(hdrfields[1], 8)
Jack Jansen8b745121995-08-30 12:19:30 +0000109 #
110 # Open the output file
111 #
112 if out_file == '-':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000113 out_file = sys.stdout
Jack Jansen8b745121995-08-30 12:19:30 +0000114 elif type(out_file) == type(''):
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000115 fp = open(out_file, 'wb')
116 try:
117 os.path.chmod(out_file, mode)
118 except AttributeError:
119 pass
120 out_file = fp
Jack Jansen8b745121995-08-30 12:19:30 +0000121 #
122 # Main decoding loop
123 #
Guido van Rossum85347411994-09-09 11:10:15 +0000124 str = in_file.readline()
Jack Jansen8b745121995-08-30 12:19:30 +0000125 while str and str != 'end\n':
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000126 out_file.write(binascii.a2b_uu(str))
127 str = in_file.readline()
Jack Jansen8b745121995-08-30 12:19:30 +0000128 if not str:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000129 raise Error, 'Truncated input file'
Guido van Rossum85347411994-09-09 11:10:15 +0000130
131def test():
Jack Jansen8b745121995-08-30 12:19:30 +0000132 """uuencode/uudecode main program"""
Jack Jansen8b745121995-08-30 12:19:30 +0000133 import getopt
134
135 dopt = 0
136 topt = 0
137 input = sys.stdin
138 output = sys.stdout
139 ok = 1
140 try:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000141 optlist, args = getopt.getopt(sys.argv[1:], 'dt')
Jack Jansen8b745121995-08-30 12:19:30 +0000142 except getopt.error:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000143 ok = 0
Jack Jansen8b745121995-08-30 12:19:30 +0000144 if not ok or len(args) > 2:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000145 print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]'
146 print ' -d: Decode (in stead of encode)'
147 print ' -t: data is text, encoded format unix-compatible text'
148 sys.exit(1)
149
Jack Jansen8b745121995-08-30 12:19:30 +0000150 for o, a in optlist:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000151 if o == '-d': dopt = 1
152 if o == '-t': topt = 1
Jack Jansen8b745121995-08-30 12:19:30 +0000153
154 if len(args) > 0:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000155 input = args[0]
Jack Jansen8b745121995-08-30 12:19:30 +0000156 if len(args) > 1:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000157 output = args[1]
Jack Jansen8b745121995-08-30 12:19:30 +0000158
159 if dopt:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000160 if topt:
161 if type(output) == type(''):
162 output = open(output, 'w')
163 else:
164 print sys.argv[0], ': cannot do -t to stdout'
165 sys.exit(1)
166 decode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000167 else:
Guido van Rossum45e2fbc1998-03-26 21:13:24 +0000168 if topt:
169 if type(input) == type(''):
170 input = open(input, 'r')
171 else:
172 print sys.argv[0], ': cannot do -t from stdin'
173 sys.exit(1)
174 encode(input, output)
Guido van Rossum85347411994-09-09 11:10:15 +0000175
176if __name__ == '__main__':
177 test()