2008-11-08 10:30:04 -05:00
|
|
|
import os, commands, re, tempfile
|
2008-03-17 02:17:51 -04:00
|
|
|
from subprocess import Popen, PIPE, STDOUT
|
|
|
|
|
2008-03-29 10:07:22 -04:00
|
|
|
import buffer, default, dirutil, lex, regex, util, window
|
2008-03-17 02:17:51 -04:00
|
|
|
from point import Point
|
2009-05-09 22:57:05 -04:00
|
|
|
import buffer.color
|
2009-05-10 01:45:57 -04:00
|
|
|
from method.vc import VcBlame
|
2008-03-17 02:17:51 -04:00
|
|
|
|
2008-11-08 11:18:48 -05:00
|
|
|
from method import Method, Argument
|
2008-03-17 02:17:51 -04:00
|
|
|
|
2009-05-10 22:45:16 -04:00
|
|
|
if os.system('which svn >/dev/null 2>/dev/null') == 0:
|
|
|
|
has_svn = True
|
|
|
|
else:
|
|
|
|
has_svn = False
|
|
|
|
|
2009-02-09 09:37:04 -05:00
|
|
|
class SvnException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
statuses = {
|
|
|
|
' ': 'Unmodified',
|
|
|
|
'A': 'Added',
|
|
|
|
'C': 'Conflicted',
|
|
|
|
'D': 'Deleted',
|
|
|
|
'I': 'Ignored',
|
|
|
|
'M': 'Modified',
|
|
|
|
'R': 'Replaced',
|
|
|
|
'X': 'External',
|
|
|
|
'?': 'Unknown',
|
|
|
|
'!': 'Missing',
|
|
|
|
'~': 'Obstructed',
|
|
|
|
}
|
|
|
|
|
|
|
|
def get_status(path, base=None):
|
|
|
|
if base is None: base = os.getcwd() + os.path.sep
|
|
|
|
if path.startswith(base): path = path[len(base):]
|
|
|
|
|
|
|
|
cmd = "svn status -v %r" % path
|
|
|
|
status, data = commands.getstatusoutput(cmd)
|
|
|
|
status = status >> 8
|
|
|
|
|
|
|
|
if status != 0:
|
|
|
|
raise SvnException("Problems with 'svn status': %d" % status)
|
|
|
|
|
|
|
|
c = data[0]
|
|
|
|
status = statuses.get(c, 'Error (%s)' % c)
|
|
|
|
fields = data[6:].split()
|
|
|
|
|
|
|
|
try:
|
|
|
|
rrev, lrev, lauthor, filename = fields
|
|
|
|
except:
|
|
|
|
raise Exception, '%r %r' % (fields, data[6:])
|
|
|
|
|
|
|
|
return {
|
|
|
|
'svn-filename': filename,
|
|
|
|
'svn-status': status,
|
|
|
|
'svn-lrev': lrev,
|
|
|
|
'svn-rrev': rrev,
|
|
|
|
'svn-author': lauthor,
|
|
|
|
}
|
|
|
|
|
2008-03-17 02:17:51 -04:00
|
|
|
class SvnCommit(Method):
|
|
|
|
'''diff the current file with the version in SVN'''
|
|
|
|
args = [Argument("msg", type=type(""), prompt="Commit Message: ")]
|
|
|
|
regex = re.compile(r'^Committed revision ([0-9]+)\.$')
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
if not hasattr(w.buffer, 'path'):
|
|
|
|
w.set_error("Buffer has no corresponding file")
|
|
|
|
return
|
|
|
|
|
|
|
|
cwd = os.getcwd() + os.path.sep
|
|
|
|
path = w.buffer.path
|
|
|
|
if path.startswith(cwd):
|
|
|
|
path = path[len(cwd):]
|
|
|
|
|
|
|
|
cmd = "svn ci -m %r %r" % (vargs['msg'], path)
|
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
status = status >> 8
|
|
|
|
lines = data.split('\n')
|
|
|
|
|
|
|
|
if status == 0:
|
|
|
|
try:
|
|
|
|
for line in lines:
|
|
|
|
m = self.regex.match(line)
|
|
|
|
if m:
|
2009-02-09 09:37:04 -05:00
|
|
|
rev = m.group(1)
|
|
|
|
w.buffer.metadata['svn-lrev'] = rev
|
|
|
|
w.buffer.metadata['svn-rrev'] = rev
|
|
|
|
w.set_error("Committed [%s]" % rev)
|
2008-03-17 02:17:51 -04:00
|
|
|
return
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
w.set_error("Problems with SVN commit: %d" % status)
|
|
|
|
w.application.data_buffer("*Commit*", repr(lines), switch_to=True)
|
|
|
|
|
|
|
|
class SvnStatus(Method):
|
|
|
|
column = {
|
|
|
|
' ': 'Unmodified',
|
|
|
|
'A': 'Added',
|
|
|
|
'C': 'Conflicted',
|
|
|
|
'D': 'Deleted',
|
|
|
|
'I': 'Ignored',
|
|
|
|
'M': 'Modified',
|
|
|
|
'R': 'Replaced',
|
|
|
|
'X': 'External',
|
|
|
|
'?': 'Unknown',
|
|
|
|
'!': 'Missing',
|
|
|
|
'~': 'Obstructed',
|
|
|
|
}
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
if not hasattr(w.buffer, 'path'):
|
|
|
|
w.set_error("Buffer has no corresponding file")
|
|
|
|
return
|
|
|
|
|
|
|
|
cwd = os.getcwd() + os.path.sep
|
|
|
|
path = w.buffer.path
|
|
|
|
if path.startswith(cwd):
|
|
|
|
path = path[len(cwd):]
|
|
|
|
cmd = "svn status -v %r" % path
|
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
status = status >> 8
|
|
|
|
|
|
|
|
if status != 0:
|
|
|
|
w.set_error("Problems with 'svn status': %d" % status)
|
|
|
|
return
|
|
|
|
|
|
|
|
c = data[0]
|
|
|
|
status = self.column.get(c, 'Error (%s)' % c)
|
|
|
|
fields = data[6:].split()
|
2009-03-17 15:24:10 -04:00
|
|
|
if len(fields) == 4:
|
|
|
|
rrev, lrev, lauthor, filename = fields
|
|
|
|
w.buffer.metadata['svn-filename'] = filename
|
|
|
|
w.buffer.metadata['svn-status'] = status
|
|
|
|
w.buffer.metadata['svn-lrev'] = lrev
|
|
|
|
w.buffer.metadata['svn-rrev'] = rrev
|
|
|
|
w.buffer.metadata['svn-author'] = lauthor
|
|
|
|
w.buffer.metadata['vc-info'] = '[svn:%s/%s]' % (lrev, rrev)
|
|
|
|
w.set_error('%s %s %s/%s [%s]' % (filename, status, rrev, lrev, lauthor))
|
|
|
|
else:
|
|
|
|
w.buffer.metadata['svn-filename'] = path
|
|
|
|
w.buffer.metadata['svn-status'] = status
|
|
|
|
w.buffer.metadata['vc-info'] = '[svn:%s]' % status.lower()
|
|
|
|
w.set_error('%s %s' % (path, status))
|
2008-04-16 01:27:52 -04:00
|
|
|
|
|
|
|
class SvnLog(Method):
|
|
|
|
'''display the SVN log for the current file'''
|
|
|
|
sep_re = re.compile('^-+$')
|
2009-05-04 20:33:49 -04:00
|
|
|
log_re = re.compile(r'^(.+?) \| (.+?) \| (.{25}) .+? \| (.+)$')
|
2008-04-16 01:27:52 -04:00
|
|
|
def _build_entry(self, log_line, mesg_lines):
|
|
|
|
log_data = '[c:d:*]%s [g:d:*]%s [b:d:*]%s [c:d:*]%s' % log_line
|
|
|
|
mesg_data = '\n'.join(mesg_lines).strip()
|
|
|
|
if mesg_data:
|
|
|
|
mesg_data += '\n'
|
|
|
|
return '[b:d:*]' + log_data + '\n' + mesg_data
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
cmd = "svn log %r" % w.buffer.path
|
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
|
|
|
|
entries = []
|
|
|
|
log_line, mesg_lines = None, []
|
|
|
|
for line in data.split('\n'):
|
|
|
|
if self.sep_re.match(line):
|
|
|
|
if log_line is not None:
|
|
|
|
entries.append(self._build_entry(log_line, mesg_lines))
|
|
|
|
log_line = None
|
|
|
|
else:
|
|
|
|
m = self.log_re.match(line)
|
|
|
|
if m:
|
|
|
|
log_line = m.groups()
|
|
|
|
mesg_lines = []
|
|
|
|
else:
|
|
|
|
assert log_line is not None, '%r %r' % (entries, line)
|
|
|
|
mesg_lines.append(line)
|
|
|
|
data2 = ''.join(entries)
|
|
|
|
|
|
|
|
if status == 0 and data:
|
|
|
|
w.application.color_data_buffer("*Log*", data2, switch_to=True)
|
|
|
|
w.set_error("%s: logfile" % self.name)
|
|
|
|
elif status == 0:
|
|
|
|
w.set_error("%s: There was no data" % self.name)
|
|
|
|
else:
|
|
|
|
w.set_error("%s: There was an error (%s)" % (self.name, status))
|
|
|
|
|
|
|
|
|
2008-03-17 02:17:51 -04:00
|
|
|
class SvnDiff(Method):
|
|
|
|
'''diff the current file with the version in SVN'''
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
if not hasattr(w.buffer, 'path'):
|
|
|
|
w.set_error("Buffer has no corresponding file")
|
|
|
|
return
|
|
|
|
|
|
|
|
cmd = "svn diff %r" % w.buffer.path
|
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
|
|
|
|
if status == 0:
|
|
|
|
if data:
|
|
|
|
w.application.data_buffer("*Diff*", data, switch_to=True, modename='diff')
|
|
|
|
w.set_error("Differences were found")
|
|
|
|
else:
|
|
|
|
w.set_error("No difference found")
|
|
|
|
else:
|
|
|
|
w.set_error("There was an error (%s)" % (status))
|
|
|
|
class SvnDiff2(Method):
|
|
|
|
'''diff the current file with the version in SVN'''
|
|
|
|
rev_regex = re.compile('^[0-9]+$')
|
|
|
|
args = [Argument("revision", type=type(""), prompt="Old Revision: ")]
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
if not hasattr(w.buffer, 'path'):
|
|
|
|
w.set_error("Buffer has no corresponding file")
|
|
|
|
return
|
|
|
|
|
|
|
|
rev = vargs['revision']
|
|
|
|
if not self.rev_regex.match(rev):
|
|
|
|
w.set_error("Could not parse revision: %r" % rev)
|
|
|
|
return
|
|
|
|
|
|
|
|
cwd = os.getcwd() + os.path.sep
|
|
|
|
path = w.buffer.path
|
|
|
|
if path.startswith(cwd):
|
|
|
|
path = path[len(cwd):]
|
|
|
|
|
|
|
|
cmd = "svn diff -r %s %r" % (rev, path)
|
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
status = status >> 8
|
|
|
|
|
|
|
|
if data:
|
|
|
|
w.application.data_buffer("*Diff*", data, switch_to=True, modename='diff')
|
|
|
|
w.set_error("Differences were found")
|
|
|
|
else:
|
|
|
|
w.set_error("No difference found")
|
|
|
|
class SvnDiff3(Method):
|
|
|
|
'''diff the current file with the version in SVN'''
|
|
|
|
rev_regex = re.compile('^[0-9]+$')
|
|
|
|
args = [Argument("revision1", type=type(""), prompt="Old Revision: "),
|
|
|
|
Argument("revision2", type=type(""), prompt="New Revision: ")]
|
|
|
|
def _execute(self, w, **vargs):
|
|
|
|
if not hasattr(w.buffer, 'path'):
|
|
|
|
w.set_error("Buffer has no corresponding file")
|
|
|
|
return
|
|
|
|
|
|
|
|
rev1 = vargs['revision1']
|
|
|
|
if not self.rev_regex.match(rev1):
|
|
|
|
w.set_error("Could not parse revision1: %r" % rev)
|
|
|
|
return
|
|
|
|
|
|
|
|
rev2 = vargs['revision2']
|
|
|
|
if not self.rev_regex.match(rev2):
|
|
|
|
w.set_error("Could not parse revision2: %r" % rev)
|
|
|
|
return
|
|
|
|
|
|
|
|
cwd = os.getcwd() + os.path.sep
|
|
|
|
path = w.buffer.path
|
|
|
|
if path.startswith(cwd):
|
|
|
|
path = path[len(cwd):]
|
|
|
|
|
2008-11-25 08:46:59 -05:00
|
|
|
cmd = "svn diff -r %s:%s %r" % (rev1, rev2, path)
|
2008-03-17 02:17:51 -04:00
|
|
|
(status, data) = commands.getstatusoutput(cmd)
|
|
|
|
status = status >> 8
|
|
|
|
|
|
|
|
if data:
|
|
|
|
w.application.data_buffer("*Diff*", data, switch_to=True, modename='diff')
|
|
|
|
w.set_error("Differences were found")
|
|
|
|
else:
|
|
|
|
w.set_error("No difference found")
|
2008-03-29 10:07:22 -04:00
|
|
|
|
2009-05-10 01:45:57 -04:00
|
|
|
class SvnBlame(VcBlame):
|
2008-03-29 10:07:22 -04:00
|
|
|
'''show blame output for the current version in SVN'''
|
2009-05-09 22:57:05 -04:00
|
|
|
line_re = re.compile('^ *(?P<rev>\d+) *(?P<user>[a-zA-Z0-9_]+) *(?P<date>[-0-9]+) *(?P<time>[:0-9]+) *(?P<tz>-\d{4}) *\((?P<vdate>[^\)]+)\) (?P<content>.*)\n$')
|
2009-05-10 01:45:57 -04:00
|
|
|
prefix_fmt = '[b:d:*]%(rev)-4s [c:d:*]%(user)-10s [b:d:*]%(date)10s[d:d:*]'
|
|
|
|
_is_method = True
|
2009-05-10 22:45:16 -04:00
|
|
|
pretest_err_msg = 'Subversion is not installed'
|
|
|
|
def _pretest(self):
|
|
|
|
return has_svn
|
2009-05-09 22:57:05 -04:00
|
|
|
def _open_pipe(self, w, **vargs):
|
2009-05-10 22:45:16 -04:00
|
|
|
cmd = ("svn", 'blame', '-v', w.buffer.path)
|
2009-05-09 22:57:05 -04:00
|
|
|
return Popen(cmd, stdin=PIPE, stdout=PIPE, stderr=PIPE)
|