/** * Copyright (c) Microsoft Corporation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { AsyncLocalStorage } from 'async_hooks'; export type ZoneType = 'apiZone' | 'stepZone'; class ZoneManager { private readonly _asyncLocalStorage = new AsyncLocalStorage(); private readonly _emptyZone = Zone.createEmpty(this._asyncLocalStorage); run(type: ZoneType, data: T, func: () => R): R { return this.current().with(type, data).run(func); } zoneData(type: ZoneType): T | undefined { return this.current().data(type); } current(): Zone { return this._asyncLocalStorage.getStore() ?? this._emptyZone; } empty(): Zone { return this._emptyZone; } } export class Zone { private readonly _asyncLocalStorage: AsyncLocalStorage; private readonly _data: ReadonlyMap; static createEmpty(asyncLocalStorage: AsyncLocalStorage) { return new Zone(asyncLocalStorage, new Map()); } private constructor(asyncLocalStorage: AsyncLocalStorage, store: Map) { this._asyncLocalStorage = asyncLocalStorage; this._data = store; } with(type: ZoneType, data: unknown): Zone { return new Zone(this._asyncLocalStorage, new Map(this._data).set(type, data)); } without(type?: ZoneType): Zone { const data = type ? new Map(this._data) : new Map(); data.delete(type); return new Zone(this._asyncLocalStorage, data); } run(func: () => R): R { return this._asyncLocalStorage.run(this, func); } data(type: ZoneType): T | undefined { return this._data.get(type) as T | undefined; } } export const zones = new ZoneManager();