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
|
/*
This file is part of KDevelop
Copyright 2013 Olivier de Gaalon <olivier.jg@gmail.com>
Copyright 2013 Milian Wolff <mail@milianw.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#include "clangtypes.h"
#include <QReadLocker>
#include <language/editor/rangeinrevision.h>
#include <language/editor/documentcursor.h>
#include <language/editor/documentrange.h>
#include <util/path.h>
using namespace KDevelop;
namespace {
template<typename T>
inline T cursorForCXSrcLoc(CXSourceLocation loc)
{
uint line = 0;
uint column = 0;
clang_getFileLocation(loc, nullptr, &line, &column, nullptr);
return {static_cast<int>(line-1), static_cast<int>(column-1)};
}
}
ClangString::ClangString(CXString string)
: string(string)
{
}
ClangString::~ClangString()
{
clang_disposeString(string);
}
const char* ClangString::c_str() const
{
return clang_getCString(string);
}
bool ClangString::isEmpty() const
{
auto str = c_str();
return !str || !str[0];
}
QString ClangString::toString() const
{
return QString::fromUtf8(c_str());
}
QByteArray ClangString::toByteArray() const
{
return QByteArray(c_str());
}
IndexedString ClangString::toIndexed() const
{
return IndexedString(c_str());
}
QTextStream& operator<<(QTextStream& stream, const ClangString& str)
{
return stream << str.toString();
}
QDebug operator<<(QDebug stream, const ClangString& str)
{
return stream << str.toString();
}
ClangLocation::ClangLocation(CXSourceLocation location)
: location(location)
{
}
ClangLocation::operator DocumentCursor() const
{
uint line = 0;
uint column = 0;
CXFile file;
clang_getFileLocation(location, &file, &line, &column, nullptr);
ClangString fileName(clang_getFileName(file));
return {IndexedString(fileName.c_str()), {static_cast<int>(line-1), static_cast<int>(column-1)}};
}
ClangLocation::operator KTextEditor::Cursor() const
{
return cursorForCXSrcLoc<KTextEditor::Cursor>(location);
}
ClangLocation::operator CursorInRevision() const
{
return cursorForCXSrcLoc<CursorInRevision>(location);
}
ClangLocation::operator CXSourceLocation() const
{
return location;
}
ClangLocation::~ClangLocation()
{
}
QDebug operator<<(QDebug stream, const ClangLocation& location)
{
return stream << static_cast<DocumentCursor>(location);
}
ClangRange::ClangRange(CXSourceRange range)
: m_range(range)
{
}
ClangLocation ClangRange::start() const
{
return ClangLocation(clang_getRangeStart(m_range));
}
ClangLocation ClangRange::end() const
{
return ClangLocation(clang_getRangeEnd(m_range));
}
CXSourceRange ClangRange::range() const
{
return m_range;
}
DocumentRange ClangRange::toDocumentRange() const
{
auto start = clang_getRangeStart(m_range);
CXFile file;
clang_getFileLocation(start, &file, nullptr, nullptr, nullptr);
ClangString fileName(clang_getFileName(file));
return {IndexedString(QUrl::fromLocalFile(fileName.toString()).adjusted(QUrl::NormalizePathSegments)), toRange()};
}
KTextEditor::Range ClangRange::toRange() const
{
return {start(), end()};
}
RangeInRevision ClangRange::toRangeInRevision() const
{
return {start(), end()};
}
ClangRange::~ClangRange()
{
}
QDebug operator<<(QDebug stream, const ClangRange& range)
{
return stream << range.toDocumentRange();
}
ClangTokens::ClangTokens(CXTranslationUnit unit, CXSourceRange range)
: m_unit(unit)
{
clang_tokenize(m_unit, range, &m_tokens, &m_numTokens);
}
ClangTokens::~ClangTokens()
{
clang_disposeTokens(m_unit, m_tokens, m_numTokens);
}
CXToken* ClangTokens::begin() const
{
return m_tokens;
}
CXToken* ClangTokens::end() const
{
return m_tokens + m_numTokens;
}
std::reverse_iterator<CXToken*> ClangTokens::rbegin() const
{
return std::reverse_iterator<CXToken*>(end());
}
std::reverse_iterator<CXToken*> ClangTokens::rend() const
{
return std::reverse_iterator<CXToken*>(begin());
}
uint ClangTokens::size() const
{
return m_numTokens;
}
CXToken ClangTokens::at(uint index) const {
Q_ASSERT(index < m_numTokens);
return m_tokens[index];
}
CXTranslationUnit ClangTokens::unit() const
{
return m_unit;
}
QDebug operator<<(QDebug stream, const ClangTokens& tokens)
{
stream << "ClangTokens {";
for (uint i = 0; i < tokens.size(); ++i) {
stream << i << tokens.at(i) << ClangString(clang_getTokenSpelling(tokens.unit(), tokens.at(i))) << ",";
}
return stream << "}";
}
QDebug operator<<(QDebug stream, const CXToken& token)
{
return stream << clang_getTokenKind(token);
}
|