1

我有一个项目,其来源受 CVSNT 控制。

我需要属于某个标签的源文件名和修订的列表。例如:

the tag MYTAG is:
myproject/main.cpp 1.5.2.3
myproject/myclass.h 1.5.2.1

我知道有了cvs log -rMYTAG > log.txtlog.txt需要的所有信息,然后我可以过滤它来构建我的列表,但是,是否有任何实用程序已经可以满足我的需要?

4

1 回答 1

1

这是一个执行此操作的 Python 脚本:

import sys, os, os.path
import re, string

def runCvs(args):
  f_in, f_out, f_err = os.popen3('cvs '+string.join(args))
  out = f_out.read()
  err = f_err.read()
  f_out.close()
  f_err.close()
  code = f_in.close()
  if not code: code = 0
  return code, out, err

class RevDumper:
  def parseFile(self, rex, filelog):
    m = rex.search(filelog)
    if m:
      print '%s\t%s' % (m.group(1), m.group(2))

  def filterOutput(self, logoutput, repoprefix):
    rex = re.compile('^={77}$', re.MULTILINE)
    files = rex.split(logoutput)
    rex = re.compile('RCS file: %s(.*),v[^=]+selected revisions: [^0][^=]+revision ([0-9\.]+)' % repoprefix, re.MULTILINE)
    for file in files:
      self.parseFile(rex, file)

  def getInfo(self, tag, module, repoprefix):
    args = ['-Q', '-z9', 'rlog', '-S', '-N', '-r'+tag, module] # remove the -S if you're using an older version of CVS
    code, out, err = runCvs(args)
    if code == 0:
      self.filterOutput(out, repoprefix)
    else:
      sys.stderr.write('CVS returned %d\n%s\n' % (code, err))

if len(sys.argv) > 2:
  tag = sys.argv[1]
  module = sys.argv[2]
  if len(sys.argv) > 3:
    repoprefix = sys.argv[3]
  else:
    repoprefix = ''
  RevDumper().getInfo(tag, module, repoprefix)
else:
  sys.stderr.write('Syntax: %s TAG MODULE [REPOPREFIX]' % os.path.basename(sys.argv[0]))

请注意,您要么必须CVSROOT设置环境变量,要么从要查询的存储库中签出的工作副本中运行它。

此外,显示的文件名基于rlog输出的“RCS 文件”属性,即它们仍然包含存储库前缀。如果你想过滤掉它,你可以指定第三个参数,例如,当你CVSROOT是这样的时候,你sspi:server:/cvsrepo可以这样称呼:

ListCvsTagRevisions.py MyTag MyModule /cvsrepo/

希望这可以帮助。


注意:如果您需要列出当前工作副本中的修订的脚本,请参阅此答案的编辑历史记录。

于 2011-03-04T09:01:03.813 回答