-
Notifications
You must be signed in to change notification settings - Fork 768
/
Copy pathycm_core.cpp
241 lines (206 loc) · 9.34 KB
/
ycm_core.cpp
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
// Copyright (C) 2011, 2012 Google Inc.
//
// This file is part of YouCompleteMe.
//
// YouCompleteMe 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 3 of the License, or
// (at your option) any later version.
//
// YouCompleteMe 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 YouCompleteMe. If not, see <http://www.gnu.org/licenses/>.
#include "IdentifierCompleter.h"
#include "PythonSupport.h"
#include "versioning.h"
#ifdef USE_CLANG_COMPLETER
# include "ClangCompleter.h"
# include "ClangUtils.h"
# include "CompletionData.h"
# include "Diagnostic.h"
# include "Token.h"
# include "Location.h"
# include "Range.h"
# include "UnsavedFile.h"
# include "CompilationDatabase.h"
# include "Documentation.h"
#endif // USE_CLANG_COMPLETER
#include <boost/python.hpp>
#include <boost/utility.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
bool HasClangSupport() {
#ifdef USE_CLANG_COMPLETER
return true;
#else
return false;
#endif // USE_CLANG_COMPLETER
}
BOOST_PYTHON_MODULE(ycm_core)
{
using namespace boost::python;
using namespace YouCompleteMe;
// Necessary because of usage of the ReleaseGil class
PyEval_InitThreads();
def( "HasClangSupport", HasClangSupport );
def( "FilterAndSortCandidates", FilterAndSortCandidates );
def( "YcmCoreVersion", YcmCoreVersion );
class_< IdentifierCompleter, boost::noncopyable >( "IdentifierCompleter" )
.def( "AddIdentifiersToDatabase",
&IdentifierCompleter::AddIdentifiersToDatabase )
.def( "ClearForFileAndAddIdentifiersToDatabase",
&IdentifierCompleter::ClearForFileAndAddIdentifiersToDatabase )
.def( "AddIdentifiersToDatabaseFromTagFiles",
&IdentifierCompleter::AddIdentifiersToDatabaseFromTagFiles )
.def( "CandidatesForQueryAndType",
&IdentifierCompleter::CandidatesForQueryAndType );
class_< std::vector< std::string >,
boost::shared_ptr< std::vector< std::string > > >( "StringVector" )
.def( vector_indexing_suite< std::vector< std::string > >() );
#ifdef USE_CLANG_COMPLETER
def( "ClangVersion", ClangVersion );
// CAREFUL HERE! For filename and contents we are referring directly to
// Python-allocated and -managed memory since we are accepting pointers to
// data members of python objects. We need to ensure that those objects
// outlive our UnsavedFile objects.
class_< UnsavedFile >( "UnsavedFile" )
.add_property( "filename_",
make_getter( &UnsavedFile::filename_ ),
make_setter( &UnsavedFile::filename_,
return_value_policy< reference_existing_object >() ) )
.add_property( "contents_",
make_getter( &UnsavedFile::contents_ ),
make_setter( &UnsavedFile::contents_,
return_value_policy< reference_existing_object >() ) )
.def_readwrite( "length_", &UnsavedFile::length_ );
class_< std::vector< UnsavedFile > >( "UnsavedFileVector" )
.def( vector_indexing_suite< std::vector< UnsavedFile > >() );
class_< ClangCompleter, boost::noncopyable >( "ClangCompleter" )
.def( "GetDeclarationLocation", &ClangCompleter::GetDeclarationLocation )
.def( "GetDefinitionLocation", &ClangCompleter::GetDefinitionLocation )
.def( "DeleteCachesForFile", &ClangCompleter::DeleteCachesForFile )
.def( "UpdatingTranslationUnit", &ClangCompleter::UpdatingTranslationUnit )
.def( "UpdateTranslationUnit", &ClangCompleter::UpdateTranslationUnit )
.def( "CandidatesForLocationInFile",
&ClangCompleter::CandidatesForLocationInFile )
.def( "GetTypeAtLocation", &ClangCompleter::GetTypeAtLocation )
.def( "GetEnclosingFunctionAtLocation",
&ClangCompleter::GetEnclosingFunctionAtLocation )
.def( "GetFixItsForLocationInFile",
&ClangCompleter::GetFixItsForLocationInFile )
.def( "GetDocsForLocationInFile",
&ClangCompleter::GetDocsForLocationInFile )
.def( "GetSemanticTokens", &ClangCompleter::GetSemanticTokens );
enum_< CompletionKind >( "CompletionKind" )
.value( "STRUCT", STRUCT )
.value( "CLASS", CLASS )
.value( "ENUM", ENUM )
.value( "TYPE", TYPE )
.value( "MEMBER", MEMBER )
.value( "FUNCTION", FUNCTION )
.value( "VARIABLE", VARIABLE )
.value( "MACRO", MACRO )
.value( "PARAMETER", PARAMETER )
.value( "NAMESPACE", NAMESPACE )
.value( "UNKNOWN", UNKNOWN )
.export_values();
class_< CompletionData >( "CompletionData" )
.def( "TextToInsertInBuffer", &CompletionData::TextToInsertInBuffer )
.def( "MainCompletionText", &CompletionData::MainCompletionText )
.def( "ExtraMenuInfo", &CompletionData::ExtraMenuInfo )
.def( "DetailedInfoForPreviewWindow",
&CompletionData::DetailedInfoForPreviewWindow )
.def( "DocString", &CompletionData::DocString )
.def_readonly( "kind_", &CompletionData::kind_ );
class_< std::vector< CompletionData >,
boost::shared_ptr< std::vector< CompletionData > > >( "CompletionVector" )
.def( vector_indexing_suite< std::vector< CompletionData > >() );
class_< Location >( "Location" )
.def_readonly( "line_number_", &Location::line_number_ )
.def_readonly( "column_number_", &Location::column_number_ )
.def_readonly( "filename_", &Location::filename_ )
.def( "IsValid", &Location::IsValid );
class_< Range >( "Range" )
.def_readonly( "start_", &Range::start_ )
.def_readonly( "end_", &Range::end_ );
class_< std::vector< Range > >( "RangeVector" )
.def( vector_indexing_suite< std::vector< Range > >() );
class_< FixItChunk >( "FixItChunk" )
.def_readonly( "replacement_text", &FixItChunk::replacement_text )
.def_readonly( "range", &FixItChunk::range );
class_< std::vector< FixItChunk > >( "FixItChunkVector" )
.def( vector_indexing_suite< std::vector< FixItChunk > >() );
class_< FixIt >( "FixIt" )
.def_readonly( "chunks", &FixIt::chunks )
.def_readonly( "location", &FixIt::location );
class_< std::vector< FixIt > >( "FixItVector" )
.def( vector_indexing_suite< std::vector< FixIt > >() );
enum_< DiagnosticKind >( "DiagnosticKind" )
.value( "ERROR", ERROR )
.value( "WARNING", WARNING )
.value( "INFORMATION", INFORMATION )
.export_values();
class_< Diagnostic >( "Diagnostic" )
.def_readonly( "ranges_", &Diagnostic::ranges_ )
.def_readonly( "location_", &Diagnostic::location_ )
.def_readonly( "location_extent_", &Diagnostic::location_extent_ )
.def_readonly( "kind_", &Diagnostic::kind_ )
.def_readonly( "text_", &Diagnostic::text_ )
.def_readonly( "long_formatted_text_", &Diagnostic::long_formatted_text_ )
.def_readonly( "fixits_", &Diagnostic::fixits_ );
class_< std::vector< Diagnostic > >( "DiagnosticVector" )
.def( vector_indexing_suite< std::vector< Diagnostic > >() );
enum_< Token::Kind >( "TokenKind" )
.value( "Namespace", Token::NAMESPACE )
.value( "Class", Token::CLASS )
.value( "Struct", Token::STRUCT )
.value( "Union", Token::UNION )
.value( "MemberVariable", Token::MEMBER_VARIABLE )
.value( "Typedef", Token::TYPEDEF )
.value( "TemplateType", Token::TEMPLATE_TYPE )
.value( "Enum", Token::ENUM )
.value( "EnumConstant", Token::ENUM_CONSTANT )
.value( "Macro", Token::MACRO )
.value( "Function", Token::FUNCTION )
.value( "FunctionParam", Token::FUNCTION_PARAM )
.value( "Unsupported", Token::UNSUPPORTED )
.export_values();
class_< Token >( "Token" )
.def_readonly( "kind_", &Token::kind_ )
.def_readonly( "line_number_", &Token::line_number_ )
.def_readonly( "column_number_", &Token::column_number_ )
.def_readonly( "offset_", &Token::offset_ );
class_< std::vector< Token > >( "TokenVector" )
.def( vector_indexing_suite< std::vector< Token > >() );
class_< DocumentationData >( "DocumentationData" )
.def_readonly( "comment_xml", &DocumentationData::comment_xml )
.def_readonly( "raw_comment", &DocumentationData::raw_comment )
.def_readonly( "brief_comment", &DocumentationData::brief_comment )
.def_readonly( "canonical_type", &DocumentationData::canonical_type )
.def_readonly( "display_name", &DocumentationData::display_name );
class_< CompilationDatabase, boost::noncopyable >(
"CompilationDatabase", init< std::string >() )
.def( "DatabaseSuccessfullyLoaded",
&CompilationDatabase::DatabaseSuccessfullyLoaded )
.def( "AlreadyGettingFlags",
&CompilationDatabase::AlreadyGettingFlags )
.def( "GetCompilationInfoForFile",
&CompilationDatabase::GetCompilationInfoForFile );
class_< CompilationInfoForFile,
boost::shared_ptr< CompilationInfoForFile > >(
"CompilationInfoForFile", no_init )
.def_readonly( "compiler_working_dir_",
&CompilationInfoForFile::compiler_working_dir_ )
.def_readonly( "compiler_flags_",
&CompilationInfoForFile::compiler_flags_ );
#endif // USE_CLANG_COMPLETER
}
// Boost.Thread forces us to implement this.
// We don't use any thread-specific (local) storage so it's fine to implement
// this as an empty function.
namespace boost {
void tss_cleanup_implemented() {}
};