当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
29 Star 134 Fork 313

OpenHarmony / build_lite
暂停

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
utils.py 3.34 KB
一键复制 编辑 原始数据 按行查看 历史
pilipala195 提交于 2021-03-16 15:12 . Adapts to the Windows platform
#!/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)
Python
1
https://gitee.com/openharmony/build_lite.git
git@gitee.com:openharmony/build_lite.git
openharmony
build_lite
build_lite
master

搜索帮助