-
Notifications
You must be signed in to change notification settings - Fork 9
/
goGuru.py
551 lines (440 loc) · 21.3 KB
/
goGuru.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
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
# Copyright (c) 2014 Jesse Meek <https://github.com/waigani>
# Copyright (c) 2016 Alvaro Leiva <https://github.com/alvarolm>
# This program is Free Software see LICENSE file for details.
"""
GoGuru is a Go guru plugin for Sublime Text 3.
It depends on the guru tool being installed:
go get golang.org/x/tools/cmd/guru
"""
# TODO: review & clean
import sublime
import sublime_plugin
import re
import os
import subprocess
import sys
def log(*msg):
print("GoGuru:", msg[0:])
def debug(*msg):
if get_setting("goguru_debug", False):
print("GoGuru [DEBUG]:", msg[0:])
def error(*msg):
print("GoGuru [ERROR]:", msg[0:])
def plugin_loaded():
# load shellenv
def load_shellenv():
global shellenv
from .dep import shellenv
# try golangconfig
if get_setting("goguru_use_golangconfig", False):
try:
global golangconfig
import golangconfig
except:
error("couldn't import golangconfig:", sys.exc_info()[0])
log("using shellenv instead of golangconfig")
# use_golangconfig = False
load_shellenv()
else:
load_shellenv()
log("debug:", get_setting("goguru_debug", False))
log("use_golangconfig", get_setting("goguru_use_golangconfig", False))
# keep track of the version if possible (pretty nasty workaround, any other ideas ?)
try:
PluginPath = os.path.dirname(os.path.realpath(__file__))
p = subprocess.Popen(["git", "describe", "master", "--tags"], stdout=subprocess.PIPE, cwd=PluginPath)
GITVERSION = p.communicate()[0].decode("utf-8").rstrip()
if p.returncode != 0:
debug("git return code", p.returncode)
raise Exception("git return code", p.returncode)
defsettings = os.path.join(PluginPath, 'Default.sublime-settings')
f = open(defsettings, 'r')
filedata = f.read()
f.close()
newdata = filedata.replace(get_setting('goguru_version'), GITVERSION + '_')
f = open(defsettings, 'w')
f.write(newdata)
f.close()
except:
debug("couldn't get git tag:", sys.exc_info()[0])
# read version
log("version:", get_setting('goguru_version'))
# check if user setting exists and creates it
us = sublime.load_settings("GoGuru.sublime-settings")
if (not us.has('goguru_debug')):
us.set('goguru_debug', get_setting("goguru_debug", False))
sublime.save_settings("GoGuru.sublime-settings")
class GoGuruCommand(sublime_plugin.TextCommand):
def __init__(self, view):
self.view = view
self.mode = 'None'
self.env = 'None'
self.local_package = 'None'
def run(self, edit, mode=None, output=True):
"""
:param output: won't show the show_panel if set to False. It is particularly useful for mouse clicks.
"""
self.output = output
try:
region = self.view.sel()[0]
text = self.view.substr(sublime.Region(0, region.end()))
cb_map = self.get_map(text)
byte_end = cb_map[sorted(cb_map.keys())[-1]]
byte_begin = None
if not region.empty():
byte_begin = cb_map[region.begin() - 1]
except:
sublime.error_message('GoGuru:\nCouldn\'t get cursor positon, make sure that the Go source file is saved and the cursor is over the identifier (variable, function ...) you want to query.')
error("couldn't get cursor positon: ", sys.exc_info())
return
if mode:
self.write_running(mode)
# expiremental
# uses gosublime gs_doc commands to look for documentation
# if it fails pareses the 'guru describe' output to query 'go doc'
if mode == "godoc":
self.view.window().run_command('gs_doc', {'mode': "hint"})
gsdoc = self.view.window().find_output_panel('GsDoc-output-output')
if gsdoc is not None:
if 'no docs found' not in gsdoc.substr(gsdoc.line(0)):
return
def messageLookingDoc():
self.write_out(None, "'gs_doc' failed,\nsearching documentation with 'goguru mode=godoc'...")
sublime.set_timeout(lambda: messageLookingDoc(), 150) # any other choice besides timeout ?
mode = "describe"
elif mode == "godoc_direct":
def messageLookingDoc():
self.write_out(None, "'searching documentation with 'goguru mode=godoc_direct'...")
sublime.set_timeout(lambda: messageLookingDoc(), 150) # any other choice besides timeout ?
mode = "describe"
self.guru(byte_end, begin_offset=byte_begin, mode=mode, callback=self.guru_complete)
return
# Get the guru mode from the user.
modes = ["callees", "callers", "callstack", "definition", "describe", "freevars", "implements", "peers", "pointsto", "referrers", "what", "whicherrs"]
descriptions = [
"callees show possible targets of selected function call",
"callers show possible callers of selected function",
"callstack show path from callgraph root to selected function",
"definition show declaration of selected identifier",
"describe describe selected syntax: definition, methods, etc",
"freevars show free variables of selection",
"implements show 'implements' relation for selected type or method",
"peers show send/receive corresponding to selected channel op",
"pointsto show variables the selected pointer may point to",
"referrers show all refs to entity denoted by selected identifier",
"what show basic information about the selected syntax node",
"whicherrs show possible values of the selected error variable"]
# Call guru cmd with the given mode.
def on_done(i):
if i >= 0:
self.write_running(modes[i])
self.guru(byte_end, begin_offset=byte_begin, mode=modes[i], callback=self.guru_complete)
self.view.window().show_quick_panel(descriptions, on_done, sublime.MONOSPACE_FONT)
def guru_complete(self, out, err):
self.write_out(out, err)
def write_running(self, mode):
""" Write the "Running..." header to a new file and focus it to get results
"""
# remember mode for future actions
self.mode = mode
window = self.view.window()
view = get_output_view(window)
# Run a new command to use the edit object for this view.
view.run_command('go_guru_write_running', {'mode': mode})
if get_setting("goguru_output", "buffer") == "output_panel" and self.output:
window.run_command('show_panel', {'panel': "output." + view.name(), 'toggle': False})
else:
window.focus_view(view)
def write_out(self, result, err):
""" Write the guru output to a new file.
"""
def cleanPackageAddr(p):
return str(p).replace('"', '').replace('(', '').replace(')', '').replace('*', '')
window = self.view.window()
view = get_output_view(window)
# parse guru describe to query go doc
jump = False
if (self.mode == 'godoc' or self.mode == 'godoc_direct') and result:
parts = result.split()
definitionLine = result.split('\n')[1]
goType = parts[3]
package = ''
identifier = ''
debug('godoc', 'goType', goType)
if goType == 'package':
# /home/username/go/src/myProject/utils/global/global.go:104.24-104.29: reference to package "errors"
package = cleanPackageAddr(parts[4])
elif goType == 'func':
# /home/username/go/src/myProject/utils/global/global.go:232.9-232.20: reference to method func (*myProject/utils/uid.GUIDGenerator).SetServiceID(ServiceID *string)
if parts[4] == 'method':
parts[4] = str(parts[4].split('(')[0]).split(".")
package = parts[4][0]
identifier = '.'.join(parts[4][1:])
else:
# /home/usuario/go/src/myProject/watchdog/main.go:55.14-55.31: reference to func myProject/utils/global.ContainsAnyOfThese(str string, anyof []string) bool
if '/' in parts[4]:
parts[4] = parts[4].split('.')
package = parts[4][0]
identifier = parts[4][1].split('(')[0]
# /home/username/go/src/myProject/watchdog/main.go:84.5-84.17: reference to func StartUpClient()
else:
package = "-u " + self.local_package
parts[4] = cleanPackageAddr(parts[4]).split(".")
identifier = '.'.join(parts[4])
elif goType == 'method':
parts[5] = parts[5].split('(')[1]
# /home/username/go/src/myProject/watchdog/main.go:78.10-78.17: reference to method func (*myProject/utils/global.Instance).ExitBool(returnErrorCodePtr *bool)
if '/' in parts[5]:
parts[5] = cleanPackageAddr(parts[5]).split(".")
package = parts[5][0]
identifier = '.'.join(parts[5][1:])
else:
# /home/username/go/src/myProject/watchdog/main.go:151.4-151.7: reference to method func (*sync.Mutex).Lock()
if '.' in parts[5].split(')')[0]:
parts[5] = cleanPackageAddr(parts[5]).split(".")
package = parts[5][0]
identifier = '.'.join(parts[5][1:])
# /home/username/go/src/myProject/watchdog/main.go:200.18-200.19: reference to method func (*instanceStats).me() string
else:
parts[5] = parts[5].split(".")
package = "-u " + self.local_package
identifier = '.'.join(parts[5][1:])
elif goType == 'interface':
# /home/username/go/src/myProject/utils/global/global.go:238.16-238.19: reference to interface method func (myProject/utils/crypto.GenericKeyHolder).Init(
parts[6] = cleanPackageAddr(parts[6]).split('.')
package = parts[6][0]
identifier = parts[6][1]
# /home/username/go/src/myProject/utils/uid/uid.go:99:26: concrete method func (*myProject/utils/uid.GUIDGenerator).SetServiceID(ServiceID *string)
# /home/username/go/src/myProject/utils/log/log.go:50:2: implements method (myProject/utils/log.GUIDGenerator).SetServiceID
else:
result = goType + " not implemented yet."
jump = True
if not jump:
cmd = "go doc %(package)s %(identifier)s " % {
"package": package,
"identifier": identifier,
}
debug("godoc", "cmd", cmd)
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, shell=True, env=self.env)
o, e = proc.communicate()
result = o.decode('utf-8')
# comment non go code
prettierResult = ''
for line in result.splitlines():
if line[0:4] == ' ':
prettierResult += '//' + line + '\n'
else:
prettierResult += line + '\n'
result = '\n'.join(prettierResult, definitionLine)
err = e.decode('utf-8')
# Run a new command to use the edit object for this view.
view.run_command('go_guru_write_results', {
'result': result,
'err': err})
if get_setting("goguru_output", "buffer") == "output_panel" and self.output:
window.run_command('show_panel', {'panel': "output." + view.name()})
else:
window.focus_view(view)
# the case when clicking doesn't require showing the output
if self.mode == 'definition' and not self.output:
if result:
coordinates = result.split(':')[:3]
new_view = window.open_file(':'.join(coordinates), sublime.ENCODED_POSITION)
group, _ = window.get_view_index(new_view)
if group != -1:
window.focus_group(group)
# jump to definition if is set
elif self.mode == 'definition':
if get_setting("goguru_jumpto_definition", False):
if result:
coordinates = result.split(':')[:3]
new_view = window.open_file(':'.join(coordinates), sublime.ENCODED_POSITION)
group, _ = window.get_view_index(new_view)
if group != -1:
window.focus_group(group)
def get_map(self, chars):
""" Generate a map of character offset to byte offset for the given string 'chars'.
"""
byte_offset = 0
cb_map = {}
for char_offset, char in enumerate(chars):
cb_map[char_offset] = byte_offset
byte_offset += len(char.encode('utf-8'))
if char == '\n' and self.view.line_endings() == "Windows":
byte_offset += 1
return cb_map
def guru(self, end_offset, begin_offset=None, mode="describe", callback=None):
""" Builds the guru shell command and calls it, returning it's output as a string.
"""
pos = "#" + str(end_offset)
if begin_offset is not None:
pos = "#%i,#%i" % (begin_offset, end_offset)
# golang config or shellenv ?
cmd_env = ''
if get_setting("goguru_use_golangconfig", False):
try:
toolpath, cmd_env = golangconfig.subprocess_info('guru', ['GOPATH', 'PATH'], view=self.view)
toolpath = os.path.realpath(toolpath)
except:
error("golangconfig:", sys.exc_info())
return
else:
toolpath = 'guru'
cmd_env = shellenv.get_env(for_subprocess=True)[1]
debug("cmd_env", cmd_env)
goguru_env = get_setting("goguru_env", {})
debug("goguru_env", goguru_env)
cmd_env.update(goguru_env)
debug("final_env", cmd_env)
self.env = cmd_env
guru_scope = ",".join(get_setting("goguru_scope", ""))
# add local package to guru scope
useCurrentPackage = get_setting("goguru_use_current_package", True)
debug("goguru_use_current_package", useCurrentPackage)
file_path = self.view.file_name()
if useCurrentPackage:
try:
GOPATH = os.path.realpath(cmd_env["GOPATH"])
except:
log("WARNING: using default GOPATH since it isn't declared ($HOME/go)")
GOPATH = os.path.expanduser("~/go")
debug("GOPATH", GOPATH)
local_package = get_local_package(GOPATH, file_path)
debug("local_package", local_package)
if sublime.platform() == 'windows':
local_package = local_package.replace('\\', '/')
self.local_package = local_package
guru_scope = guru_scope + ',' + local_package
guru_scope = guru_scope.strip()
debug("guru_scope", guru_scope)
if len(guru_scope) > 0:
guru_scope = "-scope " + guru_scope
guru_tags = "-tags \"" + " ".join(get_setting("goguru_tags", "")) + "\""
guru_json = ""
if get_setting("goguru_json", False):
guru_json = "-json"
# Build guru cmd.
# modified update 22/10/2019 - 3 (DD/MM/YYYY)
contents = self.view.substr(sublime.Region(0, self.view.size()))
cmd = "%(toolpath)s -modified %(scope)s %(tags)s %(guru_json)s %(mode)s %(file_path)s:%(pos)s" % {
"toolpath": toolpath,
"file_path": file_path,
"pos": pos,
"guru_json": guru_json,
"mode": mode,
"scope": guru_scope,
"tags": guru_tags
}
debug("cmd", cmd)
sublime.set_timeout_async(lambda: self.runInThread(cmd, callback, cmd_env, contents, file_path), 0)
def runInThread(self, cmd, callback, env, contents, file_path):
contentsbytes = contents.encode('utf-8',errors = 'strict')
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE, shell=True, env=env)
proc.stdin.write(bytes(file_path+'\n', encoding='utf8'))
proc.stdin.write(bytes(str(len(contentsbytes))+'\n', encoding='utf8'))
proc.stdin.write(contentsbytes)
out, err = proc.communicate()
callback(out.decode('utf-8'), err.decode('utf-8'))
class GoGuruWriteResultsCommand(sublime_plugin.TextCommand):
""" Writes the guru output to the current view.
"""
def run(self, edit, result, err):
view = self.view
view.insert(edit, view.size(), "\n")
if result:
view.insert(edit, view.size(), result)
if err:
error(err)
view.insert(edit, view.size(), err)
view.insert(edit, view.size(), "\n\n\n")
class GoGuruWriteRunningCommand(sublime_plugin.TextCommand):
""" Writes the guru output to the current view.
"""
def run(self, edit, mode):
view = self.view
content = "Running guru " + mode + " command...\n"
view.set_viewport_position(view.text_to_layout(view.size() - 1))
view.insert(edit, view.size(), content)
class GoGuruShowResultsCommand(sublime_plugin.TextCommand):
def run(self, edit):
if get_setting("goguru_output", "buffer") == "output_panel":
self.view.window().run_command('show_panel', {'panel': "output.GoGuru Output"})
else:
output_view = get_output_view(self.view.window())
self.view.window().focus_view(output_view)
class GoGuruOpenResultCommand(sublime_plugin.EventListener):
def on_selection_modified(self, view):
if view.name() == "GoGuru Output":
if len(view.sel()) != 1:
return
if view.sel()[0].size() == 0:
return
lines = view.lines(view.sel()[0])
if len(lines) != 1:
return
line = view.full_line(lines[0])
text = view.substr(line)
# format = get_setting("guru_format")
# "filename:line:col" pattern for json
m = re.search("\"([^\"]+):([0-9]+):([0-9]+)\"", text)
# >filename:line:col< pattern for xml
if m is None:
m = re.search(">([^<]+):([0-9]+):([0-9]+)<", text)
# filename:line.col-line.col: pattern for plain
if m is None:
m = re.search("^(.+\.go):([0-9]+).([0-9]+)[-: ]", text)
if m:
w = view.window()
new_view = w.open_file(m.group(1) + ':' + m.group(2) + ':' + m.group(3), sublime.ENCODED_POSITION)
group, index = w.get_view_index(new_view)
if group != -1:
w.focus_group(group)
class GoGuruGotoDefinitionCommand(GoGuruCommand):
def run(self, edit, mode=None, output=True):
super().run(edit=edit, mode="definition", output=False)
def get_output_view(window):
view = None
buff_name = 'GoGuru Output'
if get_setting("goguru_output", "buffer") == "output_panel":
view = window.create_output_panel(buff_name)
else:
# If the output file is already open, use that.
for v in window.views():
if v.name() == buff_name:
view = v
break
# Otherwise, create a new one.
if view is None:
view = window.new_file()
view.set_name(buff_name)
view.set_scratch(True)
view_settings = view.settings()
view_settings.set('line_numbers', False)
view.set_syntax_file('Packages/GoGuru/GoGuruResults.tmLanguage')
view.set_syntax_file('Packages/Go/Go.sublime-syntax')
return view
def get_setting(key, default=None):
""" Returns the setting in the following hierarchy: project setting, user setting,
default setting. If none are set the 'default' value passed in is returned.
"""
project_settings = sublime.active_window().active_view().settings().get('GoGuru', {})
if key in project_settings:
return project_settings.get(key)
user_settings = sublime.load_settings("GoGuru.sublime-settings")
if user_settings.has(key):
return user_settings.get(key)
return sublime.load_settings("Default.sublime-settings").get(key, default)
def get_local_package(GOPATH, file_path):
"""
Returns the local package name based on file_path.
Rational: the GOPATH is usually composed of multiple paths separated
by ":". The idea is to check the first one that matches the file_path
to get the package name.
"""
current_file_path = os.path.realpath(os.path.dirname(file_path))
for path in GOPATH.split(":"):
guessing_path = os.path.join(path, "src")
if file_path.startswith(guessing_path):
return os.path.relpath(current_file_path, guessing_path)
# the GOPATH and the file in question are not aligned
return ""