mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-03 01:25:38 -05:00
* don't uncheck difference if unsuccessful * changes after rebasing to get schema compare fix * First cut of column checkbox checking reactive to include opteration * handle blocking dependencies and affected dependencies * Changing the checked property of table to be list * Addressing comments * add map to keep row number of diff entries * remove findDifferenceRow() since it isn't needed anymore * fix scrolling to the top when checking/unchecking and add info message * change checked to updateCells * improve warning cannot include/exclude message
123 lines
6.1 KiB
TypeScript
123 lines
6.1 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { AppContext } from '../appContext';
|
|
import { SqlOpsDataClient, ISqlOpsFeature } from 'dataprotocol-client';
|
|
import * as constants from '../constants';
|
|
import * as mssql from '../mssql';
|
|
import * as Utils from '../utils';
|
|
import { ClientCapabilities } from 'vscode-languageclient';
|
|
import * as azdata from 'azdata';
|
|
import * as contracts from '../contracts';
|
|
|
|
export class SchemaCompareService implements mssql.ISchemaCompareService {
|
|
public static asFeature(context: AppContext): ISqlOpsFeature {
|
|
return class extends SchemaCompareService {
|
|
constructor(client: SqlOpsDataClient) {
|
|
super(context, client);
|
|
}
|
|
|
|
fillClientCapabilities(capabilities: ClientCapabilities): void {
|
|
Utils.ensure(capabilities, 'schemaCompare')!.schemaCompare = true;
|
|
}
|
|
|
|
initialize(): void {
|
|
}
|
|
};
|
|
}
|
|
|
|
private constructor(context: AppContext, protected readonly client: SqlOpsDataClient) {
|
|
context.registerService(constants.SchemaCompareService, this);
|
|
}
|
|
|
|
public schemaCompare(operationId: string, sourceEndpointInfo: mssql.SchemaCompareEndpointInfo, targetEndpointInfo: mssql.SchemaCompareEndpointInfo, taskExecutionMode: azdata.TaskExecutionMode, deploymentOptions: mssql.DeploymentOptions): Thenable<mssql.SchemaCompareResult> {
|
|
const params: contracts.SchemaCompareParams = { operationId: operationId, sourceEndpointInfo: sourceEndpointInfo, targetEndpointInfo: targetEndpointInfo, taskExecutionMode: taskExecutionMode, deploymentOptions: deploymentOptions };
|
|
return this.client.sendRequest(contracts.SchemaCompareRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareGenerateScript(operationId: string, targetServerName: string, targetDatabaseName: string, taskExecutionMode: azdata.TaskExecutionMode): Thenable<azdata.ResultStatus> {
|
|
const params: contracts.SchemaCompareGenerateScriptParams = { operationId: operationId, targetServerName: targetServerName, targetDatabaseName: targetDatabaseName, taskExecutionMode: taskExecutionMode };
|
|
return this.client.sendRequest(contracts.SchemaCompareGenerateScriptRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareGenerateScriptRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaComparePublishChanges(operationId: string, targetServerName: string, targetDatabaseName: string, taskExecutionMode: azdata.TaskExecutionMode): Thenable<azdata.ResultStatus> {
|
|
const params: contracts.SchemaComparePublishChangesParams = { operationId: operationId, targetServerName: targetServerName, targetDatabaseName: targetDatabaseName, taskExecutionMode: taskExecutionMode };
|
|
return this.client.sendRequest(contracts.SchemaComparePublishChangesRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaComparePublishChangesRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareGetDefaultOptions(): Thenable<mssql.SchemaCompareOptionsResult> {
|
|
const params: contracts.SchemaCompareGetOptionsParams = {};
|
|
return this.client.sendRequest(contracts.SchemaCompareGetDefaultOptionsRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareGetDefaultOptionsRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareIncludeExcludeNode(operationId: string, diffEntry: mssql.DiffEntry, includeRequest: boolean, taskExecutionMode: azdata.TaskExecutionMode): Thenable<mssql.SchemaCompareIncludeExcludeResult> {
|
|
const params: contracts.SchemaCompareNodeParams = { operationId: operationId, diffEntry, includeRequest, taskExecutionMode: taskExecutionMode };
|
|
return this.client.sendRequest(contracts.SchemaCompareIncludeExcludeNodeRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareIncludeExcludeNodeRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareOpenScmp(filePath: string): Thenable<mssql.SchemaCompareOpenScmpResult> {
|
|
const params: contracts.SchemaCompareOpenScmpParams = { filePath: filePath };
|
|
return this.client.sendRequest(contracts.SchemaCompareOpenScmpRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareOpenScmpRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareSaveScmp(sourceEndpointInfo: mssql.SchemaCompareEndpointInfo, targetEndpointInfo: mssql.SchemaCompareEndpointInfo, taskExecutionMode: azdata.TaskExecutionMode, deploymentOptions: mssql.DeploymentOptions, scmpFilePath: string, excludedSourceObjects: mssql.SchemaCompareObjectId[], excludedTargetObjects: mssql.SchemaCompareObjectId[]): Thenable<azdata.ResultStatus> {
|
|
const params: contracts.SchemaCompareSaveScmpParams = { sourceEndpointInfo: sourceEndpointInfo, targetEndpointInfo: targetEndpointInfo, taskExecutionMode: taskExecutionMode, deploymentOptions: deploymentOptions, scmpFilePath: scmpFilePath, excludedSourceObjects: excludedSourceObjects, excludedTargetObjects: excludedTargetObjects };
|
|
return this.client.sendRequest(contracts.SchemaCompareSaveScmpRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareSaveScmpRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
|
|
public schemaCompareCancel(operationId: string): Thenable<azdata.ResultStatus> {
|
|
const params: contracts.SchemaCompareCancelParams = { operationId: operationId };
|
|
return this.client.sendRequest(contracts.SchemaCompareCancellationRequest.type, params).then(
|
|
undefined,
|
|
e => {
|
|
this.client.logFailedRequest(contracts.SchemaCompareCancellationRequest.type, e);
|
|
return Promise.resolve(undefined);
|
|
}
|
|
);
|
|
}
|
|
}
|