2018-03-31 10:56:26 -04:00
|
|
|
function! s:gocodeCommand(cmd, args) abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let bin_path = go#path#CheckBinPath("gocode")
|
|
|
|
if empty(bin_path)
|
2018-03-31 10:56:26 -04:00
|
|
|
return []
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let socket_type = go#config#GocodeSocketType()
|
2018-03-31 10:56:26 -04:00
|
|
|
|
|
|
|
let cmd = [bin_path]
|
|
|
|
let cmd = extend(cmd, ['-sock', socket_type])
|
|
|
|
let cmd = extend(cmd, ['-f', 'vim'])
|
|
|
|
let cmd = extend(cmd, [a:cmd])
|
|
|
|
let cmd = extend(cmd, a:args)
|
|
|
|
|
|
|
|
return cmd
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:sync_gocode(cmd, args, input) abort
|
2017-12-13 09:05:24 -05:00
|
|
|
" We might hit cache problems, as gocode doesn't handle different GOPATHs
|
|
|
|
" well. See: https://github.com/nsf/gocode/issues/239
|
2016-11-09 12:22:55 -05:00
|
|
|
let old_goroot = $GOROOT
|
|
|
|
let $GOROOT = go#util#env("goroot")
|
2016-06-26 07:12:36 -04:00
|
|
|
|
2017-12-13 09:05:24 -05:00
|
|
|
try
|
2018-03-31 10:56:26 -04:00
|
|
|
let cmd = s:gocodeCommand(a:cmd, a:args)
|
|
|
|
" gocode can sometimes be slow, so redraw now to avoid waiting for gocode
|
|
|
|
" to return before redrawing automatically.
|
|
|
|
redraw
|
|
|
|
|
|
|
|
let [l:result, l:err] = go#util#Exec(cmd, a:input)
|
2017-12-13 09:05:24 -05:00
|
|
|
finally
|
|
|
|
let $GOROOT = old_goroot
|
|
|
|
endtry
|
2016-11-09 12:22:55 -05:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
if l:err != 0
|
|
|
|
return "[0, []]"
|
|
|
|
endif
|
|
|
|
|
|
|
|
if &encoding != 'utf-8'
|
|
|
|
let l:result = iconv(l:result, 'utf-8', &encoding)
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
2014-10-31 17:30:24 -04:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
return l:result
|
2016-06-11 09:56:50 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
let s:optionsEnabled = 0
|
2016-12-27 09:46:49 -05:00
|
|
|
function! s:gocodeEnableOptions() abort
|
2017-03-07 12:04:28 -05:00
|
|
|
if s:optionsEnabled
|
2016-06-26 07:12:36 -04:00
|
|
|
return
|
|
|
|
endif
|
2016-06-11 09:56:50 -04:00
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:bin_path = go#path#CheckBinPath("gocode")
|
|
|
|
if empty(l:bin_path)
|
2016-06-26 07:12:36 -04:00
|
|
|
return
|
|
|
|
endif
|
2016-06-11 09:56:50 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
let s:optionsEnabled = 1
|
2016-06-11 09:56:50 -04:00
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
call go#util#Exec(['gocode', 'set', 'propose-builtins', s:toBool(go#config#GocodeProposeBuiltins())])
|
|
|
|
call go#util#Exec(['gocode', 'set', 'autobuild', s:toBool(go#config#GocodeAutobuild())])
|
|
|
|
call go#util#Exec(['gocode', 'set', 'unimported-packages', s:toBool(go#config#GocodeUnimportedPackages())])
|
2016-06-11 09:56:50 -04:00
|
|
|
endfunction
|
|
|
|
|
2016-12-27 09:46:49 -05:00
|
|
|
function! s:toBool(val) abort
|
2018-06-14 06:31:12 -04:00
|
|
|
if a:val | return 'true' | else | return 'false' | endif
|
2016-06-11 09:56:50 -04:00
|
|
|
endfunction
|
|
|
|
|
2016-12-27 09:46:49 -05:00
|
|
|
function! s:gocodeAutocomplete() abort
|
2016-06-26 07:12:36 -04:00
|
|
|
call s:gocodeEnableOptions()
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" use the offset as is, because the cursor position is the position for
|
|
|
|
" which autocomplete candidates are needed.
|
|
|
|
return s:sync_gocode('autocomplete',
|
|
|
|
\ [expand('%:p'), go#util#OffsetCursor()],
|
|
|
|
\ go#util#GetLines())
|
2016-06-11 09:56:50 -04:00
|
|
|
endfunction
|
2014-10-31 17:30:24 -04:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" go#complete#GoInfo returns the description of the identifier under the
|
|
|
|
" cursor.
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#complete#GetInfo() abort
|
2018-03-31 10:56:26 -04:00
|
|
|
return s:sync_info(0)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#complete#Info(auto) abort
|
2018-06-14 06:31:12 -04:00
|
|
|
if go#util#has_job(1)
|
2018-03-31 10:56:26 -04:00
|
|
|
return s:async_info(a:auto)
|
|
|
|
else
|
|
|
|
return s:sync_info(a:auto)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:async_info(auto)
|
|
|
|
if exists("s:async_info_job")
|
|
|
|
call job_stop(s:async_info_job)
|
|
|
|
unlet s:async_info_job
|
|
|
|
endif
|
|
|
|
|
|
|
|
let state = {
|
|
|
|
\ 'exited': 0,
|
|
|
|
\ 'exit_status': 0,
|
|
|
|
\ 'closed': 0,
|
|
|
|
\ 'messages': [],
|
|
|
|
\ 'auto': a:auto
|
|
|
|
\ }
|
|
|
|
|
|
|
|
function! s:callback(chan, msg) dict
|
|
|
|
let l:msg = a:msg
|
|
|
|
if &encoding != 'utf-8'
|
|
|
|
let l:msg = iconv(l:msg, 'utf-8', &encoding)
|
|
|
|
endif
|
|
|
|
call add(self.messages, l:msg)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:exit_cb(job, exitval) dict
|
|
|
|
let self.exit_status = a:exitval
|
|
|
|
let self.exited = 1
|
|
|
|
|
|
|
|
if self.closed
|
|
|
|
call self.complete()
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:close_cb(ch) dict
|
|
|
|
let self.closed = 1
|
|
|
|
if self.exited
|
|
|
|
call self.complete()
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function state.complete() dict
|
|
|
|
if self.exit_status != 0
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
let result = s:info_filter(self.auto, join(self.messages, "\n"))
|
|
|
|
call s:info_complete(self.auto, result)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" add 1 to the offset, so that the position at the cursor will be included
|
|
|
|
" in gocode's search
|
2016-06-26 07:12:36 -04:00
|
|
|
let offset = go#util#OffsetCursor()+1
|
2018-03-31 10:56:26 -04:00
|
|
|
|
|
|
|
" We might hit cache problems, as gocode doesn't handle different GOPATHs
|
|
|
|
" well. See: https://github.com/nsf/gocode/issues/239
|
|
|
|
let env = {
|
|
|
|
\ "GOROOT": go#util#env("goroot")
|
|
|
|
\ }
|
|
|
|
|
|
|
|
let cmd = s:gocodeCommand('autocomplete',
|
2016-06-26 07:12:36 -04:00
|
|
|
\ [expand('%:p'), offset])
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
" TODO(bc): Don't write the buffer to a file; pass the buffer directrly to
|
|
|
|
" gocode's stdin. It shouldn't be necessary to use {in_io: 'file', in_name:
|
|
|
|
" s:gocodeFile()}, but unfortunately {in_io: 'buffer', in_buf: bufnr('%')}
|
|
|
|
" should work.
|
|
|
|
let options = {
|
|
|
|
\ 'env': env,
|
|
|
|
\ 'in_io': 'file',
|
|
|
|
\ 'in_name': s:gocodeFile(),
|
|
|
|
\ 'callback': funcref("s:callback", [], state),
|
|
|
|
\ 'exit_cb': funcref("s:exit_cb", [], state),
|
|
|
|
\ 'close_cb': funcref("s:close_cb", [], state)
|
|
|
|
\ }
|
2016-06-26 07:12:36 -04:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
let s:async_info_job = job_start(cmd, options)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:gocodeFile()
|
|
|
|
let file = tempname()
|
|
|
|
call writefile(go#util#GetLines(), file)
|
|
|
|
return file
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:sync_info(auto)
|
|
|
|
" auto is true if we were called by g:go_auto_type_info's autocmd
|
|
|
|
|
|
|
|
" add 1 to the offset, so that the position at the cursor will be included
|
|
|
|
" in gocode's search
|
|
|
|
let offset = go#util#OffsetCursor()+1
|
|
|
|
|
|
|
|
let result = s:sync_gocode('autocomplete',
|
|
|
|
\ [expand('%:p'), offset],
|
|
|
|
\ go#util#GetLines())
|
|
|
|
|
|
|
|
let result = s:info_filter(a:auto, result)
|
|
|
|
call s:info_complete(a:auto, result)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:info_filter(auto, result) abort
|
|
|
|
if empty(a:result)
|
2015-01-18 07:58:28 -05:00
|
|
|
return ""
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
let l:result = eval(a:result)
|
|
|
|
if len(l:result) != 2
|
|
|
|
return ""
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
let l:candidates = l:result[1]
|
|
|
|
if len(l:candidates) == 1
|
|
|
|
" When gocode panics in vim mode, it returns
|
|
|
|
" [0, [{'word': 'PANIC', 'abbr': 'PANIC PANIC PANIC', 'info': 'PANIC PANIC PANIC'}]]
|
|
|
|
if a:auto && l:candidates[0].info ==# "PANIC PANIC PANIC"
|
|
|
|
return ""
|
|
|
|
endif
|
|
|
|
|
|
|
|
return l:candidates[0].info
|
|
|
|
endif
|
2016-06-26 07:12:36 -04:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
let filtered = []
|
2016-06-26 07:12:36 -04:00
|
|
|
let wordMatch = '\<' . expand("<cword>") . '\>'
|
|
|
|
" escape single quotes in wordMatch before passing it to filter
|
|
|
|
let wordMatch = substitute(wordMatch, "'", "''", "g")
|
2018-03-31 10:56:26 -04:00
|
|
|
let filtered = filter(l:candidates, "v:val.info =~ '".wordMatch."'")
|
2016-06-26 07:12:36 -04:00
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
if len(l:filtered) != 1
|
|
|
|
return ""
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
return l:filtered[0].info
|
2014-10-31 17:30:24 -04:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
function! s:info_complete(auto, result) abort
|
|
|
|
if !empty(a:result)
|
|
|
|
echo "vim-go: " | echohl Function | echon a:result | echohl None
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
2015-01-18 07:58:28 -05:00
|
|
|
endfunction
|
2014-10-31 17:30:24 -04:00
|
|
|
|
2016-12-27 09:46:49 -05:00
|
|
|
function! s:trim_bracket(val) abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let a:val.word = substitute(a:val.word, '[(){}\[\]]\+$', '', '')
|
|
|
|
return a:val
|
2015-03-14 16:02:10 -04:00
|
|
|
endfunction
|
|
|
|
|
2018-03-31 10:56:26 -04:00
|
|
|
let s:completions = ""
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#complete#Complete(findstart, base) abort
|
2016-06-26 07:12:36 -04:00
|
|
|
"findstart = 1 when we need to get the text length
|
|
|
|
if a:findstart == 1
|
2018-03-31 10:56:26 -04:00
|
|
|
execute "silent let s:completions = " . s:gocodeAutocomplete()
|
|
|
|
return col('.') - s:completions[0] - 1
|
2016-06-26 07:12:36 -04:00
|
|
|
"findstart = 0 when we need to return the list of completions
|
|
|
|
else
|
|
|
|
let s = getline(".")[col('.') - 1]
|
|
|
|
if s =~ '[(){}\{\}]'
|
2018-03-31 10:56:26 -04:00
|
|
|
return map(copy(s:completions[1]), 's:trim_bracket(v:val)')
|
2014-10-31 17:30:24 -04:00
|
|
|
endif
|
2018-03-31 10:56:26 -04:00
|
|
|
|
|
|
|
return s:completions[1]
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
2018-03-31 10:56:26 -04:00
|
|
|
endfunction
|
2014-10-31 17:30:24 -04:00
|
|
|
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#complete#ToggleAutoTypeInfo() abort
|
2018-06-14 06:31:12 -04:00
|
|
|
if go#config#AutoTypeInfo()
|
|
|
|
call go#config#SetAutoTypeInfo(0)
|
2016-08-02 08:48:32 -04:00
|
|
|
call go#util#EchoProgress("auto type info disabled")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2018-06-14 06:31:12 -04:00
|
|
|
call go#config#SetAutoTypeInfo(1)
|
2016-08-02 08:48:32 -04:00
|
|
|
call go#util#EchoProgress("auto type info enabled")
|
|
|
|
endfunction
|
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" vim: sw=2 ts=2 et
|