ccls/src/clang_cursor.h

122 lines
3.4 KiB
C
Raw Normal View History

#pragma once
2018-02-11 22:08:05 +00:00
#include "nt_string.h"
2018-02-22 07:34:32 +00:00
#include "position.h"
#include <clang-c/Index.h>
2018-03-31 03:16:33 +00:00
#include <optional>
#include <array>
#include <string>
#include <vector>
2018-01-13 08:10:39 +00:00
using Usr = uint64_t;
Range ResolveCXSourceRange(const CXSourceRange& range,
CXFile* cx_file = nullptr);
2018-01-21 06:55:29 +00:00
class ClangCursor;
class ClangType {
public:
2018-04-08 04:24:21 +00:00
ClangType() = default;
ClangType(const CXType& cx) : cx_type(cx) {}
// Returns true if this is a fundamental type like int.
bool is_builtin() const {
// NOTE: This will return false for pointed types. Should we call
// strip_qualifiers for the user?
return cx_type.kind >= CXType_FirstBuiltin &&
2018-03-20 02:51:42 +00:00
cx_type.kind <= CXType_LastBuiltin;
}
2018-01-21 06:55:29 +00:00
ClangCursor get_declaration() const;
std::string get_usr() const;
2018-01-13 08:10:39 +00:00
Usr get_usr_hash() const;
2018-02-18 18:07:13 +00:00
std::string get_spell_name() const;
ClangType get_canonical() const;
// Try to resolve this type and remove qualifies, ie, Foo* will become Foo
ClangType strip_qualifiers() const;
ClangType get_return_type() const;
std::vector<ClangType> get_arguments() const;
std::vector<ClangType> get_template_arguments() const;
CXType cx_type;
};
class ClangCursor {
public:
2018-04-08 04:24:21 +00:00
ClangCursor() = default;
ClangCursor(CXCursor cx) : cx_cursor(cx) {}
bool operator==(const ClangCursor& o) const {
return clang_equalCursors(cx_cursor, o.cx_cursor);
}
bool operator!=(const ClangCursor& o) const {
return !(*this == o);
}
2018-04-08 04:24:21 +00:00
CXCursorKind get_kind() const {
return cx_cursor.kind;
}
ClangType get_type() const;
2018-02-18 18:07:13 +00:00
std::string get_spell_name() const;
Range get_spell(CXFile* cx_file = nullptr) const;
Range get_extent() const;
std::string get_display_name() const;
std::string get_usr() const;
2018-01-13 08:10:39 +00:00
Usr get_usr_hash() const;
2018-05-09 05:01:58 +00:00
std::optional<Usr> get_opt_usr_hash() const;
bool is_definition() const;
// If the given cursor points to a template specialization, this
// will return the cursor pointing to the template definition.
// If the given cursor is not a template specialization, this will
// just return the same cursor.
//
// This means it is always safe to call this method.
ClangCursor template_specialization_to_template_definition() const;
ClangCursor get_referenced() const;
ClangCursor get_canonical() const;
ClangCursor get_definition() const;
ClangCursor get_lexical_parent() const;
ClangCursor get_semantic_parent() const;
std::vector<ClangCursor> get_arguments() const;
bool is_valid_kind() const;
std::string get_type_description() const;
2018-02-11 22:08:05 +00:00
NtString get_comments() const;
std::string ToString() const;
enum class VisitResult { Break, Continue, Recurse };
template <typename TClientData>
using Visitor = VisitResult (*)(ClangCursor cursor,
ClangCursor parent,
TClientData* client_data);
template <typename TClientData>
void VisitChildren(Visitor<TClientData> visitor,
TClientData* client_data) const {
clang_visitChildren(cx_cursor, reinterpret_cast<CXCursorVisitor>(visitor),
client_data);
}
CXCursor cx_cursor;
};
2017-12-21 03:52:34 +00:00
2018-03-31 05:05:21 +00:00
// Simple RAII wrapper about CXIndex.
// Note: building a ClangIndex instance acquires a global lock, since libclang
// API does not appear to be thread-safe here.
class ClangIndex {
public:
ClangIndex();
ClangIndex(int exclude_declarations_from_pch, int display_diagnostics);
~ClangIndex();
CXIndex cx_index;
};