forked from fzls/djc_helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_create_patches.py
193 lines (147 loc) · 7.22 KB
/
_create_patches.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/usr/bin/env python
# -------------------------------
# File : _create_patch.py
# DateTime : 2020/7/15 0015 2:22
# Author : Chen Ji
# Email : fzls.zju@gmail.com
# -------------------------------
import multiprocessing
import os
import shutil
import subprocess
from typing import List
from compress import compress_dir_with_bandizip, decompress_dir_with_bandizip
from log import color, logger
from update import version_less
from upload_lanzouyun import FileInFolder, Uploader
from util import human_readable_size, range_from_one
from version import now_version
class HistoryVersionFileInfo:
def __init__(self, fileinfo: FileInFolder, version: str):
self.fileinfo = fileinfo
self.version = version
def __lt__(self, other):
return version_less(self.version, other.version)
def __eq__(self, other):
return self.version == other.version
def __repr__(self):
return self.version
def create_patch(
dir_src,
dir_all_release,
create_patch_for_latest_n_version,
dir_github_action_artifact,
get_final_patch_path_only=False,
) -> str:
latest_version = now_version
old_cwd = os.getcwd()
os.chdir(dir_all_release)
if not get_final_patch_path_only:
logger.info(f"工作目录已调整为{os.getcwd()},最新版本为v{latest_version}")
uploader = Uploader()
if not get_final_patch_path_only:
logger.info(f"尝试从网盘查找在{latest_version}版本之前最近{create_patch_for_latest_n_version}个版本的信息")
old_version_infos: List[HistoryVersionFileInfo] = []
# 获取当前网盘的最新版本,若比当前发布版本低,也加入
netdisk_latest_version_fileinfo = uploader.find_latest_version()
netdisk_latest_version = uploader.parse_version_from_djc_helper_file_name(netdisk_latest_version_fileinfo.name)
if version_less(netdisk_latest_version, latest_version):
old_version_infos.append(HistoryVersionFileInfo(netdisk_latest_version_fileinfo, netdisk_latest_version))
# 从历史版本网盘中查找旧版本
for page in range_from_one(100):
folder_info = uploader.get_folder_info_by_url(uploader.folder_history_files.url, get_this_page=page)
for file in folder_info.files:
filename: str = file.name
if not filename.startswith(uploader.history_version_prefix):
# 跳过非历史版本的文件
continue
file_version = uploader.parse_version_from_djc_helper_file_name(filename)
info = HistoryVersionFileInfo(file, file_version)
if not version_less(file_version, latest_version):
continue
if info in old_version_infos:
# 已经加入过(可能重复)
continue
old_version_infos.append(info)
if len(old_version_infos) >= create_patch_for_latest_n_version + 2:
# 已经找到超过前n+2个版本,因为网盘返回的必定是按上传顺序排列的,不过为了保险起见,多考虑一些
break
if create_patch_for_latest_n_version > len(old_version_infos):
create_patch_for_latest_n_version = len(old_version_infos)
old_version_infos = sorted(old_version_infos)[-create_patch_for_latest_n_version:]
# 确认最终文件名
patch_oldest_version = old_version_infos[0].version
patch_newest_version = old_version_infos[-1].version
patches_dir = f"DNF蚊子腿小助手_增量更新文件_v{patch_oldest_version}_to_v{patch_newest_version}"
temp_dir = "patches_temp"
patch_7z_file = f"{patches_dir}.7z"
if get_final_patch_path_only:
return patch_7z_file
logger.info(f"需要制作补丁包的版本为{old_version_infos}")
# 确保版本都在本地
logger.info("确保以上版本均已下载并解压到本地~")
for info in old_version_infos:
local_folder_path = os.path.join(dir_all_release, f"DNF蚊子腿小助手_v{info.version}_by风之凌殇")
local_7z_path = local_folder_path + ".7z"
if os.path.isdir(local_folder_path):
# 本地已存在对应版本,跳过
continue
logger.info(f"本地发布目录不存在 {local_folder_path}")
if not os.path.isfile(local_7z_path):
logger.info(f"本地不存在{info.fileinfo.name}的7z文件,将从网盘下载")
uploader.download_file(info.fileinfo, dir_all_release)
logger.info(f"尝试解压 {info.fileinfo.name} 到 {local_folder_path}")
decompress_dir_with_bandizip(local_7z_path, dir_src)
# --------------------------- 实际只做补丁包 ---------------------------
logger.info(color("bold_yellow") + f"将为【{old_version_infos}】版本制作补丁包")
shutil.rmtree(patches_dir, ignore_errors=True)
os.mkdir(patches_dir)
shutil.rmtree(temp_dir, ignore_errors=True)
os.mkdir(temp_dir)
def temp_path(dir_name):
return os.path.realpath(os.path.join(temp_dir, dir_name))
def preprocess_before_patch(temp_version_path):
for filename in ["config.toml", "utils/auto_updater.exe"]:
filepath = os.path.join(temp_version_path, filename)
if os.path.isfile(filepath):
os.remove(filepath)
# 为旧版本创建patch文件
target_version_dir = f"DNF蚊子腿小助手_v{latest_version}_by风之凌殇"
logger.info(f"目标版本目录为{target_version_dir}")
shutil.copytree(target_version_dir, temp_path(target_version_dir))
preprocess_before_patch(temp_path(target_version_dir))
for idx, version_info in enumerate(old_version_infos):
version = version_info.version
patch_file = f"{patches_dir}/{version}.patch"
logger.info("-" * 80)
logger.info(
color("bold_yellow")
+ f"[{idx + 1}/{len(old_version_infos)}] 创建从v{version}升级到v{latest_version}的补丁{patch_file}"
)
version_dir = f"DNF蚊子腿小助手_v{version}_by风之凌殇"
shutil.copytree(version_dir, temp_path(version_dir))
preprocess_before_patch(temp_path(version_dir))
subprocess.call(
[
os.path.realpath(os.path.join(dir_src, "utils/hdiffz.exe")),
f"-p-{multiprocessing.cpu_count()}", # 设置系统最大cpu数
os.path.realpath(os.path.join(temp_dir, version_dir)),
os.path.realpath(os.path.join(temp_dir, target_version_dir)),
patch_file,
]
)
filesize = os.path.getsize(patch_file)
logger.info(f"创建补丁{patch_file}结束,最终大小为{human_readable_size(filesize)}")
# 移除临时目录
shutil.rmtree(temp_dir, ignore_errors=True)
# 压缩打包
compress_dir_with_bandizip(patches_dir, patch_7z_file, dir_src)
# 额外备份一份最新的供github action 使用
shutil.copyfile(patch_7z_file, os.path.join(dir_github_action_artifact, "djc_helper_patches.7z"))
os.chdir(old_cwd)
return patch_7z_file
if __name__ == "__main__":
dir_src = os.path.realpath(".")
dir_all_release = os.path.realpath(os.path.join("releases"))
dir_github_action_artifact = "_github_action_artifact"
create_patch(dir_src, dir_all_release, 3, dir_github_action_artifact)