2016-11-08 06:34:03 -07:00
|
|
|
let s:shell_error = 0
|
|
|
|
|
2016-09-04 20:36:49 -07:00
|
|
|
function! s:is_bad_response(s) abort
|
2016-11-15 00:27:00 -07:00
|
|
|
return a:s =~? '\v(^unable)|(^error)|(^outdated)'
|
2016-09-04 20:36:49 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:trim(s) abort
|
|
|
|
return substitute(a:s, '^\_s*\|\_s*$', '', 'g')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Simple version comparison.
|
|
|
|
function! s:version_cmp(a, b) abort
|
2016-11-15 00:27:00 -07:00
|
|
|
let a = split(a:a, '\.', 0)
|
|
|
|
let b = split(a:b, '\.', 0)
|
2016-09-04 20:36:49 -07:00
|
|
|
|
|
|
|
for i in range(len(a))
|
2016-11-15 00:27:00 -07:00
|
|
|
if str2nr(a[i]) > str2nr(b[i])
|
2016-09-04 20:36:49 -07:00
|
|
|
return 1
|
2016-11-15 00:27:00 -07:00
|
|
|
elseif str2nr(a[i]) < str2nr(b[i])
|
2016-09-04 20:36:49 -07:00
|
|
|
return -1
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
return 0
|
|
|
|
endfunction
|
|
|
|
|
2016-11-08 06:34:03 -07:00
|
|
|
" Handler for s:system() function.
|
2016-12-13 06:48:42 -07:00
|
|
|
function! s:system_handler(jobid, data, event) dict abort
|
2016-11-12 03:59:15 -07:00
|
|
|
if a:event == 'stdout' || a:event == 'stderr'
|
|
|
|
let self.output .= join(a:data, '')
|
2016-11-08 06:34:03 -07:00
|
|
|
elseif a:event == 'exit'
|
|
|
|
let s:shell_error = a:data
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Run a system command and timeout after 30 seconds.
|
|
|
|
function! s:system(cmd, ...) abort
|
|
|
|
let stdin = a:0 ? a:1 : ''
|
2016-12-07 21:04:23 -07:00
|
|
|
let ignore_stderr = a:0 > 1 ? a:2 : 0
|
2017-01-08 08:23:13 -07:00
|
|
|
let ignore_error = a:0 > 2 ? a:3 : 0
|
2016-11-08 06:34:03 -07:00
|
|
|
let opts = {
|
2016-11-12 03:59:15 -07:00
|
|
|
\ 'output': '',
|
2016-11-08 06:34:03 -07:00
|
|
|
\ 'on_stdout': function('s:system_handler'),
|
|
|
|
\ 'on_exit': function('s:system_handler'),
|
|
|
|
\ }
|
2016-12-07 21:04:23 -07:00
|
|
|
if !ignore_stderr
|
|
|
|
let opts.on_stderr = function('s:system_handler')
|
|
|
|
endif
|
2016-11-08 06:34:03 -07:00
|
|
|
let jobid = jobstart(a:cmd, opts)
|
|
|
|
|
|
|
|
if jobid < 1
|
|
|
|
call health#report_error(printf('Command error %d: %s', jobid,
|
|
|
|
\ type(a:cmd) == type([]) ? join(a:cmd) : a:cmd)))
|
|
|
|
let s:shell_error = 1
|
2016-11-12 03:59:15 -07:00
|
|
|
return opts.output
|
2016-11-08 06:34:03 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(stdin)
|
|
|
|
call jobsend(jobid, stdin)
|
|
|
|
endif
|
|
|
|
|
|
|
|
let res = jobwait([jobid], 30000)
|
|
|
|
if res[0] == -1
|
|
|
|
call health#report_error(printf('Command timed out: %s',
|
|
|
|
\ type(a:cmd) == type([]) ? join(a:cmd) : a:cmd))
|
|
|
|
call jobstop(jobid)
|
2017-01-08 08:23:13 -07:00
|
|
|
elseif s:shell_error != 0 && !ignore_error
|
2016-11-08 06:34:03 -07:00
|
|
|
call health#report_error(printf("Command error (%d) %s: %s", jobid,
|
|
|
|
\ type(a:cmd) == type([]) ? join(a:cmd) : a:cmd,
|
2016-11-12 03:59:15 -07:00
|
|
|
\ opts.output))
|
2016-11-08 06:34:03 -07:00
|
|
|
endif
|
|
|
|
|
2016-11-12 03:59:15 -07:00
|
|
|
return opts.output
|
2016-11-08 06:34:03 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:systemlist(cmd, ...) abort
|
|
|
|
let stdout = split(s:system(a:cmd, a:0 ? a:1 : ''), "\n")
|
|
|
|
if a:0 > 1 && !empty(a:2)
|
|
|
|
return filter(stdout, '!empty(v:val)')
|
|
|
|
endif
|
|
|
|
return stdout
|
|
|
|
endfunction
|
|
|
|
|
2016-09-04 20:36:49 -07:00
|
|
|
" Fetch the contents of a URL.
|
|
|
|
function! s:download(url) abort
|
|
|
|
if executable('curl')
|
2016-11-08 06:34:03 -07:00
|
|
|
let rv = s:system(['curl', '-sL', a:url])
|
|
|
|
return s:shell_error ? 'curl error: '.s:shell_error : rv
|
2016-10-13 08:53:38 -07:00
|
|
|
elseif executable('python')
|
2016-09-04 20:36:49 -07:00
|
|
|
let script = "
|
|
|
|
\try:\n
|
|
|
|
\ from urllib.request import urlopen\n
|
|
|
|
\except ImportError:\n
|
|
|
|
\ from urllib2 import urlopen\n
|
|
|
|
\\n
|
2016-10-13 08:53:38 -07:00
|
|
|
\response = urlopen('".a:url."')\n
|
|
|
|
\print(response.read().decode('utf8'))\n
|
2016-09-04 20:36:49 -07:00
|
|
|
\"
|
2016-11-08 06:34:03 -07:00
|
|
|
let rv = s:system(['python', '-c', script])
|
|
|
|
return empty(rv) && s:shell_error
|
|
|
|
\ ? 'python urllib.request error: '.s:shell_error
|
2016-10-13 08:53:38 -07:00
|
|
|
\ : rv
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
2016-10-13 08:53:38 -07:00
|
|
|
return 'missing `curl` and `python`, cannot make pypi request'
|
2016-09-04 20:36:49 -07:00
|
|
|
endfunction
|
|
|
|
|
2016-10-28 18:39:29 -07:00
|
|
|
" Check for clipboard tools.
|
|
|
|
function! s:check_clipboard() abort
|
|
|
|
call health#report_start('Clipboard')
|
|
|
|
|
|
|
|
let clipboard_tool = provider#clipboard#Executable()
|
|
|
|
if empty(clipboard_tool)
|
|
|
|
call health#report_warn(
|
2017-01-08 13:26:00 -07:00
|
|
|
\ "No clipboard tool found. Clipboard registers will not work.",
|
2016-12-05 05:01:47 -07:00
|
|
|
\ ['See ":help clipboard".'])
|
2016-10-28 18:39:29 -07:00
|
|
|
else
|
|
|
|
call health#report_ok('Clipboard tool found: '. clipboard_tool)
|
|
|
|
endif
|
|
|
|
endfunction
|
2016-09-04 20:36:49 -07:00
|
|
|
|
2016-10-13 08:53:38 -07:00
|
|
|
" Get the latest Neovim Python client version from PyPI.
|
2016-09-04 20:36:49 -07:00
|
|
|
function! s:latest_pypi_version() abort
|
2016-10-13 08:53:38 -07:00
|
|
|
let pypi_version = 'unable to get pypi response'
|
|
|
|
let pypi_response = s:download('https://pypi.python.org/pypi/neovim/json')
|
|
|
|
if !empty(pypi_response)
|
|
|
|
try
|
|
|
|
let pypi_data = json_decode(pypi_response)
|
|
|
|
catch /E474/
|
|
|
|
return 'error: '.pypi_response
|
|
|
|
endtry
|
|
|
|
let pypi_version = get(get(pypi_data, 'info', {}), 'version', 'unable to parse')
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
2016-10-13 08:53:38 -07:00
|
|
|
return pypi_version
|
2016-09-04 20:36:49 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Get version information using the specified interpreter. The interpreter is
|
|
|
|
" used directly in case breaking changes were introduced since the last time
|
|
|
|
" Neovim's Python client was updated.
|
|
|
|
"
|
|
|
|
" Returns: [
|
|
|
|
" {python executable version},
|
|
|
|
" {current nvim version},
|
|
|
|
" {current pypi nvim status},
|
|
|
|
" {installed version status}
|
|
|
|
" ]
|
|
|
|
function! s:version_info(python) abort
|
|
|
|
let pypi_version = s:latest_pypi_version()
|
2016-11-08 06:34:03 -07:00
|
|
|
let python_version = s:trim(s:system([
|
2016-09-04 20:36:49 -07:00
|
|
|
\ a:python,
|
|
|
|
\ '-c',
|
|
|
|
\ 'import sys; print(".".join(str(x) for x in sys.version_info[:3]))',
|
|
|
|
\ ]))
|
|
|
|
|
|
|
|
if empty(python_version)
|
|
|
|
let python_version = 'unable to parse python response'
|
|
|
|
endif
|
|
|
|
|
2016-11-08 06:34:03 -07:00
|
|
|
let nvim_path = s:trim(s:system([
|
2016-10-22 08:35:01 -07:00
|
|
|
\ a:python, '-c', 'import neovim; print(neovim.__file__)']))
|
|
|
|
if s:shell_error || empty(nvim_path)
|
|
|
|
return [python_version, 'unable to load neovim Python module', pypi_version,
|
|
|
|
\ nvim_path]
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
|
2016-10-08 07:34:54 -07:00
|
|
|
" Assuming that multiple versions of a package are installed, sort them
|
|
|
|
" numerically in descending order.
|
|
|
|
function! s:compare(metapath1, metapath2)
|
|
|
|
let a = matchstr(fnamemodify(a:metapath1, ':p:h:t'), '[0-9.]\+')
|
|
|
|
let b = matchstr(fnamemodify(a:metapath2, ':p:h:t'), '[0-9.]\+')
|
|
|
|
return a == b ? 0 : a > b ? 1 : -1
|
|
|
|
endfunction
|
|
|
|
|
2017-01-08 08:23:13 -07:00
|
|
|
" Try to get neovim.VERSION (added in 0.1.11dev).
|
|
|
|
let nvim_version = s:system(['python', '-c',
|
|
|
|
\ 'from neovim import VERSION as v; '.
|
|
|
|
\ 'print("{}.{}.{}{}".format(v.major, v.minor, v.patch, v.prerelease))'],
|
|
|
|
\ '', 1, 1)
|
|
|
|
if empty(nvim_version)
|
|
|
|
let nvim_version = 'unable to find neovim Python module version'
|
|
|
|
let base = fnamemodify(nvim_path, ':h')
|
|
|
|
let metas = glob(base.'-*/METADATA', 1, 1)
|
|
|
|
\ + glob(base.'-*/PKG-INFO', 1, 1)
|
|
|
|
\ + glob(base.'.egg-info/PKG-INFO', 1, 1)
|
|
|
|
let metas = sort(metas, 's:compare')
|
|
|
|
|
|
|
|
if !empty(metas)
|
|
|
|
for meta_line in readfile(metas[0])
|
|
|
|
if meta_line =~# '^Version:'
|
|
|
|
let nvim_version = matchstr(meta_line, '^Version: \zs\S\+')
|
|
|
|
break
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
endif
|
2016-10-08 07:34:54 -07:00
|
|
|
endif
|
2016-09-04 20:36:49 -07:00
|
|
|
|
2017-01-08 05:32:55 -07:00
|
|
|
let nvim_path_base = fnamemodify(nvim_path, ':~:h')
|
|
|
|
let version_status = 'unknown; '.nvim_path_base
|
2016-09-04 20:36:49 -07:00
|
|
|
if !s:is_bad_response(nvim_version) && !s:is_bad_response(pypi_version)
|
|
|
|
if s:version_cmp(nvim_version, pypi_version) == -1
|
2017-01-08 05:32:55 -07:00
|
|
|
let version_status = 'outdated; from '.nvim_path_base
|
2016-09-04 20:36:49 -07:00
|
|
|
else
|
|
|
|
let version_status = 'up to date'
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return [python_version, nvim_version, pypi_version, version_status]
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
" Check the Python interpreter's usability.
|
|
|
|
function! s:check_bin(bin) abort
|
|
|
|
if !filereadable(a:bin)
|
|
|
|
call health#report_error(printf('"%s" was not found.', a:bin))
|
|
|
|
return 0
|
|
|
|
elseif executable(a:bin) != 1
|
|
|
|
call health#report_error(printf('"%s" is not executable.', a:bin))
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
return 1
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:check_python(version) abort
|
|
|
|
call health#report_start('Python ' . a:version . ' provider')
|
|
|
|
|
2016-10-06 22:03:04 -07:00
|
|
|
let python_bin_name = 'python'.(a:version == 2 ? '' : '3')
|
2016-09-04 20:36:49 -07:00
|
|
|
let pyenv = resolve(exepath('pyenv'))
|
|
|
|
let pyenv_root = exists('$PYENV_ROOT') ? resolve($PYENV_ROOT) : 'n'
|
|
|
|
let venv = exists('$VIRTUAL_ENV') ? resolve($VIRTUAL_ENV) : ''
|
|
|
|
let host_prog_var = python_bin_name.'_host_prog'
|
|
|
|
let python_bin = ''
|
|
|
|
let python_multiple = []
|
|
|
|
|
|
|
|
if exists('g:'.host_prog_var)
|
|
|
|
call health#report_info(printf('Using: g:%s = "%s"', host_prog_var, get(g:, host_prog_var)))
|
|
|
|
endif
|
|
|
|
|
|
|
|
let [python_bin_name, pythonx_errs] = provider#pythonx#Detect(a:version)
|
|
|
|
if empty(python_bin_name)
|
|
|
|
call health#report_warn('No Python interpreter was found with the neovim '
|
|
|
|
\ . 'module. Using the first available for diagnostics.')
|
|
|
|
if !empty(pythonx_errs)
|
|
|
|
call health#report_warn(pythonx_errs)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(python_bin_name)
|
|
|
|
if exists('g:'.host_prog_var)
|
|
|
|
let python_bin = exepath(python_bin_name)
|
|
|
|
endif
|
|
|
|
let python_bin_name = fnamemodify(python_bin_name, ':t')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(pythonx_errs)
|
|
|
|
call health#report_error('Python provider error', pythonx_errs)
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(python_bin_name) && empty(python_bin) && empty(pythonx_errs)
|
|
|
|
if !exists('g:'.host_prog_var)
|
|
|
|
call health#report_info(printf('`g:%s` is not set. Searching for '
|
|
|
|
\ . '%s in the environment.', host_prog_var, python_bin_name))
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(pyenv)
|
|
|
|
if empty(pyenv_root)
|
|
|
|
call health#report_warn(
|
|
|
|
\ 'pyenv was found, but $PYENV_ROOT is not set.',
|
|
|
|
\ ['Did you follow the final install instructions?']
|
|
|
|
\ )
|
|
|
|
else
|
|
|
|
call health#report_ok(printf('pyenv found: "%s"', pyenv))
|
|
|
|
endif
|
|
|
|
|
2016-12-07 21:04:23 -07:00
|
|
|
let python_bin = s:trim(s:system([pyenv, 'which', python_bin_name], '', 1))
|
2016-09-04 20:36:49 -07:00
|
|
|
|
|
|
|
if empty(python_bin)
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_warn(printf('pyenv could not find %s.', python_bin_name))
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if empty(python_bin)
|
|
|
|
let python_bin = exepath(python_bin_name)
|
|
|
|
|
|
|
|
if exists('$PATH')
|
|
|
|
for path in split($PATH, ':')
|
|
|
|
let path_bin = path.'/'.python_bin_name
|
|
|
|
if path_bin != python_bin && index(python_multiple, path_bin) == -1
|
|
|
|
\ && executable(path_bin)
|
|
|
|
call add(python_multiple, path_bin)
|
|
|
|
endif
|
|
|
|
endfor
|
|
|
|
|
|
|
|
if len(python_multiple)
|
|
|
|
" This is worth noting since the user may install something
|
|
|
|
" that changes $PATH, like homebrew.
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_info(printf('Multiple %s executables found. '
|
|
|
|
\ . 'Set `g:%s` to avoid surprises.', python_bin_name, host_prog_var))
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
if python_bin =~# '\<shims\>'
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_warn(printf('`%s` appears to be a pyenv shim.', python_bin), [
|
|
|
|
\ 'The `pyenv` executable is not in $PATH,',
|
2016-09-04 20:36:49 -07:00
|
|
|
\ 'Your pyenv installation is broken. You should set '
|
2017-01-08 13:26:00 -07:00
|
|
|
\ . '`g:'.host_prog_var.'` to avoid surprises.',
|
2016-09-04 20:36:49 -07:00
|
|
|
\ ])
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(python_bin)
|
|
|
|
if empty(venv) && !empty(pyenv) && !exists('g:'.host_prog_var)
|
|
|
|
\ && !empty(pyenv_root) && resolve(python_bin) !~# '^'.pyenv_root.'/'
|
|
|
|
call health#report_warn('pyenv is not set up optimally.', [
|
2017-01-08 13:26:00 -07:00
|
|
|
\ printf('Create a virtualenv specifically '
|
|
|
|
\ . 'for Neovim using pyenv, and set `g:%s`. This will avoid '
|
|
|
|
\ . 'the need to install Neovim''s Python module in each '
|
2016-09-04 20:36:49 -07:00
|
|
|
\ . 'version/virtualenv.', host_prog_var)
|
|
|
|
\ ])
|
|
|
|
elseif !empty(venv) && exists('g:'.host_prog_var)
|
|
|
|
if !empty(pyenv_root)
|
|
|
|
let venv_root = pyenv_root
|
|
|
|
else
|
|
|
|
let venv_root = fnamemodify(venv, ':h')
|
|
|
|
endif
|
|
|
|
|
|
|
|
if resolve(python_bin) !~# '^'.venv_root.'/'
|
|
|
|
call health#report_warn('Your virtualenv is not set up optimally.', [
|
2017-01-08 13:26:00 -07:00
|
|
|
\ printf('Create a virtualenv specifically '
|
|
|
|
\ . 'for Neovim and use `g:%s`. This will avoid '
|
|
|
|
\ . 'the need to install Neovim''s Python module in each '
|
2016-09-04 20:36:49 -07:00
|
|
|
\ . 'virtualenv.', host_prog_var)
|
|
|
|
\ ])
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if empty(python_bin) && !empty(python_bin_name)
|
|
|
|
" An error message should have already printed.
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_error(printf('`%s` was not found.', python_bin_name))
|
2016-09-04 20:36:49 -07:00
|
|
|
elseif !empty(python_bin) && !s:check_bin(python_bin)
|
|
|
|
let python_bin = ''
|
|
|
|
endif
|
|
|
|
|
|
|
|
" Check if $VIRTUAL_ENV is active
|
|
|
|
let virtualenv_inactive = 0
|
|
|
|
|
|
|
|
if exists('$VIRTUAL_ENV')
|
|
|
|
if !empty(pyenv)
|
2016-11-08 06:34:03 -07:00
|
|
|
let pyenv_prefix = resolve(s:trim(s:system([pyenv, 'prefix'])))
|
2016-09-04 20:36:49 -07:00
|
|
|
if $VIRTUAL_ENV != pyenv_prefix
|
|
|
|
let virtualenv_inactive = 1
|
|
|
|
endif
|
|
|
|
elseif !empty(python_bin_name) && exepath(python_bin_name) !~# '^'.$VIRTUAL_ENV.'/'
|
|
|
|
let virtualenv_inactive = 1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if virtualenv_inactive
|
|
|
|
call health#report_warn(
|
2017-01-08 13:26:00 -07:00
|
|
|
\ '$VIRTUAL_ENV exists but appears to be inactive. '
|
|
|
|
\ . 'This could lead to unexpected results.',
|
|
|
|
\ [ 'If you are using Zsh, see: http://vi.stackexchange.com/a/7654/5229' ])
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
" Diagnostic output
|
|
|
|
call health#report_info('Executable: ' . (empty(python_bin) ? 'Not found' : python_bin))
|
|
|
|
if len(python_multiple)
|
|
|
|
for path_bin in python_multiple
|
|
|
|
call health#report_info('Other python executable: ' . path_bin)
|
|
|
|
endfor
|
|
|
|
endif
|
|
|
|
|
|
|
|
if !empty(python_bin)
|
|
|
|
let [pyversion, current, latest, status] = s:version_info(python_bin)
|
|
|
|
if a:version != str2nr(pyversion)
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_warn('Unexpected Python version.' .
|
2016-09-04 20:36:49 -07:00
|
|
|
\ ' This could lead to confusing error messages.')
|
|
|
|
endif
|
|
|
|
if a:version == 3 && str2float(pyversion) < 3.3
|
|
|
|
call health#report_warn('Python 3.3+ is recommended.')
|
|
|
|
endif
|
|
|
|
|
|
|
|
call health#report_info('Python'.a:version.' version: ' . pyversion)
|
2017-01-08 05:32:55 -07:00
|
|
|
if s:is_bad_response(status)
|
|
|
|
call health#report_info(printf('%s-neovim version: %s (%s)', python_bin_name, current, status))
|
|
|
|
else
|
|
|
|
call health#report_info(printf('%s-neovim version: %s', python_bin_name, current))
|
|
|
|
endif
|
2016-09-04 20:36:49 -07:00
|
|
|
|
|
|
|
if s:is_bad_response(current)
|
|
|
|
call health#report_error(
|
2017-01-08 13:26:00 -07:00
|
|
|
\ "Neovim Python client is not installed.\nError: ".current,
|
|
|
|
\ ['Run in shell: pip' . a:version . ' install neovim'])
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
if s:is_bad_response(latest)
|
2017-01-08 08:42:35 -07:00
|
|
|
call health#report_warn('Could not contact PyPI to get latest version.')
|
2016-10-13 08:53:38 -07:00
|
|
|
call health#report_error('HTTP request failed: '.latest)
|
2017-01-08 08:42:35 -07:00
|
|
|
elseif s:is_bad_response(status)
|
2016-11-15 00:27:00 -07:00
|
|
|
call health#report_warn(printf('Latest %s-neovim is NOT installed: %s',
|
|
|
|
\ python_bin_name, latest))
|
2017-01-08 08:42:35 -07:00
|
|
|
elseif !s:is_bad_response(current)
|
2016-11-15 00:27:00 -07:00
|
|
|
call health#report_ok(printf('Latest %s-neovim is installed: %s',
|
|
|
|
\ python_bin_name, latest))
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:check_ruby() abort
|
|
|
|
call health#report_start('Ruby provider')
|
2017-01-06 08:11:02 -07:00
|
|
|
|
|
|
|
if !executable('ruby') || !executable('gem')
|
|
|
|
call health#report_warn(
|
2017-01-08 13:26:00 -07:00
|
|
|
\ "`ruby` and `gem` must be in $PATH.",
|
|
|
|
\ ["Install Ruby and verify that `ruby` and `gem` commands work."])
|
2017-01-06 08:11:02 -07:00
|
|
|
return
|
2016-11-12 03:59:15 -07:00
|
|
|
endif
|
2017-01-06 08:11:02 -07:00
|
|
|
call health#report_info('Ruby: '. s:system('ruby -v'))
|
|
|
|
|
|
|
|
let host = provider#ruby#Detect()
|
|
|
|
if empty(host)
|
2017-01-08 13:26:00 -07:00
|
|
|
call health#report_warn('Missing "neovim" gem.',
|
2017-01-06 08:11:02 -07:00
|
|
|
\ ['Run in shell: gem install neovim'])
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
call health#report_info('Host: '. host)
|
|
|
|
|
2017-01-07 16:44:48 -07:00
|
|
|
let latest_gem_cmd = 'gem list -ra ^neovim$'
|
2017-01-06 08:11:02 -07:00
|
|
|
let latest_gem = s:system(split(latest_gem_cmd))
|
|
|
|
if s:shell_error || empty(latest_gem)
|
|
|
|
call health#report_error('Failed to run: '. latest_gem_cmd,
|
|
|
|
\ ["Make sure you're connected to the internet.",
|
|
|
|
\ "Are you behind a firewall or proxy?"])
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let latest_gem = get(split(latest_gem, ' (\|, \|)$' ), 1, 'not found')
|
|
|
|
|
|
|
|
let current_gem_cmd = host .' --version'
|
|
|
|
let current_gem = s:system(current_gem_cmd)
|
|
|
|
if s:shell_error
|
|
|
|
call health#report_error('Failed to run: '. current_gem_cmd,
|
|
|
|
\ ["Report this issue with the output of: ", current_gem_cmd])
|
|
|
|
return
|
2016-09-04 20:36:49 -07:00
|
|
|
endif
|
|
|
|
|
2017-01-06 08:11:02 -07:00
|
|
|
if s:version_cmp(current_gem, latest_gem) == -1
|
|
|
|
call health#report_warn(
|
|
|
|
\ printf('Gem "neovim" is out-of-date. Installed: %s, latest: %s',
|
|
|
|
\ current_gem, latest_gem),
|
|
|
|
\ ['Run in shell: gem update neovim'])
|
|
|
|
else
|
|
|
|
call health#report_ok('Gem "neovim" is up-to-date: '. current_gem)
|
|
|
|
endif
|
2016-09-04 20:36:49 -07:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! health#provider#check() abort
|
2016-10-28 18:39:29 -07:00
|
|
|
call s:check_clipboard()
|
2016-09-04 20:36:49 -07:00
|
|
|
call s:check_python(2)
|
|
|
|
call s:check_python(3)
|
|
|
|
call s:check_ruby()
|
|
|
|
endfunction
|