Refactor: make Node.js run compatible

This commit is contained in:
SukkaW 2024-07-23 17:42:10 +08:00
parent 1f42c27afe
commit 553dd62eb1
32 changed files with 163 additions and 136 deletions

4
.swcrc
View File

@ -6,5 +6,9 @@
"syntax": "typescript", "syntax": "typescript",
"dynamicImport": true "dynamicImport": true
} }
},
"module": {
"type": "commonjs",
"ignoreDynamic": true
} }
} }

View File

@ -17,7 +17,7 @@ export const getAppleCdnDomainsPromise = createMemoizedPromise(() => fsFetchCach
} }
)); ));
export const buildAppleCdn = task(import.meta.main, import.meta.path)(async (span) => { export const buildAppleCdn = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const res: string[] = await span.traceChildPromise('get apple cdn domains', getAppleCdnDomainsPromise()); const res: string[] = await span.traceChildPromise('get apple cdn domains', getAppleCdnDomainsPromise());
const description = [ const description = [
@ -40,8 +40,8 @@ export const buildAppleCdn = task(import.meta.main, import.meta.path)(async (spa
new Date(), new Date(),
ruleset, ruleset,
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/non_ip/apple_cdn.conf'), path.resolve(__dirname, '../List/non_ip/apple_cdn.conf'),
path.resolve(import.meta.dir, '../Clash/non_ip/apple_cdn.txt') path.resolve(__dirname, '../Clash/non_ip/apple_cdn.txt')
), ),
createRuleset( createRuleset(
span, span,
@ -50,8 +50,8 @@ export const buildAppleCdn = task(import.meta.main, import.meta.path)(async (spa
new Date(), new Date(),
domainset, domainset,
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/apple_cdn.conf'), path.resolve(__dirname, '../List/domainset/apple_cdn.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/apple_cdn.txt') path.resolve(__dirname, '../Clash/domainset/apple_cdn.txt')
) )
]); ]);
}); });

View File

@ -48,7 +48,7 @@ const getS3OSSDomainsPromise = (async (): Promise<string[]> => {
return Array.from(S3OSSDomains); return Array.from(S3OSSDomains);
})(); })();
export const buildCdnDownloadConf = task(import.meta.main, import.meta.path)(async (span) => { export const buildCdnDownloadConf = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const [ const [
S3OSSDomains, S3OSSDomains,
@ -57,9 +57,9 @@ export const buildCdnDownloadConf = task(import.meta.main, import.meta.path)(asy
steamDomainSet steamDomainSet
] = await Promise.all([ ] = await Promise.all([
getS3OSSDomainsPromise, getS3OSSDomainsPromise,
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/domainset/cdn.conf')), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/domainset/cdn.conf')),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/domainset/download.conf')), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/domainset/download.conf')),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/domainset/steam.conf')) readFileIntoProcessedArray(path.resolve(__dirname, '../Source/domainset/steam.conf'))
]); ]);
appendArrayInPlace(downloadDomainSet, S3OSSDomains.map(domain => `.${domain}`)); appendArrayInPlace(downloadDomainSet, S3OSSDomains.map(domain => `.${domain}`));
@ -77,8 +77,8 @@ export const buildCdnDownloadConf = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
sortDomains(domainDeduper(cdnDomainsList)), sortDomains(domainDeduper(cdnDomainsList)),
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/cdn.conf'), path.resolve(__dirname, '../List/domainset/cdn.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/cdn.txt') path.resolve(__dirname, '../Clash/domainset/cdn.txt')
), ),
createRuleset( createRuleset(
span, span,
@ -91,8 +91,8 @@ export const buildCdnDownloadConf = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
sortDomains(domainDeduper(downloadDomainSet)), sortDomains(domainDeduper(downloadDomainSet)),
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/download.conf'), path.resolve(__dirname, '../List/domainset/download.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/download.txt') path.resolve(__dirname, '../Clash/domainset/download.txt')
) )
]); ]);
}); });

View File

@ -16,7 +16,7 @@ export const getChnCidrPromise = createMemoizedPromise(async () => {
return exclude(cidr, NON_CN_CIDR_INCLUDED_IN_CHNROUTE, true); return exclude(cidr, NON_CN_CIDR_INCLUDED_IN_CHNROUTE, true);
}); });
export const buildChnCidr = task(import.meta.main, import.meta.path)(async (span) => { export const buildChnCidr = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const filteredCidr = await span.traceChildAsync('download chnroutes2', getChnCidrPromise); const filteredCidr = await span.traceChildAsync('download chnroutes2', getChnCidrPromise);
// Can not use SHARED_DESCRIPTION here as different license // Can not use SHARED_DESCRIPTION here as different license
@ -38,7 +38,7 @@ export const buildChnCidr = task(import.meta.main, import.meta.path)(async (span
new Date(), new Date(),
filteredCidr.map(i => `IP-CIDR,${i}`) filteredCidr.map(i => `IP-CIDR,${i}`)
), ),
pathResolve(import.meta.dir, '../List/ip/china_ip.conf') pathResolve(__dirname, '../List/ip/china_ip.conf')
), ),
compareAndWriteFile( compareAndWriteFile(
span, span,
@ -48,7 +48,7 @@ export const buildChnCidr = task(import.meta.main, import.meta.path)(async (span
new Date(), new Date(),
filteredCidr filteredCidr
), ),
pathResolve(import.meta.dir, '../Clash/ip/china_ip.txt') pathResolve(__dirname, '../Clash/ip/china_ip.txt')
) )
]); ]);
}); });

View File

