mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 17:22:20 -05:00
53 lines
1.9 KiB
TypeScript
53 lines
1.9 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import { ITaskService } from 'sql/parts/taskHistory/common/taskService';
|
|
import { MainThreadBackgroundTaskManagementShape, SqlMainContext, ExtHostBackgroundTaskManagementShape, SqlExtHostContext } from 'sql/workbench/api/node/sqlExtHost.protocol';
|
|
|
|
import { extHostNamedCustomer } from 'vs/workbench/api/electron-browser/extHostCustomers';
|
|
import { IExtHostContext } from 'vs/workbench/api/node/extHost.protocol';
|
|
import { Disposable } from 'vs/base/common/lifecycle';
|
|
|
|
|
|
import * as sqlops from 'sqlops';
|
|
|
|
export enum TaskStatus {
|
|
NotStarted = 0,
|
|
InProgress = 1,
|
|
Succeeded = 2,
|
|
SucceededWithWarning = 3,
|
|
Failed = 4,
|
|
Canceled = 5,
|
|
Canceling = 6
|
|
}
|
|
|
|
@extHostNamedCustomer(SqlMainContext.MainThreadBackgroundTaskManagement)
|
|
export class MainThreadBackgroundTaskManagement extends Disposable implements MainThreadBackgroundTaskManagementShape {
|
|
private readonly _proxy: ExtHostBackgroundTaskManagementShape;
|
|
|
|
constructor(
|
|
context: IExtHostContext,
|
|
@ITaskService private _taskService: ITaskService
|
|
) {
|
|
super();
|
|
this._proxy = context.getProxy(SqlExtHostContext.ExtHostBackgroundTaskManagement);
|
|
this._register(this._taskService.onTaskComplete(task => {
|
|
if (task.status === TaskStatus.Canceling) {
|
|
this._proxy.$onTaskCanceled(task.id);
|
|
}
|
|
}));
|
|
}
|
|
|
|
$registerTask(taskInfo: sqlops.TaskInfo): void {
|
|
this._taskService.createNewTask(taskInfo);
|
|
this._proxy.$onTaskRegistered(taskInfo.taskId);
|
|
}
|
|
|
|
$updateTask(taskProgressInfo: sqlops.TaskProgressInfo): void {
|
|
this._taskService.updateTask(taskProgressInfo);
|
|
}
|
|
}
|