我有一个项目,其中包含CVSNT控制下的资源。
我需要一个属于某个标签的源文件名和修订列表。 例如:
the tag MYTAG is:
myproject/main.cpp 1.5.2.3
myproject/myclass.h 1.5.2.1
我知道,cvs log -rMYTAG > log.txt
我会在log.txt
中获取我需要的所有信息,然后我可以过滤它来构建我的列表,但是,有没有任何实用程序已经做了我需要的工作? / p>
答案 0 :(得分: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 File”属性,即它们仍包含存储库前缀。如果要过滤掉它,可以指定第三个参数,例如当您的CVSROOT
类似于sspi:server:/cvsrepo
时,您会将其称为:
ListCvsTagRevisions.py MyTag MyModule /cvsrepo/
希望这有帮助。
注意:如果您需要一个列出工作副本中当前修订版的脚本,请参阅此答案的修改历史记录。