2017-11-20 14:50:14 +00:00
" Author: Joshua Rubin <joshua@rubixconsulting.com>, Ben Reedy <https://github.com/breed808>,
" Jeff Willette <jrwillette88@gmail.com>
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>
2018-02-04 13:55:09 +00:00
call ale #Set ( 'go_gobuild_options' , '' )
function ! ale_linters #go #gobuild #ResetEnv ( ) abort
unlet ! s :go_env
endfunction
2017-02-07 20:36:04 +00:00
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
2018-02-04 13:55:09 +00:00
let l :options = ale #Var ( a :buffer , 'go_gobuild_options' )
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
2018-02-04 13:55:09 +00:00
let l :gopath_env_command = has ( 'win32' )
\ ? 'set GOPATH=' . ale #Escape ( s :go_env .GOPATH ) . ' && '
\ : 'GOPATH=' . ale #Escape ( s :go_env .GOPATH ) . ' '
2017-04-15 11:52:08 +00:00
" Run go test in local directory with relative path
2018-02-04 13:55:09 +00:00
return l :gopath_env_command
\ . ale #path #BufferCdString ( a :buffer )
\ . 'go test'
\ . ( ! empty ( l :options ) ? ' ' . l :options : '' )
\ . ' -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
2017-11-20 14:50:14 +00:00
let l :dir = expand ( '#' . a :buffer . ':p:h' )
2017-04-29 16:33:18 +00:00
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-12 09:53:33 +00:00
call add ( l :output , {
2017-11-20 14:50:14 +00:00
\ 'filename' : ale #path #GetAbsPath ( l :dir , l :match [1 ]) ,
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
\})