chsrc/include/chsrc.h

826 lines
21 KiB
C
Raw Normal View History

/** ------------------------------------------------------------
2024-06-11 20:18:02 +08:00
* SPDX-License-Identifier: GPL-3.0-or-later
2024-07-31 12:38:52 +08:00
* Copyright © 2023-2024 Aoran Zeng, Heng Guo
2024-06-11 20:18:02 +08:00
* -------------------------------------------------------------
* File : chsrc.h
* Authors : Aoran Zeng <ccmywish@qq.com>
2024-06-11 20:18:02 +08:00
* | Heng Guo <2085471348@qq.com>
* Contributors : Peng Gao <gn3po4g@outlook.com>
2024-06-21 01:47:28 +08:00
* |
* Created on : <2023-08-29>
2024-08-08 15:52:13 +08:00
* Last modified : <2024-08-08>
*
2024-06-11 20:18:02 +08:00
* chsrc
* ------------------------------------------------------------*/
2023-08-29 23:04:54 +08:00
2023-09-03 14:56:49 +08:00
#include "xy.h"
2024-05-24 20:43:48 +08:00
#include "source.h"
2023-09-03 14:48:53 +08:00
2024-06-08 08:34:53 +08:00
#define App_Name "chsrc"
2023-09-15 12:50:56 +08:00
2024-06-14 15:01:52 +08:00
#define Exit_UserCause 1
#define Exit_Unsupported 2
#define Exit_MatinerIssue 3
2024-06-14 15:51:54 +08:00
#define Exit_FatalBug 4
#define Exit_FatalUnkownError 5
2024-06-14 15:01:52 +08:00
#define chsrc_log(str) xy_log(App_Name,str)
2024-06-08 08:34:53 +08:00
#define chsrc_succ(str) xy_succ(App_Name,str)
#define chsrc_info(str) xy_info(App_Name,str)
#define chsrc_warn(str) xy_warn(App_Name,str)
#define chsrc_error(str) xy_error(App_Name,str)
2024-08-08 15:52:13 +08:00
// 2系列都是带有括号的
#define chsrc_succ2(str) xy_succ_brkt(App_Name,"成功",str)
#define chsrc_log2(str) xy_info_brkt(App_Name,"LOG",str)
#define chsrc_warn2(str) xy_warn_brkt(App_Name,"警告",str)
#define chsrc_error2(str) xy_error_brkt(App_Name,"错误",str)
2024-08-08 16:30:38 +08:00
#define to_red(str) xy_str_to_red(str)
#define to_green(str) xy_str_to_green(str)
#define to_yellow(str) xy_str_to_yellow(str)
#define to_purple(str) xy_str_to_purple(str)
#define to_boldred(str) xy_str_to_bold(xy_str_to_red(str))
#define to_boldgreen(str) xy_str_to_bold(xy_str_to_green(str))
#define to_boldyellow(str) xy_str_to_bold(xy_str_to_yellow(str))
#define to_boldpurple(str) xy_str_to_bold(xy_str_to_purple(str))
2024-08-08 15:52:13 +08:00
void
chsrc_note2 (const char* str)
{
char *prompt = xy_2strjoin (App_Name " ", xy_str_to_bold (xy_str_to_yellow ("提示")));
xy_log_brkt_to (prompt, xy_str_to_yellow (str), stdout);
}
2023-09-27 15:20:44 +08:00
2024-06-11 18:03:02 +08:00
void
2024-08-08 16:30:38 +08:00
chsrc_log_check_result (const char *check_what, const char *check_type, bool exist)
2024-06-11 18:03:02 +08:00
{
if (!exist)
{
2024-08-08 16:30:38 +08:00
xy_log_brkt (App_Name, to_boldred ("检查"), xy_strjoin (5,
to_red ("x "), check_type, " ", to_red (check_what), " 不存在"));
2024-06-11 18:03:02 +08:00
}
else
{
2024-08-08 16:30:38 +08:00
xy_log_brkt (App_Name, to_boldgreen ("检查"), xy_strjoin (5,
to_green (""), check_type, " ", to_green (check_what), " 存在"));
2024-06-11 18:03:02 +08:00
}
}
2023-09-15 12:50:56 +08:00
2024-08-08 16:25:36 +08:00
void
chsrc_log_cmd_result (bool result, int ret_code)
{
if (result)
{
xy_log_brkt (App_Name, to_boldgreen ("运行"), xy_2strjoin (to_green (""), "命令执行成功"));
}
else
{
char buf[8] = {0};
sprintf (buf, "%d", ret_code);
char *log = xy_strjoin (3, to_red ("x "), "命令执行失败,返回码 ", to_boldred (buf));
xy_log_brkt (App_Name, to_boldred ("运行"), log);
}
}
bool Cli_Option_IPv6 = false;
bool Cli_Option_Locally = false;
bool Cli_Option_InEnglish = false;
bool
is_url (const char *str)
{
return (xy_str_start_with (str, "http://") || xy_str_start_with (str, "https://"));
}
2023-09-15 12:50:56 +08:00
/**
*
*
* @param check_cmd `prog_name` `prog_name`
2023-09-15 12:50:56 +08:00
* 使 python Windows上
* Microsoft Store
*
* @param prog_name
2023-09-15 12:50:56 +08:00
*/
bool
query_program_exist (char *check_cmd, char *prog_name)
2023-09-15 12:50:56 +08:00
{
char *which = check_cmd;
2023-09-15 12:50:56 +08:00
int ret = system(which);
// char buf[32] = {0}; sprintf(buf, "错误码: %d", ret);
if (0 != ret)
{
// xy_warn (xy_strjoin(4, "× 命令 ", progname, " 不存在,", buf));
2024-08-08 16:30:38 +08:00
chsrc_log_check_result (prog_name, "命令", false);
return false;
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log_check_result (prog_name, "命令", true);
return true;
}
2023-09-15 12:50:56 +08:00
}
2024-06-14 01:02:23 +08:00
/**
* @note --version
*/
bool
chsrc_check_program (char *prog_name)
{
char *quiet_cmd = xy_str_to_quietcmd (xy_2strjoin (prog_name, " --version"));
return query_program_exist (quiet_cmd, prog_name);
}
/**
* @note 退
*/
void
chsrc_ensure_program (char *prog_name)
{
char *quiet_cmd = xy_str_to_quietcmd (xy_2strjoin (prog_name, " --version"));
bool exist = query_program_exist (quiet_cmd, prog_name);
if (exist)
{
// OK, nothing should be done
}
else
{
chsrc_error (xy_strjoin (3, "未找到 ", prog_name, " 命令,请检查是否存在"));
2024-06-14 15:01:52 +08:00
exit (Exit_UserCause);
2024-06-14 01:02:23 +08:00
}
}
bool
2024-06-14 15:15:59 +08:00
chsrc_check_file (char *path)
{
if (xy_file_exist (path))
{
2024-08-08 16:30:38 +08:00
chsrc_log_check_result (path, "文件", true);
return true;
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log_check_result (path, "文件", false);
return false;
}
}
2023-09-15 12:50:56 +08:00
/**
* _setsrc codetarget可用源中
*
* @param target
* @param input default def
*/
2023-10-05 09:40:10 +08:00
#define find_mirror(s, input) query_mirror_exist(s##_sources, s##_sources_n, (char*)#s+3, input)
2023-09-15 12:50:56 +08:00
int
2024-05-25 00:49:13 +08:00
query_mirror_exist (SourceInfo *sources, size_t size, char *target, char *input)
2023-09-15 12:50:56 +08:00
{
if (is_url (input))
{
chsrc_error ("暂不支持对该软件使用用户自定义源,请联系开发者询问原因或请求支持");
2024-06-14 15:01:52 +08:00
exit (Exit_Unsupported);
}
2024-06-07 23:51:11 +08:00
if (0==size || 1==size)
2024-05-25 00:49:13 +08:00
{
2024-06-08 08:34:53 +08:00
chsrc_error (xy_strjoin (3, "当前 ", target, " 无任何可用源,请联系维护者"));
2024-06-14 15:01:52 +08:00
exit (Exit_MatinerIssue);
2024-05-25 00:49:13 +08:00
}
2023-09-15 12:50:56 +08:00
2024-06-07 23:51:11 +08:00
if (2==size)
2024-05-25 00:49:13 +08:00
{
2024-06-08 08:34:53 +08:00
chsrc_succ (xy_strjoin (4, sources[1].mirror->name, "", target, " 目前唯一可用镜像站,感谢他们的慷慨支持"));
2024-06-07 23:51:11 +08:00
}
if (xy_streql ("reset", input))
{
puts ("将重置为上游默认源");
2024-06-07 23:51:11 +08:00
return 0; // 返回第1个因为第1个是上游默认源
2024-05-25 00:49:13 +08:00
}
2023-09-15 12:50:56 +08:00
if (xy_streql ("first", input))
2024-05-25 00:49:13 +08:00
{
puts ("将使用维护团队测速第一的源");
2024-06-07 23:51:11 +08:00
return 1; // 返回第2个因为第1个是上游默认源
2024-05-25 00:49:13 +08:00
}
2023-09-15 12:50:56 +08:00
int idx = 0;
2023-10-05 09:28:34 +08:00
SourceInfo source = sources[0];
2023-09-15 12:50:56 +08:00
bool exist = false;
for (int i=0; i<size; i++)
2024-05-25 00:49:13 +08:00
{
source = sources[i];
if (xy_streql (source.mirror->code, input))
2024-05-25 00:49:13 +08:00
{
idx = i;
exist = true;
break;
}
}
if (!exist)
{
2024-06-08 08:34:53 +08:00
chsrc_error (xy_strjoin (3, "镜像站 ", input, " 不存在"));
chsrc_error (xy_2strjoin ("查看可使用源,请使用 chsrc list ", target));
2024-06-14 15:01:52 +08:00
exit (Exit_UserCause);
2023-09-15 12:50:56 +08:00
}
return idx;
}
/**
2023-09-27 19:31:23 +08:00
* oh-my-mirrorz.py @ccmywish C语言
2023-09-15 12:50:56 +08:00
*/
2024-05-25 00:49:13 +08:00
char *
2023-09-15 12:50:56 +08:00
to_human_readable_speed (double speed)
{
2024-05-25 00:49:13 +08:00
char *scale[] = {"Byte/s", "KByte/s", "MByte/s", "GByte/s", "TByte/s"};
2023-09-15 12:50:56 +08:00
int i = 0;
while (speed > 1024.0)
{
i += 1;
speed /= 1024.0;
}
2024-05-25 00:49:13 +08:00
char *buf = xy_malloc0 (64);
sprintf (buf, "%.2f %s", speed, scale[i]);
2023-09-15 12:50:56 +08:00
2024-05-25 00:49:13 +08:00
char *new = NULL;
2024-08-08 16:30:38 +08:00
if (i <= 1 ) new = to_red (buf);
2023-09-15 12:50:56 +08:00
else
2024-05-25 00:49:13 +08:00
{
2024-08-08 16:30:38 +08:00
if (i == 2 && speed < 2.00) new = to_yellow (buf);
else new = to_green (buf);
2024-05-25 00:49:13 +08:00
}
2023-09-15 12:50:56 +08:00
return new;
}
/**
* https://github.com/mirrorz-org/oh-my-mirrorz/blob/master/oh-my-mirrorz.py
2023-09-27 19:31:23 +08:00
* @ccmywish C语言
2023-09-15 12:50:56 +08:00
*
* @return -1
*/
double
2024-05-25 00:49:13 +08:00
test_speed_url (const char *url)
2023-09-15 12:50:56 +08:00
{
2024-05-25 00:49:13 +08:00
char *time_sec = "6";
2023-09-15 12:50:56 +08:00
/* 现在我们切换至跳转后的链接来测速,不再使用下述判断
2023-09-15 12:50:56 +08:00
if (xy_str_start_with(url, "https://registry.npmmirror"))
{
// 这里 npmmirror 跳转非常慢需要1~3秒所以我们给它留够至少8秒测速时间否则非常不准
time_sec = "10";
}
*/
char *ipv6 = ""; // 默认不启用
2024-07-31 12:38:52 +08:00
if (Cli_Option_IPv6==true)
{
ipv6 = "--ipv6";
}
2023-09-15 12:50:56 +08:00
// 我们用 —L因为Ruby China源会跳转到其他地方
// npmmirror 也会跳转
char *curl_cmd = xy_strjoin (7, "curl -qsL ", ipv6,
" -o " xy_os_devnull,
2024-07-31 12:38:52 +08:00
" -w \"%{http_code} %{speed_download}\" -m", time_sec,
2024-05-25 00:49:13 +08:00
" -A chsrc/" Chsrc_Version " ", url);
2023-09-15 12:50:56 +08:00
2024-06-08 08:34:53 +08:00
// chsrc_info (xy_2strjoin ("测速命令 ", curl_cmd));
2023-09-15 12:50:56 +08:00
char *buf = xy_run (curl_cmd, 0, NULL);
2023-09-15 12:50:56 +08:00
// 如果尾部有换行,删除
2023-09-27 19:31:23 +08:00
buf = xy_str_strip (buf);
2023-09-15 12:50:56 +08:00
2023-09-27 19:31:23 +08:00
// 分隔两部分数据
2024-05-25 00:49:13 +08:00
char *split = strchr (buf, ' ');
2023-09-15 12:50:56 +08:00
if (split) *split = '\0';
// puts(buf); puts(split+1);
2024-05-25 00:49:13 +08:00
int http_code = atoi (buf);
double speed = atof (split+1);
char *speedstr = to_human_readable_speed (speed);
if (200!=http_code)
{
2024-08-08 16:30:38 +08:00
char* httpcodestr = to_yellow (xy_2strjoin ("HTTP码 ", buf));
2024-05-25 00:49:13 +08:00
puts (xy_strjoin (3, speedstr, " | ", httpcodestr));
}
else
{
puts (speedstr);
}
2023-09-15 12:50:56 +08:00
return speed;
}
2023-09-03 14:48:53 +08:00
int
2024-05-25 00:49:13 +08:00
get_max_ele_idx_in_dbl_ary (double *array, int size)
2023-09-03 14:48:53 +08:00
{
double maxval = array[0];
2023-09-06 19:45:37 +08:00
int maxidx = 0;
2023-09-03 14:48:53 +08:00
2024-05-25 00:49:13 +08:00
for (int i=1; i<size; i++)
{
if (array[i]>maxval)
{
maxval = array[i];
maxidx = i;
}
2023-09-03 14:48:53 +08:00
}
return maxidx;
}
2023-09-27 09:40:31 +08:00
/**
*
*/
#define auto_select(s) auto_select_(s##_sources, s##_sources_n, (char*)#s+3)
2023-09-15 12:50:56 +08:00
int
2024-05-25 00:49:13 +08:00
auto_select_ (SourceInfo *sources, size_t size, const char *target)
2023-09-15 12:50:56 +08:00
{
2024-06-07 23:51:11 +08:00
if (0==size || 1==size)
2024-05-25 00:49:13 +08:00
{
chsrc_error (xy_strjoin (3, "当前 ", target, " 无任何可用源,请联系维护者: chsrc issue"));
2024-06-14 15:01:52 +08:00
exit (Exit_MatinerIssue);
2024-05-25 00:49:13 +08:00
}
2023-09-15 12:50:56 +08:00
bool onlyone = false;
2024-06-07 23:51:11 +08:00
if (2==size) onlyone = true;
2023-09-15 12:50:56 +08:00
2024-06-13 00:17:01 +08:00
char *check_curl = xy_str_to_quietcmd ("curl --version");
bool exist_curl = query_program_exist (check_curl, "curl");
if (!exist_curl)
{
chsrc_error ("没有curl命令无法测速");
2024-06-14 15:01:52 +08:00
exit (Exit_UserCause);
2024-06-13 00:17:01 +08:00
}
2023-09-15 12:50:56 +08:00
double speeds[size];
double speed = 0.0;
for (int i=0;i<size;i++)
{
2023-10-05 09:28:34 +08:00
SourceInfo src = sources[i];
2023-09-15 12:50:56 +08:00
const char* url = src.mirror->__bigfile_url;
2024-05-25 00:49:13 +08:00
if (NULL==url)
{
2024-06-05 15:47:15 +08:00
if (xy_streql ("upstream", src.mirror->code))
{
continue; // 上游默认源不测速
}
else
{
chsrc_warn (xy_strjoin (3, "开发者未提供 ", src.mirror->code, " 镜像站测速链接,跳过该站点"));
speed = 0;
}
2024-05-25 00:49:13 +08:00
}
else
{
printf ("%s", xy_strjoin (3, "测速 ", src.mirror->site , " ... "));
2024-05-25 00:49:13 +08:00
fflush (stdout);
speed = test_speed_url (url);
}
2023-09-15 12:50:56 +08:00
speeds[i] = speed;
}
2023-10-05 09:40:10 +08:00
int fastidx = get_max_ele_idx_in_dbl_ary (speeds, size);
2023-09-15 12:50:56 +08:00
if (onlyone)
2024-06-08 08:34:53 +08:00
chsrc_succ (xy_strjoin (4, sources[fastidx].mirror->name, "", target, " 目前唯一可用镜像站,感谢他们的慷慨支持"));
2023-09-15 12:50:56 +08:00
else
2024-08-08 16:30:38 +08:00
puts (xy_2strjoin ("最快镜像站: ", to_green (sources[fastidx].mirror->name)));
2023-09-15 12:50:56 +08:00
return fastidx;
}
2023-09-27 09:40:31 +08:00
#define use_specific_mirror_or_auto_select(input, s) \
(NULL!=(input)) ? find_mirror(s, input) : auto_select(s)
2024-06-07 23:51:11 +08:00
bool
source_is_upstream (SourceInfo *source)
2024-06-07 23:51:11 +08:00
{
return xy_streql (source->mirror->code, "upstream");
}
bool
source_is_userdefine (SourceInfo *source)
{
return xy_streql (source->mirror->code, "user");
}
2024-06-07 23:51:11 +08:00
bool
source_has_empty_url (SourceInfo *source)
2024-06-07 23:51:11 +08:00
{
return source->url == NULL;
}
2024-06-13 23:43:31 +08:00
/**
* ** SourceInfo
*
* 1. MirrorCode
* 2. ()
* 3. URL
*
* @dependency option
* @dependency source
*/
#define chsrc_yield_source(for_what) \
if (is_url (option)) \
{ \
SourceInfo __tmp = { &UserDefine, option }; \
source = __tmp; \
} \
else \
{ \
int __index = use_specific_mirror_or_auto_select (option, for_what); \
source = for_what##_sources[__index]; \
2024-06-13 23:43:31 +08:00
}
2024-06-07 23:51:11 +08:00
#define split_between_source_changing_process puts ("--------------------------------")
2023-09-03 17:57:45 +08:00
/**
* _setsrc
2024-06-07 23:51:11 +08:00
*
* 1.
* 2.
2023-09-03 17:57:45 +08:00
*/
void
2024-06-14 15:07:04 +08:00
chsrc_confirm_source (SourceInfo *source)
2023-09-03 17:57:45 +08:00
{
2024-06-07 23:51:11 +08:00
// 由于实现问题,我们把本应该独立出去的默认上游源,也放在了可以换源的数组中,而且放在第一个
// chsrc 已经规避用户使用未实现的 `chsrc reset`
// 但是某些用户可能摸索着强行使用 chsrc set target upstream从而执行起该禁用的功能
// 之所以禁用,是因为有的 reset 我们并没有实现,我们在这里阻止这些邪恶的用户
if (source_is_upstream (source) && source_has_empty_url (source))
2024-06-07 23:51:11 +08:00
{
chsrc_error ("暂未对该软件实现重置");
2024-06-14 15:01:52 +08:00
exit (Exit_Unsupported);
2024-06-07 23:51:11 +08:00
}
else if (source_has_empty_url (source))
2024-06-07 23:51:11 +08:00
{
chsrc_error ("该源URL不存在请向开发团队提交bug");
2024-06-14 15:51:54 +08:00
exit (Exit_FatalBug);
2024-06-07 23:51:11 +08:00
}
else
{
2024-08-08 16:30:38 +08:00
puts (xy_strjoin (5, "选中镜像站: ", to_green (source->mirror->abbr), " (", to_green (source->mirror->code), ")"));
2024-06-07 23:51:11 +08:00
}
split_between_source_changing_process;
2023-09-03 17:57:45 +08:00
}
2023-09-15 12:50:56 +08:00
#define ChsrcTypeAuto "auto"
#define ChsrcTypeReset "reset"
#define ChsrcTypeSemiAuto "semiauto"
#define ChsrcTypeManual "manual"
#define ChsrcTypeUntested "untested"
/**
* @param source NULL
* @param last_word 5ChsrcTypeAuto | ChsrcTypeReset | ChsrcTypeSemiAuto | ChsrcTypeManual | ChsrcTypeUntested
*/
2023-09-04 15:39:49 +08:00
void
chsrc_say_lastly (SourceInfo *source, const char *last_word)
2023-09-04 15:39:49 +08:00
{
split_between_source_changing_process;
if (xy_streql (ChsrcTypeAuto, last_word))
{
if (source)
{
if (source_is_userdefine (source))
{
chsrc_log ("全自动换源完成; 邀您参与贡献帮助其他人使用该URL换源: chsrc issue");
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log (xy_2strjoin ("全自动换源完成,感谢镜像提供方: ", to_purple (source->mirror->name)));
}
}
else
{
chsrc_log ("全自动换源完成");
}
}
else if (xy_streql (ChsrcTypeReset, last_word))
{
// source_is_upstream (source)
2024-08-08 16:30:38 +08:00
chsrc_log (to_purple ("已重置为上游默认源"));
}
else if (xy_streql (ChsrcTypeSemiAuto, last_word))
{
if (source)
{
if (source_is_userdefine (source))
{
chsrc_log ("半自动换源完成,仍需按上述提示手工操作; 邀您参与贡献帮助其他人使用该URL换源: chsrc issue");
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log (xy_2strjoin ("半自动换源完成,仍需按上述提示手工操作,感谢镜像提供方: ", to_purple (source->mirror->name)));
}
}
else
{
chsrc_log ("半自动换源完成,仍需按上述提示手工操作");
}
2024-06-08 13:26:52 +08:00
chsrc_warn ("若您有完全自动化的换源方案,邀您帮助: chsrc issue");
}
else if (xy_streql (ChsrcTypeManual, last_word))
{
if (source)
{
if (source_is_userdefine (source))
{
chsrc_log ("因实现约束需按上述提示手工操作; 邀您参与贡献帮助其他人使用该URL换源: chsrc issue");
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log (xy_2strjoin ("因实现约束需按上述提示手工操作,感谢镜像提供方: ", to_purple (source->mirror->name)));
}
}
else
{
chsrc_log ("因实现约束需按上述提示手工操作");
}
2024-06-08 13:26:52 +08:00
chsrc_warn ("若您有完全自动化的换源方案,邀您帮助: chsrc issue");
}
else if (xy_streql (ChsrcTypeUntested, last_word))
2024-06-07 23:51:11 +08:00
{
if (source)
{
if (source_is_userdefine (source))
{
chsrc_log ("邀您参与贡献帮助其他人使用该URL换源: chsrc issue");
}
else
{
2024-08-08 16:30:38 +08:00
chsrc_log (xy_2strjoin ("感谢镜像提供方: ", to_purple (source->mirror->name)));
}
}
else
{
chsrc_log ("自动换源完成");
}
2024-06-08 13:26:52 +08:00
chsrc_warn ("该换源步骤已实现但未经测试或存在任何反馈,请报告使用情况: chsrc issue");
2024-06-07 23:51:11 +08:00
}
else
{
puts (last_word);
2024-06-07 23:51:11 +08:00
}
2023-09-04 15:39:49 +08:00
}
2023-09-03 14:48:53 +08:00
2023-09-22 13:07:49 +08:00
void
2023-09-29 21:28:02 +08:00
chsrc_ensure_root ()
2023-09-22 13:07:49 +08:00
{
2024-05-25 00:49:13 +08:00
char *euid = getenv ("$EUID");
if (NULL==euid)
{
char *buf = xy_run ("id -u", 0, NULL);
2024-05-25 00:49:13 +08:00
if (0!=atoi(buf)) goto not_root;
else return;
}
else
{
if (0!=atoi(euid)) goto not_root;
else return;
}
2023-09-22 13:07:49 +08:00
not_root:
2024-06-08 08:34:53 +08:00
chsrc_error ("请在命令前使用 sudo 或切换为root用户来保证必要的权限");
2024-06-14 15:01:52 +08:00
exit (Exit_UserCause);
2023-09-22 13:07:49 +08:00
}
2024-07-29 21:43:53 +08:00
#define RunOpt_Default 0x0000 // 默认若命令运行失败,直接退出
#define RunOpt_Dont_Notify_On_Success 0x0010 // 运行成功不提示用户,只有运行失败时才提示用户
#define RunOpt_No_Last_New_Line 0x0100 // 不输出最后的空行
#define RunOpt_Dont_Abort_On_Failure 0x1000 // 命令运行失败也不退出
2024-06-14 15:51:54 +08:00
2023-09-26 21:41:47 +08:00
static void
2024-06-14 15:51:54 +08:00
chsrc_run (const char *cmd, int run_option)
2023-09-26 21:41:47 +08:00
{
2024-08-08 15:52:13 +08:00
xy_info_brkt (App_Name, "运行", cmd);
int status = system (cmd);
if (0==status)
{
2024-07-29 21:43:53 +08:00
if (! (RunOpt_Dont_Notify_On_Success & run_option))
2024-06-14 15:51:54 +08:00
{
2024-08-08 16:25:36 +08:00
chsrc_log_cmd_result (true, status);
2024-06-14 15:51:54 +08:00
}
}
else
{
2024-08-08 16:25:36 +08:00
chsrc_log_cmd_result (false, status);
2024-07-29 21:43:53 +08:00
if (! (run_option & RunOpt_Dont_Abort_On_Failure))
2024-06-14 15:51:54 +08:00
{
chsrc_error ("关键错误,强制结束");
exit (Exit_FatalUnkownError);
}
}
if (! (RunOpt_No_Last_New_Line & run_option))
{
puts ("");
}
2023-09-26 21:41:47 +08:00
}
2023-09-26 22:24:48 +08:00
static void
2024-07-09 13:04:37 +08:00
chsrc_view_file (const char *path)
2023-09-26 22:24:48 +08:00
{
2024-05-25 00:49:13 +08:00
char *cmd = NULL;
2023-09-27 18:31:45 +08:00
path = xy_uniform_path (path);
2024-07-31 12:38:52 +08:00
if (xy_on_windows)
2024-05-25 00:49:13 +08:00
{
cmd = xy_2strjoin ("type ", path);
}
else
{
cmd = xy_2strjoin ("cat ", path);
}
2024-07-29 21:43:53 +08:00
chsrc_run (cmd, RunOpt_Dont_Notify_On_Success|RunOpt_No_Last_New_Line);
2023-09-26 22:24:48 +08:00
}
2023-09-29 21:23:58 +08:00
static void
2024-05-25 00:49:13 +08:00
chsrc_ensure_dir (const char *dir)
2023-09-29 21:23:58 +08:00
{
2023-09-29 22:15:58 +08:00
dir = xy_uniform_path (dir);
2024-07-09 12:47:55 +08:00
2024-07-09 14:31:34 +08:00
if (xy_dir_exist (dir))
2024-07-09 12:47:55 +08:00
{
2024-07-09 14:31:34 +08:00
return;
2024-07-09 12:47:55 +08:00
}
// 不存在就生成
2024-07-09 14:31:34 +08:00
char *mkdir_cmd = NULL;
2024-05-25 00:49:13 +08:00
if (xy_on_windows)
{
2024-07-09 12:47:55 +08:00
mkdir_cmd = "md "; // 已存在时返回 errorlevel = 1
2024-05-25 00:49:13 +08:00
}
else
{
mkdir_cmd = "mkdir -p ";
}
char *cmd = xy_2strjoin (mkdir_cmd, dir);
2023-09-29 21:23:58 +08:00
cmd = xy_str_to_quietcmd (cmd);
2024-07-29 21:43:53 +08:00
chsrc_run (cmd, RunOpt_No_Last_New_Line|RunOpt_Dont_Notify_On_Success);
2024-08-08 15:52:13 +08:00
chsrc_note2 (xy_2strjoin ("目录不存在,已自动创建 ", dir));
2023-09-29 21:23:58 +08:00
}
2023-09-26 21:41:47 +08:00
static void
2024-05-25 00:49:13 +08:00
chsrc_append_to_file (const char *str, const char *file)
2023-09-26 21:41:47 +08:00
{
2023-09-27 18:31:45 +08:00
file = xy_uniform_path (file);
2024-05-25 00:49:13 +08:00
char *dir = xy_parent_dir (file);
2023-09-29 21:23:58 +08:00
chsrc_ensure_dir (dir);
2024-05-25 00:49:13 +08:00
char *cmd = NULL;
if (xy_on_windows)
{
cmd = xy_strjoin (4, "echo ", str, " >> ", file);
}
else
{
cmd = xy_strjoin (4, "echo '", str, "' >> ", file);
}
2024-07-29 21:43:53 +08:00
chsrc_run (cmd, RunOpt_No_Last_New_Line|RunOpt_Dont_Notify_On_Success);
2024-07-03 13:59:06 +08:00
}
static void
chsrc_prepend_to_file (const char *str, const char *file)
{
file = xy_uniform_path (file);
char *dir = xy_parent_dir (file);
chsrc_ensure_dir (dir);
char *cmd = NULL;
if (xy_on_windows)
{
xy_unimplement;
}
else
{
cmd = xy_strjoin (4, "sed -i '1i ", str, "' ", file);
2024-07-03 13:59:06 +08:00
}
2024-07-29 21:43:53 +08:00
chsrc_run (cmd, RunOpt_No_Last_New_Line|RunOpt_Dont_Notify_On_Success);
2023-09-26 21:41:47 +08:00
}
static void
2024-05-25 00:49:13 +08:00
chsrc_overwrite_file (const char *str, const char *file)
2023-09-26 21:41:47 +08:00
{
2023-09-27 18:31:45 +08:00
file = xy_uniform_path (file);
2024-05-25 00:49:13 +08:00
char *dir = xy_parent_dir (file);
2023-09-29 21:23:58 +08:00
chsrc_ensure_dir (dir);
2024-05-25 00:49:13 +08:00
char *cmd = NULL;
if (xy_on_windows)
{
cmd = xy_strjoin (4, "echo ", str, " > ", file);
}
else
{
cmd = xy_strjoin (4, "echo '", str, "' > ", file);
}
2024-06-14 15:51:54 +08:00
chsrc_run (cmd, RunOpt_Default);
2023-09-26 21:41:47 +08:00
}
2023-09-26 23:02:12 +08:00
static void
2024-05-25 00:49:13 +08:00
chsrc_backup (const char *path)
2023-09-26 23:02:12 +08:00
{
2024-05-25 00:49:13 +08:00
char *cmd = NULL;
bool exist = xy_file_exist (path);
if (!exist)
{
2024-08-08 15:52:13 +08:00
chsrc_note2 (xy_2strjoin ("文件不存在,跳过备份: ", path));
return;
}
2023-10-05 17:32:02 +08:00
if (xy_on_bsd || xy_on_macos)
2024-05-25 00:49:13 +08:00
{
/* BSD 和 macOS 的 cp 不支持 --backup 选项 */
2024-05-25 00:49:13 +08:00
cmd = xy_strjoin (5, "cp -f ", path, " ", path, ".bak");
}
else if (xy_on_windows)
{
// /Y 表示覆盖
cmd = xy_strjoin (5, "copy /Y ", path, " ", path, ".bak" );
}
else
{
cmd = xy_strjoin (5, "cp ", path, " ", path, ".bak --backup='t'");
}
2023-10-05 17:32:02 +08:00
2024-07-29 21:43:53 +08:00
chsrc_run (cmd, RunOpt_No_Last_New_Line|RunOpt_Dont_Notify_On_Success);
2024-08-08 15:52:13 +08:00
chsrc_note2 (xy_strjoin (3, "备份文件名为 ", path, ".bak"));
2023-09-26 23:02:12 +08:00
}
2023-09-26 21:41:47 +08:00
2024-06-21 10:55:43 +08:00
static char *
chsrc_get_cpuarch ()
{
char *ret;
bool exist;
if (xy_on_windows)
{
xy_unimplement;
}
exist = chsrc_check_program ("arch");
if (exist)
{
ret = xy_run ("arch", 0, NULL);
return ret;
}
exist = chsrc_check_program ("uname");
if (exist)
{
ret = xy_run ("uname -m", 0, NULL);
2024-06-21 10:55:43 +08:00
return ret;
}
else
{
chsrc_error ("无法检测到CPU类型");
exit (Exit_UserCause);
}
}
2023-09-26 21:41:47 +08:00
2023-09-02 19:07:30 +08:00
/* Target Info */
typedef struct TargetInfo_t {
void (*getfn) (char *option);
void (*setfn) (char *option);
void (*resetfn) (char *option);
2024-05-25 00:49:13 +08:00
SourceInfo *sources;
2023-10-05 09:28:34 +08:00
size_t sources_n;
} TargetInfo;
2023-09-02 19:07:30 +08:00
// 大部分target还不支持reset所以暂时先默认设置为NULL来过渡
#define def_target(t) TargetInfo t##_target = {t##_getsrc, t##_setsrc, NULL, t##_sources, t##_sources_n}
#define def_target_full(t) TargetInfo t##_target = {t##_getsrc, t##_setsrc, t##_resetsrc, t##_sources, t##_sources_n}
#define def_target_noget(t) TargetInfo t##_target = {NULL, t##_setsrc, NULL, t##_sources, t##_sources_n}