@ -4,10 +4,10 @@ import { SHARED_DESCRIPTION } from './lib/constants';
import { createRuleset } from './lib/create-file'; import { createRuleset } from './lib/create-file';
import { task } from './trace'; import { task } from './trace';
const outputSurgeDir = path.resolve(import.meta.dir, '../List'); const outputSurgeDir = path.resolve(__dirname, '../List');
const outputClashDir = path.resolve(import.meta.dir, '../Clash'); const outputClashDir = path.resolve(__dirname, '../Clash');
export const buildCloudMounterRules = task(import.meta.main, import.meta.path)(async (span) => { export const buildCloudMounterRules = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
// AND,((SRC-IP,192.168.1.110), (DOMAIN, example.com)) // AND,((SRC-IP,192.168.1.110), (DOMAIN, example.com))
const results = DOMAINS.flatMap(domain => { const results = DOMAINS.flatMap(domain => {

View File

@ -15,13 +15,13 @@ const MAGIC_COMMAND_SKIP = '# $ custom_build_script';
const MAGIC_COMMAND_TITLE = '# $ meta_title '; const MAGIC_COMMAND_TITLE = '# $ meta_title ';
const MAGIC_COMMAND_DESCRIPTION = '# $ meta_description '; const MAGIC_COMMAND_DESCRIPTION = '# $ meta_description ';
const sourceDir = path.resolve(import.meta.dir, '../Source'); const sourceDir = path.resolve(__dirname, '../Source');
const outputSurgeDir = path.resolve(import.meta.dir, '../List'); const outputSurgeDir = path.resolve(__dirname, '../List');
const outputClashDir = path.resolve(import.meta.dir, '../Clash'); const outputClashDir = path.resolve(__dirname, '../Clash');
const domainsetSrcFolder = 'domainset' + path.sep; const domainsetSrcFolder = 'domainset' + path.sep;
export const buildCommon = task(import.meta.main, import.meta.path)(async (span) => { export const buildCommon = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const promises: Array<Promise<unknown>> = []; const promises: Array<Promise<unknown>> = [];
const paths = await new Fdir() const paths = await new Fdir()

View File

@ -8,10 +8,10 @@ const DEPRECATED_FILES = [
['domainset/reject_phishing', 'This file has been merged with domainset/reject'] ['domainset/reject_phishing', 'This file has been merged with domainset/reject']
]; ];
const outputSurgeDir = path.resolve(import.meta.dir, '../List'); const outputSurgeDir = path.resolve(__dirname, '../List');
const outputClashDir = path.resolve(import.meta.dir, '../Clash'); const outputClashDir = path.resolve(__dirname, '../Clash');
export const buildDeprecateFiles = task(import.meta.main, import.meta.path)((span) => span.traceChildAsync('create deprecated files', async (childSpan) => { export const buildDeprecateFiles = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)((span) => span.traceChildAsync('create deprecated files', async (childSpan) => {
const promises: Array<Promise<unknown>> = []; const promises: Array<Promise<unknown>> = [];
for (const [filePath, description] of DEPRECATED_FILES) { for (const [filePath, description] of DEPRECATED_FILES) {

View File

@ -12,8 +12,8 @@ import * as yaml from 'yaml';
import { appendArrayInPlace } from './lib/append-array-in-place'; import { appendArrayInPlace } from './lib/append-array-in-place';
export const getDomesticAndDirectDomainsRulesetPromise = createMemoizedPromise(async () => { export const getDomesticAndDirectDomainsRulesetPromise = createMemoizedPromise(async () => {
const domestics = await readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/domestic.conf')); const domestics = await readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/domestic.conf'));
const directs = await readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/direct.conf')); const directs = await readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/direct.conf'));
const lans: string[] = []; const lans: string[] = [];
Object.entries(DOMESTICS).forEach(([, { domains }]) => { Object.entries(DOMESTICS).forEach(([, { domains }]) => {
@ -29,7 +29,7 @@ export const getDomesticAndDirectDomainsRulesetPromise = createMemoizedPromise(a
return [domestics, directs, lans] as const; return [domestics, directs, lans] as const;
}); });
export const buildDomesticRuleset = task(import.meta.main, import.meta.path)(async (span) => { export const buildDomesticRuleset = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const res = await getDomesticAndDirectDomainsRulesetPromise(); const res = await getDomesticAndDirectDomainsRulesetPromise();
const dataset = Object.entries(DOMESTICS); const dataset = Object.entries(DOMESTICS);
@ -48,8 +48,8 @@ export const buildDomesticRuleset = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
res[0], res[0],
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/non_ip/domestic.conf'), path.resolve(__dirname, '../List/non_ip/domestic.conf'),
path.resolve(import.meta.dir, '../Clash/non_ip/domestic.txt') path.resolve(__dirname, '../Clash/non_ip/domestic.txt')
), ),
createRuleset( createRuleset(
span, span,
@ -62,8 +62,8 @@ export const buildDomesticRuleset = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
res[1], res[1],
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/non_ip/direct.conf'), path.resolve(__dirname, '../List/non_ip/direct.conf'),
path.resolve(import.meta.dir, '../Clash/non_ip/direct.txt') path.resolve(__dirname, '../Clash/non_ip/direct.txt')
), ),
createRuleset( createRuleset(
span, span,
@ -76,8 +76,8 @@ export const buildDomesticRuleset = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
res[2], res[2],
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/non_ip/lan.conf'), path.resolve(__dirname, '../List/non_ip/lan.conf'),
path.resolve(import.meta.dir, '../Clash/non_ip/lan.txt') path.resolve(__dirname, '../Clash/non_ip/lan.txt')
), ),
compareAndWriteFile( compareAndWriteFile(
span, span,
@ -94,10 +94,10 @@ export const buildDomesticRuleset = task(import.meta.main, import.meta.path)(asy
]) ])
]) ])
], ],
path.resolve(import.meta.dir, '../Modules/sukka_local_dns_mapping.sgmodule') path.resolve(__dirname, '../Modules/sukka_local_dns_mapping.sgmodule')
), ),
fsp.writeFile( fsp.writeFile(
path.resolve(import.meta.dir, '../Internal/clash_nameserver_policy.yaml'), path.resolve(__dirname, '../Internal/clash_nameserver_policy.yaml'),
yaml.stringify( yaml.stringify(
{ {
dns: { dns: {

View File

@ -7,7 +7,7 @@ import { NON_CN_CIDR_INCLUDED_IN_CHNROUTE, RESERVED_IPV4_CIDR } from './constant
import fsp from 'fs/promises'; import fsp from 'fs/promises';
export const buildInternalReverseChnCIDR = task(import.meta.main, import.meta.path)(async () => { export const buildInternalReverseChnCIDR = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async () => {
const cidr = await getChnCidrPromise(); const cidr = await getChnCidrPromise();
const reversedCidr = merge( const reversedCidr = merge(
@ -22,7 +22,7 @@ export const buildInternalReverseChnCIDR = task(import.meta.main, import.meta.pa
); );
return fsp.writeFile( return fsp.writeFile(
path.resolve(import.meta.dir, '../Internal/reversed-chn-cidr.txt'), path.resolve(__dirname, '../Internal/reversed-chn-cidr.txt'),
reversedCidr.join('\n') + '\n', reversedCidr.join('\n') + '\n',
{ encoding: 'utf-8' } { encoding: 'utf-8' }
); );

View File

@ -44,7 +44,7 @@ export const getMicrosoftCdnRulesetPromise = createMemoizedPromise(async () => {
.concat(WHITELIST); .concat(WHITELIST);
}); });
export const buildMicrosoftCdn = task(import.meta.main, import.meta.path)(async (span) => { export const buildMicrosoftCdn = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const description = [ const description = [
...SHARED_DESCRIPTION, ...SHARED_DESCRIPTION,
'', '',
@ -63,7 +63,7 @@ export const buildMicrosoftCdn = task(import.meta.main, import.meta.path)(async
new Date(), new Date(),
res, res,
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/non_ip/microsoft_cdn.conf'), path.resolve(__dirname, '../List/non_ip/microsoft_cdn.conf'),
path.resolve(import.meta.dir, '../Clash/non_ip/microsoft_cdn.txt') path.resolve(__dirname, '../Clash/non_ip/microsoft_cdn.txt')
); );
}); });

View File

@ -8,8 +8,8 @@ import { sort } from './lib/timsort';
import Trie from 'mnemonist/trie'; import Trie from 'mnemonist/trie';
const rootPath = path.resolve(import.meta.dir, '../'); const rootPath = path.resolve(__dirname, '../');
const publicPath = path.resolve(import.meta.dir, '../public'); const publicPath = path.resolve(__dirname, '../public');
const folderAndFilesToBeDeployed = [ const folderAndFilesToBeDeployed = [
`Mock${path.sep}`, `Mock${path.sep}`,
@ -21,7 +21,7 @@ const folderAndFilesToBeDeployed = [
'LICENSE' 'LICENSE'
]; ];
export const buildPublic = task(import.meta.main, import.meta.path)(async (span) => { export const buildPublic = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
await span await span
.traceChild('copy public files') .traceChild('copy public files')
.traceAsyncFn(async () => { .traceAsyncFn(async () => {

View File

@ -20,9 +20,9 @@ import { getPhishingDomains } from './lib/get-phishing-domains';
import { setAddFromArray, setAddFromArrayCurried } from './lib/set-add-from-array'; import { setAddFromArray, setAddFromArrayCurried } from './lib/set-add-from-array';
import { sort } from './lib/timsort'; import { sort } from './lib/timsort';
const getRejectSukkaConfPromise = readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/domainset/reject_sukka.conf')); const getRejectSukkaConfPromise = readFileIntoProcessedArray(path.resolve(__dirname, '../Source/domainset/reject_sukka.conf'));
export const buildRejectDomainSet = task(import.meta.main, import.meta.path)(async (span) => { export const buildRejectDomainSet = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
/** Whitelists */ /** Whitelists */
const filterRuleWhitelistDomainSets = new Set(PREDEFINED_WHITELIST); const filterRuleWhitelistDomainSets = new Set(PREDEFINED_WHITELIST);
@ -98,7 +98,7 @@ export const buildRejectDomainSet = task(import.meta.main, import.meta.path)(asy
/** Collect DOMAIN-KEYWORD from non_ip/reject.conf for deduplication */ /** Collect DOMAIN-KEYWORD from non_ip/reject.conf for deduplication */
const domainKeywordsSet = new Set<string>(); const domainKeywordsSet = new Set<string>();
for await (const line of readFileByLine(path.resolve(import.meta.dir, '../Source/non_ip/reject.conf'))) { for await (const line of readFileByLine(path.resolve(__dirname, '../Source/non_ip/reject.conf'))) {
const [type, value] = line.split(','); const [type, value] = line.split(',');
if (type === 'DOMAIN-KEYWORD') { if (type === 'DOMAIN-KEYWORD') {
@ -191,8 +191,8 @@ export const buildRejectDomainSet = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
span.traceChildSync('sort reject domainset (base)', () => sortDomains(dudupedDominArray, domainArrayMainDomainMap, domainArraySubdomainMap)), span.traceChildSync('sort reject domainset (base)', () => sortDomains(dudupedDominArray, domainArrayMainDomainMap, domainArraySubdomainMap)),
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/reject.conf'), path.resolve(__dirname, '../List/domainset/reject.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/reject.txt') path.resolve(__dirname, '../Clash/domainset/reject.txt')
), ),
createRuleset( createRuleset(
span, span,
@ -211,13 +211,13 @@ export const buildRejectDomainSet = task(import.meta.main, import.meta.path)(asy
new Date(), new Date(),
span.traceChildSync('sort reject domainset (extra)', () => sortDomains(dudupedDominArrayExtra, domainArrayMainDomainMap, domainArraySubdomainMap)), span.traceChildSync('sort reject domainset (extra)', () => sortDomains(dudupedDominArrayExtra, domainArrayMainDomainMap, domainArraySubdomainMap)),
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/reject_extra.conf'), path.resolve(__dirname, '../List/domainset/reject_extra.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/reject_extra.txt') path.resolve(__dirname, '../Clash/domainset/reject_extra.txt')
), ),
compareAndWriteFile( compareAndWriteFile(
span, span,
rejectDomainsStats.map(([domain, count]) => `${domain}${' '.repeat(100 - domain.length)}${count}`), rejectDomainsStats.map(([domain, count]) => `${domain}${' '.repeat(100 - domain.length)}${count}`),
path.resolve(import.meta.dir, '../Internal/reject-stats.txt') path.resolve(__dirname, '../Internal/reject-stats.txt')
) )
]); ]);
}); });

View File

@ -65,9 +65,9 @@ const getBotNetFilterIPsPromise = fsFetchCache.apply(
} }
); );
const localRejectIPSourcesPromise = readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/ip/reject.conf')); const localRejectIPSourcesPromise = readFileIntoProcessedArray(path.resolve(__dirname, '../Source/ip/reject.conf'));
export const buildRejectIPList = task(import.meta.main, import.meta.path)(async (span) => { export const buildRejectIPList = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const result = await localRejectIPSourcesPromise; const result = await localRejectIPSourcesPromise;
const bogusNxDomainIPs = await span.traceChildPromise('get bogus nxdomain ips', getBogusNxDomainIPsPromise); const bogusNxDomainIPs = await span.traceChildPromise('get bogus nxdomain ips', getBogusNxDomainIPsPromise);
@ -93,7 +93,7 @@ export const buildRejectIPList = task(import.meta.main, import.meta.path)(async
new Date(), new Date(),
result, result,
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/ip/reject.conf'), path.resolve(__dirname, '../List/ip/reject.conf'),
path.resolve(import.meta.dir, '../Clash/ip/reject.txt') path.resolve(__dirname, '../Clash/ip/reject.txt')
); );
}); });

View File

@ -43,7 +43,7 @@ const HOSTNAMES = [
'*.battlenet.com' '*.battlenet.com'
]; ];
export const buildAlwaysRealIPModule = task(import.meta.main, import.meta.path)(async (span) => { export const buildAlwaysRealIPModule = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
// Intranet, Router Setup, and mant more // Intranet, Router Setup, and mant more
const dataset = [Object.entries(DIRECTS), Object.entries(LANS)]; const dataset = [Object.entries(DIRECTS), Object.entries(LANS)];
const surge = dataset.flatMap(data => data.flatMap(([, { domains }]) => domains.flatMap((domain) => [`*.${domain}`, domain]))); const surge = dataset.flatMap(data => data.flatMap(([, { domains }]) => domains.flatMap((domain) => [`*.${domain}`, domain])));
@ -59,10 +59,10 @@ export const buildAlwaysRealIPModule = task(import.meta.main, import.meta.path)(
'[General]', '[General]',
`always-real-ip = %APPEND% ${HOSTNAMES.concat(surge).join(', ')}` `always-real-ip = %APPEND% ${HOSTNAMES.concat(surge).join(', ')}`
], ],
path.resolve(import.meta.dir, '../Modules/sukka_common_always_realip.sgmodule') path.resolve(__dirname, '../Modules/sukka_common_always_realip.sgmodule')
), ),
fsp.writeFile( fsp.writeFile(
path.resolve(import.meta.dir, '../Internal/clash_fake_ip_filter.yaml'), path.resolve(__dirname, '../Internal/clash_fake_ip_filter.yaml'),
yaml.stringify( yaml.stringify(
{ {
dns: { dns: {

View File

@ -120,7 +120,7 @@ const REDIRECT_FAKEWEBSITES = [
['zbrushcn.com', 'https://www.maxon.net/en/zbrush'] ['zbrushcn.com', 'https://www.maxon.net/en/zbrush']
] as const; ] as const;
export const buildRedirectModule = task(import.meta.main, import.meta.path)(async (span) => { export const buildRedirectModule = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const domains = Array.from(new Set([ const domains = Array.from(new Set([
...REDIRECT_MIRROR.map(([from]) => getHostname(from, { detectIp: false })), ...REDIRECT_MIRROR.map(([from]) => getHostname(from, { detectIp: false })),
...REDIRECT_FAKEWEBSITES.flatMap(([from]) => [from, `www.${from}`]) ...REDIRECT_FAKEWEBSITES.flatMap(([from]) => [from, `www.${from}`])
@ -139,6 +139,6 @@ export const buildRedirectModule = task(import.meta.main, import.meta.path)(asyn
...REDIRECT_MIRROR.map(([from, to]) => `^https?://${escapeRegExp(from)}(.*) ${to}$1`), ...REDIRECT_MIRROR.map(([from, to]) => `^https?://${escapeRegExp(from)}(.*) ${to}$1`),
...REDIRECT_FAKEWEBSITES.map(([from, to]) => `^https?://(www.)?${escapeRegExp(from)} ${to}`) ...REDIRECT_FAKEWEBSITES.map(([from, to]) => `^https?://(www.)?${escapeRegExp(from)} ${to}`)
], ],
path.resolve(import.meta.dir, '../Modules/sukka_url_redirect.sgmodule') path.resolve(__dirname, '../Modules/sukka_url_redirect.sgmodule')
); );
}); });

View File

@ -82,7 +82,7 @@ const querySpeedtestApi = async (keyword: string): Promise<Array<string | null>>
} }
}; };
export const buildSpeedtestDomainSet = task(import.meta.main, import.meta.path)(async (span) => { export const buildSpeedtestDomainSet = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const domainTrie = createTrie( const domainTrie = createTrie(
[ [
// speedtest.net // speedtest.net
@ -183,7 +183,7 @@ export const buildSpeedtestDomainSet = task(import.meta.main, import.meta.path)(
async () => { async () => {
try { try {
( (
await readFileIntoProcessedArray(path.resolve(import.meta.dir, '../List/domainset/speedtest.conf')) await readFileIntoProcessedArray(path.resolve(__dirname, '../List/domainset/speedtest.conf'))
) .forEach(line => { ) .forEach(line => {
const hn = getHostname(line, { detectIp: false, validateHostname: true }); const hn = getHostname(line, { detectIp: false, validateHostname: true });
if (hn) { if (hn) {
@ -267,7 +267,7 @@ export const buildSpeedtestDomainSet = task(import.meta.main, import.meta.path)(
new Date(), new Date(),
deduped, deduped,
'domainset', 'domainset',
path.resolve(import.meta.dir, '../List/domainset/speedtest.conf'), path.resolve(__dirname, '../List/domainset/speedtest.conf'),
path.resolve(import.meta.dir, '../Clash/domainset/speedtest.txt') path.resolve(__dirname, '../Clash/domainset/speedtest.txt')
); );
}); });

View File

@ -28,7 +28,7 @@ const removeNoResolved = (line: string) => line.replace(',no-resolve', '');
/** /**
* This only generates a simplified version, for under-used users only. * This only generates a simplified version, for under-used users only.
*/ */
export const buildSSPanelUIMAppProfile = task(import.meta.main, import.meta.path)(async (span) => { export const buildSSPanelUIMAppProfile = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const [ const [
[domesticDomains, directDomains, lanDomains], [domesticDomains, directDomains, lanDomains],
appleCdnDomains, appleCdnDomains,
@ -55,18 +55,18 @@ export const buildSSPanelUIMAppProfile = task(import.meta.main, import.meta.path
), ),
getAppleCdnDomainsPromise().then(domains => domains.map(domain => `DOMAIN-SUFFIX,${domain}`)), getAppleCdnDomainsPromise().then(domains => domains.map(domain => `DOMAIN-SUFFIX,${domain}`)),
getMicrosoftCdnRulesetPromise().then(surgeRulesetToClashClassicalTextRuleset), getMicrosoftCdnRulesetPromise().then(surgeRulesetToClashClassicalTextRuleset),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/apple_cn.conf')), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/apple_cn.conf')),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/neteasemusic.conf')).then(surgeRulesetToClashClassicalTextRuleset), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/neteasemusic.conf')).then(surgeRulesetToClashClassicalTextRuleset),
// microsoft & apple - domains // microsoft & apple - domains
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/microsoft.conf')), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/microsoft.conf')),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/apple_services.conf')).then(surgeRulesetToClashClassicalTextRuleset), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/apple_services.conf')).then(surgeRulesetToClashClassicalTextRuleset),
// stream - domains // stream - domains
surgeRulesetToClashClassicalTextRuleset(AllStreamServices.flatMap((i) => i.rules)), surgeRulesetToClashClassicalTextRuleset(AllStreamServices.flatMap((i) => i.rules)),
// steam - domains // steam - domains
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/domainset/steam.conf')).then(surgeDomainsetToClashRuleset), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/domainset/steam.conf')).then(surgeDomainsetToClashRuleset),
// global - domains // global - domains
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/global.conf')).then(surgeRulesetToClashClassicalTextRuleset), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/global.conf')).then(surgeRulesetToClashClassicalTextRuleset),
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/non_ip/telegram.conf')).then(surgeRulesetToClashClassicalTextRuleset), readFileIntoProcessedArray(path.resolve(__dirname, '../Source/non_ip/telegram.conf')).then(surgeRulesetToClashClassicalTextRuleset),
// domestic - ip cidr // domestic - ip cidr
getChnCidrPromise().then(cidrs => cidrs.map(cidr => `IP-CIDR,${cidr}`)), getChnCidrPromise().then(cidrs => cidrs.map(cidr => `IP-CIDR,${cidr}`)),
AllStreamServices.flatMap((i) => ( AllStreamServices.flatMap((i) => (
@ -80,7 +80,7 @@ export const buildSSPanelUIMAppProfile = task(import.meta.main, import.meta.path
// global - ip cidr // global - ip cidr
getTelegramCIDRPromise(), getTelegramCIDRPromise(),
// lan - ip cidr // lan - ip cidr
readFileIntoProcessedArray(path.resolve(import.meta.dir, '../Source/ip/lan.conf')) readFileIntoProcessedArray(path.resolve(__dirname, '../Source/ip/lan.conf'))
] as const); ] as const);
const telegramCidrs = rawTelegramCidrs.map(removeNoResolved); const telegramCidrs = rawTelegramCidrs.map(removeNoResolved);
@ -118,7 +118,7 @@ export const buildSSPanelUIMAppProfile = task(import.meta.main, import.meta.path
await compareAndWriteFile( await compareAndWriteFile(
span, span,
output, output,
path.resolve(import.meta.dir, '../Internal/appprofile.php') path.resolve(__dirname, '../Internal/appprofile.php')
); );
}); });

View File

@ -22,8 +22,8 @@ export const createRulesetForStreamService = (span: Span, fileId: string, title:
new Date(), new Date(),
streamServices.flatMap((i) => i.rules), streamServices.flatMap((i) => i.rules),
'ruleset', 'ruleset',
path.resolve(import.meta.dir, `../List/non_ip/${fileId}.conf`), path.resolve(__dirname, `../List/non_ip/${fileId}.conf`),
path.resolve(import.meta.dir, `../Clash/non_ip/${fileId}.txt`) path.resolve(__dirname, `../Clash/non_ip/${fileId}.txt`)
), ),
// IP // IP
createRuleset( createRuleset(
@ -44,13 +44,13 @@ export const createRulesetForStreamService = (span: Span, fileId: string, title:
: [] : []
)), )),
'ruleset', 'ruleset',
path.resolve(import.meta.dir, `../List/ip/${fileId}.conf`), path.resolve(__dirname, `../List/ip/${fileId}.conf`),
path.resolve(import.meta.dir, `../Clash/ip/${fileId}.txt`) path.resolve(__dirname, `../Clash/ip/${fileId}.txt`)
) )
])); ]));
}; };
export const buildStreamService = task(import.meta.main, import.meta.path)(async (span) => { export const buildStreamService = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
return Promise.all([ return Promise.all([
createRulesetForStreamService(span, 'stream', 'All', ALL), createRulesetForStreamService(span, 'stream', 'All', ALL),
createRulesetForStreamService(span, 'stream_us', 'North America', NORTH_AMERICA), createRulesetForStreamService(span, 'stream_us', 'North America', NORTH_AMERICA),

View File

@ -32,7 +32,7 @@ export const getTelegramCIDRPromise = createMemoizedPromise(async () => {
return { date, results }; return { date, results };
}); });
export const buildTelegramCIDR = task(import.meta.main, import.meta.path)(async (span) => { export const buildTelegramCIDR = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const { date, results } = await span.traceChildAsync('get telegram cidr', getTelegramCIDRPromise); const { date, results } = await span.traceChildAsync('get telegram cidr', getTelegramCIDRPromise);
if (results.length === 0) { if (results.length === 0) {
@ -52,7 +52,7 @@ export const buildTelegramCIDR = task(import.meta.main, import.meta.path)(async
date, date,
results, results,
'ruleset', 'ruleset',
path.resolve(import.meta.dir, '../List/ip/telegram.conf'), path.resolve(__dirname, '../List/ip/telegram.conf'),
path.resolve(import.meta.dir, '../Clash/ip/telegram.txt') path.resolve(__dirname, '../Clash/ip/telegram.txt')
); );
}); });

View File

@ -13,9 +13,9 @@ const ASSETS_LIST = {
'amazon-adsystem-com_amazon-apstag.js': 'https://raw.githubusercontent.com/AdguardTeam/Scriptlets/master/dist/redirect-files/amazon-apstag.js' 'amazon-adsystem-com_amazon-apstag.js': 'https://raw.githubusercontent.com/AdguardTeam/Scriptlets/master/dist/redirect-files/amazon-apstag.js'
} as const; } as const;
const mockDir = path.resolve(import.meta.dir, '../Mock'); const mockDir = path.resolve(__dirname, '../Mock');
export const downloadMockAssets = task(import.meta.main, import.meta.path)((span) => Promise.all(Object.entries(ASSETS_LIST).map( export const downloadMockAssets = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)((span) => Promise.all(Object.entries(ASSETS_LIST).map(
([filename, url]) => span ([filename, url]) => span
.traceChild(url) .traceChild(url)
.traceAsyncFn(() => fetchWithRetry(url).then(res => { .traceAsyncFn(() => fetchWithRetry(url).then(res => {

View File

@ -13,7 +13,7 @@ import { Readable } from 'stream';
const IS_READING_BUILD_OUTPUT = 1 << 2; const IS_READING_BUILD_OUTPUT = 1 << 2;
const ALL_FILES_EXISTS = 1 << 3; const ALL_FILES_EXISTS = 1 << 3;
export const downloadPreviousBuild = task(import.meta.main, import.meta.path)(async (span) => { export const downloadPreviousBuild = task(typeof Bun !== 'undefined' ? Bun.main === __filename : require.main === module, __filename)(async (span) => {
const buildOutputList: string[] = []; const buildOutputList: string[] = [];
let flag = 1 | ALL_FILES_EXISTS; let flag = 1 | ALL_FILES_EXISTS;
@ -21,7 +21,7 @@ export const downloadPreviousBuild = task(import.meta.main, import.meta.path)(as
await span await span
.traceChild('read .gitignore') .traceChild('read .gitignore')
.traceAsyncFn(async () => { .traceAsyncFn(async () => {
for await (const line of readFileByLine(path.resolve(import.meta.dir, '../.gitignore'))) { for await (const line of readFileByLine(path.resolve(__dirname, '../.gitignore'))) {
if (line === '# $ build output') { if (line === '# $ build output') {
flag = flag | IS_READING_BUILD_OUTPUT; flag = flag | IS_READING_BUILD_OUTPUT;
continue; continue;
@ -33,7 +33,7 @@ export const downloadPreviousBuild = task(import.meta.main, import.meta.path)(as
buildOutputList.push(line); buildOutputList.push(line);
if (!isCI) { if (!isCI) {
if (!existsSync(path.join(import.meta.dir, '..', line))) { if (!existsSync(path.join(__dirname, '..', line))) {
flag = flag & ~ALL_FILES_EXISTS; flag = flag & ~ALL_FILES_EXISTS;
} }
} }
@ -83,7 +83,7 @@ export const downloadPreviousBuild = task(import.meta.main, import.meta.path)(as
} }
const relativeEntryPath = entry.header.name.replace(pathPrefix, ''); const relativeEntryPath = entry.header.name.replace(pathPrefix, '');
const targetPath = path.join(import.meta.dir, '..', relativeEntryPath); const targetPath = path.join(__dirname, '..', relativeEntryPath);
await mkdir(path.dirname(targetPath), { recursive: true }); await mkdir(path.dirname(targetPath), { recursive: true });
await pipeline(entry, createWriteStream(targetPath)); await pipeline(entry, createWriteStream(targetPath));

View File

@ -1,11 +1,11 @@
// eslint-disable-next-line import-x/no-unresolved -- bun built-in module import createDb from 'better-sqlite3';
import { Database } from 'bun:sqlite'; import type { Database } from 'better-sqlite3';
import os from 'os'; import os from 'os';
import path from 'path'; import path from 'path';
import { mkdirSync } from 'fs'; import { mkdirSync } from 'fs';
import picocolors from 'picocolors'; import picocolors from 'picocolors';
import { fastStringArrayJoin } from './misc'; import { fastStringArrayJoin } from './misc';
import { peek } from 'bun'; import { peek } from './bun';
import { performance } from 'perf_hooks'; import { performance } from 'perf_hooks';
const identity = (x: any) => x; const identity = (x: any) => x;
@ -92,12 +92,12 @@ export class Cache<S = string> {
this.type = 'string'; this.type = 'string';
} }
const db = new Database(path.join(this.cachePath, 'cache.db')); const db = createDb(path.join(this.cachePath, 'cache.db'));
db.exec('PRAGMA journal_mode = WAL;'); db.pragma('journal_mode = WAL');
db.exec('PRAGMA synchronous = normal;'); db.pragma('synchronous = normal');
db.exec('PRAGMA temp_store = memory;'); db.pragma('temp_store = memory');
db.exec('PRAGMA optimize;'); db.pragma('optimize');
db.prepare(`CREATE TABLE IF NOT EXISTS ${this.tableName} (key TEXT PRIMARY KEY, value ${this.type === 'string' ? 'TEXT' : 'BLOB'}, ttl REAL NOT NULL);`).run(); db.prepare(`CREATE TABLE IF NOT EXISTS ${this.tableName} (key TEXT PRIMARY KEY, value ${this.type === 'string' ? 'TEXT' : 'BLOB'}, ttl REAL NOT NULL);`).run();
db.prepare(`CREATE INDEX IF NOT EXISTS cache_ttl ON ${this.tableName} (ttl);`).run(); db.prepare(`CREATE INDEX IF NOT EXISTS cache_ttl ON ${this.tableName} (ttl);`).run();
@ -130,15 +130,20 @@ export class Cache<S = string> {
`INSERT INTO ${this.tableName} (key, value, ttl) VALUES ($key, $value, $valid) ON CONFLICT(key) DO UPDATE SET value = $value, ttl = $valid` `INSERT INTO ${this.tableName} (key, value, ttl) VALUES ($key, $value, $valid) ON CONFLICT(key) DO UPDATE SET value = $value, ttl = $valid`
); );
const valid = Date.now() + ttl;
insert.run({ insert.run({
$key: key, $key: key,
key,
$value: value, $value: value,
$valid: Date.now() + ttl value,
$valid: valid,
valid
}); });
} }
get(key: string, defaultValue?: S): S | undefined { get(key: string, defaultValue?: S): S | undefined {
const rv = this.db.prepare<{ value: S }, string>( const rv = this.db.prepare<string, { value: S }>(
`SELECT value FROM ${this.tableName} WHERE key = ? LIMIT 1` `SELECT value FROM ${this.tableName} WHERE key = ? LIMIT 1`
).get(key); ).get(key);
@ -148,7 +153,7 @@ export class Cache<S = string> {
has(key: string): CacheStatus { has(key: string): CacheStatus {
const now = Date.now(); const now = Date.now();
const rv = this.db.prepare<{ ttl: number }, string>(`SELECT ttl FROM ${this.tableName} WHERE key = ?`).get(key); const rv = this.db.prepare<string, { ttl: number }>(`SELECT ttl FROM ${this.tableName} WHERE key = ?`).get(key);
return !rv ? CacheStatus.Miss : (rv.ttl > now ? CacheStatus.Hit : CacheStatus.Stale); return !rv ? CacheStatus.Miss : (rv.ttl > now ? CacheStatus.Hit : CacheStatus.Stale);
} }
@ -206,18 +211,14 @@ export class Cache<S = string> {
} }
} }
export const fsFetchCache = new Cache({ cachePath: path.resolve(import.meta.dir, '../../.cache') }); export const fsFetchCache = new Cache({ cachePath: path.resolve(__dirname, '../../.cache') });
// process.on('exit', () => { // process.on('exit', () => {
// fsFetchCache.destroy(); // fsFetchCache.destroy();
// }); // });
// export const fsCache = traceSync('initializing filesystem cache', () => new Cache<Uint8Array>({ cachePath: path.resolve(import.meta.dir, '../../.cache'), type: 'buffer' })); // export const fsCache = traceSync('initializing filesystem cache', () => new Cache<Uint8Array>({ cachePath: path.resolve(__dirname, '../../.cache'), type: 'buffer' }));
const separator = '\u0000'; const separator = '\u0000';
// const textEncoder = new TextEncoder();
// const textDecoder = new TextDecoder();
// export const serializeString = (str: string) => textEncoder.encode(str);
// export const deserializeString = (str: string) => textDecoder.decode(new Uint8Array(str.split(separator).map(Number)));
export const serializeSet = (set: Set<string>) => fastStringArrayJoin(Array.from(set), separator); export const serializeSet = (set: Set<string>) => fastStringArrayJoin(Array.from(set), separator);
export const deserializeSet = (str: string) => new Set(str.split(separator)); export const deserializeSet = (str: string) => new Set(str.split(separator));
export const serializeArray = (arr: string[]) => fastStringArrayJoin(arr, separator); export const serializeArray = (arr: string[]) => fastStringArrayJoin(arr, separator);

View File

@ -11,8 +11,6 @@ import { readFileByLine } from './fetch-text-by-line';
export async function compareAndWriteFile(span: Span, linesA: string[], filePath: string) { export async function compareAndWriteFile(span: Span, linesA: string[], filePath: string) {
let isEqual = true; let isEqual = true;
const fd = await fsp.open(filePath);
const linesALen = linesA.length; const linesALen = linesA.length;
if (!fs.existsSync(filePath)) { if (!fs.existsSync(filePath)) {
@ -22,12 +20,10 @@ export async function compareAndWriteFile(span: Span, linesA: string[], filePath
console.log(`Nothing to write to ${filePath}...`); console.log(`Nothing to write to ${filePath}...`);
isEqual = false; isEqual = false;
} else { } else {
/* The `isEqual` variable is used to determine whether the content of a file is equal to the const fd = await fsp.open(filePath);
provided lines or not. It is initially set to `true`, and then it is updated based on different
conditions: */
isEqual = await span.traceChildAsync(`comparing ${filePath}`, async () => { isEqual = await span.traceChildAsync(`comparing ${filePath}`, async () => {
let index = 0; let index = 0;
for await (const lineB of readFileByLine(fd)) { for await (const lineB of readFileByLine(fd)) {
const lineA = linesA[index] as string | undefined; const lineA = linesA[index] as string | undefined;
index++; index++;
@ -63,6 +59,8 @@ export async function compareAndWriteFile(span: Span, linesA: string[], filePath
return true; return true;
}); });
await fd.close();
} }
if (isEqual) { if (isEqual) {
@ -83,8 +81,6 @@ export async function compareAndWriteFile(span: Span, linesA: string[], filePath
// return writer.end(); // return writer.end();
}); });
await fd.close();
} }
export const withBannerArray = (title: string, description: string[] | readonly string[], date: Date, content: string[]) => { export const withBannerArray = (title: string, description: string[] | readonly string[], date: Date, content: string[]) => {

View File

@ -4,7 +4,7 @@ import { readFileByLine } from './fetch-text-by-line';
import path from 'path'; import path from 'path';
import fsp from 'fs/promises'; import fsp from 'fs/promises';
const file = path.resolve(import.meta.dir, '../../Source/domainset/cdn.conf'); const file = path.resolve(__dirname, '../../Source/domainset/cdn.conf');
group('read file by line', () => { group('read file by line', () => {
bench('readline', () => processLineFromReadline(readFileByLine(file))); bench('readline', () => processLineFromReadline(readFileByLine(file)));

View File

@ -1,9 +1,12 @@
import fs from 'fs';
import { Readable } from 'stream';
import type { BunFile } from 'bun'; import type { BunFile } from 'bun';
import { fetchWithRetry, defaultRequestInit } from './fetch-retry'; import { fetchWithRetry, defaultRequestInit } from './fetch-retry';
import type { FileHandle } from 'fs/promises'; import type { FileHandle } from 'fs/promises';
import { TextLineStream } from './text-line-transform-stream'; import { TextLineStream } from './text-line-transform-stream';
import { PolyfillTextDecoderStream } from './text-decoder-stream'; import { PolyfillTextDecoderStream } from './text-decoder-stream';
import { TextDecoderStream as NodeTextDecoderStream } from 'stream/web';
import { processLine } from './process-line'; import { processLine } from './process-line';
const enableTextLineStream = !!process.env.ENABLE_TEXT_LINE_STREAM; const enableTextLineStream = !!process.env.ENABLE_TEXT_LINE_STREAM;
@ -36,19 +39,32 @@ async function *createTextLineAsyncIterableFromStreamSource(stream: ReadableStre
} }
} }
const getReadableStream = (file: string | BunFile | FileHandle): ReadableStream => { const getReadableStream = typeof Bun !== 'undefined'
if (typeof file === 'string') { ? (file: string | BunFile | FileHandle): ReadableStream => {
return Bun.file(file).stream(); if (typeof file === 'string') {
return Bun.file(file).stream();
}
if ('writer' in file) {
return file.stream();
}
return file.readableWebStream();
} }
if ('writer' in file) { : (file: string | BunFile | FileHandle): ReadableStream => {
return file.stream(); if (typeof file === 'string') {
} return Readable.toWeb(fs.createReadStream(file /* { encoding: 'utf-8' } */));
return file.readableWebStream(); }
}; if ('writer' in file) {
return file.stream();
}
return file.readableWebStream();
};
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition -- On Bun, NodeTextDecoderStream is undefined
const TextDecoderStream = NodeTextDecoderStream ?? PolyfillTextDecoderStream;
// TODO: use FileHandle.readLine() // TODO: use FileHandle.readLine()
export const readFileByLine: ((file: string | BunFile | FileHandle) => AsyncIterable<string>) = enableTextLineStream export const readFileByLine: ((file: string | BunFile | FileHandle) => AsyncIterable<string>) = enableTextLineStream
? (file: string | BunFile | FileHandle) => getReadableStream(file).pipeThrough(new PolyfillTextDecoderStream()).pipeThrough(new TextLineStream()) ? (file: string | BunFile | FileHandle) => getReadableStream(file).pipeThrough(new TextDecoderStream()).pipeThrough(new TextLineStream())
: (file: string | BunFile | FileHandle) => createTextLineAsyncIterableFromStreamSource(getReadableStream(file)); : (file: string | BunFile | FileHandle) => createTextLineAsyncIterableFromStreamSource(getReadableStream(file));
const ensureResponseBody = (resp: Response) => { const ensureResponseBody = (resp: Response) => {
@ -62,7 +78,7 @@ const ensureResponseBody = (resp: Response) => {
}; };
export const createReadlineInterfaceFromResponse: ((resp: Response) => AsyncIterable<string>) = enableTextLineStream export const createReadlineInterfaceFromResponse: ((resp: Response) => AsyncIterable<string>) = enableTextLineStream
? (resp) => ensureResponseBody(resp).pipeThrough(new PolyfillTextDecoderStream()).pipeThrough(new TextLineStream()) ? (resp) => ensureResponseBody(resp).pipeThrough(new TextDecoderStream()).pipeThrough(new TextLineStream())
: (resp) => createTextLineAsyncIterableFromStreamSource(ensureResponseBody(resp)); : (resp) => createTextLineAsyncIterableFromStreamSource(ensureResponseBody(resp));
export function fetchRemoteTextByLine(url: string | URL) { export function fetchRemoteTextByLine(url: string | URL) {

View File

@ -1,10 +1,16 @@
import { toASCII } from 'punycode'; import fsp from 'fs/promises';
import { toASCII } from 'punycode/punycode';
import { createMemoizedPromise } from './memo-promise'; import { createMemoizedPromise } from './memo-promise';
import { getPublicSuffixListTextPromise } from './download-publicsuffixlist'; import { getPublicSuffixListTextPromise } from './download-publicsuffixlist';
import { fileURLToPath } from 'url';
const customFetch = typeof Bun !== 'undefined' const customFetch = typeof Bun !== 'undefined'
? (url: string | URL) => Promise.resolve(Bun.file(url)) ? (url: string | URL) => Promise.resolve(Bun.file(url))
: (url: string | URL) => fetch(url).then(resp => resp.blob() as Promise<Blob>); : async (url: string | URL) => {
const filePath = fileURLToPath(url);
const file = await fsp.readFile(filePath);
return new Blob([file]) as any;
};
export const getGorhillPublicSuffixPromise = createMemoizedPromise(async () => { export const getGorhillPublicSuffixPromise = createMemoizedPromise(async () => {
const [publicSuffixListDat, { default: gorhill }] = await Promise.all([ const [publicSuffixListDat, { default: gorhill }] = await Promise.all([

View File

@ -1,4 +1,4 @@
import path from 'path'; import { basename, extname } from 'path';
import picocolors from 'picocolors'; import picocolors from 'picocolors';
const SPAN_STATUS_START = 0; const SPAN_STATUS_START = 0;
@ -95,7 +95,7 @@ export const createSpan = (name: string, parentTraceResult?: TraceResult): Span
}; };
export const task = (importMetaMain: boolean, importMetaPath: string) => <T>(fn: (span: Span) => Promise<T>, customName?: string) => { export const task = (importMetaMain: boolean, importMetaPath: string) => <T>(fn: (span: Span) => Promise<T>, customName?: string) => {
const taskName = customName ?? path.basename(importMetaPath, path.extname(importMetaPath)); const taskName = customName ?? basename(importMetaPath, extname(importMetaPath));
const dummySpan = createSpan(taskName); const dummySpan = createSpan(taskName);

View File

@ -3,7 +3,7 @@ import fsp from 'fs/promises';
import { fdir as Fdir } from 'fdir'; import { fdir as Fdir } from 'fdir';
import { readFileByLine } from './lib/fetch-text-by-line'; import { readFileByLine } from './lib/fetch-text-by-line';
const sourceDir = path.resolve(import.meta.dir, '../Source'); const sourceDir = path.resolve(__dirname, '../Source');
(async () => { (async () => {
const promises: Array<Promise<unknown>> = []; const promises: Array<Promise<unknown>> = [];

View File

@ -62,7 +62,7 @@ export const parseDomesticList = async () => {
}; };
// await Promise.all([ // await Promise.all([
await runAgainstRuleset(path.resolve(import.meta.dir, '../List/non_ip/domestic.conf')); await runAgainstRuleset(path.resolve(__dirname, '../List/non_ip/domestic.conf'));
// ]); // ]);
console.log(notIncludedDomestic.size, notIncludedDomestic); console.log(notIncludedDomestic.size, notIncludedDomestic);

View File

@ -105,9 +105,9 @@ export const parseGfwList = async () => {
}; };
await Promise.all([ await Promise.all([
runAgainstRuleset(path.resolve(import.meta.dir, '../Source/non_ip/global.conf')), runAgainstRuleset(path.resolve(__dirname, '../Source/non_ip/global.conf')),
runAgainstRuleset(path.resolve(import.meta.dir, '../Source/non_ip/telegram.conf')), runAgainstRuleset(path.resolve(__dirname, '../Source/non_ip/telegram.conf')),
runAgainstRuleset(path.resolve(import.meta.dir, '../List/non_ip/stream.conf')) runAgainstRuleset(path.resolve(__dirname, '../List/non_ip/stream.conf'))
]); ]);
console.log(notIncludedTop500Gfwed); console.log(notIncludedTop500Gfwed);

BIN
bun.lockb

Binary file not shown.

View File

@ -9,7 +9,7 @@
}, },
"scripts": { "scripts": {
"build": "bun ./Build/index.ts", "build": "bun ./Build/index.ts",
"build-node": "ENABLE_TEXT_LINE_STREAM=true node -r @swc-node/register ./Build/index.ts", "build-node": "SWCRC=true ENABLE_TEXT_LINE_STREAM=true node -r @swc-node/register ./Build/index.ts",
"build-stream": "ENABLE_TEXT_LINE_STREAM=true bun ./Build/index.ts", "build-stream": "ENABLE_TEXT_LINE_STREAM=true bun ./Build/index.ts",
"lint": "eslint --format=sukka ." "lint": "eslint --format=sukka ."
}, },
@ -20,6 +20,7 @@
"@gorhill/publicsuffixlist": "3.0.1", "@gorhill/publicsuffixlist": "3.0.1",
"async-retry": "^1.3.3", "async-retry": "^1.3.3",
"async-sema": "^3.1.1", "async-sema": "^3.1.1",
"better-sqlite3": "^11.1.2",
"ci-info": "^4.0.0", "ci-info": "^4.0.0",
"csv-parse": "^5.5.6", "csv-parse": "^5.5.6",
"fast-cidr-tools": "^0.2.5", "fast-cidr-tools": "^0.2.5",
@ -38,8 +39,11 @@
"devDependencies": { "devDependencies": {
"@eslint-sukka/node": "^6.1.6", "@eslint-sukka/node": "^6.1.6",
"@swc-node/register": "^1.10.9", "@swc-node/register": "^1.10.9",
"@swc/core": "^1.7.0",
"@types/async-retry": "^1.4.8", "@types/async-retry": "^1.4.8",
"@types/better-sqlite3": "^7.6.11",
"@types/bun": "^1.1.6", "@types/bun": "^1.1.6",
"@types/punycode": "^2.1.4",
"@types/tar-stream": "^3.1.3", "@types/tar-stream": "^3.1.3",
"bun-types": "^1.1.20", "bun-types": "^1.1.20",
"eslint": "^9.7.0", "eslint": "^9.7.0",