mirror of
https://github.com/frej/fast-export.git
synced 2025-11-08 12:15:39 +01:00
cleanups
This commit is contained in:
@@ -14,6 +14,7 @@
|
|||||||
# - don't hardcode the import to master
|
# - don't hardcode the import to master
|
||||||
#
|
#
|
||||||
import os, string, sys, time
|
import os, string, sys, time
|
||||||
|
import marshal
|
||||||
|
|
||||||
if len(sys.argv) != 2:
|
if len(sys.argv) != 2:
|
||||||
sys.stderr.write("usage: %s //depot/path[@revRange]\n" % sys.argv[0]);
|
sys.stderr.write("usage: %s //depot/path[@revRange]\n" % sys.argv[0]);
|
||||||
@@ -37,6 +38,18 @@ except ValueError:
|
|||||||
if not prefix.endswith("/"):
|
if not prefix.endswith("/"):
|
||||||
prefix += "/"
|
prefix += "/"
|
||||||
|
|
||||||
|
def p4Cmd(cmd):
|
||||||
|
pipe = os.popen("p4 -G %s" % cmd, "rb")
|
||||||
|
result = {}
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
entry = marshal.load(pipe)
|
||||||
|
result.update(entry)
|
||||||
|
except EOFError:
|
||||||
|
pass
|
||||||
|
pipe.close()
|
||||||
|
return result
|
||||||
|
|
||||||
def describe(change):
|
def describe(change):
|
||||||
output = os.popen("p4 describe %s" % change).readlines()
|
output = os.popen("p4 describe %s" % change).readlines()
|
||||||
|
|
||||||
@@ -88,9 +101,6 @@ def describe(change):
|
|||||||
|
|
||||||
return author, log, epoch, changed, removed
|
return author, log, epoch, changed, removed
|
||||||
|
|
||||||
def p4cat(path):
|
|
||||||
return os.popen("p4 print -q \"%s\"" % path).read()
|
|
||||||
|
|
||||||
def p4Stat(path):
|
def p4Stat(path):
|
||||||
output = os.popen("p4 fstat -Ol \"%s\"" % path).readlines()
|
output = os.popen("p4 fstat -Ol \"%s\"" % path).readlines()
|
||||||
fileSize = 0
|
fileSize = 0
|
||||||
|
|||||||
Reference in New Issue
Block a user