Skip to content
Snippets Groups Projects
Commit 9bc49fb4 authored by Glenn Glazer's avatar Glenn Glazer
Browse files

SL-323: post review comments on downloader

parent cb90597b
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env python #!/usr/bin/env python
# $LicenseInfo:firstyear=2016&license=internal$
#
# Copyright (c) 2016, Linden Research, Inc. # Copyright (c) 2016, Linden Research, Inc.
# #
# The following source code is PROPRIETARY AND CONFIDENTIAL. Use of # The following source code is PROPRIETARY AND CONFIDENTIAL. Use of
...@@ -14,8 +12,8 @@ ...@@ -14,8 +12,8 @@
# ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO # ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
# WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, # WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
# COMPLETENESS OR PERFORMANCE. # COMPLETENESS OR PERFORMANCE.
# $LicenseInfo:firstyear=2013&license=viewerlgpl$ # $LicenseInfo:firstyear=2016&license=viewerlgpl$
# Copyright (c) 2013, Linden Research, Inc. # Copyright (c) 2016, Linden Research, Inc.
# $/LicenseInfo$ # $/LicenseInfo$
""" """
...@@ -36,8 +34,10 @@ ...@@ -36,8 +34,10 @@
import requests import requests
import threading import threading
#module default
CHUNK_SIZE = 1024
def download_update(url = None, download_dir = None, size = None, progressbar = False, chunk_size = 1024): def download_update(url = None, download_dir = None, size = None, progressbar = False, chunk_size = CHUNK_SIZE):
#url to download from #url to download from
#download_dir to download to #download_dir to download to
#total size (for progressbar) of download #total size (for progressbar) of download
...@@ -54,6 +54,9 @@ def download_update(url = None, download_dir = None, size = None, progressbar = ...@@ -54,6 +54,9 @@ def download_update(url = None, download_dir = None, size = None, progressbar =
frame = IUM.InstallerUserMessage(title = "Second Life Downloader", icon_name="head-sl-logo.gif") frame = IUM.InstallerUserMessage(title = "Second Life Downloader", icon_name="head-sl-logo.gif")
frame.progress_bar(message = "Download Progress", size = size, pb_queue = queue) frame.progress_bar(message = "Download Progress", size = size, pb_queue = queue)
frame.mainloop() frame.mainloop()
else:
#nothing for the main thread to do
down_thread.join()
class ThreadedDownload(threading.Thread): class ThreadedDownload(threading.Thread):
def __init__(self, req, filename, chunk_size, progressbar, in_queue): def __init__(self, req, filename, chunk_size, progressbar, in_queue):
...@@ -78,7 +81,7 @@ def main(): ...@@ -78,7 +81,7 @@ def main():
parser.add_argument('--dir', dest='download_dir', help='directory to be downloaded to', required=True) parser.add_argument('--dir', dest='download_dir', help='directory to be downloaded to', required=True)
parser.add_argument('--pb', dest='progressbar', help='whether or not to show a progressbar', action="store_true", default = False) parser.add_argument('--pb', dest='progressbar', help='whether or not to show a progressbar', action="store_true", default = False)
parser.add_argument('--size', dest='size', help='size of download for progressbar') parser.add_argument('--size', dest='size', help='size of download for progressbar')
parser.add_argument('--chunk_size', dest='chunk_size', help='max portion size of download to be loaded in memory in bytes.') parser.add_argument('--chunk_size', dest='chunk_size', default=CHUNK_SIZE, help='max portion size of download to be loaded in memory in bytes.')
args = parser.parse_args() args = parser.parse_args()
download_update(url = args.url, download_dir = args.download_dir, size = args.size, progressbar = args.progressbar, chunk_size = args.chunk_size) download_update(url = args.url, download_dir = args.download_dir, size = args.size, progressbar = args.progressbar, chunk_size = args.chunk_size)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment