@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
64 lines (63 loc) • 2.54 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 '@sussudio/base/common/async.mjs';
import { Emitter } from '@sussudio/base/common/event.mjs';
import { Disposable } from '@sussudio/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 };