2018-03-31 10:55:20 -04:00
|
|
|
" Author: Daniel Schemala <istjanichtzufassen@gmail.com>,
|
|
|
|
" Ivan Petkov <ivanppetkov@gmail.com>
|
|
|
|
" Description: rustc invoked by cargo for rust files
|
|
|
|
|
|
|
|
call ale#Set('rust_cargo_use_check', 1)
|
|
|
|
call ale#Set('rust_cargo_check_all_targets', 0)
|
2018-06-14 06:31:12 -04:00
|
|
|
call ale#Set('rust_cargo_check_examples', 0)
|
|
|
|
call ale#Set('rust_cargo_check_tests', 0)
|
2018-07-04 06:53:25 -04:00
|
|
|
call ale#Set('rust_cargo_avoid_whole_workspace', 1)
|
2018-03-31 10:55:20 -04:00
|
|
|
call ale#Set('rust_cargo_default_feature_behavior', 'default')
|
|
|
|
call ale#Set('rust_cargo_include_features', '')
|
2018-11-01 06:03:42 -04:00
|
|
|
call ale#Set('rust_cargo_use_clippy', 0)
|
|
|
|
call ale#Set('rust_cargo_clippy_options', '')
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
function! ale_linters#rust#cargo#GetCargoExecutable(bufnr) abort
|
|
|
|
if ale#path#FindNearestFile(a:bufnr, 'Cargo.toml') isnot# ''
|
|
|
|
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
|
|
|
|
|
2019-05-16 15:48:47 -04:00
|
|
|
function! ale_linters#rust#cargo#GetCommand(buffer, version) abort
|
2018-03-31 10:55:20 -04:00
|
|
|
let l:use_check = ale#Var(a:buffer, 'rust_cargo_use_check')
|
2019-05-16 15:48:47 -04:00
|
|
|
\ && ale#semver#GTE(a:version, [0, 17, 0])
|
2018-03-31 10:55:20 -04:00
|
|
|
let l:use_all_targets = l:use_check
|
|
|
|
\ && ale#Var(a:buffer, 'rust_cargo_check_all_targets')
|
2019-05-16 15:48:47 -04:00
|
|
|
\ && ale#semver#GTE(a:version, [0, 22, 0])
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:use_examples = l:use_check
|
|
|
|
\ && ale#Var(a:buffer, 'rust_cargo_check_examples')
|
2019-05-16 15:48:47 -04:00
|
|
|
\ && ale#semver#GTE(a:version, [0, 22, 0])
|
2018-06-14 06:31:12 -04:00
|
|
|
let l:use_tests = l:use_check
|
|
|
|
\ && ale#Var(a:buffer, 'rust_cargo_check_tests')
|
2019-05-16 15:48:47 -04:00
|
|
|
\ && ale#semver#GTE(a:version, [0, 22, 0])
|
2018-03-31 10:55:20 -04:00
|
|
|
|
|
|
|
let l:include_features = ale#Var(a:buffer, 'rust_cargo_include_features')
|
2018-09-24 20:40:17 -04:00
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
if !empty(l:include_features)
|
|
|
|
let l:include_features = ' --features ' . ale#Escape(l:include_features)
|
|
|
|
endif
|
|
|
|
|
2018-07-04 06:53:25 -04:00
|
|
|
let l:avoid_whole_workspace = ale#Var(a:buffer, 'rust_cargo_avoid_whole_workspace')
|
|
|
|
let l:nearest_cargo_prefix = ''
|
|
|
|
|
|
|
|
if l:avoid_whole_workspace
|
|
|
|
let l:nearest_cargo = ale#path#FindNearestFile(a:buffer, 'Cargo.toml')
|
|
|
|
let l:nearest_cargo_dir = fnamemodify(l:nearest_cargo, ':h')
|
|
|
|
|
|
|
|
if l:nearest_cargo_dir isnot# '.'
|
|
|
|
let l:nearest_cargo_prefix = 'cd '. ale#Escape(l:nearest_cargo_dir) .' && '
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
let l:default_feature_behavior = ale#Var(a:buffer, 'rust_cargo_default_feature_behavior')
|
2018-09-24 20:40:17 -04:00
|
|
|
|
2018-03-31 10:55:20 -04:00
|
|
|
if l:default_feature_behavior is# 'all'
|
|
|
|
let l:include_features = ''
|
|
|
|
let l:default_feature = ' --all-features'
|
|
|
|
elseif l:default_feature_behavior is# 'none'
|
|
|
|
let l:default_feature = ' --no-default-features'
|
|
|
|
else
|
|
|
|
let l:default_feature = ''
|
|
|
|
endif
|
|
|
|
|
2018-11-01 06:03:42 -04:00
|
|
|
let l:subcommand = l:use_check ? 'check' : 'build'
|
|
|
|
let l:clippy_options = ''
|
|
|
|
|
|
|
|
if ale#Var(a:buffer, 'rust_cargo_use_clippy')
|
|
|
|
let l:subcommand = 'clippy'
|
|
|
|
let l:clippy_options = ' ' . ale#Var(a:buffer, 'rust_cargo_clippy_options')
|
|
|
|
endif
|
|
|
|
|
2018-07-04 06:53:25 -04:00
|
|
|
return l:nearest_cargo_prefix . 'cargo '
|
2018-11-01 06:03:42 -04:00
|
|
|
\ . l:subcommand
|
2018-03-31 10:55:20 -04:00
|
|
|
\ . (l:use_all_targets ? ' --all-targets' : '')
|
2018-06-14 06:31:12 -04:00
|
|
|
\ . (l:use_examples ? ' --examples' : '')
|
|
|
|
\ . (l:use_tests ? ' --tests' : '')
|
2018-03-31 10:55:20 -04:00
|
|
|
\ . ' --frozen --message-format=json -q'
|
|
|
|
\ . l:default_feature
|
|
|
|
\ . l:include_features
|
2018-11-01 06:03:42 -04:00
|
|
|
\ . l:clippy_options
|
2018-03-31 10:55:20 -04:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
call ale#linter#Define('rust', {
|
|
|
|
\ 'name': 'cargo',
|
2019-03-08 06:04:56 -05:00
|
|
|
\ 'executable': function('ale_linters#rust#cargo#GetCargoExecutable'),
|
2019-05-16 15:48:47 -04:00
|
|
|
\ 'command': {buffer -> ale#semver#RunWithVersionCheck(
|
|
|
|
\ buffer,
|
|
|
|
\ ale_linters#rust#cargo#GetCargoExecutable(buffer),
|
|
|
|
\ '%e --version',
|
|
|
|
\ function('ale_linters#rust#cargo#GetCommand'),
|
|
|
|
\ )},
|
2018-03-31 10:55:20 -04:00
|
|
|
\ 'callback': 'ale#handlers#rust#HandleRustErrors',
|
|
|
|
\ 'output_stream': 'both',
|
|
|
|
\ 'lint_file': 1,
|
|
|
|
\})
|