2015-07-13 06:22:46 -04:00
|
|
|
" initial_go_path is used to store the initial GOPATH that was set when Vim
|
|
|
|
" was started. It's used with :GoPathClear to restore the GOPATH when the user
|
|
|
|
" changed it explicitly via :GoPath. Initially it's empty. It's being set when
|
|
|
|
" :GoPath is used
|
|
|
|
let s:initial_go_path = ""
|
|
|
|
|
|
|
|
" GoPath sets or returns the current GOPATH. If no arguments are passed it
|
|
|
|
" echoes the current GOPATH, if an argument is passed it replaces the current
|
|
|
|
" GOPATH with it. If two double quotes are passed (the empty string in go),
|
|
|
|
" it'll clear the GOPATH and will restore to the initial GOPATH.
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#GoPath(...) abort
|
2016-06-26 07:12:36 -04:00
|
|
|
" we have an argument, replace GOPATH
|
|
|
|
if len(a:000)
|
|
|
|
" clears the current manually set GOPATH and restores it to the
|
|
|
|
" initial GOPATH, which was set when Vim was started.
|
|
|
|
if len(a:000) == 1 && a:1 == '""'
|
|
|
|
if !empty(s:initial_go_path)
|
|
|
|
let $GOPATH = s:initial_go_path
|
|
|
|
let s:initial_go_path = ""
|
|
|
|
endif
|
|
|
|
|
|
|
|
echon "vim-go: " | echohl Function | echon "GOPATH restored to ". $GOPATH | echohl None
|
|
|
|
return
|
2015-07-13 06:22:46 -04:00
|
|
|
endif
|
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
echon "vim-go: " | echohl Function | echon "GOPATH changed to ". a:1 | echohl None
|
|
|
|
let s:initial_go_path = $GOPATH
|
|
|
|
let $GOPATH = a:1
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
|
|
|
|
echo go#path#Detect()
|
2015-07-13 06:22:46 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Default returns the default GOPATH. If there is a single GOPATH it returns
|
|
|
|
" it. For multiple GOPATHS separated with a the OS specific separator, only
|
|
|
|
" the first one is returned
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#Default() abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let go_paths = split($GOPATH, go#util#PathListSep())
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
if len(go_paths) == 1
|
|
|
|
return $GOPATH
|
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
return go_paths[0]
|
2015-07-13 06:22:46 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
" HasPath checks whether the given path exists in GOPATH environment variable
|
|
|
|
" or not
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#HasPath(path) abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let go_paths = split($GOPATH, go#util#PathListSep())
|
|
|
|
let last_char = strlen(a:path) - 1
|
|
|
|
|
|
|
|
" check cases of '/foo/bar/' and '/foo/bar'
|
|
|
|
if a:path[last_char] == go#util#PathSep()
|
|
|
|
let withSep = a:path
|
|
|
|
let noSep = strpart(a:path, 0, last_char)
|
|
|
|
else
|
|
|
|
let withSep = a:path . go#util#PathSep()
|
|
|
|
let noSep = a:path
|
|
|
|
endif
|
|
|
|
|
|
|
|
let hasA = index(go_paths, withSep) != -1
|
|
|
|
let hasB = index(go_paths, noSep) != -1
|
|
|
|
return hasA || hasB
|
2015-07-13 06:22:46 -04:00
|
|
|
endfunction
|
|
|
|
|
2015-12-08 08:20:04 -05:00
|
|
|
" Detect returns the current GOPATH. If a package manager is used, such as
|
|
|
|
" Godeps, GB, it will modify the GOPATH so those directories take precedence
|
|
|
|
" over the current GOPATH. It also detects diretories whose are outside
|
|
|
|
" GOPATH.
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#Detect() abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let gopath = $GOPATH
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" don't lookup for godeps if autodetect is disabled.
|
|
|
|
if !get(g:, "go_autodetect_gopath", 1)
|
|
|
|
return gopath
|
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
let current_dir = fnameescape(expand('%:p:h'))
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" TODO(arslan): this should be changed so folders or files should be
|
|
|
|
" fetched from a customizable list. The user should define any new package
|
|
|
|
" management tool by it's own.
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" src folder outside $GOPATH
|
|
|
|
let src_root = finddir("src", current_dir .";")
|
|
|
|
if !empty(src_root)
|
|
|
|
let src_path = fnamemodify(src_root, ':p:h:h') . go#util#PathSep()
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" gb vendor plugin
|
|
|
|
" (https://github.com/constabulary/gb/tree/master/cmd/gb-vendor)
|
|
|
|
let gb_vendor_root = src_path . "vendor" . go#util#PathSep()
|
|
|
|
if isdirectory(gb_vendor_root) && !go#path#HasPath(gb_vendor_root)
|
|
|
|
let gopath = gb_vendor_root . go#util#PathListSep() . gopath
|
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
if !go#path#HasPath(src_path)
|
|
|
|
let gopath = src_path . go#util#PathListSep() . gopath
|
2015-07-13 06:22:46 -04:00
|
|
|
endif
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" Godeps
|
|
|
|
let godeps_root = finddir("Godeps", current_dir .";")
|
|
|
|
if !empty(godeps_root)
|
|
|
|
let godeps_path = join([fnamemodify(godeps_root, ':p:h:h'), "Godeps", "_workspace" ], go#util#PathSep())
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
if !go#path#HasPath(godeps_path)
|
|
|
|
let gopath = godeps_path . go#util#PathListSep() . gopath
|
2015-07-13 06:22:46 -04:00
|
|
|
endif
|
2016-06-26 07:12:36 -04:00
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
return gopath
|
2015-07-13 06:22:46 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
|
|
|
|
" BinPath returns the binary path of installed go tools.
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#BinPath() abort
|
2016-06-26 07:12:36 -04:00
|
|
|
let bin_path = ""
|
|
|
|
|
|
|
|
" check if our global custom path is set, if not check if $GOBIN is set so
|
|
|
|
" we can use it, otherwise use $GOPATH + '/bin'
|
|
|
|
if exists("g:go_bin_path")
|
|
|
|
let bin_path = g:go_bin_path
|
|
|
|
elseif $GOBIN != ""
|
|
|
|
let bin_path = $GOBIN
|
2015-07-13 06:22:46 -04:00
|
|
|
elseif $GOPATH != ""
|
|
|
|
let bin_path = expand(go#path#Default() . "/bin/")
|
|
|
|
else
|
|
|
|
" could not find anything
|
|
|
|
endif
|
|
|
|
|
|
|
|
return bin_path
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" CheckBinPath checks whether the given binary exists or not and returns the
|
|
|
|
" path of the binary. It returns an empty string doesn't exists.
|
2016-12-27 09:46:49 -05:00
|
|
|
function! go#path#CheckBinPath(binpath) abort
|
2015-07-13 06:22:46 -04:00
|
|
|
" remove whitespaces if user applied something like 'goimports '
|
|
|
|
let binpath = substitute(a:binpath, '^\s*\(.\{-}\)\s*$', '\1', '')
|
2016-05-14 07:57:54 -04:00
|
|
|
" save off original path
|
|
|
|
let old_path = $PATH
|
|
|
|
|
|
|
|
" check if we have an appropriate bin_path
|
|
|
|
let go_bin_path = go#path#BinPath()
|
|
|
|
if !empty(go_bin_path)
|
|
|
|
" append our GOBIN and GOPATH paths and be sure they can be found there...
|
|
|
|
" let us search in our GOBIN and GOPATH paths
|
|
|
|
let $PATH = go_bin_path . go#util#PathListSep() . $PATH
|
|
|
|
endif
|
2015-07-13 06:22:46 -04:00
|
|
|
|
|
|
|
" if it's in PATH just return it
|
2016-05-14 07:57:54 -04:00
|
|
|
if executable(binpath)
|
2016-10-02 07:37:21 -04:00
|
|
|
if exists('*exepath')
|
2016-06-11 09:56:50 -04:00
|
|
|
let binpath = exepath(binpath)
|
|
|
|
endif
|
2016-05-14 07:57:54 -04:00
|
|
|
let $PATH = old_path
|
2015-07-13 06:22:46 -04:00
|
|
|
return binpath
|
|
|
|
endif
|
|
|
|
|
|
|
|
" just get the basename
|
|
|
|
let basename = fnamemodify(binpath, ":t")
|
|
|
|
if !executable(basename)
|
2016-12-27 09:46:49 -05:00
|
|
|
echom "vim-go: could not find '" . basename . "'. Run :GoInstallBinaries to fix it."
|
2015-07-13 06:22:46 -04:00
|
|
|
" restore back!
|
|
|
|
let $PATH = old_path
|
|
|
|
return ""
|
|
|
|
endif
|
|
|
|
|
|
|
|
let $PATH = old_path
|
|
|
|
|
|
|
|
return go_bin_path . go#util#PathSep() . basename
|
|
|
|
endfunction
|
|
|
|
|
2016-06-26 07:12:36 -04:00
|
|
|
" vim: sw=2 ts=2 et
|