axmol/setup.py

728 lines
25 KiB
Python
Raw Normal View History

2014-03-03 10:01:41 +08:00
#!/usr/bin/python
# coding=utf-8
2014-03-03 10:01:41 +08:00
"""****************************************************************************
Copyright (c) 2014 cocos2d-x.org
2021-05-18 16:40:30 +08:00
Copyright (c) 2021 Bytedance Inc.
2014-03-03 10:01:41 +08:00
http://www.cocos2d-x.org
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
****************************************************************************"""
2014-03-05 17:00:07 +08:00
'''
2022-07-07 19:37:59 +08:00
This script will install environment variables needed to by axis. It will set these envrironment variables:
* AX_CONSOLE_ROOT: used to run axis console tools
* ANDROID_SDK_ROOT: used to generate applicatoin on Android through commands
* AX_ROOT: path where axis is installed
2014-03-10 19:38:56 +08:00
2014-03-05 17:00:07 +08:00
On Max OS X, when start a shell, it will read these files and execute commands in sequence:
~/.bash_profile
~/.bash_login
~/.profile
And it will read only one of them. So we will add environment variable in the same sequence.
Which means that
2014-03-06 06:09:45 +08:00
* add environment variables into ~/.bash_profile if it exists
* otherwise it will the add environment variables into ~/.bash_login if it exists
2014-03-06 11:51:50 +08:00
* otherwise it will the add environment variables into ~/.profile if it exists
2014-03-05 17:00:07 +08:00
2014-03-06 11:51:50 +08:00
Will create ~/.bash_profile when none of them exist, and add environment variables into it.
2014-03-05 17:00:07 +08:00
'''
2014-03-03 10:01:41 +08:00
import os
import sys
2014-03-05 17:00:07 +08:00
import fileinput
import shutil
2014-03-10 19:38:56 +08:00
import subprocess
import ssl
try:
ssl._create_default_https_context = ssl._create_unverified_context
print("==> setup.py set ssl context ok")
except Exception:
pass
2014-03-03 10:01:41 +08:00
from optparse import OptionParser
from time import time
from time import sleep
from os.path import dirname
2014-03-03 10:01:41 +08:00
AX_ROOT = 'AX_ROOT'
AX_CONSOLE_ROOT = 'AX_CONSOLE_ROOT'
2020-10-22 16:53:28 +08:00
ANDROID_SDK_ROOT = 'ANDROID_SDK_ROOT'
def _check_python_version():
major_ver = sys.version_info[0]
2020-10-22 16:53:28 +08:00
if major_ver < 2:
print ("The python version is %d.%d. But python 2.x+ is required. (Version 2.7 is well tested)\n"
"Download it here: https://www.python.org/" % (major_ver, sys.version_info[1]))
return False
return True
2014-03-03 10:01:41 +08:00
2014-03-06 06:09:45 +08:00
class SetEnvVar(object):
RESULT_UPDATE_FAILED = -2
RESULT_ADD_FAILED = -1
RESULT_DO_NOTHING = 0
RESULT_UPDATED = 1
RESULT_ADDED = 2
MAC_CHECK_FILES = ['.bash_profile', '.bash_login', '.profile']
LINUX_CHECK_FILES = ['.bashrc']
ZSH_CHECK_FILES = ['.zshrc']
RE_FORMAT = r'^export[ \t]+%s=(.+)'
2014-03-10 19:38:56 +08:00
def __init__(self):
self.need_backup = True
self.backup_file = None
self.current_absolute_path = os.path.dirname(
os.path.realpath(__file__))
2014-03-06 06:09:45 +08:00
self.file_used_for_setup = ''
def _isWindows(self):
return sys.platform == 'win32'
def _isLinux(self):
return sys.platform.startswith('linux')
def _is_mac(self):
return sys.platform == 'darwin'
def _is_zsh(self):
2014-07-16 15:36:50 +08:00
shellItem = os.environ.get('SHELL')
if shellItem is not None:
if len(shellItem) >= 3:
return shellItem[-3:] == "zsh"
return False
2014-03-06 06:09:45 +08:00
def _get_unix_file_list(self):
file_list = None
if self._is_zsh():
file_list = SetEnvVar.ZSH_CHECK_FILES
elif self._isLinux():
file_list = SetEnvVar.LINUX_CHECK_FILES
elif self._is_mac():
file_list = SetEnvVar.MAC_CHECK_FILES
return file_list
def _get_filepath_for_setup(self):
file_list = self._get_unix_file_list()
file_to_write = None
if file_list is None:
return ''
2014-03-06 06:09:45 +08:00
home = os.path.expanduser('~')
for file_name in file_list:
file_path = os.path.join(home, file_name)
if os.path.exists(file_path):
file_to_write = file_path
break
if file_to_write is None:
self.need_backup = False
file_to_write = os.path.join(home, file_list[0])
file_obj = open(file_to_write, 'w')
file_obj.close()
2014-03-06 06:09:45 +08:00
2014-03-07 10:19:24 +08:00
return file_to_write
2014-03-06 06:09:45 +08:00
2014-03-08 04:12:25 +08:00
# modify registry table to add an environment variable on windows
2014-03-07 10:19:24 +08:00
def _set_environment_variable_win32(self, key, value):
ret = False
2014-03-07 19:37:33 +08:00
try:
env = None
env = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
'Environment',
0,
_winreg.KEY_SET_VALUE | _winreg.KEY_READ)
2014-03-07 19:37:33 +08:00
_winreg.SetValueEx(env, key, 0, _winreg.REG_SZ, value)
_winreg.FlushKey(env)
2014-03-07 19:37:33 +08:00
_winreg.CloseKey(env)
ret = True
2014-03-07 19:37:33 +08:00
except Exception:
if env:
_winreg.CloseKey(env)
ret = False
return ret
2014-03-07 10:19:24 +08:00
def _gen_backup_file(self):
file_name = os.path.basename(self.file_used_for_setup)
file_path = os.path.dirname(self.file_used_for_setup)
backup_file_name = file_name + ".backup"
path = os.path.join(file_path, backup_file_name)
i = 1
while os.path.exists(path):
backup_file_name = file_name + ".backup%d" % i
path = os.path.join(file_path, backup_file_name)
i += 1
return path
2014-03-07 10:19:24 +08:00
def _set_environment_variable_unix(self, key, value):
if self.need_backup:
# backup the environment file
self.backup_file = self._gen_backup_file()
shutil.copy(self.file_used_for_setup, self.backup_file)
self.need_backup = False
2014-03-07 10:19:24 +08:00
file = open(self.file_used_for_setup, 'a')
2022-07-07 19:37:59 +08:00
file.write('\n# Add environment variable %s for axis\n' % key)
file.write('export %s="%s"\n' % (key, value))
2014-03-07 10:19:24 +08:00
file.write('export PATH=$%s:$PATH\n' % key)
if key == ANDROID_SDK_ROOT:
file.write(
'export PATH=$%s/tools:$%s/platform-tools:$PATH\n' % (key, key))
2014-03-07 10:19:24 +08:00
file.close()
2014-03-08 04:12:25 +08:00
return True
2014-03-07 10:19:24 +08:00
def _set_environment_variable(self, key, value):
print(" -> Add %s environment variable..." % key)
2014-03-08 04:12:25 +08:00
ret = False
2014-03-07 10:19:24 +08:00
if self._isWindows():
2014-03-08 04:12:25 +08:00
ret = self._set_environment_variable_win32(key, value)
2014-03-07 10:19:24 +08:00
else:
2014-03-08 04:12:25 +08:00
ret = self._set_environment_variable_unix(key, value)
if ret:
print(" ->Added %s=%s\n" % (key, value))
else:
print(" ->Add failed\n")
return ret
def _search_unix_variable(self, var_name, file_name):
if not os.path.isfile(file_name):
return None
import re
str_re = SetEnvVar.RE_FORMAT % var_name
patten = re.compile(str_re)
ret = None
for line in open(file_name):
str1 = line.lstrip(' \t')
match = patten.match(str1)
if match is not None:
ret = match.group(1)
2014-03-08 04:12:25 +08:00
return ret
2014-03-07 10:19:24 +08:00
2014-03-06 06:09:45 +08:00
def _find_environment_variable(self, var):
print(" ->Search for environment variable %s..." % var)
ret = None
2014-03-06 06:09:45 +08:00
try:
ret = os.environ[var]
2014-03-06 06:09:45 +08:00
except Exception:
2014-03-07 19:37:33 +08:00
if not self._isWindows():
file_list = self._get_unix_file_list()
if file_list is not None:
home = os.path.expanduser('~')
for name in file_list:
path = os.path.join(home, name)
ret = self._search_unix_variable(var, path)
if ret is not None:
break
2014-03-07 19:37:33 +08:00
else:
try:
env = None
env = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
'Environment',
0,
_winreg.KEY_READ)
2014-03-06 06:09:45 +08:00
ret = _winreg.QueryValueEx(env, var)[0]
2014-03-07 19:37:33 +08:00
_winreg.CloseKey(env)
except Exception:
if env:
_winreg.CloseKey(env)
ret = None
2014-03-06 06:09:45 +08:00
if ret is None:
print(" ->%s not found\n" % var)
else:
print(" ->%s is found : %s\n" % (var, ret))
return ret
2014-03-07 10:19:24 +08:00
def _get_input_value(self, var_name):
2020-10-22 16:53:28 +08:00
if sys.version_info.major >= 3:
ret = input(
' ->Please enter the path of %s (or press Enter to skip):' % var_name)
else:
ret = raw_input(
' ->Please enter the path of %s (or press Enter to skip):' % var_name)
ret.rstrip(" \t")
return ret
2014-03-06 17:18:12 +08:00
2014-03-06 06:09:45 +08:00
def _check_valid(self, var_name, value):
ret = False
2022-08-08 18:02:17 +08:00
if var_name == ANDROID_SDK_ROOT:
ret = self._is_android_sdk_root_valid(value)
else:
ret = False
if not ret:
print(
' ->Error: "%s" is not a valid path of %s. Ignoring it.' % (value, var_name))
2022-08-11 17:29:05 +08:00
return ret
2014-03-06 06:09:45 +08:00
2014-03-07 10:19:24 +08:00
def _is_android_sdk_root_valid(self, android_sdk_root):
if not android_sdk_root:
return False
2014-03-06 06:09:45 +08:00
2014-03-13 16:01:33 +08:00
if self._isWindows():
android_path = os.path.join(
android_sdk_root, 'tools', 'android.bat')
2014-03-13 16:01:33 +08:00
else:
android_path = os.path.join(android_sdk_root, 'tools', 'android')
2014-03-07 10:19:24 +08:00
if os.path.isfile(android_path):
return True
else:
return False
2014-03-06 06:09:45 +08:00
def remove_dir_from_win_path(self, remove_dir):
try:
env = None
path = None
env = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
'Environment',
0,
_winreg.KEY_SET_VALUE | _winreg.KEY_READ)
path = _winreg.QueryValueEx(env, 'Path')[0]
path_lower = path.lower()
remove_dir = remove_dir.replace('/', '\\')
remove_dir_lower = remove_dir.lower()
start_pos = path_lower.find(remove_dir_lower)
if (start_pos >= 0):
length = len(remove_dir_lower)
need_remove = path[start_pos:(start_pos + length)]
path = path.replace(need_remove, '')
path = path.replace(';;', ';')
_winreg.SetValueEx(env, 'Path', 0, _winreg.REG_SZ, path)
_winreg.FlushKey(env)
_winreg.CloseKey(env)
print(' ->Remove directory \"%s\" from PATH!\n' % remove_dir)
except Exception:
print(' ->Remove directory \"%s\" from PATH failed!\n' %
remove_dir)
def set_windows_path(self, add_dir):
ret = False
try:
env = None
path = None
env = _winreg.OpenKeyEx(_winreg.HKEY_CURRENT_USER,
'Environment',
0,
_winreg.KEY_SET_VALUE | _winreg.KEY_READ)
path = _winreg.QueryValueEx(env, 'Path')[0]
# add variable if can't find it in PATH
path_lower = path.lower()
add_dir_lower = add_dir.lower()
if (path_lower.find(add_dir_lower) == -1):
path = add_dir + ';' + path
_winreg.SetValueEx(env, 'Path', 0, _winreg.REG_SZ, path)
_winreg.FlushKey(env)
_winreg.CloseKey(env)
ret = True
except Exception:
if not path:
path = add_dir
_winreg.SetValueEx(env, 'Path', 0, _winreg.REG_SZ, path)
_winreg.FlushKey(env)
ret = True
else:
_winreg.SetValueEx(env, 'Path', 0, _winreg.REG_SZ, path)
_winreg.FlushKey(env)
ret = False
if env:
_winreg.CloseKey(env)
if ret:
print(" ->Add directory \"%s\" into PATH succeed!\n" % add_dir)
else:
print(" ->Add directory \"%s\" into PATH failed!\n" % add_dir)
2014-03-06 06:09:45 +08:00
def set_console_root(self):
print("->Check environment variable %s" % AX_CONSOLE_ROOT)
2022-07-07 19:37:59 +08:00
axis_console_root = os.path.join(
2021-05-18 16:40:30 +08:00
self.current_absolute_path, 'tools', 'console', 'bin')
old_dir = self._find_environment_variable(AX_CONSOLE_ROOT)
if old_dir is None:
# add environment variable
if self._isWindows():
2022-07-07 19:37:59 +08:00
self.set_windows_path(axis_console_root)
2014-03-06 06:09:45 +08:00
self._set_environment_variable(
AX_CONSOLE_ROOT, axis_console_root)
else:
2022-07-07 19:37:59 +08:00
if old_dir == axis_console_root:
# is same with before, nothing to do
return
# update the environment variable
if self._isWindows():
self.remove_dir_from_win_path(old_dir)
2022-07-07 19:37:59 +08:00
self.set_windows_path(axis_console_root)
2014-03-06 06:09:45 +08:00
self._force_update_env(AX_CONSOLE_ROOT, axis_console_root)
2022-07-07 19:37:59 +08:00
def set_axis_root(self):
print("->Check environment variable %s" % AX_ROOT)
2022-07-07 19:37:59 +08:00
axis_root = self.current_absolute_path
old_dir = self._find_environment_variable(AX_ROOT)
2014-11-18 12:05:15 +08:00
if old_dir is None:
# add environment variable
self._set_environment_variable(AX_ROOT, axis_root)
2014-11-18 12:05:15 +08:00
else:
2022-07-07 19:37:59 +08:00
if old_dir == axis_root:
2014-11-18 12:05:15 +08:00
# is same with before, nothing to do
return
self._force_update_env(AX_ROOT, axis_root)
2014-11-18 12:05:15 +08:00
def _force_update_unix_env(self, var_name, value):
import re
home = os.path.expanduser('~')
str_re = SetEnvVar.RE_FORMAT % var_name
patten = re.compile(str_re)
replace_str = 'export %s=%s\n' % (var_name, value)
file_list = SetEnvVar.MAC_CHECK_FILES
if self._isLinux():
file_list = SetEnvVar.LINUX_CHECK_FILES
print(" ->Update variable %s in files %s" %
(var_name, str(file_list)))
variable_updated = False
for file_name in file_list:
path = os.path.join(home, file_name)
if os.path.isfile(path):
lines = []
# read files
need_over_write = False
file_obj = open(path, 'r')
for line in file_obj:
str_temp = line.lstrip(' \t')
match = patten.match(str_temp)
if match is not None:
variable_updated = True
need_over_write = True
lines.append(replace_str)
else:
lines.append(line)
file_obj.close()
# rewrite file
if need_over_write:
file_obj = open(path, 'w')
file_obj.writelines(lines)
file_obj.close()
print(" ->File %s updated!" % path)
# nothing updated, should add variable
if not variable_updated:
print("\n ->No files updated, add variable %s instead!" %
var_name)
ret = self._set_environment_variable(var_name, value)
else:
ret = True
2014-03-07 10:19:24 +08:00
return ret
2014-03-07 10:19:24 +08:00
def _force_update_env(self, var_name, value):
ret = False
if self._isWindows():
print(" ->Force update environment variable %s" % var_name)
ret = self._set_environment_variable_win32(var_name, value)
if not ret:
print(" ->Failed!")
else:
print(" ->Succeed : %s=%s" % (var_name, value))
else:
ret = self._force_update_unix_env(var_name, value)
return ret
2014-03-07 10:19:24 +08:00
def _get_androidsdk_path(self):
return self._get_sdkpath_for_cmd("android")
2014-04-29 12:58:58 +08:00
def _get_sdkpath_for_cmd(self, cmd, has_bin_folder=True):
2014-04-29 12:58:58 +08:00
ret = None
print(" ->Search for command " + cmd + " in system...")
2014-04-29 12:58:58 +08:00
if not self._isWindows():
2020-10-22 16:53:28 +08:00
if sys.version_info.major >= 3:
import subprocess
else:
import commands as subprocess
state, result = subprocess.getstatusoutput("which " + cmd)
2014-04-29 12:58:58 +08:00
if state == 0:
ret = os.path.realpath(result)
ret = os.path.dirname(ret)
# Use parent folder if has_bin_folder was set
if has_bin_folder:
ret = os.path.dirname(ret)
2014-04-29 12:58:58 +08:00
if ret is not None:
print(" ->Path " + ret + " was found\n")
2014-04-29 12:58:58 +08:00
else:
print(" ->Command " + cmd + " not found\n")
2014-04-29 12:58:58 +08:00
return ret
def _find_value_from_sys(self, var_name):
2022-08-08 18:02:17 +08:00
if var_name == ANDROID_SDK_ROOT:
return self._get_androidsdk_path()
else:
return None
def set_variable(self, var_name, value):
print("->Check environment variable %s" % var_name)
find_value = self._find_environment_variable(var_name)
var_found = (find_value is not None)
action_none = 0
action_add = 1
action_update = 2
need_action = action_none
if var_found:
if value and self._check_valid(var_name, value):
# should update
need_action = action_update
else:
# do nothing
need_action = action_none
2014-03-06 06:09:45 +08:00
else:
if not value:
# find the command path in system
value = self._find_value_from_sys(var_name)
if not value:
value = self._get_input_value(var_name)
2014-03-07 10:19:24 +08:00
if value and self._check_valid(var_name, value):
# should add variable
need_action = action_add
else:
# do nothing
need_action = action_none
if need_action == action_none:
# do nothing
return SetEnvVar.RESULT_DO_NOTHING
elif need_action == action_add:
# add variable
if self._set_environment_variable(var_name, value):
return SetEnvVar.RESULT_ADDED
else:
return SetEnvVar.RESULT_ADD_FAILED
elif need_action == action_update:
# update variable
if self._force_update_env(var_name, value):
# update succeed
return SetEnvVar.RESULT_UPDATED
else:
# update failed
return SetEnvVar.RESULT_UPDATE_FAILED
else:
return SetEnvVar.RESULT_DO_NOTHING
2014-03-08 04:12:25 +08:00
2022-08-08 18:02:17 +08:00
def set_environment_variables(self, android_sdk_root, quiet):
2014-03-07 10:19:24 +08:00
2022-07-07 19:37:59 +08:00
print('\nSetting up axis...')
2014-03-07 10:19:24 +08:00
self.file_used_for_setup = self._get_filepath_for_setup()
2022-07-07 19:37:59 +08:00
self.set_axis_root()
self.set_console_root()
2020-10-22 16:53:28 +08:00
if self._isWindows():
print(
'->Configuration for Android platform only, you can also skip and manually edit your environment variables\n')
else:
print('->Configuration for Android platform only, you can also skip and manually edit "%s"\n' %
self.file_used_for_setup)
2015-12-10 17:20:43 +08:00
if(quiet) :
sdk_ret = self.set_variable(ANDROID_SDK_ROOT, android_sdk_root)
# tip the backup file
if (self.backup_file is not None) and (os.path.exists(self.backup_file)):
print('\nA backup file \"%s\" is created for \"%s\".' %
(self.backup_file, self.file_used_for_setup))
if self._isWindows():
print(
'\nPlease restart the terminal or restart computer to make added system variables take effect\n')
else:
print('\nPlease execute command: "source %s" to make added system variables take effect\n' %
self.file_used_for_setup)
2014-03-03 10:01:41 +08:00
class FileDownloader(object):
def __init__(self):
self.current_absolute_path = os.path.dirname(os.path.realpath(__file__))
def download_file(self, url, filename):
# remove file for retry
try:
os.remove(filename)
except OSError:
pass
print("==> Ready to download '%s' from '%s'" % (filename, url))
2021-10-05 20:57:41 +08:00
if(sys.version_info.major >= 3):
import urllib.request as urllib2
else:
import urllib2
try:
u = urllib2.urlopen(url)
except urllib2.HTTPError as e:
if e.code == 404:
print("==> Error: Could not find the file from url: '%s'" % (url))
print("==> Http request failed, error code: " + str(e.code) + ", reason: " + e.read())
sys.exit(1)
f = open(filename, 'wb')
2021-10-05 20:57:41 +08:00
content_len = 0
if(sys.version_info.major >= 3):
content_len = u.getheader("Content-Length")
else:
content_len = u.info().getheaders("Content-Length")
if content_len and len(content_len) > 0:
content_len = content_len[0]
file_size = 0
2021-10-05 20:57:41 +08:00
if content_len:
file_size = int(content_len)
else:
print("==> WARNING: Couldn't grab the file size from remote")
return
print("==> Start to download, please wait ...")
file_size_dl = 0
block_sz = 8192
block_size_per_second = 0
old_time = time()
status = ""
while True:
buffer = u.read(block_sz)
if not buffer:
print("%s%s" % (" " * len(status), "\r")),
break
file_size_dl += len(buffer)
block_size_per_second += len(buffer)
f.write(buffer)
new_time = time()
if (new_time - old_time) > 1:
speed = block_size_per_second / (new_time - old_time) / 1000.0
if file_size != 0:
percent = file_size_dl * 100. / file_size
status = r"Downloaded: %6dK / Total: %dK, Percent: %3.2f%%, Speed: %6.2f KB/S " % (file_size_dl / 1000, file_size / 1000, percent, speed)
else:
status = r"Downloaded: %6dK, Speed: %6.2f KB/S " % (file_size_dl / 1000, speed)
print(status),
sys.stdout.flush()
print("\r"),
block_size_per_second = 0
old_time = new_time
print("==> Downloading finished!")
f.close()
def ensure_directory(self, target):
if not os.path.exists(target):
os.mkdir(target)
def download_file_with_retry(self, url, filename, times, delay):
2021-10-05 20:57:41 +08:00
if(sys.version_info.major >= 3):
import urllib.request as urllib2
else:
import urllib2
output_path = dirname(filename)
downloader.ensure_directory(output_path)
times_count = 0
while(times_count < times):
times_count += 1
try:
if(times_count > 1):
print("==> Download file retry " + str(times_count))
self.download_file(url, filename)
return
except Exception as err:
if(times_count >= times):
raise err
sleep(delay)
2014-03-03 10:01:41 +08:00
if __name__ == '__main__':
if not _check_python_version():
exit()
2014-03-06 06:09:45 +08:00
parser = OptionParser()
parser.add_option('-a', '--androidsdkroot',
dest='android_sdk_root', help='directory of android sdk root')
parser.add_option(
2022-08-08 18:02:17 +08:00
'-q', '--quiet', dest='quiet',action="store_false", default = True, help='setup without setting SDK')
2014-03-06 06:09:45 +08:00
opts, args = parser.parse_args()
# set environment variables
2014-03-07 10:19:24 +08:00
env = SetEnvVar()
2020-10-22 17:33:18 +08:00
if env._isWindows():
if(sys.version_info.major >= 3):
import winreg as _winreg
else:
import _winreg
2022-08-08 18:02:17 +08:00
env.set_environment_variables(opts.android_sdk_root, opts.quiet)
if env._isWindows():
import ctypes
HWND_BROADCAST = 0xFFFF
WM_SETTINGCHANGE = 0x1A
SMTO_ABORTIFHUNG = 0x0002
result = ctypes.c_long()
SendMessageTimeoutW = ctypes.windll.user32.SendMessageTimeoutW
SendMessageTimeoutW(HWND_BROADCAST, WM_SETTINGCHANGE, 0,
u'Environment', SMTO_ABORTIFHUNG, 5000, ctypes.byref(result))
current_absolute_path = os.path.dirname(os.path.realpath(__file__))
external_tools_path = os.path.join(current_absolute_path, 'tools', 'external')
if not os.path.exists(external_tools_path):
os.mkdir(external_tools_path)
downloader = FileDownloader()
if env._isWindows():
file_path = os.path.join(external_tools_path, 'nuget', 'nuget.exe')
if not os.path.isfile(file_path):
downloader.download_file_with_retry('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', file_path, 5, 3)