summaryrefslogtreecommitdiff
path: root/ale_linters/bib/bibclean.vim
blob: 6750f22f2f5605d6f6725e83df518d77ba7a801e (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
" Author: Horacio Sanson - https://github.com/hsanson
" Description: Support for bibclean linter for BibTeX files.

call ale#Set('bib_bibclean_executable', 'bibclean')

function! ale_linters#bib#bibclean#GetCommand(buffer) abort
    let l:executable = ale#Var(a:buffer, 'bib_bibclean_executable')

    return ale#Escape(l:executable) . ' -file-position '
endfunction

function! ale_linters#bib#bibclean#get_type(str) abort
    if a:str is# '??'
       return 'E'
    else
       return 'W'
    endif
endfunction

function! ale_linters#bib#bibclean#match_msg(line) abort
    return matchlist(a:line, '^\(.*\) "stdin", line \(.*\): \(.*\)$')
endfunction

function! ale_linters#bib#bibclean#match_entry(line) abort
    return matchlist(a:line, 'Entry   input byte=.* line=\(.*\) column=\(.*\) output .*$')
endfunction

function! ale_linters#bib#bibclean#match_value(line) abort
    return matchlist(a:line, 'Value   input byte=.* line=\(.*\) column=\(.*\) output .*$')
endfunction

function! ale_linters#bib#bibclean#Handle(buffer, lines) abort
    let l:output = []

    let l:type = 'E'
    let l:msg  = ''

    for l:line in a:lines
      if empty(l:msg)
          let l:mlist = ale_linters#bib#bibclean#match_msg(l:line)

          if !empty(l:mlist)
              let l:msg = l:mlist[3]
              let l:type = ale_linters#bib#bibclean#get_type(l:mlist[1])
          endif
      else
          if l:type is# 'E'
               let l:mlist = ale_linters#bib#bibclean#match_entry(l:line)
          else
               let l:mlist = ale_linters#bib#bibclean#match_value(l:line)
          endif

          if !empty(l:mlist)
            call add(l:output, {
              \ 'lnum': l:mlist[1],
              \ 'col': l:mlist[2],
              \ 'text': l:msg,
              \ 'type': l:type
              \})
             let l:msg = ''
          endif
      endif
    endfor

    return l:output
endfunction

call ale#linter#Define('bib', {
\   'name': 'bibclean',
\   'executable_callback': ale#VarFunc('bib_bibclean_executable'),
\   'command_callback': 'ale_linters#bib#bibclean#GetCommand',
\   'output_stream': 'stderr',
\   'callback': 'ale_linters#bib#bibclean#Handle',
\})