summaryrefslogtreecommitdiff
path: root/ale_linters/cs/mcsc.vim
blob: 38a0855672478da3594e5893f7e3293e62e620a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
" general mcs options which are likely to stay constant across
" source trees like -pkg:dotnet
let g:ale_cs_mcsc_options = get(g:, 'ale_cs_mcsc_options', '')

" path string pointing the linter to the base path of the
" source tree to check
let g:ale_cs_mcsc_source = get(g:, 'ale_cs_mcsc_source','.')

" list of search paths for additional assemblies to consider
let g:ale_cs_mcsc_assembly_path = get(g:, 'ale_cs_mcsc_assembly_path',[])

" list of assemblies to consider
let g:ale_cs_mcsc_assemblies = get(g:, 'ale_cs_mcsc_assemblies',[])
function! ale_linters#cs#mcsc#GetCommand(buffer) abort

    " if list of assembly search paths is not empty convert it to
    " appropriate -lib: parameter of mcs
    let l:path = ale#Var(a:buffer, 'cs_mcsc_assembly_path')

    if !empty(l:path)
         let l:path = '-lib:"' . join(l:path, '","') .'"'
    else
        let l:path =''
    endif

    " if list of assemblies to link is not empty convert it to the
    " appropriate -r: parameter of mcs
    let l:assemblies = ale#Var(a:buffer, 'cs_mcsc_assemblies')

    if !empty(l:assemblies)
        let l:assemblies = '-r:"' . join(l:assemblies, '","') . '"'
    else
        let l:assemblies =''
    endif

    " register temporary module target file with ale
    let l:out = tempname()
    call ale#engine#ManageFile(a:buffer, l:out)

    " assemble linter command string to be executed by ale
    " implicitly set -unsafe mcs flag set compilation
    " target to module (-t:module), direct mcs output to
    " temporary file (-out)
    "
    return 'cd "' . ale#Var(a:buffer, 'cs_mcsc_source') . '";'
    \    . 'mcs -unsafe'
    \    . ' ' . ale#Var(a:buffer, 'cs_mcsc_options')
    \    . ' ' . l:path
    \    . ' ' . l:assemblies
    \    . ' -out:' . l:out
    \    . ' -t:module'
    \    . ' -recurse:"*.cs"'
endfunction

function! ale_linters#cs#mcsc#Handle(buffer, lines) abort
    " Look for lines like the following.
    "
    " Tests.cs(12,29): error CSXXXX: ; expected
    "
    " NOTE: pattern also captures file name as linter compiles all
    " files within the source tree rooted at the specified source
    " path and not just the file loaded in the buffer
    let l:pattern = '^\(.\+\.cs\)(\(\d\+\),\(\d\+\)): \(.\+\): \(.\+\)'
    let l:output = []
    let l:source = ale#Var(a:buffer, 'cs_mcsc_source')

    for l:match in ale#util#GetMatches(a:lines, l:pattern)
        call add(l:output, {
        \   'filename': fnamemodify(l:source . '/' . l:match[1], ':p'),
        \   'lnum': l:match[2] + 0,
        \   'col': l:match[3] + 0,
        \   'text': l:match[4] . ': ' . l:match[5],
        \   'type': l:match[4] =~# '^error' ? 'E' : 'W',
        \})
    endfor

    return l:output
endfunction

call ale#linter#Define('cs',{
\   'name': 'mcsc',
\   'output_stream': 'stderr',
\   'executable': 'mcs',
\   'command_callback': 'ale_linters#cs#mcsc#GetCommand',
\   'callback': 'ale_linters#cs#mcsc#Handle',
\   'lint_file': 1
\})