summaryrefslogtreecommitdiff
path: root/ale_linters/vala/vala_lint.vim
blob: 7f8a566a4dea9b89ce593bc49efdedf0240bcf08 (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
" Author: Atsuya Takagi <asoftonight@gmail.com>
" Description: A linter for Vala using Vala-Lint.

call ale#Set('vala_vala_lint_config_filename', 'vala-lint.conf')
call ale#Set('vala_vala_lint_executable', 'io.elementary.vala-lint')

function! ale_linters#vala#vala_lint#GetExecutable(buffer) abort
    return ale#Var(a:buffer, 'vala_vala_lint_executable')
endfunction

function! ale_linters#vala#vala_lint#GetCommand(buffer) abort
    let l:command = ale_linters#vala#vala_lint#GetExecutable(a:buffer)

    let l:config_filename = ale#Var(a:buffer, 'vala_vala_lint_config_filename')
    let l:config_path = ale#path#FindNearestFile(a:buffer, l:config_filename)

    if !empty(l:config_path)
        let l:command .= ' -c ' . l:config_path
    endif

    return l:command . ' %s'
endfunction

function! ale_linters#vala#vala_lint#Handle(buffer, lines) abort
    let l:pattern = '^\s*\(\d\+\)\.\(\d\+\)\s\+\(error\|warn\)\s\+\(.\+\)\s\([A-Za-z0-9_\-]\+\)'
    let l:output = []

    for l:line in a:lines
        " remove color escape sequences since vala-lint doesn't support
        " output without colors
        let l:cleaned_line = substitute(l:line, '\e\[[0-9;]\+[mK]', '', 'g')
        let l:match = matchlist(l:cleaned_line, l:pattern)

        if len(l:match) == 0
            continue
        endif

        let l:refined_type = l:match[3] is# 'warn' ? 'W' : 'E'
        let l:cleaned_text = substitute(l:match[4], '^\s*\(.\{-}\)\s*$', '\1', '')

        let l:lnum = l:match[1] + 0
        let l:column = l:match[2] + 0
        let l:type = l:refined_type
        let l:text = l:cleaned_text
        let l:code = l:match[5]

        call add(l:output, {
        \   'lnum': l:lnum,
        \   'col': l:column,
        \   'text': l:text,
        \   'type': l:type,
        \   'code': l:code,
        \})
    endfor

    return l:output
endfunction

call ale#linter#Define('vala', {
\   'name': 'vala_lint',
\   'output_stream': 'stdout',
\   'executable': function('ale_linters#vala#vala_lint#GetExecutable'),
\   'command': function('ale_linters#vala#vala_lint#GetCommand'),
\   'callback': 'ale_linters#vala#vala_lint#Handle',
\   'lint_file': 1,
\})