
git-svn-id: https://tftpy.svn.sourceforge.net/svnroot/tftpy/trunk@20 63283fd4-ec1e-0410-9879-cb7f675518da
71 lines
2.2 KiB
Python
71 lines
2.2 KiB
Python
#!/usr/bin/env python
|
|
|
|
import sys, logging, os
|
|
from optparse import OptionParser
|
|
import tftpy
|
|
|
|
def main():
|
|
usage=""
|
|
parser = OptionParser(usage=usage)
|
|
parser.add_option('-H',
|
|
'--host',
|
|
action='store',
|
|
dest='host',
|
|
help='remote host or ip address')
|
|
parser.add_option('-p',
|
|
'--port',
|
|
action='store',
|
|
dest='port',
|
|
help='remote port to use (default: 69)',
|
|
default=69)
|
|
parser.add_option('-f',
|
|
'--filename',
|
|
action='store',
|
|
dest='filename',
|
|
help='filename to fetch')
|
|
parser.add_option('-b',
|
|
'--blocksize',
|
|
action='store',
|
|
dest='blocksize',
|
|
help='udp packet size to use (default: 512)',
|
|
default=512)
|
|
# FIXME - default should be same as --filename
|
|
parser.add_option('-o',
|
|
'--output',
|
|
action='store',
|
|
dest='output',
|
|
help='output file (default: same as requested filename)')
|
|
options, args = parser.parse_args()
|
|
if not options.host or not options.filename:
|
|
parser.print_help()
|
|
sys.exit(1)
|
|
|
|
if not options.output:
|
|
options.output = os.path.basename(options.filename)
|
|
|
|
class Progress(object):
|
|
def __init__(self, out):
|
|
self.progress = 0
|
|
self.out = out
|
|
def progresshook(self, pkt):
|
|
self.progress += len(pkt.data)
|
|
self.out("Downloaded %d bytes" % self.progress)
|
|
|
|
tftpy.setLogLevel(logging.INFO)
|
|
|
|
progresshook = Progress(tftpy.logger.info).progresshook
|
|
|
|
tftp_options = {}
|
|
if options.blocksize:
|
|
tftp_options['blksize'] = int(options.blocksize)
|
|
|
|
tclient = tftpy.TftpClient(options.host,
|
|
int(options.port),
|
|
tftp_options)
|
|
|
|
tclient.download(options.filename,
|
|
options.output,
|
|
progresshook)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|