2017-01-12 09:33:55 +00:00
|
|
|
" Author: Daniel Schemala <istjanichtzufassen@gmail.com>
|
|
|
|
" Description: rustc invoked by cargo for rust files
|
|
|
|
|
2017-11-05 18:37:44 +00:00
|
|
|
call ale#Set('rust_cargo_use_check', 1)
|
|
|
|
call ale#Set('rust_cargo_check_all_targets', 1)
|
|
|
|
|
|
|
|
let s:version_cache = {}
|
2017-03-27 11:37:00 +00:00
|
|
|
|
2017-01-22 14:54:57 +00:00
|
|
|
function! ale_linters#rust#cargo#GetCargoExecutable(bufnr) abort
|
2017-08-10 23:31:42 +00:00
|
|
|
if ale#path#FindNearestFile(a:bufnr, 'Cargo.toml') isnot# ''
|
2017-01-12 09:33:55 +00:00
|
|
|
return 'cargo'
|
|
|
|
else
|
|
|
|
" if there is no Cargo.toml file, we don't use cargo even if it exists,
|
|
|
|
" so we return '', because executable('') apparently always fails
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2017-11-05 18:37:44 +00:00
|
|
|
function! ale_linters#rust#cargo#VersionCheck(buffer) abort
|
|
|
|
if has_key(s:version_cache, 'cargo')
|
|
|
|
return ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
return 'cargo --version'
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:GetVersion(executable, output) abort
|
|
|
|
let l:version = get(s:version_cache, a:executable, [])
|
|
|
|
|
|
|
|
for l:match in ale#util#GetMatches(a:output, '\v\d+\.\d+\.\d+')
|
|
|
|
let l:version = ale#semver#Parse(l:match[0])
|
|
|
|
let s:version_cache[a:executable] = l:version
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return l:version
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CanUseCargoCheck(buffer, version) abort
|
|
|
|
" Allow `cargo check` to be disabled.
|
|
|
|
if !ale#Var(a:buffer, 'rust_cargo_use_check')
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
return !empty(a:version)
|
|
|
|
\ && ale#semver#GreaterOrEqual(a:version, [0, 17, 0])
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:CanUseAllTargets(buffer, version) abort
|
|
|
|
if !ale#Var(a:buffer, 'rust_cargo_use_check')
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !ale#Var(a:buffer, 'rust_cargo_check_all_targets')
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
return !empty(a:version)
|
|
|
|
\ && ale#semver#GreaterOrEqual(a:version, [0, 22, 0])
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! ale_linters#rust#cargo#GetCommand(buffer, version_output) abort
|
|
|
|
let l:version = s:GetVersion('cargo', a:version_output)
|
|
|
|
let l:command = s:CanUseCargoCheck(a:buffer, l:version)
|
2017-03-27 11:37:00 +00:00
|
|
|
\ ? 'check'
|
|
|
|
\ : 'build'
|
2017-11-05 18:37:44 +00:00
|
|
|
let l:all_targets = s:CanUseAllTargets(a:buffer, l:version)
|
|
|
|
\ ? ' --all-targets'
|
|
|
|
\ : ''
|
2017-03-27 11:37:00 +00:00
|
|
|
|
2017-11-05 18:37:44 +00:00
|
|
|
return 'cargo '
|
|
|
|
\ . l:command
|
|
|
|
\ . l:all_targets
|
|
|
|
\ . ' --frozen --message-format=json -q'
|
2017-03-27 11:37:00 +00:00
|
|
|
endfunction
|
|
|
|
|
2017-01-12 09:33:55 +00:00
|
|
|
call ale#linter#Define('rust', {
|
|
|
|
\ 'name': 'cargo',
|
2017-01-13 09:23:03 +00:00
|
|
|
\ 'executable_callback': 'ale_linters#rust#cargo#GetCargoExecutable',
|
2017-11-05 18:37:44 +00:00
|
|
|
\ 'command_chain': [
|
|
|
|
\ {'callback': 'ale_linters#rust#cargo#VersionCheck'},
|
|
|
|
\ {'callback': 'ale_linters#rust#cargo#GetCommand'},
|
|
|
|
\ ],
|
2017-02-07 21:17:03 +00:00
|
|
|
\ 'callback': 'ale#handlers#rust#HandleRustErrors',
|
2017-10-26 09:03:10 +00:00
|
|
|
\ 'output_stream': 'both',
|
2017-03-28 23:34:03 +00:00
|
|
|
\ 'lint_file': 1,
|
2017-01-12 09:33:55 +00:00
|
|
|
\})
|