2014-10-31 17:30:24 -04:00
|
|
|
function! go#tool#Files()
|
2015-07-13 06:22:46 -04:00
|
|
|
if go#util#IsWin()
|
2015-01-18 07:58:28 -05:00
|
|
|
let command = 'go list -f "{{range $f := .GoFiles}}{{$.Dir}}\{{$f}}{{printf \"\n\"}}{{end}}{{range $f := .CgoFiles}}{{$.Dir}}\{{$f}}{{printf \"\n\"}}{{end}}"'
|
2014-10-31 17:30:24 -04:00
|
|
|
else
|
2015-01-18 07:58:28 -05:00
|
|
|
let command = "go list -f '{{range $f := .GoFiles}}{{$.Dir}}/{{$f}}{{printf \"\\n\"}}{{end}}{{range $f := .CgoFiles}}{{$.Dir}}/{{$f}}{{printf \"\\n\"}}{{end}}'"
|
2014-10-31 17:30:24 -04:00
|
|
|
endif
|
|
|
|
let out = go#tool#ExecuteInDir(command)
|
|
|
|
return split(out, '\n')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#tool#Deps()
|
2015-07-13 06:22:46 -04:00
|
|
|
if go#util#IsWin()
|
2014-10-31 17:30:24 -04:00
|
|
|
let command = 'go list -f "{{range $f := .Deps}}{{$f}}{{printf \"\n\"}}{{end}}"'
|
|
|
|
else
|
|
|
|
let command = "go list -f $'{{range $f := .Deps}}{{$f}}\n{{end}}'"
|
|
|
|
endif
|
|
|
|
let out = go#tool#ExecuteInDir(command)
|
|
|
|
return split(out, '\n')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#tool#Imports()
|
|
|
|
let imports = {}
|
2015-07-13 06:22:46 -04:00
|
|
|
if go#util#IsWin()
|
2014-10-31 17:30:24 -04:00
|
|
|
let command = 'go list -f "{{range $f := .Imports}}{{$f}}{{printf \"\n\"}}{{end}}"'
|
|
|
|
else
|
|
|
|
let command = "go list -f $'{{range $f := .Imports}}{{$f}}\n{{end}}'"
|
|
|
|
endif
|
|
|
|
let out = go#tool#ExecuteInDir(command)
|
|
|
|
if v:shell_error
|
|
|
|
echo out
|
|
|
|
return imports
|
|
|
|
endif
|
|
|
|
|
|
|
|
for package_path in split(out, '\n')
|
2015-02-04 05:43:54 -05:00
|
|
|
let cmd = "go list -f {{.Name}} " . package_path
|
|
|
|
let package_name = substitute(go#tool#ExecuteInDir(cmd), '\n$', '', '')
|
2014-10-31 17:30:24 -04:00
|
|
|
let imports[package_name] = package_path
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return imports
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#tool#ShowErrors(out)
|
2015-07-13 06:22:46 -04:00
|
|
|
" cd into the current files directory. This is important so fnamemodify
|
|
|
|
" does create a full path for outputs when the token is only a single file
|
|
|
|
" name (such as for a go test output, i.e.: 'demo_test.go'). For other
|
|
|
|
" outputs, such as 'go install' we already get an absolute path (i.e.:
|
|
|
|
" '../foo/foo.go') and fnamemodify successfuly creates the full path.
|
|
|
|
let cd = exists('*haslocaldir') && haslocaldir() ? 'lcd ' : 'cd '
|
|
|
|
let current_dir = getcwd()
|
|
|
|
execute cd . fnameescape(expand("%:p:h"))
|
|
|
|
|
2014-10-31 17:30:24 -04:00
|
|
|
let errors = []
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2014-10-31 17:30:24 -04:00
|
|
|
for line in split(a:out, '\n')
|
2015-01-18 07:58:28 -05:00
|
|
|
let fatalerrors = matchlist(line, '^\(fatal error:.*\)$')
|
2014-10-31 17:30:24 -04:00
|
|
|
let tokens = matchlist(line, '^\s*\(.\{-}\):\(\d\+\):\s*\(.*\)')
|
2015-01-18 07:58:28 -05:00
|
|
|
|
|
|
|
if !empty(fatalerrors)
|
|
|
|
call add(errors, {"text": fatalerrors[1]})
|
|
|
|
elseif !empty(tokens)
|
2015-07-13 06:22:46 -04:00
|
|
|
call add(errors, {"filename" : fnamemodify(tokens[1], ':p'),
|
2014-10-31 17:30:24 -04:00
|
|
|
\"lnum": tokens[2],
|
|
|
|
\"text": tokens[3]})
|
|
|
|
elseif !empty(errors)
|
|
|
|
" Preserve indented lines.
|
|
|
|
" This comes up especially with multi-line test output.
|
|
|
|
if match(line, '^\s') >= 0
|
|
|
|
call add(errors, {"text": line})
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
2015-07-13 06:22:46 -04:00
|
|
|
" return back to old dir once we are finished with populating the errors
|
|
|
|
execute cd . fnameescape(current_dir)
|
|
|
|
|
2014-10-31 17:30:24 -04:00
|
|
|
if !empty(errors)
|
|
|
|
call setqflist(errors, 'r')
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
if empty(errors)
|
|
|
|
" Couldn't detect error format, output errors
|
|
|
|
echo a:out
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#tool#ExecuteInDir(cmd) abort
|
2015-07-13 06:22:46 -04:00
|
|
|
let old_gopath = $GOPATH
|
|
|
|
let $GOPATH = go#path#Detect()
|
|
|
|
|
2014-10-31 17:30:24 -04:00
|
|
|
let cd = exists('*haslocaldir') && haslocaldir() ? 'lcd ' : 'cd '
|
|
|
|
let dir = getcwd()
|
|
|
|
try
|
2015-07-13 06:22:46 -04:00
|
|
|
execute cd . fnameescape(expand("%:p:h"))
|
2014-10-31 17:30:24 -04:00
|
|
|
let out = system(a:cmd)
|
|
|
|
finally
|
2015-07-13 06:22:46 -04:00
|
|
|
execute cd . fnameescape(dir)
|
2014-10-31 17:30:24 -04:00
|
|
|
endtry
|
2015-07-13 06:22:46 -04:00
|
|
|
|
|
|
|
let $GOPATH = old_gopath
|
2014-10-31 17:30:24 -04:00
|
|
|
return out
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Exists checks whether the given importpath exists or not. It returns 0 if
|
|
|
|
" the importpath exists under GOPATH.
|
|
|
|
function! go#tool#Exists(importpath)
|
|
|
|
let command = "go list ". a:importpath
|
|
|
|
let out = go#tool#ExecuteInDir(command)
|
|
|
|
|
|
|
|
if v:shell_error
|
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
" following two functions are from: https://github.com/mattn/gist-vim
|
|
|
|
" thanks @mattn
|
|
|
|
function! s:get_browser_command()
|
|
|
|
let go_play_browser_command = get(g:, 'go_play_browser_command', '')
|
|
|
|
if go_play_browser_command == ''
|
2015-07-13 06:22:46 -04:00
|
|
|
if go#util#IsWin()
|
2014-10-31 17:30:24 -04:00
|
|
|
let go_play_browser_command = '!start rundll32 url.dll,FileProtocolHandler %URL%'
|
|
|
|
elseif has('mac') || has('macunix') || has('gui_macvim') || system('uname') =~? '^darwin'
|
|
|
|
let go_play_browser_command = 'open %URL%'
|
|
|
|
elseif executable('xdg-open')
|
|
|
|
let go_play_browser_command = 'xdg-open %URL%'
|
|
|
|
elseif executable('firefox')
|
|
|
|
let go_play_browser_command = 'firefox %URL% &'
|
|
|
|
else
|
|
|
|
let go_play_browser_command = ''
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return go_play_browser_command
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! go#tool#OpenBrowser(url)
|
|
|
|
let cmd = s:get_browser_command()
|
|
|
|
if len(cmd) == 0
|
|
|
|
redraw
|
|
|
|
echohl WarningMsg
|
|
|
|
echo "It seems that you don't have general web browser. Open URL below."
|
|
|
|
echohl None
|
|
|
|
echo a:url
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
if cmd =~ '^!'
|
|
|
|
let cmd = substitute(cmd, '%URL%', '\=shellescape(a:url)', 'g')
|
|
|
|
silent! exec cmd
|
|
|
|
elseif cmd =~ '^:[A-Z]'
|
|
|
|
let cmd = substitute(cmd, '%URL%', '\=a:url', 'g')
|
|
|
|
exec cmd
|
|
|
|
else
|
|
|
|
let cmd = substitute(cmd, '%URL%', '\=shellescape(a:url)', 'g')
|
|
|
|
call system(cmd)
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" vim:ts=4:sw=4:et
|