sussudio
Version:
An unofficial VS Code Internal API
56 lines (55 loc) • 2.72 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
import { Promises } from "../../../base/common/async.mjs";
import { Emitter } from "../../../base/common/event.mjs";
import { Disposable } from "../../../base/common/lifecycle.mjs";
import { createDecorator } from "../../instantiation/common/instantiation.mjs";
import { ILogService } from "../../log/common/log.mjs";
export const ISharedProcessLifecycleService = createDecorator('lifecycleSharedProcessService');
let SharedProcessLifecycleService = class SharedProcessLifecycleService extends Disposable {
logService;
pendingWillShutdownPromise = undefined;
_onWillShutdown = this._register(new Emitter());
onWillShutdown = this._onWillShutdown.event;
constructor(logService) {
super();
this.logService = logService;
}
fireOnWillShutdown() {
if (this.pendingWillShutdownPromise) {
return this.pendingWillShutdownPromise; // shutdown is already running
}
this.logService.trace('Lifecycle#onWillShutdown.fire()');
const joiners = [];
this._onWillShutdown.fire({
join(promise) {
joiners.push(promise);
}
});
this.pendingWillShutdownPromise = (async () => {
// Settle all shutdown event joiners
try {
await Promises.settled(joiners);
}
catch (error) {
this.logService.error(error);
}
})();
return this.pendingWillShutdownPromise;
}
};
SharedProcessLifecycleService = __decorate([
__param(0, ILogService)
], SharedProcessLifecycleService);
export { SharedProcessLifecycleService };