56 Star 294 Fork 70

幸福的闪电 / PathOfBuildingCN17173

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
update_manifest.py 2.96 KB
一键复制 编辑 原始数据 按行查看 历史
Tai 提交于 2021-08-26 21:27 . bugfix: S16.1.0的manifest未更新
import hashlib
import logging
import pathlib
from typing import Optional
import xml.etree.ElementTree
"""This script requires at least Python 3.7.0 to run."""
logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
def update_manifest(version: Optional[str] = None, replace: bool = False):
"""Update SHA1 hashes and version number for Path of Building's manifest file.
:param version: Three-part version number following https://semver.org/.
:param replace: Whether to overwrite the existing manifest file.
:return:
"""
base_path = pathlib.Path()
print("start")
try:
manifest = xml.etree.ElementTree.parse(base_path / "manifest.xml")
except FileNotFoundError:
logger.critical(f"Manifest file not found in path '{base_path}'")
return
root = manifest.getroot()
base_url = min((source.get("url") for source in root.iter("Source")), key=len)
parts = {
source.get("part"): pathlib.Path(source.get("url")).relative_to(base_url)
for source in root.iter("Source")
}
for file in root.iter("File"):
name, part = file.get("name"), file.get("part")
path = parts.get(part) / name
try:
data = path.read_bytes()
except FileNotFoundError:
logger.error(f"File not found, skipping {path}")
continue
sha1_hash = hashlib.sha1(data).hexdigest()
file.set("sha1", sha1_hash)
logger.info(f"Path: {path} hash: {sha1_hash}")
if version is not None:
root.find("Version").set("number", version)
logger.info(f"Updated to version {version}")
file_name = "manifest.xml" if replace else "manifest-updated.xml"
manifest.write(base_path / file_name, encoding="UTF-8", xml_declaration=True)
def cli():
"""CLI for conveniently updating Path of Building's manifest file."""
import argparse
parser = argparse.ArgumentParser(
usage="%(prog)s [options]",
description="Update Path of Building's manifest file for a new release.",
allow_abbrev=False,
)
parser.version = "1.1.0"
parser.add_argument("--version", action="version")
logging_level = parser.add_mutually_exclusive_group()
logging_level.add_argument(
"-v", "--verbose", action="store_true", help="Print more logging information"
)
logging_level.add_argument(
"-q", "--quiet", action="store_true", help="Print no logging information"
)
parser.add_argument("--in-place", action="store_true", help="Replace original file")
parser.add_argument(
"--set-version",
action="store",
help="Set manifest version number",
metavar="SEMVER",
)
args = parser.parse_args()
logger.addHandler(logging.StreamHandler())
if args.verbose:
logger.setLevel(logging.INFO)
elif args.quiet:
logger.setLevel(logging.CRITICAL + 1)
update_manifest(args.set_version or None, args.in_place)
if __name__ == "__main__":
cli()
Lua
1
https://gitee.com/echo28/PathOfBuildingCN17173.git
git@gitee.com:echo28/PathOfBuildingCN17173.git
echo28
PathOfBuildingCN17173
PathOfBuildingCN17173
main

搜索帮助