1 " vim600: set foldmethod=marker:
3 " SVN extension for VCSCommand.
5 " Version: VCS development
6 " Maintainer: Bob Hiestand <bob.hiestand@gmail.com>
8 " Copyright (c) 2007 Bob Hiestand
10 " Permission is hereby granted, free of charge, to any person obtaining a copy
11 " of this software and associated documentation files (the "Software"), to
12 " deal in the Software without restriction, including without limitation the
13 " rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
14 " sell copies of the Software, and to permit persons to whom the Software is
15 " furnished to do so, subject to the following conditions:
17 " The above copyright notice and this permission notice shall be included in
18 " all copies or substantial portions of the Software.
20 " THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 " IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 " FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23 " AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24 " LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25 " FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 " Section: Documentation {{{1
30 " Options documentation: {{{2
33 " This variable specifies the SVN executable. If not set, it defaults to
34 " 'svn' executed from the user's executable path.
36 " VCSCommandSVNDiffExt
37 " This variable, if set, sets the external diff program used by Subversion.
39 " VCSCommandSVNDiffOpt
40 " This variable, if set, determines the options passed to the svn diff
41 " command (such as 'u', 'w', or 'b').
43 " Section: Plugin header {{{1
45 if exists('VCSCommandDisableAll')
50 echohl WarningMsg|echomsg 'VCSCommand requires at least VIM 7.0'|echohl None
54 runtime plugin/vcscommand.vim
56 if !executable(VCSCommandGetOption('VCSCommandSVNExec', 'svn'))
57 " SVN is not installed
64 " Section: Variable initialization {{{1
66 let s:svnFunctions = {}
68 " Section: Utility functions {{{1
70 " Function: s:DoCommand(cmd, cmdName, statusText, options) {{{2
71 " Wrapper to VCSCommandDoCommand to add the name of the SVN executable to the
73 function! s:DoCommand(cmd, cmdName, statusText, options)
74 if VCSCommandGetVCSType(expand('%')) == 'SVN'
75 let fullCmd = VCSCommandGetOption('VCSCommandSVNExec', 'svn') . ' ' . a:cmd
76 return VCSCommandDoCommand(fullCmd, a:cmdName, a:statusText, a:options)
78 throw 'SVN VCSCommand plugin called on non-SVN item.'
82 " Section: VCS function implementations {{{1
84 " Function: s:svnFunctions.Identify(buffer) {{{2
85 function! s:svnFunctions.Identify(buffer)
86 let fileName = resolve(bufname(a:buffer))
87 if isdirectory(fileName)
88 let directoryName = fileName
90 let directoryName = fnamemodify(fileName, ':h')
92 if strlen(directoryName) > 0
93 let svnDir = directoryName . '/.svn'
97 if isdirectory(svnDir)
104 " Function: s:svnFunctions.Add() {{{2
105 function! s:svnFunctions.Add(argList)
106 return s:DoCommand(join(['add'] + a:argList, ' '), 'add', join(a:argList, ' '), {})
109 " Function: s:svnFunctions.Annotate(argList) {{{2
110 function! s:svnFunctions.Annotate(argList)
111 if len(a:argList) == 0
112 if &filetype == 'SVNAnnotate'
113 " Perform annotation of the version indicated by the current line.
114 let caption = matchstr(getline('.'),'\v^\s+\zs\d+')
115 let options = ' -r' . caption
120 elseif len(a:argList) == 1 && a:argList[0] !~ '^-'
121 let caption = a:argList[0]
122 let options = ' -r' . caption
124 let caption = join(a:argList, ' ')
125 let options = ' ' . caption
128 let resultBuffer = s:DoCommand('blame --non-interactive' . options, 'annotate', caption, {})
130 set filetype=SVNAnnotate
135 " Function: s:svnFunctions.Commit(argList) {{{2
136 function! s:svnFunctions.Commit(argList)
137 let resultBuffer = s:DoCommand('commit --non-interactive -F "' . a:argList[0] . '"', 'commit', '', {})
139 echomsg 'No commit needed.'
143 " Function: s:svnFunctions.Delete() {{{2
144 function! s:svnFunctions.Delete(argList)
145 return s:DoCommand(join(['delete --non-interactive'] + a:argList, ' '), 'delete', join(a:argList, ' '), {})
148 " Function: s:svnFunctions.Diff(argList) {{{2
149 function! s:svnFunctions.Diff(argList)
150 if len(a:argList) == 0
153 elseif len(a:argList) <= 2 && match(a:argList, '^-') == -1
154 let revOptions = ['-r' . join(a:argList, ':')]
155 let caption = '(' . a:argList[0] . ' : ' . get(a:argList, 1, 'current') . ')'
158 let caption = join(a:argList, ' ')
159 let revOptions = a:argList
162 let svnDiffExt = VCSCommandGetOption('VCSCommandSVNDiffExt', '')
166 let diffExt = ['--diff-cmd ' . svnDiffExt]
169 let svnDiffOpt = VCSCommandGetOption('VCSCommandSVNDiffOpt', '')
173 let diffOptions = ['-x -' . svnDiffOpt]
176 let resultBuffer = s:DoCommand(join(['diff --non-interactive'] + diffExt + diffOptions + revOptions), 'diff', caption, {})
181 echomsg 'No differences found'
187 " Function: s:svnFunctions.GetBufferInfo() {{{2
188 " Provides version control details for the current file. Current version
189 " number and current repository version number are required to be returned by
190 " the vcscommand plugin.
191 " Returns: List of results: [revision, repository, branch]
193 function! s:svnFunctions.GetBufferInfo()
194 let originalBuffer = VCSCommandGetOriginalBuffer(bufnr('%'))
195 let fileName = bufname(originalBuffer)
196 let statusText = system(VCSCommandGetOption('VCSCommandSVNExec', 'svn') . ' status --non-interactive -vu "' . fileName . '"')
201 " File not under SVN control.
202 if statusText =~ '^?'
206 let [flags, revision, repository] = matchlist(statusText, '^\(.\{8}\)\s\+\(\S\+\)\s\+\(\S\+\)\s\+\(\S\+\)\s')[1:3]
211 return ['New', 'New']
213 return [revision, repository]
217 " Function: s:svnFunctions.Info(argList) {{{2
218 function! s:svnFunctions.Info(argList)
219 return s:DoCommand(join(['info --non-interactive'] + a:argList, ' '), 'info', join(a:argList, ' '), {})
222 " Function: s:svnFunctions.Lock(argList) {{{2
223 function! s:svnFunctions.Lock(argList)
224 return s:DoCommand(join(['lock --non-interactive'] + a:argList, ' '), 'lock', join(a:argList, ' '), {})
227 " Function: s:svnFunctions.Log(argList) {{{2
228 function! s:svnFunctions.Log(argList)
229 if len(a:argList) == 0
232 elseif len(a:argList) <= 2 && match(a:argList, '^-') == -1
233 let options = ['-r' . join(a:argList, ':')]
234 let caption = options[0]
237 let options = a:argList
238 let caption = join(a:argList, ' ')
241 let resultBuffer = s:DoCommand(join(['log --non-interactive', '-v'] + options), 'log', caption, {})
245 " Function: s:svnFunctions.Revert(argList) {{{2
246 function! s:svnFunctions.Revert(argList)
247 return s:DoCommand('revert', 'revert', '', {})
250 " Function: s:svnFunctions.Review(argList) {{{2
251 function! s:svnFunctions.Review(argList)
252 if len(a:argList) == 0
253 let versiontag = '(current)'
254 let versionOption = ''
256 let versiontag = a:argList[0]
257 let versionOption = ' -r ' . versiontag . ' '
260 let resultBuffer = s:DoCommand('cat --non-interactive' . versionOption, 'review', versiontag, {})
262 let &filetype = getbufvar(b:VCSCommandOriginalBuffer, '&filetype')
267 " Function: s:svnFunctions.Status(argList) {{{2
268 function! s:svnFunctions.Status(argList)
269 let options = ['-u', '-v']
270 if len(a:argList) == 0
271 let options = a:argList
273 return s:DoCommand(join(['status --non-interactive'] + options, ' '), 'status', join(options, ' '), {})
276 " Function: s:svnFunctions.Unlock(argList) {{{2
277 function! s:svnFunctions.Unlock(argList)
278 return s:DoCommand(join(['unlock --non-interactive'] + a:argList, ' '), 'unlock', join(a:argList, ' '), {})
280 " Function: s:svnFunctions.Update(argList) {{{2
281 function! s:svnFunctions.Update(argList)
282 return s:DoCommand('update --non-interactive', 'update', '', {})
285 " Section: Plugin Registration {{{1
286 call VCSCommandRegisterModule('SVN', expand('<sfile>'), s:svnFunctions, [])
288 let &cpo = s:save_cpo