-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathjedi_completion.py
321 lines (259 loc) · 11 KB
/
jedi_completion.py
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
# Copyright 2017-2020 Palantir Technologies, Inc.
# Copyright 2021- Python Language Server Contributors.
import logging
import os.path as osp
from collections import defaultdict
from time import time
from jedi.api.classes import Completion
import parso
from pylsp import _utils, hookimpl, lsp
log = logging.getLogger(__name__)
# Map to the LSP type
# > Valid values for type are ``module``, `` class ``, ``instance``, ``function``,
# > ``param``, ``path``, ``keyword``, ``property`` and ``statement``.
# see: https://jedi.readthedocs.io/en/latest/docs/api-classes.html#jedi.api.classes.BaseName.type
_TYPE_MAP = {
'module': lsp.CompletionItemKind.Module,
'namespace': lsp.CompletionItemKind.Module, # to be added in Jedi 0.18+
'class': lsp.CompletionItemKind.Class,
'instance': lsp.CompletionItemKind.Reference,
'function': lsp.CompletionItemKind.Function,
'param': lsp.CompletionItemKind.Variable,
'path': lsp.CompletionItemKind.File,
'keyword': lsp.CompletionItemKind.Keyword,
'property': lsp.CompletionItemKind.Property, # added in Jedi 0.18
'statement': lsp.CompletionItemKind.Variable
}
# Types of parso nodes for which snippet is not included in the completion
_IMPORTS = ('import_name', 'import_from')
# Types of parso node for errors
_ERRORS = ('error_node', )
@hookimpl
def pylsp_completions(config, document, position):
"""Get formatted completions for current code position"""
# pylint: disable=too-many-locals
settings = config.plugin_settings('jedi_completion', document_path=document.path)
resolve_eagerly = settings.get('eager', False)
code_position = _utils.position_to_jedi_linecolumn(document, position)
code_position['fuzzy'] = settings.get('fuzzy', False)
completions = document.jedi_script(use_document_path=True).complete(**code_position)
if not completions:
return None
completion_capabilities = config.capabilities.get('textDocument', {}).get('completion', {})
snippet_support = completion_capabilities.get('completionItem', {}).get('snippetSupport')
should_include_params = settings.get('include_params')
should_include_class_objects = settings.get('include_class_objects', True)
max_labels_resolve = settings.get('resolve_at_most_labels', 25)
modules_to_cache_labels_for = settings.get('cache_labels_for', None)
if modules_to_cache_labels_for is not None:
LABEL_RESOLVER.cached_modules = modules_to_cache_labels_for
include_params = snippet_support and should_include_params and use_snippets(document, position)
include_class_objects = snippet_support and should_include_class_objects and use_snippets(document, position)
ready_completions = [
_format_completion(
c,
include_params,
resolve=resolve_eagerly,
resolve_label=(i < max_labels_resolve)
)
for i, c in enumerate(completions)
]
# TODO split up once other improvements are merged
if include_class_objects:
for i, c in enumerate(completions):
if c.type == 'class':
completion_dict = _format_completion(
c,
False,
resolve=resolve_eagerly,
resolve_label=(i < max_labels_resolve)
)
completion_dict['kind'] = lsp.CompletionItemKind.TypeParameter
completion_dict['label'] += ' object'
ready_completions.append(completion_dict)
for completion_dict in ready_completions:
completion_dict['data'] = {
'doc_uri': document.uri
}
# most recently retrieved completion items, used for resolution
document.shared_data['LAST_JEDI_COMPLETIONS'] = {
# label is the only required property; here it is assumed to be unique
completion['label']: (completion, data)
for completion, data in zip(ready_completions, completions)
}
return ready_completions or None
@hookimpl
def pylsp_completion_item_resolve(completion_item, document):
"""Resolve formatted completion for given non-resolved completion"""
completion, data = document.shared_data['LAST_JEDI_COMPLETIONS'].get(completion_item['label'])
return _resolve_completion(completion, data)
def is_exception_class(name):
"""
Determine if a class name is an instance of an Exception.
This returns `False` if the name given corresponds with a instance of
the 'Exception' class, `True` otherwise
"""
try:
return name in [cls.__name__ for cls in Exception.__subclasses__()]
except AttributeError:
# Needed in case a class don't uses new-style
# class definition in Python 2
return False
def use_snippets(document, position):
"""
Determine if it's necessary to return snippets in code completions.
This returns `False` if a completion is being requested on an import
statement, `True` otherwise.
"""
line = position['line']
lines = document.source.split('\n', line)
act_lines = [lines[line][:position['character']]]
line -= 1
last_character = ''
while line > -1:
act_line = lines[line]
if (act_line.rstrip().endswith('\\') or
act_line.rstrip().endswith('(') or
act_line.rstrip().endswith(',')):
act_lines.insert(0, act_line)
line -= 1
if act_line.rstrip().endswith('('):
# Needs to be added to the end of the code before parsing
# to make it valid, otherwise the node type could end
# being an 'error_node' for multi-line imports that use '('
last_character = ')'
else:
break
if '(' in act_lines[-1].strip():
last_character = ')'
code = '\n'.join(act_lines).rsplit(';', maxsplit=1)[-1].strip() + last_character
tokens = parso.parse(code)
expr_type = tokens.children[0].type
return (expr_type not in _IMPORTS and
not (expr_type in _ERRORS and 'import' in code))
def _resolve_completion(completion, d):
completion['detail'] = _detail(d)
completion['documentation'] = _utils.format_docstring(d.docstring())
return completion
def _format_completion(d, include_params=True, resolve=False, resolve_label=False):
completion = {
'label': _label(d, resolve_label),
'kind': _TYPE_MAP.get(d.type),
'sortText': _sort_text(d),
'insertText': d.name
}
if resolve:
completion = _resolve_completion(completion, d)
if d.type == 'path':
path = osp.normpath(d.name)
path = path.replace('\\', '\\\\')
path = path.replace('/', '\\/')
completion['insertText'] = path
if include_params and not is_exception_class(d.name):
sig = d.get_signatures()
if not sig:
return completion
positional_args = [param for param in sig[0].params
if '=' not in param.description and
param.name not in {'/', '*'}]
if len(positional_args) > 1:
# For completions with params, we can generate a snippet instead
completion['insertTextFormat'] = lsp.InsertTextFormat.Snippet
snippet = d.name + '('
for i, param in enumerate(positional_args):
snippet += '${%s:%s}' % (i + 1, param.name)
if i < len(positional_args) - 1:
snippet += ', '
snippet += ')$0'
completion['insertText'] = snippet
elif len(positional_args) == 1:
completion['insertTextFormat'] = lsp.InsertTextFormat.Snippet
completion['insertText'] = d.name + '($0)'
else:
completion['insertText'] = d.name + '()'
return completion
def _label(definition, resolve=False):
if not resolve:
return definition.name
sig = LABEL_RESOLVER.get_or_create(definition)
if sig:
return sig
return definition.name
def _detail(definition):
try:
return definition.parent().full_name or ''
except AttributeError:
return definition.full_name or ''
def _sort_text(definition):
""" Ensure builtins appear at the bottom.
Description is of format <type>: <module>.<item>
"""
# If its 'hidden', put it next last
prefix = 'z{}' if definition.name.startswith('_') else 'a{}'
return prefix.format(definition.name)
class LabelResolver:
def __init__(self, format_label_callback, time_to_live=60 * 30):
self.format_label = format_label_callback
self._cache = {}
self._time_to_live = time_to_live
self._cache_ttl = defaultdict(set)
self._clear_every = 2
# see https://github.com/davidhalter/jedi/blob/master/jedi/inference/helpers.py#L194-L202
self._cached_modules = {'pandas', 'numpy', 'tensorflow', 'matplotlib'}
@property
def cached_modules(self):
return self._cached_modules
@cached_modules.setter
def cached_modules(self, new_value):
self._cached_modules = set(new_value)
def clear_outdated(self):
now = self.time_key()
to_clear = [
timestamp
for timestamp in self._cache_ttl
if timestamp < now
]
for time_key in to_clear:
for key in self._cache_ttl[time_key]:
del self._cache[key]
del self._cache_ttl[time_key]
def time_key(self):
return int(time() / self._time_to_live)
def get_or_create(self, completion: Completion):
if not completion.full_name:
use_cache = False
else:
module_parts = completion.full_name.split('.')
use_cache = module_parts and module_parts[0] in self._cached_modules
if use_cache:
key = self._create_completion_id(completion)
if key not in self._cache:
if self.time_key() % self._clear_every == 0:
self.clear_outdated()
self._cache[key] = self.resolve_label(completion)
self._cache_ttl[self.time_key()].add(key)
return self._cache[key]
return self.resolve_label(completion)
def _create_completion_id(self, completion: Completion):
return (
completion.full_name, completion.module_path,
completion.line, completion.column,
self.time_key()
)
def resolve_label(self, completion):
try:
sig = completion.get_signatures()
return self.format_label(completion, sig)
except Exception as e: # pylint: disable=broad-except
log.warning(
'Something went wrong when resolving label for {completion}: {e}',
completion=completion, e=e
)
return ''
def format_label(completion, sig):
if sig and completion.type in ('function', 'method'):
params = ', '.join(param.name for param in sig[0].params)
label = '{}({})'.format(completion.name, params)
return label
return completion.name
LABEL_RESOLVER = LabelResolver(format_label)