2011-04-28 02:48:54 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: puppet.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Eivind Uggedal <eivind at uggedal 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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_puppet_puppetlint_IsAvailable()
|
|
|
|
return executable("puppet")
|
|
|
|
endfunction
|
2011-04-28 02:48:54 -04:00
|
|
|
|
2012-08-31 11:28:37 -04:00
|
|
|
if !exists("g:syntastic_puppet_validate_disable")
|
|
|
|
let g:syntastic_puppet_validate_disable = 0
|
|
|
|
endif
|
|
|
|
|
2012-03-20 00:56:51 -04:00
|
|
|
if !exists("g:syntastic_puppet_lint_disable")
|
|
|
|
let g:syntastic_puppet_lint_disable = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !executable("puppet-lint")
|
2012-05-01 09:42:58 -04:00
|
|
|
let g:syntastic_puppet_lint_disable = 1
|
2012-03-20 00:56:51 -04:00
|
|
|
endif
|
|
|
|
|
2012-08-30 13:12:07 -04:00
|
|
|
function! s:PuppetVersion()
|
|
|
|
if !exists("s:puppet_version")
|
|
|
|
let output = system("puppet --version 2>/dev/null")
|
|
|
|
let output = substitute(output, '\n$', '', '')
|
|
|
|
let s:puppet_version = split(output, '\.')
|
|
|
|
endif
|
|
|
|
return s:puppet_version
|
2012-02-08 18:29:50 -05:00
|
|
|
endfunction
|
|
|
|
|
2012-08-30 13:12:07 -04:00
|
|
|
function! s:PuppetLintVersion()
|
|
|
|
if !exists("s:puppet_lint_version")
|
|
|
|
let output = system("puppet-lint --version 2>/dev/null")
|
|
|
|
let output = substitute(output, '\n$', '', '')
|
|
|
|
let output = substitute(output, '^puppet-lint ', '', 'i')
|
|
|
|
let s:puppet_lint_version = split(output, '\.')
|
|
|
|
endif
|
|
|
|
return s:puppet_lint_version
|
2012-03-20 00:56:51 -04:00
|
|
|
endfunction
|
|
|
|
|
2012-08-29 07:49:10 -04:00
|
|
|
if !g:syntastic_puppet_lint_disable
|
2012-09-22 14:51:12 -04:00
|
|
|
if !SyntasticIsVersionAtLeast(s:PuppetLintVersion(), [0,1,10])
|
2012-08-29 07:49:10 -04:00
|
|
|
let g:syntastic_puppet_lint_disable = 1
|
|
|
|
endif
|
|
|
|
end
|
2012-03-20 00:56:51 -04:00
|
|
|
|
|
|
|
function! s:getPuppetLintErrors()
|
2012-06-17 03:33:49 -04:00
|
|
|
if !exists("g:syntastic_puppet_lint_arguments")
|
|
|
|
let g:syntastic_puppet_lint_arguments = ''
|
|
|
|
endif
|
|
|
|
|
2013-01-07 23:50:43 -05:00
|
|
|
let makeprg = 'puppet-lint --log-format "\%{KIND} [\%{check}] \%{message} at \%{fullpath}:\%{linenumber}" '.g:syntastic_puppet_lint_arguments.' '.shellescape(expand('%'))
|
2012-03-20 00:56:51 -04:00
|
|
|
let errorformat = '%t%*[a-zA-Z] %m at %f:%l'
|
|
|
|
return SyntasticMake({ 'makeprg': makeprg, 'errorformat': errorformat, 'subtype': 'Style' })
|
|
|
|
endfunction
|
2012-02-08 08:40:02 -05:00
|
|
|
|
2012-08-30 12:59:51 -04:00
|
|
|
function! s:getPuppetMakeprg()
|
2012-02-08 08:40:02 -05:00
|
|
|
"If puppet is >= version 2.7 then use the new executable
|
2012-09-22 14:51:12 -04:00
|
|
|
if SyntasticIsVersionAtLeast(s:PuppetVersion(), [2,7,0])
|
2012-02-08 08:41:37 -05:00
|
|
|
let makeprg = 'puppet parser validate ' .
|
|
|
|
\ shellescape(expand('%')) .
|
2012-03-20 00:56:51 -04:00
|
|
|
\ ' --color=false'
|
2011-08-10 01:19:47 -04:00
|
|
|
else
|
2012-10-04 00:42:11 -04:00
|
|
|
let makeprg = 'puppet --color=false --parseonly '.shellescape(expand('%'))
|
2011-08-10 01:19:47 -04:00
|
|
|
endif
|
2012-03-20 03:53:43 -04:00
|
|
|
return makeprg
|
|
|
|
endfunction
|
|
|
|
|
2012-10-12 05:54:28 -04:00
|
|
|
function! s:getPuppetEfm()
|
|
|
|
"some versions of puppet (e.g. 2.7.10) output the message below if there
|
|
|
|
"are any syntax errors
|
|
|
|
let errorformat = '%-Gerr: Try ''puppet help parser validate'' for usage,'
|
|
|
|
let errorformat .= 'err: Could not parse for environment %*[a-z]: %m at %f:%l'
|
|
|
|
|
|
|
|
"Puppet 3.0.0 changes this from "err:" to "Error:"
|
|
|
|
"reset errorformat in that case
|
|
|
|
if SyntasticIsVersionAtLeast(s:PuppetVersion(), [3,0,0])
|
|
|
|
let errorformat = '%-GError: Try ''puppet help parser validate'' for usage,'
|
|
|
|
let errorformat .= 'Error: Could not parse for environment %*[a-z]: %m at %f:%l'
|
|
|
|
endif
|
|
|
|
|
|
|
|
return errorformat
|
|
|
|
endfunction
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_puppet_puppetlint_GetLocList()
|
2012-08-31 11:28:37 -04:00
|
|
|
let errors = []
|
2012-03-20 03:53:43 -04:00
|
|
|
|
2012-08-31 11:28:37 -04:00
|
|
|
if !g:syntastic_puppet_validate_disable
|
2012-10-12 05:54:28 -04:00
|
|
|
let errors = errors + SyntasticMake({ 'makeprg': s:getPuppetMakeprg(), 'errorformat': s:getPuppetEfm() })
|
2012-08-31 11:28:37 -04:00
|
|
|
endif
|
2012-08-30 12:59:51 -04:00
|
|
|
|
2012-03-20 00:56:51 -04:00
|
|
|
if !g:syntastic_puppet_lint_disable
|
|
|
|
let errors = errors + s:getPuppetLintErrors()
|
|
|
|
endif
|
2012-03-20 03:53:43 -04:00
|
|
|
|
2012-03-20 00:56:51 -04:00
|
|
|
return errors
|
2011-04-28 02:48:54 -04:00
|
|
|
endfunction
|
2012-03-20 00:56:51 -04:00
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'puppet',
|
|
|
|
\ 'name': 'puppetlint'})
|