summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 766887e)
raw | patch | inline | side by side (parent: 766887e)
author | Simon Hausmann <simon@lst.de> | |
Mon, 12 Feb 2007 20:41:45 +0000 (21:41 +0100) | ||
committer | Simon Hausmann <simon@lst.de> | |
Mon, 12 Feb 2007 20:41:45 +0000 (21:41 +0100) |
Signed-off-by: Simon Hausmann <simon@lst.de>
contrib/fast-import/p4-fast-export.py | patch | blob | history |
index 01bf5baf9a50f161587b5ad370a6485db6065123..f9653f1344f5a1ec00e0fe26d95194839f2432b2 100755 (executable)
import os, string, sys, time
import marshal, popen2, getopt
+knownBranches = set()
branch = "refs/heads/master"
-prefix = previousDepotPath = os.popen("git-repo-config --get p4.depotpath").read()
+globalPrefix = previousDepotPath = os.popen("git-repo-config --get p4.depotpath").read()
detectBranches = False
-if len(prefix) != 0:
- prefix = prefix[:-1]
+if len(globalPrefix) != 0:
+ globalPrefix = globalPrefix[:-1]
try:
opts, args = getopt.getopt(sys.argv[1:], "", [ "branch=", "detect-branches" ])
elif o == "--detect-branches":
detectBranches = True
-if len(args) == 0 and len(prefix) != 0:
- print "[using previously specified depot path %s]" % prefix
+if len(args) == 0 and len(globalPrefix) != 0:
+ print "[using previously specified depot path %s]" % globalPrefix
elif len(args) != 1:
print "usage: %s //depot/path[@revRange]" % sys.argv[0]
print "\n example:"
print ""
sys.exit(1)
else:
- if len(prefix) != 0 and prefix != args[0]:
- print "previous import used depot path %s and now %s was specified. this doesn't work!" % (prefix, args[0])
+ if len(globalPrefix) != 0 and globalPrefix != args[0]:
+ print "previous import used depot path %s and now %s was specified. this doesn't work!" % (globalPrefix, args[0])
sys.exit(1)
- prefix = args[0]
+ globalPrefix = args[0]
changeRange = ""
revision = ""
lastChange = ""
initialTag = ""
-if prefix.find("@") != -1:
- atIdx = prefix.index("@")
- changeRange = prefix[atIdx:]
+if globalPrefix.find("@") != -1:
+ atIdx = globalPrefix.index("@")
+ changeRange = globalPrefix[atIdx:]
if changeRange == "@all":
changeRange = ""
elif changeRange.find(",") == -1:
revision = changeRange
changeRange = ""
- prefix = prefix[0:atIdx]
-elif prefix.find("#") != -1:
- hashIdx = prefix.index("#")
- revision = prefix[hashIdx:]
- prefix = prefix[0:hashIdx]
+ globalPrefix = globalPrefix[0:atIdx]
+elif globalPrefix.find("#") != -1:
+ hashIdx = globalPrefix.index("#")
+ revision = globalPrefix[hashIdx:]
+ globalPrefix = globalPrefix[0:hashIdx]
elif len(previousDepotPath) == 0:
revision = "#head"
-if prefix.endswith("..."):
- prefix = prefix[:-3]
+if globalPrefix.endswith("..."):
+ globalPrefix = globalPrefix[:-3]
-if not prefix.endswith("/"):
- prefix += "/"
+if not globalPrefix.endswith("/"):
+ globalPrefix += "/"
def p4CmdList(cmd):
pipe = os.popen("p4 -G %s" % cmd, "rb")
fnum = 0
while commit.has_key("depotFile%s" % fnum):
path = commit["depotFile%s" % fnum]
- if not path.startswith(prefix):
- print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, prefix, change)
+ if not path.startswith(globalPrefix):
+ print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, globalPrefix, change)
continue
file = {}
branches = set()
for file in files:
- relativePath = file["path"][len(prefix):]
+ relativePath = file["path"][len(globalPrefix):]
# strip off the filename
relativePath = relativePath[0:relativePath.rfind("/")]
return branches
-def commit(details, files, branch, prefix):
+def commit(details, files, branch, branchPrefix):
global initialParent
global users
global lastChange
gitStream.write("data <<EOT\n")
gitStream.write(details["desc"])
- gitStream.write("\n[ imported from %s; change %s ]\n" % (prefix, details["change"]))
+ gitStream.write("\n[ imported from %s; change %s ]\n" % (branchPrefix, details["change"]))
gitStream.write("EOT\n\n")
if len(initialParent) > 0:
for file in files:
path = file["path"]
+ if not path.startswith(branchPrefix):
+ continue
+ action = file["action"]
+ if action != "integrate" and action != "branch":
+ continue
+ rev = file["rev"]
+ depotPath = path + "#" + rev
+
+ log = p4CmdList("filelog \"%s\"" % depotPath)
+ if len(log) != 1:
+ print "eek! I got confused by the filelog of %s" % depotPath
+ sys.exit(1);
+
+ log = log[0]
+ if log["action0"] != action:
+ print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath, log["action0"], action)
+ sys.exit(1);
+
+ if not log["how0,0"].endswith(" from"):
+ print "eek! file %s was not branched but instead: %s" % (depotPath, log["how0,0"])
+ sys.exit(1);
+
+ source = log["file0,0"]
+ if source.startswith(branchPrefix):
+ continue
+
+ relPath = source[len(globalPrefix):]
+
+ for branch in knownBranches:
+ if relPath.startswith(branch):
+ gitStream.write("merge refs/heads/%s\n" % branch)
+ break
+
+ for file in files:
+ path = file["path"]
+ if not path.startswith(branchPrefix):
+ print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, change)
+ continue
rev = file["rev"]
depotPath = path + "#" + rev
- relPath = path[len(prefix):]
+ relPath = path[len(branchPrefix):]
action = file["action"]
if action == "delete":
gitOutput, gitStream, gitError = popen2.popen3("git-fast-import")
if len(revision) > 0:
- print "Doing initial import of %s from revision %s" % (prefix, revision)
+ print "Doing initial import of %s from revision %s" % (globalPrefix, revision)
details = { "user" : "git perforce import user", "time" : int(time.time()) }
- details["desc"] = "Initial import of %s from the state at revision %s" % (prefix, revision)
+ details["desc"] = "Initial import of %s from the state at revision %s" % (globalPrefix, revision)
details["change"] = revision
newestRevision = 0
fileCnt = 0
- for info in p4CmdList("files %s...%s" % (prefix, revision)):
+ for info in p4CmdList("files %s...%s" % (globalPrefix, revision)):
change = int(info["change"])
if change > newestRevision:
newestRevision = change
details["change"] = newestRevision
try:
- commit(details, extractFilesFromCommit(details), branch, prefix)
+ commit(details, extractFilesFromCommit(details), branch, globalPrefix)
except:
print gitError.read()
else:
- output = os.popen("p4 changes %s...%s" % (prefix, changeRange)).readlines()
+ output = os.popen("p4 changes %s...%s" % (globalPrefix, changeRange)).readlines()
changes = []
for line in output:
files = extractFilesFromCommit(description)
if detectBranches:
for branch in branchesForCommit(files):
- branchPrefix = prefix + branch + "/"
+ knownBranches.add(branch)
+ branchPrefix = globalPrefix + branch + "/"
branch = "refs/heads/" + branch
commit(description, files, branch, branchPrefix)
else:
- commit(description, files, branch, prefix)
+ commit(description, files, branch, globalPrefix)
except:
print gitError.read()
sys.exit(1)
gitOutput.close()
gitError.close()
-os.popen("git-repo-config p4.depotpath %s" % prefix).read()
+os.popen("git-repo-config p4.depotpath %s" % globalPrefix).read()
if len(initialTag) > 0:
os.popen("git tag -d %s" % initialTag).read()