2

Perforce 命令行有一个特殊的开关,-G,据说它使用 python 的“pickle”序列化格式使其输出是机器可读的。一般情况下是这样吗?

例如,考虑 的输出p4 -G diff -duw3 <file1> <file2> <file3>。据我所知,输出是一个序列:pickle、raw diff、pickle、raw diff、pickle、raw diff。它似乎不包含任何使人们能够可靠地定位泡菜/差异边界的分隔符。

我是否遗漏了什么,或者这种“机器可读”格式实际上不是机器可读的?如何在其输出中找到泡菜和原始差异之间的界限?

4

1 回答 1

5

p4 -Gmarshal以未腌制的 ed 形式输出其数据。

但是您是对的-p4 -G diff -duw3也不会取消marshal,所以我想那里有问题。

p4 -G opened虽然解组很好。然而,任何一种diff失败。

这是一篇相关的知识库文章: http: //kb.perforce.com/ToolsScripts/PerforceUtilities/UsingP4G

#!/usr/bin/env python
import marshal
import subprocess

# proc = subprocess.Popen(["p4","-G","diff","-duw3","configure.ac","Makefile.am"],stdout=subprocess.PIPE)
proc = subprocess.Popen(["p4","-G","diff"],stdout=subprocess.PIPE)
# proc = subprocess.Popen(["p4","-G","opened"],stdout=subprocess.PIPE)
pipe = proc.stdout
output = []
try:
    while 1:
        record = marshal.load(pipe)
        output.append(record)
except EOFError:
    pass
pipe.close()
proc.wait()

# print list of dictionary records
c = 0
for dict in output:
    c = c + 1
    print "\n--%d--" % c
    for key in dict.keys():
        print "%s: %s" % ( key, dict[key] )
于 2009-11-11T09:14:54.343 回答