Add sources prepare for Debian

This commit is contained in:
Aoran Zeng
2025-07-11 19:43:39 +08:00
parent 6e2b33269a
commit 6e40cfe238
3 changed files with 67 additions and 13 deletions

View File

@@ -818,6 +818,42 @@ measure_speed_for_every_source (Source_t sources[], int size, double speed_recor
/**
* @brief 填充专用测速链接
*
* 该宏的作用是将某个 target 源的专用测速链接填充到 Source_t 中的 speed_url 字段中
*
* 即使不需要该宏也是可以的,但是代价就是维护者要维护比较重复的两个字段: url 和 speed_url
*
* @note 该宏仅当在 recipe 中使用, 由 <category>_<target>_sources_prepare() 调用
*/
#define chsrc_sources_prepare_speedurl_with_postfix(target,str) sources_prepare_speedurl_with_postfix(target##_sources, target##_sources_n, str)
static void
sources_prepare_speedurl_with_postfix (Source_t sources[], int n, char *postfix)
{
for (int i=0; i<n; i++)
{
Source_t *src = &sources[i];
ProviderType_t type = src->provider->type;
if (IS_DedicatedMirrorSite==type || IS_UpstreamProvider==type)
{
/* 这两个不用填因为定义这二者的时候如果给了整体测速URL则就是ACCURATE的我们直接会DelegateTo那里 */
continue;
}
if (src->url)
{
/* 为空时才修改 或者里面是脏数据 */
if (NULL==src->speed_measure_url || !is_url(src->speed_measure_url))
src->speed_measure_url = xy_2strjoin (src->url, postfix);
}
}
}
/**
* 自动测速选择镜像站和源
*/

View File

@@ -92,6 +92,8 @@ Source_t;
#define DelegateToMirror NULL
/* 看到该注释的贡献者,你可以帮忙寻找专用测速链接 */
#define NeedContribute NULL
/* 由 _sources_prepare 填充 */
#define FeedBySourcesPrepare NULL
#define def_sources_n(t) const size_t t##_sources_n = xy_arylen(t##_sources)