2017-04-12 09:53:33 +00:00
" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808>
2016-12-22 12:10:21 +00:00
" Description: go build for Go files
2017-02-07 20:36:04 +00:00
" inspired by work from dzhou121 <dzhou121@gmail.com>
function ! ale_linters #go #gobuild #GoEnv ( buffer ) abort
2017-04-15 11:52:08 +00:00
if exists ( 's:go_env' )
return ''
endif
2017-02-07 20:36:04 +00:00
2017-04-15 11:52:08 +00:00
return 'go env GOPATH GOROOT'
2017-02-07 20:36:04 +00:00
endfunction
2017-04-12 09:53:33 +00:00
function ! ale_linters #go #gobuild #GetCommand ( buffer , goenv_output ) abort
2017-04-15 11:52:08 +00:00
if ! exists ( 's:go_env' )
let s :go_env = {
\ 'GOPATH' : a :goenv_output [0 ],
\ 'GOROOT' : a :goenv_output [1 ],
\}
endif
" Run go test in local directory with relative path
return 'GOPATH=' . s :go_env .GOPATH
\ . ' cd ' . fnamemodify ( bufname ( a :buffer ) , ':.:h' )
\ . ' && go test -c -o /dev/null ./'
2017-02-07 20:36:04 +00:00
endfunction
2017-04-29 16:33:18 +00:00
function ! ale_linters #go #gobuild #GetMatches ( lines ) abort
" Matches patterns like the following:
2017-04-12 09:53:33 +00:00
"
" file.go:27: missing argument for Printf("%s"): format reads arg 2, have only 1 args
" file.go:53:10: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary)
" file.go:5:2: expected declaration, found 'STRING' "log"
" go test returns relative paths so use tail of filename as part of pattern matcher
2017-04-29 16:33:18 +00:00
let l :pattern = '\v^([a-zA-Z]?:?[^:]+):(\d+):?(\d+)?:? (.+)$'
2017-04-12 09:53:33 +00:00
2017-04-29 16:33:18 +00:00
return ale #util #GetMatches ( a :lines , l :pattern )
endfunction
function ! ale_linters #go #gobuild #Handler ( buffer , lines ) abort
let l :output = []
2017-04-12 09:53:33 +00:00
2017-04-29 16:33:18 +00:00
for l :match in ale_linters #go #gobuild #GetMatches ( a :lines )
2017-04-15 11:52:08 +00:00
" Omit errors from imported go packages
2017-05-06 09:08:34 +00:00
if ! ale #path #IsBufferPath ( a :buffer , l :match [1 ])
2017-04-12 09:53:33 +00:00
continue
endif
call add ( l :output , {
2017-04-29 16:33:18 +00:00
\ 'lnum' : l :match [2 ] + 0 ,
\ 'col' : l :match [3 ] + 0 ,
\ 'text' : l :match [4 ],
2017-04-12 09:53:33 +00:00
\ 'type' : 'E' ,
\})
endfor
return l :output
2017-02-07 20:36:04 +00:00
endfunction
2016-12-22 12:10:21 +00:00
call ale #linter #Define ( 'go' , {
\ 'name' : 'go build' ,
\ 'executable' : 'go' ,
2017-02-07 20:36:04 +00:00
\ 'command_chain' : [
\ {'callback' : 'ale_linters#go#gobuild#GoEnv' , 'output_stream' : 'stdout' },
\ {'callback' : 'ale_linters#go#gobuild#GetCommand' , 'output_stream' : 'stderr' },
\ ],
\ 'callback' : 'ale_linters#go#gobuild#Handler' ,
2017-04-12 09:53:33 +00:00
\ 'lint_file' : 1 ,
2016-12-22 12:10:21 +00:00
\})