2014-05-04 21:17:07 +08:00
|
|
|
#!/usr/bin/env python
|
2014-05-04 18:51:00 +08:00
|
|
|
#coding=utf-8
|
|
|
|
#
|
|
|
|
# ./download-deps.py
|
|
|
|
#
|
|
|
|
# Download Cocos2D-X resources from github (https://github.com/minggo/cocos2d-x-resources) and extract from ZIP
|
|
|
|
#
|
|
|
|
# Helps prevent repo bloat due to large binary files since they can
|
|
|
|
# be hosted separately.
|
|
|
|
#
|
|
|
|
|
|
|
|
import urllib2
|
|
|
|
import os.path,zipfile
|
|
|
|
import shutil
|
|
|
|
import sys
|
2014-05-04 21:17:07 +08:00
|
|
|
import traceback
|
2014-05-04 22:00:12 +08:00
|
|
|
import distutils
|
2014-05-04 18:51:00 +08:00
|
|
|
from sys import stdout
|
2014-05-04 22:00:12 +08:00
|
|
|
from pkg_resources import ensure_directory
|
|
|
|
from distutils.errors import DistutilsError
|
|
|
|
from distutils.dir_util import copy_tree, remove_tree
|
2014-05-04 18:51:00 +08:00
|
|
|
|
|
|
|
prefix = 'https://codeload.github.com/minggo/cocos2d-x-resources/zip/'
|
|
|
|
filename = 'cocos2d-x-deps-v3-1'
|
|
|
|
extracted_folder_name='cocos2d-x-resources-' + filename
|
|
|
|
|
|
|
|
def download_file(url, file_name):
|
|
|
|
u = urllib2.urlopen(url)
|
|
|
|
f = open(file_name, 'wb')
|
|
|
|
meta = u.info()
|
2014-05-04 21:49:55 +08:00
|
|
|
#file_size = int(meta.getheaders("Content-Length")[0])
|
|
|
|
print("Downloading: %s , please wait ... " % (file_name))
|
2014-05-04 18:51:00 +08:00
|
|
|
|
2014-05-04 21:49:55 +08:00
|
|
|
# file_size_dl = 0
|
2014-05-04 18:51:00 +08:00
|
|
|
block_sz = 8192
|
|
|
|
while True:
|
|
|
|
buffer = u.read(block_sz)
|
|
|
|
if not buffer:
|
|
|
|
break
|
|
|
|
|
2014-05-04 21:49:55 +08:00
|
|
|
#file_size_dl += len(buffer)
|
2014-05-04 18:51:00 +08:00
|
|
|
f.write(buffer)
|
2014-05-04 21:49:55 +08:00
|
|
|
#status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
|
|
|
|
#status = status + chr(8)*(len(status)+1)
|
|
|
|
#print(status),
|
2014-05-04 18:51:00 +08:00
|
|
|
f.close()
|
|
|
|
|
2014-05-04 22:00:12 +08:00
|
|
|
def default_filter(src,dst):
|
|
|
|
"""The default progress/filter callback; returns True for all files"""
|
|
|
|
return dst
|
|
|
|
|
|
|
|
def unpack_zipfile(filename, extract_dir, progress_filter=default_filter):
|
|
|
|
"""Unpack zip `filename` to `extract_dir`
|
|
|
|
|
|
|
|
Raises ``UnrecognizedFormat`` if `filename` is not a zipfile (as determined
|
|
|
|
by ``zipfile.is_zipfile()``). See ``unpack_archive()`` for an explanation
|
|
|
|
of the `progress_filter` argument.
|
|
|
|
"""
|
|
|
|
|
|
|
|
if not zipfile.is_zipfile(filename):
|
|
|
|
raise UnrecognizedFormat("%s is not a zip file" % (filename,))
|
|
|
|
|
|
|
|
z = zipfile.ZipFile(filename)
|
|
|
|
try:
|
|
|
|
for info in z.infolist():
|
|
|
|
name = info.filename
|
|
|
|
|
|
|
|
# don't extract absolute paths or ones with .. in them
|
|
|
|
if name.startswith('/') or '..' in name:
|
|
|
|
continue
|
|
|
|
|
|
|
|
target = os.path.join(extract_dir, *name.split('/'))
|
|
|
|
target = progress_filter(name, target)
|
|
|
|
if not target:
|
|
|
|
continue
|
|
|
|
if name.endswith('/'):
|
|
|
|
# directory
|
|
|
|
ensure_directory(target)
|
|
|
|
else:
|
|
|
|
# file
|
|
|
|
ensure_directory(target)
|
|
|
|
data = z.read(info.filename)
|
|
|
|
f = open(target,'wb')
|
|
|
|
try:
|
|
|
|
f.write(data)
|
|
|
|
finally:
|
|
|
|
f.close()
|
|
|
|
del data
|
|
|
|
unix_attributes = info.external_attr >> 16
|
|
|
|
if unix_attributes:
|
|
|
|
os.chmod(target, unix_attributes)
|
|
|
|
finally:
|
|
|
|
z.close()
|
2014-05-04 18:51:00 +08:00
|
|
|
|
|
|
|
def main():
|
2014-05-04 19:02:51 +08:00
|
|
|
download_file(prefix+filename, filename+'.zip')
|
2014-05-04 18:51:00 +08:00
|
|
|
workpath = os.path.dirname(os.path.realpath(__file__))
|
2014-05-04 22:00:12 +08:00
|
|
|
|
|
|
|
if os.path.exists(extracted_folder_name):
|
|
|
|
shutil.rmtree(extracted_folder_name)
|
|
|
|
|
2014-05-04 19:02:51 +08:00
|
|
|
print("Extracting files, please wait ...")
|
2014-05-04 22:00:12 +08:00
|
|
|
unpack_zipfile(filename+'.zip', workpath)
|
|
|
|
print("Extraction done!")
|
|
|
|
print("Copying files ...")
|
|
|
|
distutils.dir_util.copy_tree(extracted_folder_name, workpath)
|
2014-05-04 19:02:51 +08:00
|
|
|
print("Cleaning ...")
|
|
|
|
if os.path.isfile(filename+'.zip'):
|
|
|
|
os.remove(filename+'.zip')
|
|
|
|
if os.path.exists(extracted_folder_name):
|
|
|
|
shutil.rmtree(extracted_folder_name)
|
|
|
|
print("DONE! Cheers!")
|
2014-05-04 18:51:00 +08:00
|
|
|
|
|
|
|
# -------------- main --------------
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except Exception as e:
|
2014-05-04 21:17:07 +08:00
|
|
|
traceback.print_exc()
|
2014-05-04 18:51:00 +08:00
|
|
|
sys.exit(1)
|