-
-
Notifications
You must be signed in to change notification settings - Fork 299
/
gscomplete.py
324 lines (276 loc) · 8.16 KB
/
gscomplete.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
322
323
324
from .gosubl import gs
from .gosubl import mg9
from os.path import basename
from os.path import dirname
import json
import os
import re
import sublime
import sublime_plugin
AC_OPTS = sublime.INHIBIT_WORD_COMPLETIONS | sublime.INHIBIT_EXPLICIT_COMPLETIONS
REASONABLE_PKGNAME_PAT = re.compile(r'^\w+$')
last_gopath = ''
END_SELECTOR_PAT = re.compile(r'.*?((?:[\w.]+\.)?(\w+))$')
START_SELECTOR_PAT = re.compile(r'^([\w.]+)')
DOMAIN = 'GsComplete'
SNIPPET_VAR_PAT = re.compile(r'\$\{([a-zA-Z]\w*)\}')
HINT_KEY = '%s.completion-hint' % DOMAIN
def snippet_match(ctx, m):
try:
for k,p in m.get('match', {}).items():
q = ctx.get(k, '')
if p and gs.is_a_string(p):
if not re.search(p, str(q)):
return False
elif p != q:
return False
except:
gs.notice(DOMAIN, gs.traceback())
return True
def expand_snippet_vars(vars, text, title, value):
sub = lambda m: vars.get(m.group(1), '')
return (
SNIPPET_VAR_PAT.sub(sub, text),
SNIPPET_VAR_PAT.sub(sub, title),
SNIPPET_VAR_PAT.sub(sub, value)
)
def resolve_snippets(ctx):
cl = set()
types = [''] if ctx.get('local') else ctx.get('types')
vars = {}
for k,v in ctx.items():
if gs.is_a_string(v):
vars[k] = v
try:
snips = []
snips.extend(gs.setting('default_snippets', []))
snips.extend(gs.setting('snippets', []))
for m in snips:
try:
if snippet_match(ctx, m):
for ent in m.get('snippets', []):
text = ent.get('text', '')
title = ent.get('title', '')
value = ent.get('value', '')
if text and value:
for typename in types:
vars['typename'] = typename
if typename:
if len(typename) > 1 and typename[0].islower() and typename[1].isupper():
vars['typename_abbr'] = typename[1].lower()
else:
vars['typename_abbr'] = typename[0].lower()
else:
vars['typename_abbr'] = ''
txt, ttl, val = expand_snippet_vars(vars, text, title, value)
s = u'%s\t%s \u0282' % (txt, ttl)
cl.add((s, val))
except:
gs.notice(DOMAIN, gs.traceback())
except:
gs.notice(DOMAIN, gs.traceback())
return list(cl)
class GoSublime(sublime_plugin.EventListener):
gocode_set = False
def on_query_completions(self, view, prefix, locations):
pos = locations[0]
scopes = view.scope_name(pos).split()
if ('source.go' not in scopes) or (gs.setting('gscomplete_enabled', False) is not True):
return []
if gs.IGNORED_SCOPES.intersection(scopes):
return ([], AC_OPTS)
types = []
for r in view.find_by_selector('source.go keyword.'):
if view.substr(r) == 'type':
end = r.end()
r = view.find(r'\s+(\w+)', end)
if r.begin() == end:
types.append(view.substr(r).lstrip())
try:
if basename(view.file_name()) == "main.go":
default_pkgname = 'main'
else:
default_pkgname = basename(dirname(view.file_name()))
except Exception:
default_pkgname = ''
if not REASONABLE_PKGNAME_PAT.match(default_pkgname):
default_pkgname = ''
r = view.find('package\s+(\w+)', 0)
pkgname = view.substr(view.word(r.end())) if r else ''
if not default_pkgname:
default_pkgname = pkgname if pkgname else 'main'
ctx = {
'global': bool(pkgname and pos > view.line(r).end()),
'pkgname': pkgname,
'types': types or [''],
'has_types': len(types) > 0,
'default_pkgname': default_pkgname,
'fn': view.file_name() or '',
}
show_snippets = gs.setting('autocomplete_snippets', True) is True
if not pkgname:
return (resolve_snippets(ctx), AC_OPTS) if show_snippets else ([], AC_OPTS)
# gocode is case-sesitive so push the location back to the 'dot' so it gives
# gives us everything then st2 can pick the matches for us
offset = pos - len(prefix)
src = view.substr(sublime.Region(0, view.size()))
fn = view.file_name() or '<stdin>'
if not src:
return ([], AC_OPTS)
nc = view.substr(sublime.Region(pos, pos+1))
cl = self.complete(fn, offset, src, nc.isalpha() or nc == "(")
pc = view.substr(sublime.Region(pos-1, pos))
if show_snippets and (pc.isspace() or pc.isalpha()):
if scopes[-1] == 'source.go':
cl.extend(resolve_snippets(ctx))
elif scopes[-1] == 'meta.block.go' and ('meta.function.plain.go' in scopes or 'meta.function.receiver.go' in scopes):
ctx['global'] = False
ctx['local'] = True
cl.extend(resolve_snippets(ctx))
return (cl, AC_OPTS)
def find_end_pt(self, view, pat, start, end, flags=sublime.LITERAL):
r = view.find(pat, start, flags)
return r.end() if r and r.end() < end else -1
def complete(self, fn, offset, src, func_name_only):
comps = []
autocomplete_tests = gs.setting('autocomplete_tests', False)
autocomplete_closures = gs.setting('autocomplete_closures', False)
ents, err = mg9.complete(fn, src, offset)
if err:
gs.notice(DOMAIN, err)
name_fx = None
name_fx_pat = gs.setting('autocomplete_filter_name')
if name_fx_pat:
try:
name_fx = re.compile(name_fx_pat)
except Exception as ex:
gs.notice(DOMAIN, 'Cannot filter completions: %s' % ex)
for ent in ents:
if name_fx and name_fx.search(ent['name']):
continue
tn = ent['type']
cn = ent['class']
nm = ent['name']
is_func = (cn == 'func')
is_func_type = (cn == 'type' and tn.startswith('func('))
if is_func:
if nm in ('main', 'init'):
continue
if not autocomplete_tests and nm.startswith(('Test', 'Benchmark', 'Example')):
continue
if is_func or is_func_type:
s_sfx = u'\u0282'
t_sfx = gs.CLASS_PREFIXES.get('type', '')
f_sfx = gs.CLASS_PREFIXES.get('func', '')
params, ret = declex(tn)
decl = []
for i, p in enumerate(params):
n, t = p
if t.startswith('...'):
n = '...'
decl.append('${%d:%s}' % (i+1, n))
decl = ', '.join(decl)
ret = ret.strip('() ')
if is_func:
if func_name_only:
comps.append((
'%s\t%s %s' % (nm, ret, f_sfx),
nm,
))
else:
comps.append((
'%s\t%s %s' % (nm, ret, f_sfx),
'%s(%s)' % (nm, decl),
))
else:
comps.append((
'%s\t%s %s' % (nm, tn, t_sfx),
nm,
))
if autocomplete_closures:
comps.append((
'%s {}\tfunc() {...} %s' % (nm, s_sfx),
'%s {\n\t${0}\n}' % tn,
))
elif cn != 'PANIC':
comps.append((
'%s\t%s %s' % (nm, tn, self.typeclass_prefix(cn, tn)),
nm,
))
return comps
def typeclass_prefix(self, typeclass, typename):
return gs.NAME_PREFIXES.get(typename, gs.CLASS_PREFIXES.get(typeclass, ' '))
def declex(s):
params = []
ret = ''
if s.startswith('func('):
lp = len(s)
sp = 5
ep = sp
dc = 1
names = []
while ep < lp and dc > 0:
c = s[ep]
if dc == 1 and c in (',', ')'):
if sp < ep:
n, _, t = s[sp:ep].strip().partition(' ')
t = t.strip()
if t:
for name in names:
params.append((name, t))
names = []
params.append((n, t))
else:
names.append(n)
sp = ep + 1
if c == '(':
dc += 1
elif c == ')':
dc -= 1
ep += 1
ret = s[ep:].strip() if ep < lp else ''
return (params, ret)
def _ct_poller():
try:
view = sublime.active_window().active_view()
if gs.setting('calltips') is True:
view.run_command('gs_show_call_tip', {'set_status': True})
else:
view.erase_status(HINT_KEY)
except Exception:
pass
sublime.set_timeout(_ct_poller, 1000)
class GsShowCallTip(sublime_plugin.TextCommand):
def is_enabled(self):
return gs.is_go_source_view(self.view)
def run(self, edit, set_status=False):
view = self.view
def f(cl, err):
def f2(cl, err):
c = {}
if len(cl) == 1:
c = cl[0]
if set_status:
if c:
pfx = 'func('
typ = c['type']
if typ.startswith(pfx):
s = 'func %s(%s' % (c['name'], typ[len(pfx):])
else:
s = '%s: %s' % (c['name'], typ)
view.set_status(HINT_KEY, s)
else:
view.erase_status(HINT_KEY)
else:
if c:
s = '%s %s\n%s' % (c['name'], c['class'], c['type'])
else:
s = '// %s' % (err or 'No calltips found')
gs.show_output(HINT_KEY, s, print_output=False, syntax_file='GsDoc')
sublime.set_timeout(lambda: f2(cl, err), 0)
fn = view.file_name()
src = gs.view_src(view)
pos = gs.sel(view).begin()
mg9.calltip(fn, src, pos, set_status, f)
if not gs.checked(DOMAIN, '_ct_poller'):
_ct_poller()