1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
/*
SPDX-FileCopyrightText: 2007 Piyush verma <piyush.verma@gmail.com>
SPDX-FileCopyrightText: 2009 Niko Sams <niko.sams@gmail.com>
SPDX-FileCopyrightText: 2010 Milian Wolff <mail@milianw.de>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "phplanguagesupport.h"
#include <QMutexLocker>
#include <QReadWriteLock>
#include <kpluginfactory.h>
#include <kpluginloader.h>
#include <KTextEditor/Document>
#include <interfaces/icore.h>
#include <interfaces/ilanguagecontroller.h>
#include <interfaces/iplugincontroller.h>
#include <interfaces/idocument.h>
#include <interfaces/iproject.h>
#include <language/backgroundparser/backgroundparser.h>
#include <language/duchain/duchain.h>
#include <language/duchain/duchainlock.h>
#include <interfaces/idocumentcontroller.h>
#include <interfaces/contextmenuextension.h>
#include <language/interfaces/editorcontext.h>
#include "phpparsejob.h"
#include "phphighlighting.h"
#include "kdevphpversion.h"
#include "phpdebug.h"
#include "codegen/refactoring.h"
#include <language/codecompletion/codecompletion.h>
#include <language/codecompletion/codecompletionmodel.h>
#include "completion/model.h"
#include "completion/worker.h"
#include "navigation/navigationwidget.h"
#include <language/duchain/parsingenvironment.h>
#include "duchain/helper.h"
#include <QTimer>
using namespace KTextEditor;
using namespace KDevelop;
K_PLUGIN_FACTORY_WITH_JSON(KDevPhpSupportFactory, "kdevphpsupport.json", registerPlugin<Php::LanguageSupport>(); )
namespace Php
{
LanguageSupport::LanguageSupport(QObject* parent, const QVariantList& /*args*/)
: KDevelop::IPlugin(QStringLiteral("kdevphpsupport"), parent),
KDevelop::ILanguageSupport()
{
Q_ASSERT(internalFunctionFile().toUrl().isValid());
m_highlighting = new Php::Highlighting(this);
m_refactoring = new Php::Refactoring(this);
CodeCompletionModel* ccModel = new CodeCompletionModel(this);
new KDevelop::CodeCompletion(this, ccModel, name());
}
LanguageSupport::~LanguageSupport()
{
parseLock()->lockForWrite();
//By locking the parse-mutexes, we make sure that parse- and preprocess-jobs
//get a chance to finish in a good state
parseLock()->unlock();
}
KDevelop::ParseJob *LanguageSupport::createParseJob(const IndexedString &url)
{
return new ParseJob(url, this);
}
QString LanguageSupport::name() const
{
return QStringLiteral("Php");
}
KDevelop::ICodeHighlighting* LanguageSupport::codeHighlighting() const
{
return m_highlighting;
}
KDevelop::ContextMenuExtension LanguageSupport::contextMenuExtension(Context* context)
{
ContextMenuExtension cm;
EditorContext *ed = dynamic_cast<KDevelop::EditorContext *>(context);
if (ed && ICore::self()->languageController()->languagesForUrl(ed->url()).contains(this)) {
// It's safe to add our own ContextMenuExtension.
m_refactoring->fillContextMenu(cm, context);
}
return cm;
}
QPair<QString, Range> LanguageSupport::wordUnderCursor(const QUrl& url, const Cursor& position)
{
KDevelop::IDocument* doc = core()->documentController()->documentForUrl(url);
if(!doc || !doc->textDocument())
return {};
int lineNumber = position.line();
int lineLength = doc->textDocument()->lineLength(lineNumber);
QString line = doc->textDocument()->text(Range(lineNumber, 0, lineNumber, lineLength));
int startCol = position.column();
for ( ; startCol >= 0; --startCol ) {
if ( !line[startCol].isLetter() && line[startCol] != '_' ) {
// don't include the wrong char
if ( startCol != position.column() ) {
++startCol;
}
break;
}
}
int endCol = position.column();
for ( ; endCol <= lineLength; ++endCol ) {
if ( !line[endCol].isLetter() && line[endCol] != '_' ) {
break;
}
}
QString word = line.mid(startCol, endCol - startCol);
Range range(lineNumber, startCol, lineNumber, endCol);
return qMakePair(word, range);
}
bool isMagicConstant(QPair<QString, Range> word) {
if ( word.second.isValid() && !word.second.isEmpty() ) {
if ( word.first == QLatin1String("__FILE__") || word.first == QLatin1String("__LINE__") ||
word.first == QLatin1String("__METHOD__") || word.first == QLatin1String("__CLASS__") ||
word.first == QLatin1String("__FUNCTION__") || word.first == QLatin1String("__NAMESPACE__")
///TODO: php 5.3: __DIR__
)
{
///TODO: maybe we should use the tokenizer to really make sure this is such a token
/// and we are not inside a string, comment or similar
/// otoh, it doesn't hurt imo
return true;
}
}
return false;
}
QWidget* LanguageSupport::specialLanguageObjectNavigationWidget(const QUrl& url, const Cursor& position)
{
QPair<QString, Range> word = wordUnderCursor(url, position);
if ( isMagicConstant(word) ) {
DUChainReadLocker lock;
if (TopDUContext* top = standardContext(url)) {
return new NavigationWidget(TopDUContextPointer(top), position, word.first);
} else {
return 0;
}
}
return ILanguageSupport::specialLanguageObjectNavigationWidget(url, position);
}
Range LanguageSupport::specialLanguageObjectRange(const QUrl& url, const Cursor& position)
{
QPair<QString, Range> word = wordUnderCursor(url, position);
if ( isMagicConstant(word) ) {
return word.second;
}
return ILanguageSupport::specialLanguageObjectRange(url, position);
}
}
#include "phplanguagesupport.moc"
|