Skip to content

Commit

Permalink
fix(packagist): Improve fetch concurrency (#20041)
Browse files Browse the repository at this point in the history
  • Loading branch information
zharinov committed Jan 27, 2023
1 parent 5302232 commit 0b4db8d
Showing 1 changed file with 20 additions and 19 deletions.
39 changes: 20 additions & 19 deletions lib/modules/datasource/packagist/index.ts
Expand Up @@ -157,34 +157,35 @@ export class PackagistDatasource extends Datasource {
packages,
providersUrl,
providersLazyUrl,
files,
includesFiles,
files = [],
includesFiles = [],
providerPackages,
} = registryMeta;
if (files) {
const queue = files.map(
(file) => (): Promise<PackagistFile> =>
this.getPackagistFile(regUrl, file)
);
const resolvedFiles = await p.all(queue);
for (const res of resolvedFiles) {

const includesPackages: Record<string, ReleaseResult> = {};

const tasks: (() => Promise<void>)[] = [];

for (const file of files) {
tasks.push(async () => {
const res = await this.getPackagistFile(regUrl, file);
for (const [name, val] of Object.entries(res.providers)) {
providerPackages[name] = val.sha256;
}
}
});
}
const includesPackages: Record<string, ReleaseResult> = {};
if (includesFiles) {
for (const file of includesFiles) {

for (const file of includesFiles) {
tasks.push(async () => {
const res = await this.getPackagistFile(regUrl, file);
if (res.packages) {
for (const [key, val] of Object.entries(res.packages)) {
const dep = PackagistDatasource.extractDepReleases(val);
includesPackages[key] = dep;
}
for (const [key, val] of Object.entries(res.packages ?? {})) {
includesPackages[key] = PackagistDatasource.extractDepReleases(val);
}
}
});
}

await p.all(tasks);

const allPackages: AllPackages = {
packages,
providersUrl,
Expand Down

0 comments on commit 0b4db8d

Please sign in to comment.