Commit 8b745126 authored by Jack Jansen's avatar Jack Jansen

Changed arguments and added a lot of functionality besides

parent ac4f8d31
...@@ -21,115 +21,149 @@ ...@@ -21,115 +21,149 @@
# - Use binascii module to do the actual line-by-line conversion # - Use binascii module to do the actual line-by-line conversion
# between ascii and binary. This results in a 1000-fold speedup. The C # between ascii and binary. This results in a 1000-fold speedup. The C
# version is still 5 times faster, though. # version is still 5 times faster, though.
# - Arguments more compliant with python standard
# #
# This file implements the UUencode and UUdecode functions. # This file implements the UUencode and UUdecode functions.
# encode(filename, mode, in_file, out_file) # encode(in_file, out_file [,name, mode])
# decode(filename, mode, in_file) # decode(in_file [, out_file, mode])
# decode(in_file, out_file)
# decode(in_file)
import binascii import binascii
import os
import string
# encode a fileobject and write out to a file object Error = 'uu.Error'
def encode(filename, mode, in_file, out_file):
out_file.write('begin %o %s\n' % ((mode&0777),filename)) def encode(in_file, out_file, name=None, mode=None):
"""Uuencode file"""
#
# If in_file is a pathname open it and change defaults
#
if in_file == '-':
in_file = sys.stdin
elif type(in_file) == type(''):
if name == None:
name = basename(in_file)
if mode == None:
try:
mode = os.path.stat(in_file)[0]
except AttributeError:
pass
in_file = open(in_file, 'rb')
#
# Open out_file if it is a pathname
#
if out_file == '-':
out_file = sys.stdout
elif type(out_file) == type(''):
out_file = open(out_file, 'w')
#
# Set defaults for name and mode
#
if name == None:
name = '-'
if mode == None:
mode = 0666
#
# Write the data
#
out_file.write('begin %o %s\n' % ((mode&0777),name))
str = in_file.read(45) str = in_file.read(45)
while len(str) > 0: while len(str) > 0:
out_file.write(binascii.b2a_uu(str)) out_file.write(binascii.b2a_uu(str))
str = in_file.read(45) str = in_file.read(45)
out_file.write(' \nend\n') out_file.write(' \nend\n')
return None
# decode(filename, mode, in_file) def decode(in_file, out_file=None, mode=None):
# decode(in_file, out_file) """Decode uuencoded file"""
# decode(in_file) #
def decode(*args): # Open the input file, if needed.
ok = 1 #
_setup = None if in_file == '-':
out_file = None in_file = sys.stdin
if len(args) == 3: elif type(in_file) == type(''):
filename, mode, in_file = args in_file = open(in_file)
if type(filename) != type(''): #
ok = 0 # Read the header line, and fill in optional args if needed
if type(mode) != type(0): #
ok = 0 hdr = in_file.readline()
try: if not hdr:
_ = getattr(in_file,'readline') raise Error, 'Empty input file'
except AttributeError: hdrfields = string.split(hdr)
ok = 0 if len(hdrfields) <> 3 or hdrfields[0] <> 'begin':
def _setup(out_file,args): raise Error, ('Incorrect uu header line', hdr)
filename, mode, in_file = args if out_file == None:
# open file as specified and assign out_file for later use out_file = hdrfields[2]
out_file = open(filename,'w',mode) if mode == None:
_out_file_orig = 0 mode = string.atoi(hdrfields[1])
_ = in_file.readline() #
return (out_file,_out_file_orig) # Open the output file
elif len(args) == 2: #
in_file, out_file = args if out_file == '-':
try: out_file = sys.stdout
_ = getattr(in_file,'readline') elif type(out_file) == type(''):
_ = getattr(out_file,'write') fp = open(out_file, 'wb')
except AttributeError:
ok = 0
def _setup(out_file, args):
in_file, out_file = args
# Toss the 'begin mode filename' part.. not needed
_ = in_file.readline()
_out_file_orig = 1
return (out_file,_out_file_orig)
elif len(args) == 1:
in_file = args[0]
try: try:
_ = getattr(in_file,'readline') os.path.chmod(out_file, mode)
except AttributeError: except AttributeError:
ok = 0 pass
def _setup(out_file, args): out_file = fp
import strop #
in_file = args[0] # Main decoding loop
# open file as specified in uu file and #
# assign out_file for later use
i = in_file.readline()
i = strop.strip(i)
if 'begin' != i[:5]:
raise IOError, 'input file not in UUencoded format'
[dummy, mode, filename] = strop.split(i)
mode = strop.atoi(mode, 8)
out_file = open(filename,'w',mode)
_out_file_orig = 0
return (out_file,_out_file_orig)
if ok != 1:
raise SyntaxError, 'must be (filename, mode, in_file) or (in_file,out_file) or (in_file)'
out_file, _out_file_orig = _setup(out_file, args)
str = in_file.readline() str = in_file.readline()
while len(str) > 0 and str != ' \n' and str != 'end\n': while str and str != 'end\n':
out_file.write(binascii.a2b_uu(str)) out_file.write(binascii.a2b_uu(str))
str = in_file.readline() str = in_file.readline()
if _out_file_orig == 0: if not str:
out_file.close() raise Error, 'Truncated input file'
del out_file
return None
def test(): def test():
"""uuencode/uudecode main program"""
import sys import sys
if sys.argv[1:2] == ['-d']: import getopt
if sys.argv[2:]:
decode(open(sys.argv[2]), sys.stdout) dopt = 0
else: topt = 0
decode(sys.stdin, sys.stdout) input = sys.stdin
elif sys.argv[1:2] == ['-e']: output = sys.stdout
if sys.argv[2:]: ok = 1
file = sys.argv[2] try:
fp = open(file) optlist, args = getopt.getopt(sys.argv[1:], 'dt')
else: except getopt.error:
file = '-' ok = 0
fp = sys.stdin if not ok or len(args) > 2:
encode(file, 0644, fp, sys.stdout) print 'Usage:', sys.argv[0], '[-d] [-t] [input [output]]'
print ' -d: Decode (in stead of encode)'
print ' -t: data is text, encoded format unix-compatible text'
sys.exit(1)
for o, a in optlist:
if o == '-d': dopt = 1
if o == '-t': topt = 1
if len(args) > 0:
input = args[0]
if len(args) > 1:
output = args[1]
if dopt:
if topt:
if type(output) == type(''):
output = open(output, 'w')
else:
print sys.argv[0], ': cannot do -t to stdout'
sys.exit(1)
decode(input, output)
else: else:
print 'usage: uu -d [file]; (to decode)' if topt:
print 'or: uu -e [file]; (to encode)' if type(input) == type(''):
sys.exit(2) input = open(input, 'r')
else:
print sys.argv[0], ': cannot do -t from stdin'
sys.exit(1)
encode(input, output)
if __name__ == '__main__': if __name__ == '__main__':
test() test()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment