2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
2013-01-28 17:12:19 +01:00
|
|
|
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
|
2012-10-02 09:12:39 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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 Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-10-27 17:38:22 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-10-27 17:38:22 +02:00
|
|
|
|
|
|
|
|
#include "snippet.h"
|
|
|
|
|
|
2013-08-09 17:45:14 +02:00
|
|
|
#include <coreplugin/id.h>
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QLatin1Char>
|
|
|
|
|
#include <QLatin1String>
|
|
|
|
|
#include <QTextDocument>
|
2010-10-27 17:38:22 +02:00
|
|
|
|
|
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
2013-08-09 17:45:14 +02:00
|
|
|
const char NOMANGLER_ID[] = "TextEditor::NoMangler";
|
|
|
|
|
const char UCMANGLER_ID[] = "TextEditor::UppercaseMangler";
|
|
|
|
|
const char LCMANGLER_ID[] = "TextEditor::LowercaseMangler";
|
|
|
|
|
const char TCMANGLER_ID[] = "TextEditor::TitlecaseMangler";
|
|
|
|
|
|
2013-08-20 20:52:38 +03:00
|
|
|
Q_DECLARE_METATYPE(QList<int>)
|
|
|
|
|
|
2013-08-09 17:45:14 +02:00
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// Manglers:
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
class UppercaseMangler : public NameMangler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Core::Id id() const { return UCMANGLER_ID; }
|
|
|
|
|
QString mangle(const QString &unmangled) const { return unmangled.toUpper(); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class LowercaseMangler : public NameMangler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Core::Id id() const { return LCMANGLER_ID; }
|
|
|
|
|
QString mangle(const QString &unmangled) const { return unmangled.toLower(); }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class TitlecaseMangler : public NameMangler
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Core::Id id() const { return TCMANGLER_ID; }
|
|
|
|
|
QString mangle(const QString &unmangled) const
|
|
|
|
|
{
|
|
|
|
|
QString result = unmangled;
|
|
|
|
|
if (!result.isEmpty())
|
|
|
|
|
result[0] = unmangled.at(0).toTitleCase();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
// Snippet:
|
|
|
|
|
// --------------------------------------------------------------------
|
|
|
|
|
|
2010-10-27 17:38:22 +02:00
|
|
|
const QChar Snippet::kVariableDelimiter(QLatin1Char('$'));
|
|
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
Snippet::Snippet(const QString &groupId, const QString &id) :
|
|
|
|
|
m_isRemoved(false), m_isModified(false), m_groupId(groupId), m_id(id)
|
2010-10-27 17:38:22 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
Snippet::~Snippet()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::id() const
|
|
|
|
|
{
|
|
|
|
|
return m_id;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-02 17:02:23 +01:00
|
|
|
const QString &Snippet::groupId() const
|
|
|
|
|
{
|
|
|
|
|
return m_groupId;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-27 17:38:22 +02:00
|
|
|
bool Snippet::isBuiltIn() const
|
|
|
|
|
{
|
|
|
|
|
return !m_id.isEmpty();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setTrigger(const QString &trigger)
|
|
|
|
|
{
|
|
|
|
|
m_trigger = trigger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::trigger() const
|
|
|
|
|
{
|
|
|
|
|
return m_trigger;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setContent(const QString &content)
|
|
|
|
|
{
|
|
|
|
|
m_content = content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::content() const
|
|
|
|
|
{
|
|
|
|
|
return m_content;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setComplement(const QString &complement)
|
|
|
|
|
{
|
|
|
|
|
m_complement = complement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QString &Snippet::complement() const
|
|
|
|
|
{
|
|
|
|
|
return m_complement;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setIsRemoved(bool removed)
|
|
|
|
|
{
|
|
|
|
|
m_isRemoved = removed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Snippet::isRemoved() const
|
|
|
|
|
{
|
|
|
|
|
return m_isRemoved;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Snippet::setIsModified(bool modified)
|
|
|
|
|
{
|
|
|
|
|
m_isModified = modified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Snippet::isModified() const
|
|
|
|
|
{
|
|
|
|
|
return m_isModified;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString Snippet::generateTip() const
|
|
|
|
|
{
|
|
|
|
|
static const QLatin1Char kNewLine('\n');
|
|
|
|
|
static const QLatin1Char kSpace(' ');
|
|
|
|
|
static const QLatin1String kBr("<br>");
|
|
|
|
|
static const QLatin1String kNbsp(" ");
|
|
|
|
|
static const QLatin1String kNoBr("<nobr>");
|
|
|
|
|
static const QLatin1String kOpenBold("<b>");
|
|
|
|
|
static const QLatin1String kCloseBold("</b>");
|
|
|
|
|
static const QLatin1String kEllipsis("...");
|
|
|
|
|
|
|
|
|
|
QString escapedContent(Qt::escape(m_content));
|
|
|
|
|
escapedContent.replace(kNewLine, kBr);
|
|
|
|
|
escapedContent.replace(kSpace, kNbsp);
|
|
|
|
|
|
|
|
|
|
QString tip(kNoBr);
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (int i = 0; i < escapedContent.count(); ++i) {
|
|
|
|
|
if (escapedContent.at(i) != kVariableDelimiter) {
|
|
|
|
|
tip += escapedContent.at(i);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
if (++count % 2) {
|
|
|
|
|
tip += kOpenBold;
|
|
|
|
|
} else {
|
|
|
|
|
if (escapedContent.at(i-1) == kVariableDelimiter)
|
|
|
|
|
tip += kEllipsis;
|
|
|
|
|
tip += kCloseBold;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return tip;
|
|
|
|
|
}
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
Snippet::ParsedSnippet Snippet::parse(const QString &snippet)
|
|
|
|
|
{
|
2013-08-09 17:45:14 +02:00
|
|
|
static UppercaseMangler ucMangler;
|
|
|
|
|
static LowercaseMangler lcMangler;
|
|
|
|
|
static TitlecaseMangler tcMangler;
|
|
|
|
|
|
2013-08-20 13:58:16 +02:00
|
|
|
Snippet::ParsedSnippet result;
|
|
|
|
|
result.success = true;
|
|
|
|
|
|
|
|
|
|
const int count = snippet.count();
|
|
|
|
|
bool success = true;
|
|
|
|
|
int start = -1;
|
2013-08-09 17:45:14 +02:00
|
|
|
NameMangler *mangler = 0;
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
result.text.reserve(count);
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < count; ++i) {
|
|
|
|
|
QChar current = snippet.at(i);
|
|
|
|
|
QChar next = (i + 1) < count ? snippet.at(i + 1) : QChar();
|
|
|
|
|
|
2013-08-09 17:45:14 +02:00
|
|
|
if (current == Snippet::kVariableDelimiter) {
|
|
|
|
|
if (start < 0) {
|
|
|
|
|
// start delimiter:
|
|
|
|
|
start = result.text.count();
|
|
|
|
|
} else {
|
|
|
|
|
int length = result.text.count() - start;
|
|
|
|
|
result.ranges << ParsedSnippet::Range(start, length, mangler);
|
|
|
|
|
mangler = 0;
|
|
|
|
|
start = -1;
|
|
|
|
|
}
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mangler) {
|
|
|
|
|
success = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-22 11:52:01 +02:00
|
|
|
if (current == QLatin1Char(':') && start >= 0) {
|
|
|
|
|
if (mangler != 0) {
|
|
|
|
|
success = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (next == QLatin1Char('l')) {
|
|
|
|
|
mangler = &lcMangler;
|
|
|
|
|
} else if (next == QLatin1Char('u')) {
|
|
|
|
|
mangler = &ucMangler;
|
|
|
|
|
} else if (next == QLatin1Char('c')) {
|
|
|
|
|
mangler = &tcMangler;
|
|
|
|
|
} else {
|
|
|
|
|
success = false;
|
|
|
|
|
break;
|
2013-08-09 17:45:14 +02:00
|
|
|
}
|
|
|
|
|
++i;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-20 13:58:16 +02:00
|
|
|
if (current == QLatin1Char('\\')) {
|
|
|
|
|
if (next.isNull()) {
|
|
|
|
|
success = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
result.text.append(next);
|
|
|
|
|
++i;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.text.append(current);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (start >= 0)
|
|
|
|
|
success = false;
|
|
|
|
|
|
|
|
|
|
result.success = success;
|
|
|
|
|
|
|
|
|
|
if (!success) {
|
|
|
|
|
result.ranges.clear();
|
|
|
|
|
result.text = snippet;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef WITH_TESTS
|
|
|
|
|
# include <QTest>
|
|
|
|
|
|
|
|
|
|
# include "texteditorplugin.h"
|
|
|
|
|
|
|
|
|
|
void Internal::TextEditorPlugin::testSnippetParsing_data()
|
|
|
|
|
{
|
|
|
|
|
QTest::addColumn<QString>("input");
|
|
|
|
|
QTest::addColumn<QString>("text");
|
|
|
|
|
QTest::addColumn<bool>("success");
|
|
|
|
|
QTest::addColumn<QList<int> >("ranges_start");
|
|
|
|
|
QTest::addColumn<QList<int> >("ranges_length");
|
2013-08-09 17:45:14 +02:00
|
|
|
QTest::addColumn<QList<Core::Id> >("ranges_mangler");
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("no input")
|
2013-08-09 17:45:14 +02:00
|
|
|
<< QString() << QString() << true
|
|
|
|
|
<< (QList<int>()) << (QList<int>()) << (QList<Core::Id>());
|
2013-08-20 13:58:16 +02:00
|
|
|
QTest::newRow("empty input")
|
2013-08-09 17:45:14 +02:00
|
|
|
<< QString::fromLatin1("") << QString::fromLatin1("") << true
|
|
|
|
|
<< (QList<int>()) << (QList<int>()) << (QList<Core::Id>());
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("simple identifier")
|
2013-08-09 17:45:14 +02:00
|
|
|
<< QString::fromLatin1("$tESt$") << QString::fromLatin1("tESt") << true
|
|
|
|
|
<< (QList<int>() << 0) << (QList<int>() << 4)
|
|
|
|
|
<< (QList<Core::Id>() << NOMANGLER_ID);
|
|
|
|
|
QTest::newRow("simple identifier with lc")
|
|
|
|
|
<< QString::fromLatin1("$tESt:l$") << QString::fromLatin1("tESt") << true
|
|
|
|
|
<< (QList<int>() << 0) << (QList<int>() << 4)
|
|
|
|
|
<< (QList<Core::Id>() << LCMANGLER_ID);
|
|
|
|
|
QTest::newRow("simple identifier with uc")
|
|
|
|
|
<< QString::fromLatin1("$tESt:u$") << QString::fromLatin1("tESt") << true
|
|
|
|
|
<< (QList<int>() << 0) << (QList<int>() << 4)
|
|
|
|
|
<< (QList<Core::Id>() << UCMANGLER_ID);
|
|
|
|
|
QTest::newRow("simple identifier with tc")
|
|
|
|
|
<< QString::fromLatin1("$tESt:c$") << QString::fromLatin1("tESt") << true
|
|
|
|
|
<< (QList<int>() << 0) << (QList<int>() << 4)
|
|
|
|
|
<< (QList<Core::Id>() << TCMANGLER_ID);
|
|
|
|
|
|
2013-08-20 13:58:16 +02:00
|
|
|
QTest::newRow("escaped string")
|
|
|
|
|
<< QString::fromLatin1("\\$test\\$") << QString::fromLatin1("$test$") << true
|
2013-08-09 17:45:14 +02:00
|
|
|
<< (QList<int>()) << (QList<int>())
|
|
|
|
|
<< (QList<Core::Id>());
|
2013-08-20 13:58:16 +02:00
|
|
|
QTest::newRow("escaped escape")
|
|
|
|
|
<< QString::fromLatin1("\\\\$test\\\\$") << QString::fromLatin1("\\test\\") << true
|
2013-08-09 17:45:14 +02:00
|
|
|
<< (QList<int>() << 1) << (QList<int>() << 5)
|
|
|
|
|
<< (QList<Core::Id>() << NOMANGLER_ID);
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("Q_PROPERTY")
|
2013-08-09 17:45:14 +02:00
|
|
|
<< QString::fromLatin1("Q_PROPERTY($type$ $name$ READ $name$ WRITE set$name:c$ NOTIFY $name$Changed)")
|
2013-08-20 13:58:16 +02:00
|
|
|
<< QString::fromLatin1("Q_PROPERTY(type name READ name WRITE setname NOTIFY nameChanged)") << true
|
|
|
|
|
<< (QList<int>() << 11 << 16 << 26 << 40 << 52)
|
2013-08-09 17:45:14 +02:00
|
|
|
<< (QList<int>() << 4 << 4 << 4 << 4 << 4)
|
|
|
|
|
<< (QList<Core::Id>() << NOMANGLER_ID << NOMANGLER_ID << NOMANGLER_ID << TCMANGLER_ID << NOMANGLER_ID);
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("broken escape")
|
|
|
|
|
<< QString::fromLatin1("\\\\$test\\\\$\\") << QString::fromLatin1("\\\\$test\\\\$\\") << false
|
2013-08-09 17:45:14 +02:00
|
|
|
<< (QList<int>()) << (QList<int>())
|
|
|
|
|
<< (QList<Core::Id>());
|
2013-08-20 13:58:16 +02:00
|
|
|
QTest::newRow("open identifier")
|
|
|
|
|
<< QString::fromLatin1("$test") << QString::fromLatin1("$test") << false
|
2013-08-09 17:45:14 +02:00
|
|
|
<< (QList<int>()) << (QList<int>())
|
|
|
|
|
<< (QList<Core::Id>());
|
|
|
|
|
QTest::newRow("wrong mangler")
|
|
|
|
|
<< QString::fromLatin1("$test:X$") << QString::fromLatin1("$test:X$") << false
|
|
|
|
|
<< (QList<int>()) << (QList<int>())
|
|
|
|
|
<< (QList<Core::Id>());
|
2013-08-22 11:52:01 +02:00
|
|
|
|
|
|
|
|
QTest::newRow("multiline with :")
|
|
|
|
|
<< QString::fromLatin1("class $name$\n"
|
|
|
|
|
"{\n"
|
|
|
|
|
"public:\n"
|
|
|
|
|
" $name$() {}\n"
|
|
|
|
|
"};")
|
|
|
|
|
<< QString::fromLatin1("class name\n"
|
|
|
|
|
"{\n"
|
|
|
|
|
"public:\n"
|
|
|
|
|
" name() {}\n"
|
|
|
|
|
"};")
|
|
|
|
|
<< true
|
|
|
|
|
<< (QList<int>() << 6 << 25)
|
|
|
|
|
<< (QList<int>() << 4 << 4)
|
|
|
|
|
<< (QList<Core::Id>() << NOMANGLER_ID << NOMANGLER_ID);
|
2013-08-20 13:58:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Internal::TextEditorPlugin::testSnippetParsing()
|
|
|
|
|
{
|
|
|
|
|
QFETCH(QString, input);
|
|
|
|
|
QFETCH(QString, text);
|
|
|
|
|
QFETCH(bool, success);
|
|
|
|
|
QFETCH(QList<int>, ranges_start);
|
|
|
|
|
QFETCH(QList<int>, ranges_length);
|
2013-08-09 17:45:14 +02:00
|
|
|
QFETCH(QList<Core::Id>, ranges_mangler);
|
2013-08-20 13:58:16 +02:00
|
|
|
Q_ASSERT(ranges_start.count() == ranges_length.count()); // sanity check for the test data
|
2013-08-09 17:45:14 +02:00
|
|
|
Q_ASSERT(ranges_start.count() == ranges_mangler.count()); // sanity check for the test data
|
2013-08-20 13:58:16 +02:00
|
|
|
|
|
|
|
|
Snippet::ParsedSnippet result = Snippet::parse(input);
|
|
|
|
|
|
|
|
|
|
QCOMPARE(result.text, text);
|
|
|
|
|
QCOMPARE(result.success, success);
|
|
|
|
|
QCOMPARE(result.ranges.count(), ranges_start.count());
|
|
|
|
|
for (int i = 0; i < ranges_start.count(); ++i) {
|
|
|
|
|
QCOMPARE(result.ranges.at(i).start, ranges_start.at(i));
|
|
|
|
|
QCOMPARE(result.ranges.at(i).length, ranges_length.at(i));
|
2013-08-09 17:45:14 +02:00
|
|
|
Core::Id id = NOMANGLER_ID;
|
|
|
|
|
if (result.ranges.at(i).mangler)
|
|
|
|
|
id = result.ranges.at(i).mangler->id();
|
|
|
|
|
QCOMPARE(id, ranges_mangler.at(i));
|
2013-08-20 13:58:16 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|