Fetch the repository succeeded.
This action will force synchronization from OpenHarmony/build_lite, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2020 Huawei Device Co., Ltd.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import os
import collections
import subprocess
import shutil
import sys
import json
def encode(data, encoding='utf-8'):
if sys.version_info.major == 2:
return data.encode(encoding)
return data
def decode(data, encoding='utf-8'):
if sys.version_info.major == 2:
return data.decode(encoding)
return data
def remove_path(path):
if os.path.exists(path):
shutil.rmtree(path)
# Read json file data
def read_json_file(input_file):
if not os.path.exists(input_file):
print('file [{}] no exist.'.format(input_file))
return None
data = None
with open(input_file, 'rb') as input_f:
data = json.load(input_f)
return data
def exec_command(cmd, log_path='out/build.log', **kwargs):
with open(log_path, 'at', encoding='utf-8') as log_file:
process = subprocess.Popen(cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
encoding='utf-8',
**kwargs)
for line in iter(process.stdout.readline, ''):
sys.stdout.write(line)
log_file.write(line)
process.wait()
ret_code = process.returncode
if ret_code != 0:
with open(log_path, 'at', encoding='utf-8') as log_file:
for line in iter(process.stderr.readline, ''):
sys.stdout.write(line)
log_file.write(line)
print('you can check build log in {}'.format(log_path))
raise Exception("{} failed, return code is {}".format(cmd, ret_code))
def check_output(cmd, **kwargs):
try:
ret = subprocess.check_output(cmd,
stderr=subprocess.STDOUT,
universal_newlines=True,
**kwargs)
except subprocess.CalledProcessError as e:
ret = e.output
raise Exception("{} failed, failed log is {}".format(cmd, ret))
return ret
def makedirs(path, exist_ok=True):
try:
os.makedirs(path)
except OSError:
if not os.path.isdir(path):
raise Exception("{} makedirs failed".format(path))
if not exist_ok:
raise Exception("{} exists, makedirs failed".format(path))
class CallbackDict(object):
handlers = None
def __init__(self):
self.handlers = collections.defaultdict(list)
def register(self, event, callback):
self.handlers[event].append(callback)
def excute(self, event, **kwargs):
if event not in self.handlers:
raise Exception('{} not found in callback dict'.format(event))
for handler in self.handlers.get(event, []):
handler(**kwargs)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。