2012-08-14 11:56:20 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: checkstyle.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Dmitry Geurkov <d.geurkov at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
" Tested with checkstyle 5.5
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_java_checkstyle_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_java_checkstyle_checker = 1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2012-08-14 11:56:20 -04:00
|
|
|
if !exists("g:syntastic_java_checkstyle_classpath")
|
|
|
|
let g:syntastic_java_checkstyle_classpath = 'checkstyle-5.5-all.jar'
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !exists("g:syntastic_java_checkstyle_conf_file")
|
|
|
|
let g:syntastic_java_checkstyle_conf_file = 'sun_checks.xml'
|
|
|
|
endif
|
2013-01-27 15:08:30 -05:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_java_checkstyle_GetLocList() dict
|
2013-05-06 07:24:15 -04:00
|
|
|
|
2013-08-01 11:35:08 -04:00
|
|
|
let fname = syntastic#util#shescape( expand('%:p:h') . '/' . expand('%:t') )
|
2013-05-06 07:24:15 -04:00
|
|
|
|
2013-05-13 09:37:16 -04:00
|
|
|
if has('win32unix')
|
2013-10-25 08:46:16 -04:00
|
|
|
let fname = substitute(system('cygpath -m ' . fname), '\m\%x00', '', 'g')
|
2013-05-13 09:37:16 -04:00
|
|
|
endif
|
2013-05-06 07:24:15 -04:00
|
|
|
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-01-28 14:44:44 -05:00
|
|
|
\ 'args_after': '-cp ' . g:syntastic_java_checkstyle_classpath .
|
2014-03-20 01:18:30 -04:00
|
|
|
\ ' com.puppycrawl.tools.checkstyle.Main -c ' .
|
|
|
|
\ syntastic#util#shexpand(g:syntastic_java_checkstyle_conf_file) .
|
|
|
|
\ ' -f xml',
|
2013-11-01 05:51:47 -04:00
|
|
|
\ 'fname': fname })
|
2012-08-14 11:56:20 -04:00
|
|
|
|
2014-01-13 05:50:08 -05:00
|
|
|
let errorformat = '%f:%t:%l:%c:%m'
|
2012-08-14 11:56:20 -04:00
|
|
|
|
2014-01-14 00:21:11 -05:00
|
|
|
return SyntasticMake({
|
2013-05-31 14:05:45 -04:00
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2014-02-26 03:31:38 -05:00
|
|
|
\ 'preprocess': 'checkstyle',
|
|
|
|
\ 'subtype': 'Style' })
|
2012-08-14 11:56:20 -04:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'java',
|
2013-10-28 11:30:25 -04:00
|
|
|
\ 'name': 'checkstyle',
|
|
|
|
\ 'exec': 'java'})
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|