mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-07 09:35:41 -05:00
* Initial 1.19 xcopy * Fix yarn build * Fix numerous build breaks * Next batch of build break fixes * More build break fixes * Runtime breaks * Additional post merge fixes * Fix windows setup file * Fix test failures. * Update license header blocks to refer to source eula
78 lines
2.8 KiB
TypeScript
78 lines
2.8 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 * as interfaces from './interfaces';
|
|
import * as vscode from 'vscode';
|
|
|
|
export class DocumentMergeConflict implements interfaces.IDocumentMergeConflict {
|
|
|
|
public range: vscode.Range;
|
|
public current: interfaces.IMergeRegion;
|
|
public incoming: interfaces.IMergeRegion;
|
|
public commonAncestors: interfaces.IMergeRegion[];
|
|
public splitter: vscode.Range;
|
|
|
|
constructor(descriptor: interfaces.IDocumentMergeConflictDescriptor) {
|
|
this.range = descriptor.range;
|
|
this.current = descriptor.current;
|
|
this.incoming = descriptor.incoming;
|
|
this.commonAncestors = descriptor.commonAncestors;
|
|
this.splitter = descriptor.splitter;
|
|
}
|
|
|
|
public commitEdit(type: interfaces.CommitType, editor: vscode.TextEditor, edit?: vscode.TextEditorEdit): Thenable<boolean> {
|
|
|
|
if (edit) {
|
|
|
|
this.applyEdit(type, editor, edit);
|
|
return Promise.resolve(true);
|
|
}
|
|
|
|
return editor.edit((edit) => this.applyEdit(type, editor, edit));
|
|
}
|
|
|
|
public applyEdit(type: interfaces.CommitType, editor: vscode.TextEditor, edit: vscode.TextEditorEdit): void {
|
|
|
|
// Each conflict is a set of ranges as follows, note placements or newlines
|
|
// which may not in in spans
|
|
// [ Conflict Range -- (Entire content below)
|
|
// [ Current Header ]\n -- >>>>> Header
|
|
// [ Current Content ] -- (content)
|
|
// [ Splitter ]\n -- =====
|
|
// [ Incoming Content ] -- (content)
|
|
// [ Incoming Header ]\n -- <<<<< Incoming
|
|
// ]
|
|
if (type === interfaces.CommitType.Current) {
|
|
// Replace [ Conflict Range ] with [ Current Content ]
|
|
let content = editor.document.getText(this.current.content);
|
|
this.replaceRangeWithContent(content, edit);
|
|
}
|
|
else if (type === interfaces.CommitType.Incoming) {
|
|
let content = editor.document.getText(this.incoming.content);
|
|
this.replaceRangeWithContent(content, edit);
|
|
}
|
|
else if (type === interfaces.CommitType.Both) {
|
|
// Replace [ Conflict Range ] with [ Current Content ] + \n + [ Incoming Content ]
|
|
|
|
const currentContent = editor.document.getText(this.current.content);
|
|
const incomingContent = editor.document.getText(this.incoming.content);
|
|
|
|
edit.replace(this.range, currentContent.concat(incomingContent));
|
|
}
|
|
}
|
|
|
|
private replaceRangeWithContent(content: string, edit: vscode.TextEditorEdit) {
|
|
if (this.isNewlineOnly(content)) {
|
|
edit.replace(this.range, '');
|
|
return;
|
|
}
|
|
|
|
// Replace [ Conflict Range ] with [ Current Content ]
|
|
edit.replace(this.range, content);
|
|
}
|
|
|
|
private isNewlineOnly(text: string) {
|
|
return text === '\n' || text === '\r\n';
|
|
}
|
|
} |