/
githubmirror
/
angular-cli
Обзор
Документация
Войти
/
githubmirror
/
angular-cli
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/angular_devkit/architect/src/schedule-by-name.ts
156 строк
4 KB
Ash Ramirez
refactor(@angular/cli): update aio links -> adev links
06 июн 2024, 12:12
06 июн 2024, 12:12
434a374
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.dev/license */ import { json, logging } from '@angular-devkit/core'; import { EMPTY, Subscription, catchError, first, firstValueFrom, ignoreElements, lastValueFrom, map, shareReplay, } from 'rxjs'; import { BuilderInfo, BuilderInput, BuilderOutput, BuilderProgressReport, BuilderRun, Target, targetStringFromTarget, } from './api'; import { JobOutboundMessageKind, JobState, Scheduler } from './jobs'; const progressSchema = require('./progress-schema.json'); let _uniqueId = 0; export async function scheduleByName( name: string, buildOptions: json.JsonObject, options: { target?: Target; scheduler: Scheduler; logger: logging.LoggerApi; workspaceRoot: string | Promise<string>; currentDirectory: string | Promise<string>; }, ): Promise<BuilderRun> { const childLoggerName = options.target ? `{${targetStringFromTarget(options.target)}}` : name; const logger = options.logger.createChild(childLoggerName); const job = options.scheduler.schedule<{}, BuilderInput, BuilderOutput>(name, {}); let stateSubscription: Subscription; const workspaceRoot = await options.workspaceRoot; const currentDirectory = await options.currentDirectory; const description = await firstValueFrom(job.description); const info = description.info as BuilderInfo; const id = ++_uniqueId; const message = { id, currentDirectory, workspaceRoot, info: info, options: buildOptions, ...(options.target ? { target: options.target } : {}), }; // Wait for the job to be ready. if (job.state !== JobState.Started) { stateSubscription = job.outboundBus.subscribe({ next: (event) => { if (event.kind === JobOutboundMessageKind.Start) { job.input.next(message); } }, error: () => {}, }); } else { job.input.next(message); } const logChannelSub = job.getChannel<logging.LogEntry>('log').subscribe({ next: (entry) => { logger.next(entry); }, error: () => {}, }); const outboundBusSub = job.outboundBus.subscribe({ error() {}, complete() { outboundBusSub.unsubscribe(); logChannelSub.unsubscribe(); stateSubscription.unsubscribe(); }, }); const output = job.output.pipe( map( (output) => ({ ...output, ...(options.target ? { target: options.target } : 0), info, }) as unknown as BuilderOutput, ), shareReplay(), ); // Start the builder. output.pipe(first()).subscribe({ error: () => {}, }); return { id, info, // This is a getter so that it always returns the next output, and not the same one. get result() { return firstValueFrom(output); }, get lastOutput() { return lastValueFrom(output); }, output, progress: job .getChannel<BuilderProgressReport>('progress', progressSchema) .pipe(shareReplay(1)), stop() { job.stop(); return job.outboundBus .pipe( ignoreElements(), catchError(() => EMPTY), ) .toPromise(); }, }; } export async function scheduleByTarget( target: Target, overrides: json.JsonObject, options: { scheduler: Scheduler; logger: logging.LoggerApi; workspaceRoot: string | Promise<string>; currentDirectory: string | Promise<string>; }, ): Promise<BuilderRun> { return scheduleByName(`{${targetStringFromTarget(target)}}`, overrides, { ...options, target, logger: options.logger, }); }