Extract multiple paths concurrently.
This enables importing just the interesting bits of large repositories. Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
This commit is contained in:
parent
4addad2291
commit
6326aa5866
@ -133,24 +133,26 @@ def extractLogMessageFromGitCommit(commit):
|
|||||||
logMessage += log
|
logMessage += log
|
||||||
return logMessage
|
return logMessage
|
||||||
|
|
||||||
def extractDepotPathAndChangeFromGitLog(log):
|
def extractDepotPathsAndChangeFromGitLog(log):
|
||||||
values = {}
|
values = {}
|
||||||
for line in log.split("\n"):
|
for line in log.split("\n"):
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
if line.startswith("[git-p4:") and line.endswith("]"):
|
m = re.search (r"^ *\[git-p4: (.*)\]$", line)
|
||||||
line = line[8:-1].strip()
|
if not m:
|
||||||
for assignment in line.split(":"):
|
continue
|
||||||
variable = assignment.strip()
|
|
||||||
value = ""
|
|
||||||
equalPos = assignment.find("=")
|
|
||||||
if equalPos != -1:
|
|
||||||
variable = assignment[:equalPos].strip()
|
|
||||||
value = assignment[equalPos + 1:].strip()
|
|
||||||
if value.startswith("\"") and value.endswith("\""):
|
|
||||||
value = value[1:-1]
|
|
||||||
values[variable] = value
|
|
||||||
|
|
||||||
return values.get("depot-path"), values.get("change")
|
assignments = m.group(1).split (':')
|
||||||
|
for a in assignments:
|
||||||
|
vals = a.split ('=')
|
||||||
|
key = vals[0].strip()
|
||||||
|
val = ('='.join (vals[1:])).strip()
|
||||||
|
if val.endswith ('\"') and val.startswith('"'):
|
||||||
|
val = val[1:-1]
|
||||||
|
|
||||||
|
values[key] = val
|
||||||
|
|
||||||
|
paths = values.get("depot-path").split(',')
|
||||||
|
return paths, values.get("change")
|
||||||
|
|
||||||
def gitBranchExists(branch):
|
def gitBranchExists(branch):
|
||||||
proc = subprocess.Popen(["git", "rev-parse", branch], stderr=subprocess.PIPE, stdout=subprocess.PIPE);
|
proc = subprocess.Popen(["git", "rev-parse", branch], stderr=subprocess.PIPE, stdout=subprocess.PIPE);
|
||||||
@ -209,10 +211,11 @@ class P4RollBack(Command):
|
|||||||
line = line.strip()
|
line = line.strip()
|
||||||
ref = refPrefix + line
|
ref = refPrefix + line
|
||||||
log = extractLogMessageFromGitCommit(ref)
|
log = extractLogMessageFromGitCommit(ref)
|
||||||
depotPath, change = extractDepotPathAndChangeFromGitLog(log)
|
depotPaths, change = extractDepotPathsAndChangeFromGitLog(log)
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
if len(p4Cmd("changes -m 1 %s...@%s" % (depotPath, maxChange))) == 0:
|
if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
|
||||||
|
for p in depotPaths]))) == 0:
|
||||||
print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
|
print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
|
||||||
system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
|
system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
|
||||||
continue
|
continue
|
||||||
@ -223,7 +226,7 @@ class P4RollBack(Command):
|
|||||||
print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
|
print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
|
||||||
system("git update-ref %s \"%s^\"" % (ref, ref))
|
system("git update-ref %s \"%s^\"" % (ref, ref))
|
||||||
log = extractLogMessageFromGitCommit(ref)
|
log = extractLogMessageFromGitCommit(ref)
|
||||||
depotPath, change = extractDepotPathAndChangeFromGitLog(log)
|
depotPaths, change = extractDepotPathsAndChangeFromGitLog(log)
|
||||||
|
|
||||||
if changed:
|
if changed:
|
||||||
print "%s rewound to %s" % (ref, change)
|
print "%s rewound to %s" % (ref, change)
|
||||||
@ -472,9 +475,9 @@ class P4Submit(Command):
|
|||||||
|
|
||||||
depotPath = ""
|
depotPath = ""
|
||||||
if gitBranchExists("p4"):
|
if gitBranchExists("p4"):
|
||||||
[depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
|
[depotPaths, dummy] = extractDepotPathsAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
|
||||||
if len(depotPath) == 0 and gitBranchExists("origin"):
|
if len(depotPath) == 0 and gitBranchExists("origin"):
|
||||||
[depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
|
[depotPaths, dummy] = extractDepotPathsAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
|
||||||
|
|
||||||
if len(depotPath) == 0:
|
if len(depotPath) == 0:
|
||||||
print "Internal error: cannot locate perforce depot path from existing branches"
|
print "Internal error: cannot locate perforce depot path from existing branches"
|
||||||
@ -568,7 +571,7 @@ class P4Sync(Command):
|
|||||||
optparse.make_option("--verbose", dest="verbose", action="store_true"),
|
optparse.make_option("--verbose", dest="verbose", action="store_true"),
|
||||||
optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false"),
|
optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false"),
|
||||||
optparse.make_option("--max-changes", dest="maxChanges"),
|
optparse.make_option("--max-changes", dest="maxChanges"),
|
||||||
optparse.make_option("--keep-path", dest="keepRepoPath")
|
optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true')
|
||||||
]
|
]
|
||||||
self.description = """Imports from Perforce into a git repository.\n
|
self.description = """Imports from Perforce into a git repository.\n
|
||||||
example:
|
example:
|
||||||
@ -591,8 +594,8 @@ class P4Sync(Command):
|
|||||||
self.importIntoRemotes = True
|
self.importIntoRemotes = True
|
||||||
self.maxChanges = ""
|
self.maxChanges = ""
|
||||||
self.isWindows = (platform.system() == "Windows")
|
self.isWindows = (platform.system() == "Windows")
|
||||||
self.depotPath = None
|
|
||||||
self.keepRepoPath = False
|
self.keepRepoPath = False
|
||||||
|
self.depotPaths = None
|
||||||
|
|
||||||
if gitConfig("git-p4.syncFromOrigin") == "false":
|
if gitConfig("git-p4.syncFromOrigin") == "false":
|
||||||
self.syncWithOrigin = False
|
self.syncWithOrigin = False
|
||||||
@ -605,9 +608,10 @@ class P4Sync(Command):
|
|||||||
fnum = 0
|
fnum = 0
|
||||||
while commit.has_key("depotFile%s" % fnum):
|
while commit.has_key("depotFile%s" % fnum):
|
||||||
path = commit["depotFile%s" % fnum]
|
path = commit["depotFile%s" % fnum]
|
||||||
if not path.startswith(self.depotPath):
|
|
||||||
# if not self.silent:
|
found = [p for p in self.depotPaths
|
||||||
# print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
|
if path.startswith (p)]
|
||||||
|
if not found:
|
||||||
fnum = fnum + 1
|
fnum = fnum + 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@ -620,20 +624,24 @@ class P4Sync(Command):
|
|||||||
fnum = fnum + 1
|
fnum = fnum + 1
|
||||||
return files
|
return files
|
||||||
|
|
||||||
def stripRepoPath(self, path, prefix):
|
def stripRepoPath(self, path, prefixes):
|
||||||
if self.keepRepoPath:
|
if self.keepRepoPath:
|
||||||
prefix = re.sub("^(//[^/]+/).*", r'\1', prefix)
|
prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
|
||||||
|
|
||||||
return path[len(prefix):]
|
for p in prefixes:
|
||||||
|
if path.startswith(p):
|
||||||
|
path = path[len(p):]
|
||||||
|
|
||||||
|
return path
|
||||||
|
|
||||||
def splitFilesIntoBranches(self, commit):
|
def splitFilesIntoBranches(self, commit):
|
||||||
branches = {}
|
branches = {}
|
||||||
fnum = 0
|
fnum = 0
|
||||||
while commit.has_key("depotFile%s" % fnum):
|
while commit.has_key("depotFile%s" % fnum):
|
||||||
path = commit["depotFile%s" % fnum]
|
path = commit["depotFile%s" % fnum]
|
||||||
if not path.startswith(self.depotPath):
|
found = [p for p in self.depotPaths
|
||||||
# if not self.silent:
|
if path.startswith (p)]
|
||||||
# print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
|
if not found:
|
||||||
fnum = fnum + 1
|
fnum = fnum + 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
@ -644,7 +652,7 @@ class P4Sync(Command):
|
|||||||
file["type"] = commit["type%s" % fnum]
|
file["type"] = commit["type%s" % fnum]
|
||||||
fnum = fnum + 1
|
fnum = fnum + 1
|
||||||
|
|
||||||
relPath = self.stripRepoPath(path, self.depotPath)
|
relPath = self.stripRepoPath(path, self.depotPaths)
|
||||||
|
|
||||||
for branch in self.knownBranches.keys():
|
for branch in self.knownBranches.keys():
|
||||||
|
|
||||||
@ -656,7 +664,7 @@ class P4Sync(Command):
|
|||||||
|
|
||||||
return branches
|
return branches
|
||||||
|
|
||||||
def commit(self, details, files, branch, branchPrefix, parent = ""):
|
def commit(self, details, files, branch, branchPrefixes, parent = ""):
|
||||||
epoch = details["time"]
|
epoch = details["time"]
|
||||||
author = details["user"]
|
author = details["user"]
|
||||||
|
|
||||||
@ -678,7 +686,8 @@ class P4Sync(Command):
|
|||||||
|
|
||||||
self.gitStream.write("data <<EOT\n")
|
self.gitStream.write("data <<EOT\n")
|
||||||
self.gitStream.write(details["desc"])
|
self.gitStream.write(details["desc"])
|
||||||
self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix, details["change"]))
|
self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n"
|
||||||
|
% (','.join (branchPrefixes), details["change"]))
|
||||||
self.gitStream.write("EOT\n\n")
|
self.gitStream.write("EOT\n\n")
|
||||||
|
|
||||||
if len(parent) > 0:
|
if len(parent) > 0:
|
||||||
@ -688,12 +697,13 @@ class P4Sync(Command):
|
|||||||
|
|
||||||
for file in files:
|
for file in files:
|
||||||
path = file["path"]
|
path = file["path"]
|
||||||
if not path.startswith(branchPrefix):
|
|
||||||
# print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
|
|
||||||
|
if not [p for p in branchPrefixes if path.startswith(p)]:
|
||||||
continue
|
continue
|
||||||
rev = file["rev"]
|
rev = file["rev"]
|
||||||
depotPath = path + "#" + rev
|
depotPath = path + "#" + rev
|
||||||
relPath = self.stripRepoPath(path, branchPrefix)
|
relPath = self.stripRepoPath(path, branchPrefixes)
|
||||||
action = file["action"]
|
action = file["action"]
|
||||||
|
|
||||||
if file["type"] == "apple":
|
if file["type"] == "apple":
|
||||||
@ -728,7 +738,8 @@ class P4Sync(Command):
|
|||||||
if self.verbose:
|
if self.verbose:
|
||||||
print "Change %s is labelled %s" % (change, labelDetails)
|
print "Change %s is labelled %s" % (change, labelDetails)
|
||||||
|
|
||||||
files = p4CmdList("files %s...@%s" % (branchPrefix, change))
|
files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
|
||||||
|
for p in branchPrefixes]))
|
||||||
|
|
||||||
if len(files) == len(labelRevisions):
|
if len(files) == len(labelRevisions):
|
||||||
|
|
||||||
@ -795,9 +806,9 @@ class P4Sync(Command):
|
|||||||
def getLabels(self):
|
def getLabels(self):
|
||||||
self.labels = {}
|
self.labels = {}
|
||||||
|
|
||||||
l = p4CmdList("labels %s..." % self.depotPath)
|
l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
|
||||||
if len(l) > 0 and not self.silent:
|
if len(l) > 0 and not self.silent:
|
||||||
print "Finding files belonging to labels in %s" % self.depotPath
|
print "Finding files belonging to labels in %s" % `self.depotPath`
|
||||||
|
|
||||||
for output in l:
|
for output in l:
|
||||||
label = output["label"]
|
label = output["label"]
|
||||||
@ -805,7 +816,9 @@ class P4Sync(Command):
|
|||||||
newestChange = 0
|
newestChange = 0
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print "Querying files for label %s" % label
|
print "Querying files for label %s" % label
|
||||||
for file in p4CmdList("files %s...@%s" % (self.depotPath, label)):
|
for file in p4CmdList("files "
|
||||||
|
+ ' '.join (["%s...@%s" % (p, label)
|
||||||
|
for p in self.depotPaths])):
|
||||||
revisions[file["depotFile"]] = file["rev"]
|
revisions[file["depotFile"]] = file["rev"]
|
||||||
change = int(file["change"])
|
change = int(file["change"])
|
||||||
if change > newestChange:
|
if change > newestChange:
|
||||||
@ -817,6 +830,8 @@ class P4Sync(Command):
|
|||||||
print "Label changes: %s" % self.labels.keys()
|
print "Label changes: %s" % self.labels.keys()
|
||||||
|
|
||||||
def getBranchMapping(self):
|
def getBranchMapping(self):
|
||||||
|
|
||||||
|
## FIXME - what's a P4 projectName ?
|
||||||
self.projectName = self.depotPath[self.depotPath.strip().rfind("/") + 1:]
|
self.projectName = self.depotPath[self.depotPath.strip().rfind("/") + 1:]
|
||||||
|
|
||||||
for info in p4CmdList("branches"):
|
for info in p4CmdList("branches"):
|
||||||
@ -872,8 +887,8 @@ class P4Sync(Command):
|
|||||||
remoteHead = self.refPrefix + headName
|
remoteHead = self.refPrefix + headName
|
||||||
originHead = "origin/" + headName
|
originHead = "origin/" + headName
|
||||||
|
|
||||||
[originPreviousDepotPath, originP4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(originHead))
|
[originPreviousDepotPaths, originP4Change] = extractDepotPathsAndChangeFromGitLog(extractLogMessageFromGitCommit(originHead))
|
||||||
if len(originPreviousDepotPath) == 0 or len(originP4Change) == 0:
|
if len(originPreviousDepotPaths) == 0 or len(originP4Change) == 0:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
update = False
|
update = False
|
||||||
@ -882,25 +897,26 @@ class P4Sync(Command):
|
|||||||
print "creating %s" % remoteHead
|
print "creating %s" % remoteHead
|
||||||
update = True
|
update = True
|
||||||
else:
|
else:
|
||||||
[p4PreviousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(remoteHead))
|
[p4PreviousDepotPaths, p4Change] = extractDepotPathsAndChangeFromGitLog(extractLogMessageFromGitCommit(remoteHead))
|
||||||
if len(p4Change) > 0:
|
if len(p4Change) > 0:
|
||||||
if originPreviousDepotPath == p4PreviousDepotPath:
|
if originPreviousDepotPaths == p4PreviousDepotPaths:
|
||||||
originP4Change = int(originP4Change)
|
originP4Change = int(originP4Change)
|
||||||
p4Change = int(p4Change)
|
p4Change = int(p4Change)
|
||||||
if originP4Change > p4Change:
|
if originP4Change > p4Change:
|
||||||
print "%s (%s) is newer than %s (%s). Updating p4 branch from origin." % (originHead, originP4Change, remoteHead, p4Change)
|
print "%s (%s) is newer than %s (%s). Updating p4 branch from origin." % (originHead, originP4Change, remoteHead, p4Change)
|
||||||
update = True
|
update = True
|
||||||
else:
|
else:
|
||||||
print "Ignoring: %s was imported from %s while %s was imported from %s" % (originHead, originPreviousDepotPath, remoteHead, p4PreviousDepotPath)
|
print "Ignoring: %s was imported from %s while %s was imported from %s" % (originHead, originPreviousDepotPaths, remoteHead, p4PreviousDepotPaths)
|
||||||
|
|
||||||
if update:
|
if update:
|
||||||
system("git update-ref %s %s" % (remoteHead, originHead))
|
system("git update-ref %s %s" % (remoteHead, originHead))
|
||||||
|
|
||||||
|
|
||||||
def run(self, args):
|
def run(self, args):
|
||||||
self.depotPath = ""
|
self.depotPaths = []
|
||||||
self.changeRange = ""
|
self.changeRange = ""
|
||||||
self.initialParent = ""
|
self.initialParent = ""
|
||||||
self.previousDepotPath = ""
|
self.previousDepotPaths = []
|
||||||
|
|
||||||
# map from branch depot path to parent branch
|
# map from branch depot path to parent branch
|
||||||
self.knownBranches = {}
|
self.knownBranches = {}
|
||||||
@ -926,7 +942,7 @@ class P4Sync(Command):
|
|||||||
if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
|
if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
|
||||||
system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
|
system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
|
||||||
|
|
||||||
if len(args) == 0:
|
if args == []:
|
||||||
if self.hasOrigin:
|
if self.hasOrigin:
|
||||||
self.createOrUpdateBranchesFromOrigin()
|
self.createOrUpdateBranchesFromOrigin()
|
||||||
self.listExistingP4GitBranches()
|
self.listExistingP4GitBranches()
|
||||||
@ -942,26 +958,31 @@ class P4Sync(Command):
|
|||||||
p4Change = 0
|
p4Change = 0
|
||||||
for branch in self.p4BranchesInGit:
|
for branch in self.p4BranchesInGit:
|
||||||
logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
|
logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
|
||||||
(depotPath, change) = extractDepotPathAndChangeFromGitLog(logMsg)
|
(depotPaths, change) = extractDepotPathsAndChangeFromGitLog(logMsg)
|
||||||
|
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print "path %s change %s" % (depotPath, change)
|
print "path %s change %s" % (','.join(depotPaths), change)
|
||||||
|
|
||||||
if len(depotPath) > 0 and len(change) > 0:
|
if len(depotPaths) > 0 and len(change) > 0:
|
||||||
change = int(change) + 1
|
change = int(change) + 1
|
||||||
p4Change = max(p4Change, change)
|
p4Change = max(p4Change, change)
|
||||||
|
|
||||||
if len(self.previousDepotPath) == 0:
|
if len(self.previousDepotPaths) == 0:
|
||||||
self.previousDepotPath = depotPath
|
self.previousDepotPaths = depotPaths
|
||||||
else:
|
else:
|
||||||
i = 0
|
## FIXME
|
||||||
l = min(len(self.previousDepotPath), len(depotPath))
|
paths = []
|
||||||
while i < l and self.previousDepotPath[i] == depotPath[i]:
|
for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
|
||||||
i = i + 1
|
for i in range(0, max(len(cur), len(prev))):
|
||||||
self.previousDepotPath = self.previousDepotPath[:i]
|
if cur[i] <> prev[i]:
|
||||||
|
break
|
||||||
|
|
||||||
|
paths.append (cur[:i])
|
||||||
|
|
||||||
|
self.previousDepotPaths = paths
|
||||||
|
|
||||||
if p4Change > 0:
|
if p4Change > 0:
|
||||||
self.depotPath = self.previousDepotPath
|
self.depotPaths = self.previousDepotPaths
|
||||||
self.changeRange = "@%s,#head" % p4Change
|
self.changeRange = "@%s,#head" % p4Change
|
||||||
self.initialParent = parseRevision(self.branch)
|
self.initialParent = parseRevision(self.branch)
|
||||||
if not self.silent and not self.detectBranches:
|
if not self.silent and not self.detectBranches:
|
||||||
@ -970,43 +991,47 @@ class P4Sync(Command):
|
|||||||
if not self.branch.startswith("refs/"):
|
if not self.branch.startswith("refs/"):
|
||||||
self.branch = "refs/heads/" + self.branch
|
self.branch = "refs/heads/" + self.branch
|
||||||
|
|
||||||
if len(self.depotPath) != 0:
|
if len(args) == 0 and self.depotPaths:
|
||||||
self.depotPath = self.depotPath.strip()
|
|
||||||
|
|
||||||
if len(args) == 0 and len(self.depotPath) != 0:
|
|
||||||
if not self.silent:
|
if not self.silent:
|
||||||
print "Depot path: %s" % self.depotPath
|
print "Depot paths: %s" % ' '.join(self.depotPaths)
|
||||||
elif len(args) != 1:
|
|
||||||
return False
|
|
||||||
else:
|
else:
|
||||||
if len(self.depotPath) != 0 and self.depotPath != args[0]:
|
if self.depotPaths and self.depotPaths != args:
|
||||||
print ("previous import used depot path %s and now %s was specified. "
|
print ("previous import used depot path %s and now %s was specified. "
|
||||||
"This doesn't work!" % (self.depotPath, args[0]))
|
"This doesn't work!" % (' '.join (self.depotPaths),
|
||||||
|
' '.join (args)))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
self.depotPath = args[0]
|
|
||||||
|
self.depotPaths = args
|
||||||
|
|
||||||
self.revision = ""
|
self.revision = ""
|
||||||
self.users = {}
|
self.users = {}
|
||||||
|
|
||||||
if self.depotPath.find("@") != -1:
|
newPaths = []
|
||||||
atIdx = self.depotPath.index("@")
|
for p in self.depotPaths:
|
||||||
self.changeRange = self.depotPath[atIdx:]
|
if p.find("@") != -1:
|
||||||
if self.changeRange == "@all":
|
atIdx = p.index("@")
|
||||||
self.changeRange = ""
|
self.changeRange = p[atIdx:]
|
||||||
elif self.changeRange.find(",") == -1:
|
if self.changeRange == "@all":
|
||||||
self.revision = self.changeRange
|
self.changeRange = ""
|
||||||
self.changeRange = ""
|
elif self.changeRange.find(",") == -1:
|
||||||
self.depotPath = self.depotPath[0:atIdx]
|
self.revision = self.changeRange
|
||||||
elif self.depotPath.find("#") != -1:
|
self.changeRange = ""
|
||||||
hashIdx = self.depotPath.index("#")
|
p = p[0:atIdx]
|
||||||
self.revision = self.depotPath[hashIdx:]
|
elif p.find("#") != -1:
|
||||||
self.depotPath = self.depotPath[0:hashIdx]
|
hashIdx = p.index("#")
|
||||||
elif len(self.previousDepotPath) == 0:
|
self.revision = p[hashIdx:]
|
||||||
self.revision = "#head"
|
p = p[0:hashIdx]
|
||||||
|
elif self.previousDepotPaths == []:
|
||||||
|
self.revision = "#head"
|
||||||
|
|
||||||
|
p = re.sub ("\.\.\.$", "", p)
|
||||||
|
if not p.endswith("/"):
|
||||||
|
p += "/"
|
||||||
|
|
||||||
|
newPaths.append(p)
|
||||||
|
|
||||||
|
self.depotPaths = newPaths
|
||||||
|
|
||||||
self.depotPath = re.sub ("\.\.\.$", "", self.depotPath)
|
|
||||||
if not self.depotPath.endswith("/"):
|
|
||||||
self.depotPath += "/"
|
|
||||||
|
|
||||||
self.loadUserMapFromCache()
|
self.loadUserMapFromCache()
|
||||||
self.labels = {}
|
self.labels = {}
|
||||||
@ -1020,28 +1045,34 @@ class P4Sync(Command):
|
|||||||
print "initial parents: %s" % self.initialParents
|
print "initial parents: %s" % self.initialParents
|
||||||
for b in self.p4BranchesInGit:
|
for b in self.p4BranchesInGit:
|
||||||
if b != "master":
|
if b != "master":
|
||||||
|
|
||||||
|
## FIXME
|
||||||
b = b[len(self.projectName):]
|
b = b[len(self.projectName):]
|
||||||
self.createdBranches.add(b)
|
self.createdBranches.add(b)
|
||||||
|
|
||||||
self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
|
self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
|
||||||
|
|
||||||
importProcess = subprocess.Popen(["git", "fast-import"],
|
importProcess = subprocess.Popen(["git", "fast-import"],
|
||||||
stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE);
|
stdin=subprocess.PIPE, stdout=subprocess.PIPE,
|
||||||
|
stderr=subprocess.PIPE);
|
||||||
self.gitOutput = importProcess.stdout
|
self.gitOutput = importProcess.stdout
|
||||||
self.gitStream = importProcess.stdin
|
self.gitStream = importProcess.stdin
|
||||||
self.gitError = importProcess.stderr
|
self.gitError = importProcess.stderr
|
||||||
|
|
||||||
if len(self.revision) > 0:
|
if len(self.revision) > 0:
|
||||||
print "Doing initial import of %s from revision %s" % (self.depotPath, self.revision)
|
print "Doing initial import of %s from revision %s" % (' '.join(self.depotPaths), self.revision)
|
||||||
|
|
||||||
details = { "user" : "git perforce import user", "time" : int(time.time()) }
|
details = { "user" : "git perforce import user", "time" : int(time.time()) }
|
||||||
details["desc"] = ("Initial import of %s from the state at revision %s"
|
details["desc"] = ("Initial import of %s from the state at revision %s"
|
||||||
% (self.depotPath, self.revision))
|
% (' '.join(self.depotPaths), self.revision))
|
||||||
details["change"] = self.revision
|
details["change"] = self.revision
|
||||||
newestRevision = 0
|
newestRevision = 0
|
||||||
|
|
||||||
fileCnt = 0
|
fileCnt = 0
|
||||||
for info in p4CmdList("files %s...%s" % (self.depotPath, self.revision)):
|
for info in p4CmdList("files "
|
||||||
|
+ ' '.join(["%s...%s"
|
||||||
|
% (p, self.revision)
|
||||||
|
for p in self.depotPaths])):
|
||||||
change = int(info["change"])
|
change = int(info["change"])
|
||||||
if change > newestRevision:
|
if change > newestRevision:
|
||||||
newestRevision = change
|
newestRevision = change
|
||||||
@ -1059,7 +1090,7 @@ class P4Sync(Command):
|
|||||||
details["change"] = newestRevision
|
details["change"] = newestRevision
|
||||||
|
|
||||||
try:
|
try:
|
||||||
self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPath)
|
self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
|
||||||
except IOError:
|
except IOError:
|
||||||
print "IO error with git fast-import. Is your git version recent enough?"
|
print "IO error with git fast-import. Is your git version recent enough?"
|
||||||
print self.gitError.read()
|
print self.gitError.read()
|
||||||
@ -1079,8 +1110,11 @@ class P4Sync(Command):
|
|||||||
changes.sort()
|
changes.sort()
|
||||||
else:
|
else:
|
||||||
if self.verbose:
|
if self.verbose:
|
||||||
print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange)
|
print "Getting p4 changes for %s...%s" % (`self.depotPaths`,
|
||||||
output = read_pipe_lines("p4 changes %s...%s" % (self.depotPath, self.changeRange))
|
self.changeRange)
|
||||||
|
assert self.depotPaths
|
||||||
|
output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, self.changeRange)
|
||||||
|
for p in self.depotPaths]))
|
||||||
|
|
||||||
for line in output:
|
for line in output:
|
||||||
changeNum = line.split(" ")[1]
|
changeNum = line.split(" ")[1]
|
||||||
@ -1111,7 +1145,8 @@ class P4Sync(Command):
|
|||||||
if self.detectBranches:
|
if self.detectBranches:
|
||||||
branches = self.splitFilesIntoBranches(description)
|
branches = self.splitFilesIntoBranches(description)
|
||||||
for branch in branches.keys():
|
for branch in branches.keys():
|
||||||
branchPrefix = self.depotPath + branch + "/"
|
## HACK --hwn
|
||||||
|
branchPrefix = self.depotPaths[0] + branch + "/"
|
||||||
|
|
||||||
parent = ""
|
parent = ""
|
||||||
|
|
||||||
@ -1134,11 +1169,14 @@ class P4Sync(Command):
|
|||||||
if branch == "main":
|
if branch == "main":
|
||||||
branch = "master"
|
branch = "master"
|
||||||
else:
|
else:
|
||||||
|
|
||||||
|
## FIXME
|
||||||
branch = self.projectName + branch
|
branch = self.projectName + branch
|
||||||
|
|
||||||
if parent == "main":
|
if parent == "main":
|
||||||
parent = "master"
|
parent = "master"
|
||||||
elif len(parent) > 0:
|
elif len(parent) > 0:
|
||||||
|
## FIXME
|
||||||
parent = self.projectName + parent
|
parent = self.projectName + parent
|
||||||
|
|
||||||
branch = self.refPrefix + branch
|
branch = self.refPrefix + branch
|
||||||
@ -1155,7 +1193,8 @@ class P4Sync(Command):
|
|||||||
self.commit(description, filesForCommit, branch, branchPrefix, parent)
|
self.commit(description, filesForCommit, branch, branchPrefix, parent)
|
||||||
else:
|
else:
|
||||||
files = self.extractFilesFromCommit(description)
|
files = self.extractFilesFromCommit(description)
|
||||||
self.commit(description, files, self.branch, self.depotPath, self.initialParent)
|
self.commit(description, files, self.branch, self.depotPaths,
|
||||||
|
self.initialParent)
|
||||||
self.initialParent = ""
|
self.initialParent = ""
|
||||||
except IOError:
|
except IOError:
|
||||||
print self.gitError.read()
|
print self.gitError.read()
|
||||||
@ -1206,30 +1245,35 @@ class P4Clone(P4Sync):
|
|||||||
|
|
||||||
if len(args) < 1:
|
if len(args) < 1:
|
||||||
return False
|
return False
|
||||||
depotPath = args[0]
|
|
||||||
destination = ""
|
destination = ""
|
||||||
if len(args) == 2:
|
if self.keepRepoPath:
|
||||||
|
destination = args[-1]
|
||||||
|
args = args[:-1]
|
||||||
|
elif len(args) == 2:
|
||||||
destination = args[1]
|
destination = args[1]
|
||||||
elif len(args) > 2:
|
elif len(args) > 2:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if not depotPath.startswith("//"):
|
depotPaths = args
|
||||||
return False
|
for p in depotPaths:
|
||||||
|
if not p.startswith("//"):
|
||||||
depotDir = re.sub("(@[^@]*)$", "", depotPath)
|
return False
|
||||||
depotDir = re.sub("(#[^#]*)$", "", depotDir)
|
|
||||||
depotDir = re.sub(r"\.\.\.$,", "", depotDir)
|
|
||||||
depotDir = re.sub(r"/$", "", depotDir)
|
|
||||||
|
|
||||||
if not destination:
|
if not destination:
|
||||||
|
depotPath = args[0]
|
||||||
|
depotDir = re.sub("(@[^@]*)$", "", depotPath)
|
||||||
|
depotDir = re.sub("(#[^#]*)$", "", depotDir)
|
||||||
|
depotDir = re.sub(r"\.\.\.$,", "", depotDir)
|
||||||
|
depotDir = re.sub(r"/$", "", depotDir)
|
||||||
|
|
||||||
destination = os.path.split(depotDir)[1]
|
destination = os.path.split(depotDir)[1]
|
||||||
|
|
||||||
print "Importing from %s into %s" % (depotPath, destination)
|
print "Importing from %s into %s" % (`depotPaths`, destination)
|
||||||
os.makedirs(destination)
|
os.makedirs(destination)
|
||||||
os.chdir(destination)
|
os.chdir(destination)
|
||||||
system("git init")
|
system("git init")
|
||||||
gitdir = os.getcwd() + "/.git"
|
gitdir = os.getcwd() + "/.git"
|
||||||
if not P4Sync.run(self, [depotPath]):
|
if not P4Sync.run(self, depotPaths):
|
||||||
return False
|
return False
|
||||||
if self.branch != "master":
|
if self.branch != "master":
|
||||||
if gitBranchExists("refs/remotes/p4/master"):
|
if gitBranchExists("refs/remotes/p4/master"):
|
||||||
|
Loading…
Reference in New Issue
Block a user