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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
|
/* KDevelop CMake Support
*
* Copyright 2008 Aleix Pol <aleixpol@gmail.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include "cmakecodecompletionmodel.h"
#include <QVariant>
#include <QModelIndex>
#include <kurl.h>
#include <language/duchain/duchain.h>
#include <language/duchain/duchainlock.h>
#include <language/duchain/ducontext.h>
#include <language/duchain/declaration.h>
#include <language/duchain/types/functiontype.h>
#include <language/duchain/types/delayedtype.h>
#include <ktexteditor/document.h>
#include <ktexteditor/view.h>
#include <KLocalizedString>
#include <KIcon>
#include <interfaces/icore.h>
#include <interfaces/idocumentationcontroller.h>
#include "astfactory.h"
#include "cmakeutils.h"
#include "icmakedocumentation.h"
#include <KMimeType>
using namespace KTextEditor;
using namespace KDevelop;
QStringList CMakeCodeCompletionModel::s_commands;
CMakeCodeCompletionModel::CMakeCodeCompletionModel(QObject* parent)
: CodeCompletionModel(parent)
{}
bool isFunction(const Declaration* decl)
{
return decl->abstractType().cast<FunctionType>();
}
bool isPathChar(const QChar& c)
{
return c.isLetterOrNumber() || c=='/' || c=='.';
}
void CMakeCodeCompletionModel::completionInvoked(View* view, const Range& range, InvocationType invocationType)
{
if(s_commands.isEmpty()) {
ICMakeDocumentation* cmakedoc=CMake::cmakeDocumentation();
if(cmakedoc)
s_commands=cmakedoc->names(ICMakeDocumentation::Command);
}
Q_UNUSED(invocationType);
m_declarations.clear();
DUChainReadLocker lock(DUChain::lock());
KTextEditor::Document* d=view->document();
TopDUContext* ctx = DUChain::self()->chainForDocument( d->url() );
QString line=d->line(range.end().line());
// m_inside=line.lastIndexOf('(', range.end().column())>=0;
m_inside=line.lastIndexOf('(', range.end().column()-line.size()-1)>=0;
for(int l=range.end().line(); l>=0 && !m_inside; --l)
{
QString cline=d->line(l);
QString line=cline.left(cline.indexOf('#'));
int close=line.lastIndexOf(')'), open=line.indexOf('(');
if(close>=0 && open>=0) {
m_inside=open>close;
break;
} else if(open>=0) {
m_inside=true;
break;
} else if(close>=0) {
m_inside=false;
break;
}
}
int numRows = 0;
if(m_inside) {
Cursor start=range.start();
for(; isPathChar(d->character(start)); start-=Cursor(0,1))
{}
start+=Cursor(0,1);
QString tocomplete=d->text(Range(start, range.end()-Cursor(0,1)));
int lastdir=tocomplete.lastIndexOf('/');
QString path=d->url().upUrl().path(KUrl::AddTrailingSlash);
QString basePath;
if(lastdir>=0) {
basePath=tocomplete.mid(0, lastdir);
path+=basePath;
}
QDir dir(path);
m_paths=dir.entryList(QStringList() << tocomplete.mid(lastdir+1)+'*',
QDir::AllEntries | QDir::NoDotAndDotDot);
numRows += m_paths.count();
} else
numRows += s_commands.count();
if(ctx)
{
typedef QPair<Declaration*, int> DeclPair;
QList<DeclPair> list=ctx->allDeclarations( ctx->transformToLocalRevision(SimpleCursor(range.start())), ctx );
foreach(const DeclPair& pair, list)
{
bool func=isFunction(pair.first);
if((func && !m_inside) || (!func && m_inside))
m_declarations.append(pair.first);
}
numRows+=m_declarations.count();
}
setRowCount(numRows);
reset();
}
CMakeCodeCompletionModel::Type CMakeCodeCompletionModel::indexType(int row) const
{
if(m_inside)
{
if(row<m_declarations.count())
return Variable;
else
return Path;
}
else
{
if(row<m_declarations.count())
return Macro;
else
return Command;
}
}
QVariant CMakeCodeCompletionModel::data (const QModelIndex & index, int role) const
{
if(!index.isValid())
return QVariant();
Type type=indexType(index.row());
if(role==Qt::DisplayRole && index.column()==CodeCompletionModel::Name)
{
if(type==Command)
return s_commands[index.row()-m_declarations.size()];
else if(type==Path)
return m_paths[index.row()-m_declarations.size()];
else if(type==Variable || type==Macro)
{
int pos = index.row();
DUChainReadLocker lock(DUChain::lock());
Declaration* dec=m_declarations[pos].data();
if(dec)
return dec->identifier().toString();
else
return i18n("INVALID");
}
}
else if(role==Qt::DisplayRole && index.column()==CodeCompletionModel::Prefix)
{
switch(type)
{
case Command: return i18n("Command");
case Variable: return i18n("Variable");
case Macro: return i18n("Macro");
case Path: return i18n("Path");
}
}
else if(role==Qt::DecorationRole && index.column()==CodeCompletionModel::Icon)
{
switch(type)
{
case Command: return KIcon("code-block");
case Variable: return KIcon("code-variable");
case Macro: return KIcon("code-function");
case Path: {
QString url = m_paths[index.row()-m_declarations.size()];
return KIcon(KMimeType::findByUrl(url, 0, false, true)->iconName(url));
}
}
}
else if(role==Qt::DisplayRole && index.column()==CodeCompletionModel::Arguments)
{
switch(type) {
case Variable:
case Command:
case Path:
break;
case Macro:
{
DUChainReadLocker lock(DUChain::lock());
int pos=index.row();
FunctionType::Ptr func;
if(m_declarations[pos].data())
func = m_declarations[pos].data()->abstractType().cast<FunctionType>();
if(!func)
return QVariant();
QStringList args;
foreach(const AbstractType::Ptr& t, func->arguments())
{
DelayedType::Ptr delay = t.cast<DelayedType>();
args.append(delay->identifier().toString());
}
return QString('('+args.join(", ")+')');
}
}
}
return QVariant();
}
void CMakeCodeCompletionModel::executeCompletionItem(Document* document, const Range& word, int row) const
{
switch(indexType(row))
{
case Path: {
Range r=word;
for(QChar c=document->character(r.end()); c.isLetterOrNumber() || c=='.'; c=document->character(r.end())) {
r.end().setColumn(r.end().column()+1);
}
document->replaceText(r, data(index(row, Name, QModelIndex())).toString());
} break;
case Macro:
case Command: {
QString code=data(index(row, Name, QModelIndex())).toString();
if(!document->line(word.start().line()).contains('('))
code.append('(');
document->replaceText(word, code);
} break;
case Variable: {
Range r=word, prefix(word.start()-Cursor(0,2), word.start());
QString bef=document->text(prefix);
if(r.start().column()>=2 && bef=="${")
r.start().setColumn( r.start().column()-2 );
QString code="${"+data(index(row, Name, QModelIndex())).toString();
if(document->character(word.end())!='}')
code+='}';
document->replaceText(r, code);
} break;
}
}
|