forked from qt-creator/qt-creator
Change-Id: I6acfa0d964530f9309594dfd2ae18c06c2235c85 Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
163 lines
5.3 KiB
C++
163 lines
5.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include "diffeditor_global.h"
|
|
|
|
#include <QString>
|
|
#include <QMap>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QFutureInterfaceBase;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Utils { class Diff; }
|
|
|
|
namespace DiffEditor {
|
|
|
|
class DIFFEDITOR_EXPORT DiffFileInfo {
|
|
public:
|
|
enum PatchBehaviour {
|
|
PatchFile,
|
|
PatchEditor
|
|
};
|
|
|
|
DiffFileInfo() = default;
|
|
DiffFileInfo(const QString &file) : fileName(file) {}
|
|
DiffFileInfo(const QString &file, const QString &type)
|
|
: fileName(file), typeInfo(type) {}
|
|
QString fileName;
|
|
QString typeInfo;
|
|
PatchBehaviour patchBehaviour = PatchFile;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT TextLineData {
|
|
public:
|
|
enum TextLineType {
|
|
TextLine,
|
|
Separator,
|
|
Invalid
|
|
};
|
|
TextLineData() {}
|
|
TextLineData(const QString &txt) : text(txt), textLineType(TextLine) {}
|
|
TextLineData(TextLineType t) : textLineType(t) {}
|
|
QString text;
|
|
/*
|
|
* <start position, end position>
|
|
* <-1, n> means this is a continuation from the previous line
|
|
* <n, -1> means this will be continued in the next line
|
|
* <-1, -1> the whole line is a continuation (from the previous line to the next line)
|
|
*/
|
|
QMap<int, int> changedPositions; // counting from the beginning of the line
|
|
TextLineType textLineType = Invalid;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT RowData {
|
|
public:
|
|
RowData() {}
|
|
RowData(const TextLineData &l)
|
|
: leftLine(l), rightLine(l), equal(true) {}
|
|
RowData(const TextLineData &l, const TextLineData &r)
|
|
: leftLine(l), rightLine(r) {}
|
|
TextLineData leftLine;
|
|
TextLineData rightLine;
|
|
bool equal = false;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT ChunkData {
|
|
public:
|
|
ChunkData() {}
|
|
QList<RowData> rows;
|
|
QString contextInfo;
|
|
int leftStartingLineNumber = 0;
|
|
int rightStartingLineNumber = 0;
|
|
bool contextChunk = false;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT ChunkSelection {
|
|
public:
|
|
ChunkSelection() {}
|
|
ChunkSelection(const QList<int> &left, const QList<int> &right)
|
|
: leftSelection(left), rightSelection(right) {}
|
|
bool isNull() const { return leftSelection.isEmpty() && rightSelection.isEmpty(); }
|
|
int selectedRowsCount() const;
|
|
QList<int> leftSelection;
|
|
QList<int> rightSelection;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT FileData {
|
|
public:
|
|
enum FileOperation {
|
|
ChangeFile,
|
|
ChangeMode,
|
|
NewFile,
|
|
DeleteFile,
|
|
CopyFile,
|
|
RenameFile
|
|
};
|
|
|
|
FileData() {}
|
|
FileData(const ChunkData &chunkData) { chunks.append(chunkData); }
|
|
QList<ChunkData> chunks;
|
|
DiffFileInfo leftFileInfo;
|
|
DiffFileInfo rightFileInfo;
|
|
FileOperation fileOperation = ChangeFile;
|
|
bool binaryFiles = false;
|
|
bool lastChunkAtTheEndOfFile = false;
|
|
bool contextChunksIncluded = false;
|
|
};
|
|
|
|
class DIFFEDITOR_EXPORT DiffUtils {
|
|
public:
|
|
enum PatchFormattingFlags {
|
|
AddLevel = 0x1, // Add 'a/' , '/b' for git am
|
|
GitFormat = AddLevel | 0x2, // Add line 'diff ..' as git does
|
|
};
|
|
|
|
static ChunkData calculateOriginalData(const QList<Utils::Diff> &leftDiffList,
|
|
const QList<Utils::Diff> &rightDiffList);
|
|
static FileData calculateContextData(const ChunkData &originalData,
|
|
int contextLineCount,
|
|
int joinChunkThreshold = 1);
|
|
static QString makePatchLine(const QChar &startLineCharacter,
|
|
const QString &textLine,
|
|
bool lastChunk,
|
|
bool lastLine);
|
|
static QString makePatch(const ChunkData &chunkData,
|
|
bool lastChunk = false);
|
|
static QString makePatch(const ChunkData &chunkData,
|
|
const QString &leftFileName,
|
|
const QString &rightFileName,
|
|
bool lastChunk = false);
|
|
static QString makePatch(const QList<FileData> &fileDataList,
|
|
unsigned formatFlags = 0);
|
|
static QList<FileData> readPatch(const QString &patch,
|
|
bool *ok = nullptr,
|
|
QFutureInterfaceBase *jobController = nullptr);
|
|
};
|
|
|
|
} // namespace DiffEditor
|