mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
* Make nullable warnings a per file opt-in * Remove unneeded compiler directives * Remove compiler directive for User Data
147 lines
5.7 KiB
C#
147 lines
5.7 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
#nullable disable
|
|
using Microsoft.SqlServer.Dac.Compare;
|
|
using Microsoft.SqlTools.ServiceLayer.Connection;
|
|
using Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.TaskServices;
|
|
using Microsoft.SqlTools.Utility;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare
|
|
{
|
|
/// <summary>
|
|
/// Schema compare operation
|
|
/// </summary>
|
|
class SchemaCompareOperation : ITaskOperation
|
|
{
|
|
private CancellationTokenSource cancellation = new CancellationTokenSource();
|
|
private bool disposed = false;
|
|
|
|
/// <summary>
|
|
/// Gets the unique id associated with this instance.
|
|
/// </summary>
|
|
public string OperationId { get; private set; }
|
|
|
|
public SqlTask SqlTask { get; set; }
|
|
|
|
public SchemaCompareParams Parameters { get; set; }
|
|
|
|
public ConnectionInfo SourceConnectionInfo { get; set; }
|
|
|
|
public ConnectionInfo TargetConnectionInfo { get; set; }
|
|
|
|
public SchemaComparisonResult ComparisonResult { get; set; }
|
|
|
|
public List<DiffEntry> Differences;
|
|
|
|
public SchemaCompareOperation(SchemaCompareParams parameters, ConnectionInfo sourceConnInfo, ConnectionInfo targetConnInfo)
|
|
{
|
|
Validate.IsNotNull("parameters", parameters);
|
|
this.Parameters = parameters;
|
|
this.SourceConnectionInfo = sourceConnInfo;
|
|
this.TargetConnectionInfo = targetConnInfo;
|
|
this.OperationId = !string.IsNullOrEmpty(parameters.OperationId) ? parameters.OperationId : Guid.NewGuid().ToString();
|
|
}
|
|
|
|
protected CancellationToken CancellationToken { get { return this.cancellation.Token; } }
|
|
|
|
/// <summary>
|
|
/// The error occurred during operation
|
|
/// </summary>
|
|
public string ErrorMessage { get; set; }
|
|
|
|
// The schema compare public api doesn't currently take a cancellation token so the operation can't be cancelled
|
|
public void Cancel()
|
|
{
|
|
this.cancellation.Cancel();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Disposes the operation.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
if (!disposed)
|
|
{
|
|
this.Cancel();
|
|
disposed = true;
|
|
}
|
|
}
|
|
|
|
public void Execute(TaskExecutionMode mode)
|
|
{
|
|
if (this.CancellationToken.IsCancellationRequested)
|
|
{
|
|
throw new OperationCanceledException(this.CancellationToken);
|
|
}
|
|
|
|
try
|
|
{
|
|
SchemaCompareEndpoint sourceEndpoint = SchemaCompareUtils.CreateSchemaCompareEndpoint(this.Parameters.SourceEndpointInfo, this.SourceConnectionInfo);
|
|
SchemaCompareEndpoint targetEndpoint = SchemaCompareUtils.CreateSchemaCompareEndpoint(this.Parameters.TargetEndpointInfo, this.TargetConnectionInfo);
|
|
|
|
SchemaComparison comparison = new SchemaComparison(sourceEndpoint, targetEndpoint);
|
|
|
|
if (this.Parameters.DeploymentOptions != null)
|
|
{
|
|
comparison.Options = SchemaCompareUtils.CreateSchemaCompareOptions(this.Parameters.DeploymentOptions);
|
|
}
|
|
|
|
// for testing
|
|
schemaCompareStarted?.Invoke(this, new EventArgs());
|
|
|
|
this.ComparisonResult = comparison.Compare(this.CancellationToken);
|
|
|
|
// try one more time if it didn't work the first time
|
|
if (!this.ComparisonResult.IsValid)
|
|
{
|
|
this.ComparisonResult = comparison.Compare(this.CancellationToken);
|
|
}
|
|
|
|
// Since DacFx does not throw on schema comparison cancellation, throwing here explicitly to ensure consistency of behavior
|
|
if (!this.ComparisonResult.IsValid && this.CancellationToken.IsCancellationRequested)
|
|
{
|
|
throw new OperationCanceledException(this.CancellationToken);
|
|
}
|
|
|
|
this.Differences = new List<DiffEntry>();
|
|
if (this.ComparisonResult.Differences != null)
|
|
{
|
|
// filter out not included and not excludeable differences
|
|
(this.ComparisonResult.Differences as List<SchemaDifference>).RemoveAll(d => !d.Included && !d.IsExcludable);
|
|
|
|
foreach (SchemaDifference difference in this.ComparisonResult.Differences)
|
|
{
|
|
DiffEntry diffEntry = SchemaCompareUtils.CreateDiffEntry(difference, null);
|
|
this.Differences.Add(diffEntry);
|
|
}
|
|
}
|
|
|
|
// Appending the set of errors that are stopping the schema compare to the ErrorMessage
|
|
// GetErrors return all type of warnings, and error messages. Only filtering the error type messages here
|
|
var errorsList = ComparisonResult.GetErrors().Where(x => x.MessageType.Equals(Microsoft.SqlServer.Dac.DacMessageType.Error)).Select(e => e.Message).Distinct().ToList();
|
|
if (errorsList.Count > 0)
|
|
{
|
|
ErrorMessage = string.Join("\n", errorsList);
|
|
}
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
ErrorMessage = e.Message;
|
|
Logger.Write(TraceEventType.Error, string.Format("Schema compare operation {0} failed with exception {1}", this.OperationId, e.Message));
|
|
throw;
|
|
}
|
|
}
|
|
|
|
internal event EventHandler<EventArgs> schemaCompareStarted;
|
|
}
|
|
}
|