2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2009-07-15 12:28:40 +02:00
|
|
|
|
|
|
|
|
#include "cvseditor.h"
|
|
|
|
|
|
2022-09-29 17:59:47 +02:00
|
|
|
#include "cvstr.h"
|
|
|
|
|
#include "cvsutils.h"
|
2009-07-15 12:28:40 +02:00
|
|
|
|
|
|
|
|
#include <utils/qtcassert.h>
|
2022-09-29 17:59:47 +02:00
|
|
|
|
|
|
|
|
#include <vcsbase/baseannotationhighlighter.h>
|
2015-03-25 10:31:55 +02:00
|
|
|
#include <vcsbase/diffandloghighlighter.h>
|
2009-07-15 12:28:40 +02:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QTextCursor>
|
|
|
|
|
#include <QTextBlock>
|
2009-07-15 12:28:40 +02:00
|
|
|
|
2022-09-29 17:59:47 +02:00
|
|
|
namespace Cvs::Internal {
|
2009-07-15 12:28:40 +02:00
|
|
|
|
|
|
|
|
// Match a CVS revision ("1.1.1.1")
|
|
|
|
|
#define CVS_REVISION_PATTERN "[\\d\\.]+"
|
2011-11-22 15:50:49 +01:00
|
|
|
#define CVS_REVISION_AT_START_PATTERN "^(" CVS_REVISION_PATTERN ") "
|
2009-07-15 12:28:40 +02:00
|
|
|
|
2022-09-29 17:59:47 +02:00
|
|
|
// Annotation highlighter for cvs triggering on 'changenumber '
|
|
|
|
|
class CvsAnnotationHighlighter : public VcsBase::BaseAnnotationHighlighter
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit CvsAnnotationHighlighter(const ChangeNumbers &changeNumbers,
|
|
|
|
|
QTextDocument *document = nullptr) :
|
|
|
|
|
VcsBase::BaseAnnotationHighlighter(changeNumbers, document)
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QString changeNumber(const QString &block) const override
|
|
|
|
|
{
|
|
|
|
|
const int pos = block.indexOf(QLatin1Char(' '));
|
|
|
|
|
return pos > 1 ? block.left(pos) : QString();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2014-08-21 20:43:33 +02:00
|
|
|
CvsEditorWidget::CvsEditorWidget() :
|
2020-02-19 23:26:24 +02:00
|
|
|
m_revisionAnnotationPattern(CVS_REVISION_AT_START_PATTERN),
|
|
|
|
|
m_revisionLogPattern("^revision *(" CVS_REVISION_PATTERN ")$")
|
2009-07-15 12:28:40 +02:00
|
|
|
{
|
2009-10-30 13:57:06 +01:00
|
|
|
QTC_ASSERT(m_revisionAnnotationPattern.isValid(), return);
|
|
|
|
|
QTC_ASSERT(m_revisionLogPattern.isValid(), return);
|
2013-01-19 23:19:38 +02:00
|
|
|
/* Diff format:
|
|
|
|
|
\code
|
|
|
|
|
cvs diff -d -u -r1.1 -r1.2:
|
|
|
|
|
--- mainwindow.cpp<\t>13 Jul 2009 13:50:15 -0000<tab>1.1
|
|
|
|
|
+++ mainwindow.cpp<\t>14 Jul 2009 07:09:24 -0000<tab>1.2
|
|
|
|
|
@@ -6,6 +6,5 @@
|
|
|
|
|
\endcode
|
|
|
|
|
*/
|
2020-02-19 23:26:24 +02:00
|
|
|
setDiffFilePattern("^[-+]{3} ([^\\t]+)");
|
|
|
|
|
setLogEntryPattern("^revision (.+)$");
|
2022-09-29 17:59:47 +02:00
|
|
|
setAnnotateRevisionTextFormat(Tr::tr("Annotate revision \"%1\""));
|
2020-02-19 23:23:36 +02:00
|
|
|
setAnnotationEntryPattern("^(" CVS_REVISION_PATTERN ") ");
|
2009-07-15 12:28:40 +02:00
|
|
|
}
|
|
|
|
|
|
2014-08-21 20:43:33 +02:00
|
|
|
QString CvsEditorWidget::changeUnderCursor(const QTextCursor &c) const
|
2009-07-15 12:28:40 +02:00
|
|
|
{
|
2009-10-30 13:57:06 +01:00
|
|
|
// Try to match "1.1" strictly:
|
|
|
|
|
// 1) Annotation: Check for a revision number at the beginning of the line.
|
|
|
|
|
// Note that "cursor.select(QTextCursor::WordUnderCursor)" will
|
|
|
|
|
// only select the part up until the dot.
|
|
|
|
|
// Check if we are at the beginning of a line within a reasonable offset.
|
|
|
|
|
// 2) Log: check for lines like "revision 1.1", cursor past "revision"
|
|
|
|
|
switch (contentType()) {
|
2013-05-22 21:32:07 +03:00
|
|
|
case VcsBase::OtherContent:
|
2012-01-07 12:31:48 +01:00
|
|
|
case VcsBase::DiffOutput:
|
2009-10-30 13:57:06 +01:00
|
|
|
break;
|
2012-01-07 12:31:48 +01:00
|
|
|
case VcsBase::AnnotateOutput: {
|
2009-10-30 13:57:06 +01:00
|
|
|
const QTextBlock block = c.block();
|
|
|
|
|
if (c.atBlockStart() || (c.position() - block.position() < 3)) {
|
|
|
|
|
const QString line = block.text();
|
2020-02-19 23:26:24 +02:00
|
|
|
const QRegularExpressionMatch match = m_revisionAnnotationPattern.match(line);
|
|
|
|
|
if (match.hasMatch())
|
|
|
|
|
return match.captured(1);
|
2009-10-30 13:57:06 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
break;
|
2012-01-07 12:31:48 +01:00
|
|
|
case VcsBase::LogOutput: {
|
2009-10-30 13:57:06 +01:00
|
|
|
const QTextBlock block = c.block();
|
2020-02-19 23:26:24 +02:00
|
|
|
if (c.position() - block.position() > 8) {
|
|
|
|
|
const QRegularExpressionMatch match = m_revisionLogPattern.match(block.text());
|
|
|
|
|
if (match.hasMatch())
|
|
|
|
|
return match.captured(1);
|
|
|
|
|
}
|
2009-10-30 13:57:06 +01:00
|
|
|
}
|
|
|
|
|
break;
|
2009-07-15 12:28:40 +02:00
|
|
|
}
|
2023-08-02 11:55:45 +02:00
|
|
|
return {};
|
2009-07-15 12:28:40 +02:00
|
|
|
}
|
|
|
|
|
|
2014-08-21 20:43:33 +02:00
|
|
|
VcsBase::BaseAnnotationHighlighter *CvsEditorWidget::createAnnotationHighlighter(const QSet<QString> &changes) const
|
2009-07-15 12:28:40 +02:00
|
|
|
{
|
2013-08-13 12:57:31 +02:00
|
|
|
return new CvsAnnotationHighlighter(changes);
|
2009-07-15 12:28:40 +02:00
|
|
|
}
|
|
|
|
|
|
2014-08-21 20:43:33 +02:00
|
|
|
QStringList CvsEditorWidget::annotationPreviousVersions(const QString &revision) const
|
2010-01-06 17:24:40 +01:00
|
|
|
{
|
|
|
|
|
if (isFirstRevision(revision))
|
2023-08-01 21:26:29 +02:00
|
|
|
return {};
|
2010-01-06 17:24:40 +01:00
|
|
|
return QStringList(previousRevision(revision));
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-29 17:59:47 +02:00
|
|
|
} // Cvs::Internal
|