2022-04-12 14:21:55 +03:00
|
|
|
#!/usr/bin/env python3
|
2013-06-20 19:10:00 +04:00
|
|
|
|
2019-06-15 20:26:09 +03:00
|
|
|
from __future__ import print_function
|
2013-06-29 07:36:02 +04:00
|
|
|
import contextlib
|
2013-06-20 19:10:00 +04:00
|
|
|
import errno
|
2018-09-27 21:53:08 +03:00
|
|
|
import json
|
|
|
|
import os
|
2013-06-20 18:51:58 +04:00
|
|
|
import shutil
|
2013-06-21 06:32:57 +04:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2019-11-19 17:08:20 +03:00
|
|
|
# Python 3 / 2 compat import
|
|
|
|
try:
|
|
|
|
from urllib.request import urlopen
|
|
|
|
except ImportError:
|
|
|
|
from urllib2 import urlopen
|
2013-06-20 19:23:22 +04:00
|
|
|
import zipfile
|
2013-06-20 18:51:58 +04:00
|
|
|
|
2022-10-25 09:44:43 +03:00
|
|
|
# from lib.config import is_verbose_mode
|
|
|
|
def is_verbose_mode():
|
|
|
|
return False
|
2013-06-20 18:51:58 +04:00
|
|
|
|
2019-06-24 20:18:04 +03:00
|
|
|
ELECTRON_DIR = os.path.abspath(
|
|
|
|
os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
|
|
|
|
)
|
2020-11-10 00:57:53 +03:00
|
|
|
TS_NODE = os.path.join(ELECTRON_DIR, 'node_modules', '.bin', 'ts-node')
|
2018-10-08 23:19:40 +03:00
|
|
|
SRC_DIR = os.path.abspath(os.path.join(__file__, '..', '..', '..', '..'))
|
2016-08-01 05:00:19 +03:00
|
|
|
|
2017-05-26 00:53:42 +03:00
|
|
|
NPM = 'npm'
|
|
|
|
if sys.platform in ['win32', 'cygwin']:
|
|
|
|
NPM += '.cmd'
|
2020-11-10 00:57:53 +03:00
|
|
|
TS_NODE += '.cmd'
|
2017-05-26 00:53:42 +03:00
|
|
|
|
2015-07-01 12:17:44 +03:00
|
|
|
|
2013-06-29 07:36:02 +04:00
|
|
|
@contextlib.contextmanager
|
|
|
|
def scoped_cwd(path):
|
|
|
|
cwd = os.getcwd()
|
|
|
|
os.chdir(path)
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
os.chdir(cwd)
|
|
|
|
|
|
|
|
|
2014-08-09 05:22:06 +04:00
|
|
|
@contextlib.contextmanager
|
|
|
|
def scoped_env(key, value):
|
|
|
|
origin = ''
|
|
|
|
if key in os.environ:
|
|
|
|
origin = os.environ[key]
|
|
|
|
os.environ[key] = value
|
|
|
|
try:
|
|
|
|
yield
|
|
|
|
finally:
|
|
|
|
os.environ[key] = origin
|
|
|
|
|
|
|
|
|
2013-06-20 19:10:00 +04:00
|
|
|
def download(text, url, path):
|
2014-07-21 12:31:51 +04:00
|
|
|
safe_mkdir(os.path.dirname(path))
|
2014-08-08 10:08:01 +04:00
|
|
|
with open(path, 'wb') as local_file:
|
2019-06-15 20:26:09 +03:00
|
|
|
print("Downloading %s to %s" % (url, path))
|
2019-11-19 17:08:20 +03:00
|
|
|
web_file = urlopen(url)
|
|
|
|
info = web_file.info()
|
|
|
|
if hasattr(info, 'getheader'):
|
|
|
|
file_size = int(info.getheaders("Content-Length")[0])
|
|
|
|
else:
|
|
|
|
file_size = int(info.get("Content-Length")[0])
|
2013-06-20 19:10:00 +04:00
|
|
|
downloaded_size = 0
|
2019-03-27 04:22:54 +03:00
|
|
|
block_size = 4096
|
2013-06-20 18:51:58 +04:00
|
|
|
|
2018-07-31 01:34:38 +03:00
|
|
|
ci = os.environ.get('CI') is not None
|
2014-02-17 13:50:25 +04:00
|
|
|
|
2013-06-20 18:51:58 +04:00
|
|
|
while True:
|
|
|
|
buf = web_file.read(block_size)
|
|
|
|
if not buf:
|
|
|
|
break
|
|
|
|
|
|
|
|
downloaded_size += len(buf)
|
|
|
|
local_file.write(buf)
|
|
|
|
|
2014-02-17 13:50:25 +04:00
|
|
|
if not ci:
|
|
|
|
percent = downloaded_size * 100. / file_size
|
|
|
|
status = "\r%s %10d [%3.1f%%]" % (text, downloaded_size, percent)
|
2019-06-15 20:26:09 +03:00
|
|
|
print(status, end=' ')
|
2013-06-20 18:51:58 +04:00
|
|
|
|
2014-02-17 13:50:25 +04:00
|
|
|
if ci:
|
2019-06-15 20:26:09 +03:00
|
|
|
print("%s done." % (text))
|
2014-02-17 13:50:25 +04:00
|
|
|
else:
|
2019-06-15 20:26:09 +03:00
|
|
|
print()
|
2014-07-21 12:31:51 +04:00
|
|
|
return path
|
2013-06-20 18:51:58 +04:00
|
|
|
|
|
|
|
|
2013-10-26 13:23:16 +04:00
|
|
|
def make_zip(zip_file_path, files, dirs):
|
2013-08-31 05:37:02 +04:00
|
|
|
safe_unlink(zip_file_path)
|
|
|
|
if sys.platform == 'darwin':
|
2020-02-17 03:45:41 +03:00
|
|
|
allfiles = files + dirs
|
|
|
|
execute(['zip', '-r', '-y', zip_file_path] + allfiles)
|
2013-08-31 05:37:02 +04:00
|
|
|
else:
|
2019-11-21 04:21:44 +03:00
|
|
|
zip_file = zipfile.ZipFile(zip_file_path, "w", zipfile.ZIP_DEFLATED,
|
|
|
|
allowZip64=True)
|
2013-08-31 05:37:02 +04:00
|
|
|
for filename in files:
|
|
|
|
zip_file.write(filename, filename)
|
2013-10-26 13:23:16 +04:00
|
|
|
for dirname in dirs:
|
|
|
|
for root, _, filenames in os.walk(dirname):
|
|
|
|
for f in filenames:
|
|
|
|
zip_file.write(os.path.join(root, f))
|
2013-08-31 05:37:02 +04:00
|
|
|
zip_file.close()
|
|
|
|
|
2013-06-20 18:51:58 +04:00
|
|
|
|
2013-06-24 13:51:48 +04:00
|
|
|
def rm_rf(path):
|
|
|
|
try:
|
|
|
|
shutil.rmtree(path)
|
2015-07-03 10:07:11 +03:00
|
|
|
except OSError:
|
|
|
|
pass
|
2013-06-24 13:51:48 +04:00
|
|
|
|
|
|
|
|
2013-06-20 18:51:58 +04:00
|
|
|
def safe_unlink(path):
|
|
|
|
try:
|
|
|
|
os.unlink(path)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
|
|
|
|
|
|
|
|
def safe_mkdir(path):
|
|
|
|
try:
|
|
|
|
os.makedirs(path)
|
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.EEXIST:
|
|
|
|
raise
|
2013-08-12 11:01:05 +04:00
|
|
|
|
|
|
|
|
2018-09-16 20:24:07 +03:00
|
|
|
def execute(argv, env=None, cwd=None):
|
|
|
|
if env is None:
|
|
|
|
env = os.environ
|
2014-12-08 20:02:08 +03:00
|
|
|
if is_verbose_mode():
|
2019-06-15 20:26:09 +03:00
|
|
|
print(' '.join(argv))
|
2014-02-26 18:08:01 +04:00
|
|
|
try:
|
2018-09-16 20:24:07 +03:00
|
|
|
output = subprocess.check_output(argv, stderr=subprocess.STDOUT,
|
|
|
|
env=env, cwd=cwd)
|
2014-12-08 20:02:08 +03:00
|
|
|
if is_verbose_mode():
|
2019-06-15 20:26:09 +03:00
|
|
|
print(output)
|
2014-08-12 16:23:59 +04:00
|
|
|
return output
|
2014-02-26 18:08:01 +04:00
|
|
|
except subprocess.CalledProcessError as e:
|
2019-06-15 20:26:09 +03:00
|
|
|
print(e.output)
|
2014-02-26 18:08:01 +04:00
|
|
|
raise e
|
|
|
|
|
|
|
|
|
2018-09-27 21:53:08 +03:00
|
|
|
def get_electron_branding():
|
2015-04-12 07:45:18 +03:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.join(__file__, '..', '..', '..'))
|
2019-06-20 00:05:56 +03:00
|
|
|
branding_file_path = os.path.join(
|
|
|
|
SOURCE_ROOT, 'shell', 'app', 'BRANDING.json')
|
2018-09-27 21:53:08 +03:00
|
|
|
with open(branding_file_path) as f:
|
|
|
|
return json.load(f)
|
2014-12-08 02:42:55 +03:00
|
|
|
|
2022-10-25 09:44:43 +03:00
|
|
|
|
|
|
|
cached_electron_version = None
|
2016-05-24 20:27:46 +03:00
|
|
|
def get_electron_version():
|
2022-10-25 09:44:43 +03:00
|
|
|
global cached_electron_version
|
|
|
|
if cached_electron_version is None:
|
|
|
|
cached_electron_version = str.strip(execute([
|
|
|
|
'node',
|
|
|
|
'-p',
|
|
|
|
'require("./script/lib/get-version").getElectronVersion()'
|
|
|
|
], cwd=ELECTRON_DIR).decode())
|
|
|
|
return cached_electron_version
|
2014-07-21 12:31:51 +04:00
|
|
|
|
2022-04-04 12:32:57 +03:00
|
|
|
def store_artifact(prefix, key_prefix, files):
|
2022-05-06 07:40:34 +03:00
|
|
|
# Azure Storage
|
2022-04-04 12:32:57 +03:00
|
|
|
azput(prefix, key_prefix, files)
|
|
|
|
|
|
|
|
def azput(prefix, key_prefix, files):
|
|
|
|
env = os.environ.copy()
|
|
|
|
output = execute([
|
|
|
|
'node',
|
|
|
|
os.path.join(os.path.dirname(__file__), 'azput.js'),
|
|
|
|
'--prefix', prefix,
|
|
|
|
'--key_prefix', key_prefix,
|
|
|
|
] + files, env)
|
|
|
|
print(output)
|
|
|
|
|
2018-09-27 08:38:06 +03:00
|
|
|
def get_out_dir():
|
|
|
|
out_dir = 'Debug'
|
|
|
|
override = os.environ.get('ELECTRON_OUT_DIR')
|
|
|
|
if override is not None:
|
|
|
|
out_dir = override
|
2018-10-08 23:19:40 +03:00
|
|
|
return os.path.join(SRC_DIR, 'out', out_dir)
|
2018-09-27 08:38:06 +03:00
|
|
|
|
2018-09-28 04:24:25 +03:00
|
|
|
# NOTE: This path is not created by gn, it is used as a scratch zone by our
|
|
|
|
# upload scripts
|
2018-09-27 09:48:07 +03:00
|
|
|
def get_dist_dir():
|
|
|
|
return os.path.join(get_out_dir(), 'gen', 'electron_dist')
|
2018-09-27 23:14:13 +03:00
|
|
|
|
|
|
|
def get_electron_exec():
|
2018-10-08 23:19:40 +03:00
|
|
|
out_dir = get_out_dir()
|
|
|
|
|
2018-09-27 23:14:13 +03:00
|
|
|
if sys.platform == 'darwin':
|
2018-10-08 23:19:40 +03:00
|
|
|
return '{0}/Electron.app/Contents/MacOS/Electron'.format(out_dir)
|
2022-03-21 05:11:21 +03:00
|
|
|
if sys.platform == 'win32':
|
2018-10-08 23:19:40 +03:00
|
|
|
return '{0}/electron.exe'.format(out_dir)
|
2022-03-21 05:11:21 +03:00
|
|
|
if sys.platform == 'linux':
|
2018-10-08 23:19:40 +03:00
|
|
|
return '{0}/electron'.format(out_dir)
|
|
|
|
|
|
|
|
raise Exception(
|
|
|
|
"get_electron_exec: unexpected platform '{0}'".format(sys.platform))
|
2019-07-09 11:40:26 +03:00
|
|
|
|
|
|
|
def get_buildtools_executable(name):
|
|
|
|
buildtools = os.path.realpath(os.path.join(ELECTRON_DIR, '..', 'buildtools'))
|
|
|
|
chromium_platform = {
|
|
|
|
'darwin': 'mac',
|
2020-01-13 03:58:25 +03:00
|
|
|
'linux': 'linux64',
|
2019-07-09 11:40:26 +03:00
|
|
|
'linux2': 'linux64',
|
|
|
|
'win32': 'win',
|
2022-02-03 23:57:21 +03:00
|
|
|
'cygwin': 'win',
|
2019-07-09 11:40:26 +03:00
|
|
|
}[sys.platform]
|
|
|
|
path = os.path.join(buildtools, chromium_platform, name)
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
path += '.exe'
|
|
|
|
return path
|