vim-signify/autoload/sy/repo.vim

220 lines
6.3 KiB
VimL
Raw Normal View History

2013-09-30 04:19:31 -04:00
" vim: et sw=2 sts=2
scriptencoding utf-8
2013-07-17 06:30:58 -04:00
" Init: values {{{1
if !exists('g:signify_diffoptions')
let g:signify_diffoptions = {}
endif
let s:difftool = get(g:, 'signify_difftool', 'diff')
if executable(s:difftool)
let s:vcs_dict = {
\ 'git': 'git',
\ 'hg': 'hg',
\ 'svn': 'svn',
\ 'darcs': 'darcs',
\ 'bzr': 'bzr',
\ 'fossil': 'fossil',
\ 'cvs': 'cvs',
\ 'rcs': 'rcsdiff',
\ 'accurev': 'accurev',
\ 'perforce': 'p4'
\ }
else
echomsg 'signify: No diff tool found -> no support for svn, darcs, bzr, fossil.'
let s:vcs_dict = {
\ 'git': 'git',
\ 'hg': 'hg',
\ 'cvs': 'cvs',
\ 'rcs': 'rcsdiff',
\ 'accurev': 'accurev',
\ 'perforce': 'p4'
\ }
endif
2013-09-11 17:13:51 -04:00
2013-09-15 19:29:11 -04:00
let s:vcs_list = get(g:, 'signify_vcs_list', [])
if empty(s:vcs_list)
let s:vcs_list = keys(filter(s:vcs_dict, 'executable(v:val)'))
endif
2013-07-17 06:30:58 -04:00
" Function: #detect {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#detect() abort
let dir = fnamemodify(b:sy.path, ':h')
2013-09-12 19:23:05 -04:00
let vcs_list = s:vcs_list
2013-09-12 19:23:05 -04:00
" Simple cache. If there is a registered VCS-controlled file in this
" directory already, assume that this file is probably controlled by
" the same VCS. Thus we shuffle that VCS to the top of our copy of
" s:vcs_list, so we don't affect the preference order of s:vcs_list.
2013-09-12 19:23:05 -04:00
if has_key(g:sy_cache, dir)
let vcs_list = [g:sy_cache[dir]] + filter(copy(s:vcs_list), 'v:val != "'. g:sy_cache[dir] .'"')
2013-09-12 19:23:05 -04:00
endif
let s:info = {
2015-05-19 08:48:33 -04:00
\ 'chdir': haslocaldir() ? 'lcd' : 'cd',
\ 'cwd': getcwd(),
\ 'dir': fnamemodify(b:sy.path, ':p:h'),
\ 'path': s:escape(b:sy.path),
\ 'file': s:escape(fnamemodify(b:sy.path, ':t')),
\ 'difftool': s:escape(s:difftool),
\ 'devnull': sy#util#devnull(),
\ }
for type in vcs_list
2013-11-21 20:57:43 -05:00
let [istype, diff] = sy#repo#get_diff_{type}()
if istype
2013-07-17 04:14:43 -04:00
return [ diff, type ]
endif
endfor
return [ '', 'unknown' ]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_git {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_git() abort
let diff = s:run('git diff --no-color --no-ext-diff -U0 -- %f',
\ s:info.file, 1)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_stat_git {{{1
2013-07-17 04:14:43 -04:00
function! sy#repo#get_stat_git() abort
let s:stats = []
2013-11-21 20:57:43 -05:00
let root = finddir('.git', fnamemodify(b:sy.path, ':h') .';')
2013-07-17 04:14:43 -04:00
if empty(root)
2013-11-21 20:57:43 -05:00
echohl ErrorMsg | echomsg 'Cannot find the git root directory: '. b:sy.path | echohl None
2013-07-17 04:14:43 -04:00
return
endif
let root = fnamemodify(root, ':h')
let output = sy#util#run_in_dir(root, 'git diff --numstat')
2013-07-17 04:14:43 -04:00
if v:shell_error
echohl ErrorMsg | echomsg "'git diff --numstat' failed" | echohl None
return
endif
for stat in split(output, '\n')
let tokens = matchlist(stat, '\v([0-9-]+)\t([0-9-]+)\t(.*)')
if empty(tokens)
echohl ErrorMsg | echomsg 'Cannot parse this line: '. stat | echohl None
elseif tokens[1] == '-'
continue
else
2013-07-17 06:30:58 -04:00
let path = root . sy#util#separator() . tokens[3]
2013-07-17 04:14:43 -04:00
if !bufexists(path)
execute 'argadd '. path
endif
call add(s:stats, { 'bufnr': bufnr(path), 'text': tokens[1] .' additions, '. tokens[2] .' deletions', 'lnum': 1, 'col': 1 })
endif
endfor
"call setqflist(stats)
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_hg {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_hg() abort
let diff = s:run('hg diff --config extensions.color=! --config defaults.diff= --nodates -U0 -- %f',
\ s:info.path, 1)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_svn {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_svn() abort
let diff = s:run('svn diff --diff-cmd %d -x -U0 -- %f',
\ s:info.path, 0)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_bzr {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_bzr() abort
let diff = s:run('bzr diff --using %d --diff-options=-U0 -- %f',
\ s:info.path, 0)
return (v:shell_error =~ '[012]') ? [1, diff] : [0, '']
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_darcs {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_darcs() abort
let diff = s:run('darcs diff --no-pause-for-gui --diff-command="%d -U0 %1 %2" -- %f',
\ s:info.path, 1)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_fossil {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_fossil() abort
let diff = s:run('fossil set diff-command "%d -U 0" && fossil diff --unified -c 0 -- %f',
\ s:info.path, 1)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_cvs {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_cvs() abort
let diff = s:run('cvs diff -U0 -- %f', s:info.file, 1)
return ((v:shell_error == 1) && (diff =~ '+++')) ? [1, diff] : [0, '']
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_rcs {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_rcs() abort
2015-05-19 08:06:52 -04:00
let diff = s:run('rcsdiff -U0 %f 2>/dev/null', s:info.path, 0)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-17 06:30:58 -04:00
" Function: #get_diff_accurev {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_accurev() abort
let diff = s:run('accurev diff %f -- -U0', s:info.file, 1)
return (v:shell_error != 1) ? [0, ''] : [1, diff]
2013-07-17 04:14:43 -04:00
endfunction
2013-07-29 15:15:07 -04:00
" Function: #get_diff_perforce {{{1
2013-11-21 20:57:43 -05:00
function! sy#repo#get_diff_perforce() abort
2015-05-19 08:09:48 -04:00
let diff = s:run('p4 info 2>&1 >%n && env P4DIFF=diff p4 diff -dU0 %f',
\ s:info.path, 0)
return v:shell_error ? [0, ''] : [1, diff]
2013-07-29 15:15:07 -04:00
endfunction
" Function: #get_stats {{{1
function! sy#repo#get_stats() abort
2013-11-21 20:57:43 -05:00
if !exists('b:sy') || !has_key(b:sy, 'stats')
return [-1, -1, -1]
endif
2013-11-21 20:57:43 -05:00
return b:sy.stats
endfunction
" Function: s:escape {{{1
function! s:escape(path) abort
if exists('+shellslash')
let old_ssl = &shellslash
if fnamemodify(&shell, ':t') == 'cmd.exe'
set noshellslash
else
set shellslash
endif
endif
let path = shellescape(a:path)
if exists('old_ssl')
let &shellslash = old_ssl
endif
return path
endfunction
" Function: s:run {{{1
function! s:run(cmd, path, do_switch_dir) abort
2015-05-19 08:48:33 -04:00
let cmd = substitute(a:cmd, '%f', a:path, '')
let cmd = substitute(cmd, '%d', s:info.difftool, '')
let cmd = substitute(cmd, '%n', s:info.devnull, '')
if a:do_switch_dir
try
execute s:info.chdir fnameescape(s:info.dir)
let ret = system(cmd)
finally
execute s:info.chdir fnameescape(s:info.cwd)
endtry
return ret
endif
2015-05-19 08:48:33 -04:00
return system(cmd)
endfunction