2007-03-20 03:59:12 +08:00
#!/usr/bin/env python
#
# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
#
# Author: Simon Hausmann <hausmann@kde.org>
2007-03-20 05:26:36 +08:00
# Copyright: 2007 Simon Hausmann <hausmann@kde.org>
# 2007 Trolltech ASA
2007-03-20 03:59:12 +08:00
# License: MIT <http://www.opensource.org/licenses/mit-license.php>
#
2007-05-15 20:31:06 +08:00
import optparse, sys, os, marshal, popen2, subprocess, shelve
2007-05-15 21:15:39 +08:00
import tempfile, getopt, sha, os.path, time, platform
2007-03-21 03:54:23 +08:00
from sets import Set;
2007-03-20 05:25:17 +08:00
gitdir = os.environ.get("GIT_DIR", "")
2007-03-20 03:59:12 +08:00
2007-05-15 20:57:57 +08:00
def mypopen(command):
return os.popen(command, "rb");
2007-03-20 03:59:12 +08:00
def p4CmdList(cmd):
cmd = "p4 -G %s" % cmd
pipe = os.popen(cmd, "rb")
result = []
try:
while True:
entry = marshal.load(pipe)
result.append(entry)
except EOFError:
pass
2007-05-24 05:27:31 +08:00
exitCode = pipe.close()
if exitCode != None:
2007-05-24 05:32:32 +08:00
entry = {}
entry["p4ExitCode"] = exitCode
result.append(entry)
2007-03-20 03:59:12 +08:00
return result
def p4Cmd(cmd):
list = p4CmdList(cmd)
result = {}
for entry in list:
result.update(entry)
return result;
2007-03-24 16:15:11 +08:00
def p4Where(depotPath):
if not depotPath.endswith("/"):
depotPath += "/"
output = p4Cmd("where %s..." % depotPath)
2007-05-21 15:34:56 +08:00
if output["code"] == "error":
return ""
2007-03-24 16:15:11 +08:00
clientPath = ""
if "path" in output:
clientPath = output.get("path")
elif "data" in output:
data = output.get("data")
lastSpace = data.rfind(" ")
clientPath = data[lastSpace + 1:]
if clientPath.endswith("..."):
clientPath = clientPath[:-3]
return clientPath
2007-03-20 03:59:12 +08:00
def die(msg):
sys.stderr.write(msg + "\n")
sys.exit(1)
def currentGitBranch():
2007-05-15 20:57:57 +08:00
return mypopen("git name-rev HEAD").read().split(" ")[1][:-1]
2007-03-20 03:59:12 +08:00
2007-03-20 05:25:17 +08:00
def isValidGitDir(path):
if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"):
return True;
return False
2007-05-17 15:13:54 +08:00
def parseRevision(ref):
return mypopen("git rev-parse %s" % ref).read()[:-1]
2007-03-20 05:25:17 +08:00
def system(cmd):
if os.system(cmd) != 0:
die("command failed: %s" % cmd)
2007-03-23 04:10:25 +08:00
def extractLogMessageFromGitCommit(commit):
logMessage = ""
foundTitle = False
2007-05-15 20:57:57 +08:00
for log in mypopen("git cat-file commit %s" % commit).readlines():
2007-03-23 04:10:25 +08:00
if not foundTitle:
if len(log) == 1:
2007-05-02 05:15:48 +08:00
foundTitle = True
2007-03-23 04:10:25 +08:00
continue
logMessage += log
return logMessage
def extractDepotPathAndChangeFromGitLog(log):
values = {}
for line in log.split("\n"):
line = line.strip()
if line.startswith("[git-p4:") and line.endswith("]"):
line = line[8:-1].strip()
for assignment in line.split(":"):
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")
2007-03-23 04:27:14 +08:00
def gitBranchExists(branch):
2007-05-15 20:57:57 +08:00
proc = subprocess.Popen(["git", "rev-parse", branch], stderr=subprocess.PIPE, stdout=subprocess.PIPE);
return proc.wait() == 0;
2007-03-23 04:27:14 +08:00
2007-05-25 16:36:10 +08:00
def gitConfig(key):
return mypopen("git config %s" % key).read()[:-1]
2007-03-21 03:54:23 +08:00
class Command:
def __init__(self):
self.usage = "usage: %prog [options]"
2007-03-26 14:18:55 +08:00
self.needsGit = True
2007-03-21 03:54:23 +08:00
class P4Debug(Command):
2007-03-20 03:59:12 +08:00
def __init__(self):
2007-03-23 04:10:25 +08:00
Command.__init__(self)
2007-03-20 03:59:12 +08:00
self.options = [
]
2007-03-20 04:02:30 +08:00
self.description = "A tool to debug the output of p4 -G."
2007-03-26 14:18:55 +08:00
self.needsGit = False
2007-03-20 03:59:12 +08:00
def run(self, args):
for output in p4CmdList(" ".join(args)):
print output
2007-03-21 03:54:23 +08:00
return True
2007-03-20 03:59:12 +08:00
2007-05-22 04:57:06 +08:00
class P4RollBack(Command):
def __init__(self):
Command.__init__(self)
self.options = [
2007-05-24 02:07:57 +08:00
optparse.make_option("--verbose", dest="verbose", action="store_true"),
optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
2007-05-22 04:57:06 +08:00
]
self.description = "A tool to debug the multi-branch import. Don't use :)"
2007-05-22 05:44:24 +08:00
self.verbose = False
2007-05-24 02:07:57 +08:00
self.rollbackLocalBranches = False
2007-05-22 04:57:06 +08:00
def run(self, args):
if len(args) != 1:
return False
maxChange = int(args[0])
2007-05-24 02:07:57 +08:00
2007-05-24 05:44:19 +08:00
if "p4ExitCode" in p4Cmd("changes -m 1"):
2007-05-24 05:40:48 +08:00
die("Problems executing p4");
2007-05-24 02:07:57 +08:00
if self.rollbackLocalBranches:
refPrefix = "refs/heads/"
lines = mypopen("git rev-parse --symbolic --branches").readlines()
else:
refPrefix = "refs/remotes/"
lines = mypopen("git rev-parse --symbolic --remotes").readlines()
for line in lines:
if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
ref = refPrefix + line[:-1]
2007-05-22 04:57:06 +08:00
log = extractLogMessageFromGitCommit(ref)
depotPath, change = extractDepotPathAndChangeFromGitLog(log)
changed = False
2007-05-22 05:44:24 +08:00
if len(p4Cmd("changes -m 1 %s...@%s" % (depotPath, maxChange))) == 0:
print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
continue
2007-05-22 04:57:06 +08:00
while len(change) > 0 and int(change) > maxChange:
changed = True
2007-05-22 05:44:24 +08:00
if self.verbose:
print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
2007-05-22 04:57:06 +08:00
system("git update-ref %s \"%s^\"" % (ref, ref))
log = extractLogMessageFromGitCommit(ref)
depotPath, change = extractDepotPathAndChangeFromGitLog(log)
if changed:
2007-05-22 05:44:24 +08:00
print "%s rewound to %s" % (ref, change)
2007-05-22 04:57:06 +08:00
return True
2007-04-01 21:40:46 +08:00
class P4Submit(Command):
2007-03-20 05:25:17 +08:00
def __init__(self):
2007-03-21 03:54:23 +08:00
Command.__init__(self)
2007-03-20 05:25:17 +08:00
self.options = [
optparse.make_option("--continue", action="store_false", dest="firstTime"),
optparse.make_option("--origin", dest="origin"),
optparse.make_option("--reset", action="store_true", dest="reset"),
optparse.make_option("--log-substitutions", dest="substFile"),
optparse.make_option("--noninteractive", action="store_false"),
2007-03-21 17:11:20 +08:00
optparse.make_option("--dry-run", action="store_true"),
2007-05-20 22:55:05 +08:00
optparse.make_option("--direct", dest="directSubmit", action="store_true"),
2007-03-20 05:25:17 +08:00
]
self.description = "Submit changes from git to the perforce depot."
2007-03-30 01:15:24 +08:00
self.usage += " [name of git branch to submit into perforce depot]"
2007-03-20 05:25:17 +08:00
self.firstTime = True
self.reset = False
self.interactive = True
self.dryRun = False
self.substFile = ""
self.firstTime = True
2007-03-23 16:16:07 +08:00
self.origin = ""
2007-05-20 22:55:05 +08:00
self.directSubmit = False
2007-03-20 05:25:17 +08:00
self.logSubstitutions = {}
self.logSubstitutions["<enter description here>"] = "%log%"
self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
def check(self):
if len(p4CmdList("opened ...")) > 0:
die("You have files opened with perforce! Close them before starting the sync.")
def start(self):
if len(self.config) > 0 and not self.reset:
2007-05-16 15:43:13 +08:00
die("Cannot start sync. Previous sync config found at %s\nIf you want to start submitting again from scratch maybe you want to call git-p4 submit --reset" % self.configFile)
2007-03-20 05:25:17 +08:00
commits = []
2007-05-20 22:55:05 +08:00
if self.directSubmit:
commits.append("0")
else:
for line in mypopen("git rev-list --no-merges %s..%s" % (self.origin, self.master)).readlines():
commits.append(line[:-1])
commits.reverse()
2007-03-20 05:25:17 +08:00
self.config["commits"] = commits
def prepareLogMessage(self, template, message):
result = ""
for line in template.split("\n"):
if line.startswith("#"):
result += line + "\n"
continue
substituted = False
for key in self.logSubstitutions.keys():
if line.find(key) != -1:
value = self.logSubstitutions[key]
value = value.replace("%log%", message)
if value != "@remove@":
result += line.replace(key, value) + "\n"
substituted = True
break
if not substituted:
result += line + "\n"
return result
def apply(self, id):
2007-05-20 22:55:05 +08:00
if self.directSubmit:
print "Applying local change in working directory/index"
diff = self.diffStatus
else:
print "Applying %s" % (mypopen("git log --max-count=1 --pretty=oneline %s" % id).read())
diff = mypopen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines()
2007-03-20 05:25:17 +08:00
filesToAdd = set()
filesToDelete = set()
2007-05-16 15:41:26 +08:00
editedFiles = set()
2007-03-20 05:25:17 +08:00
for line in diff:
modifier = line[0]
path = line[1:].strip()
if modifier == "M":
2007-05-16 15:41:26 +08:00
system("p4 edit \"%s\"" % path)
editedFiles.add(path)
2007-03-20 05:25:17 +08:00
elif modifier == "A":
filesToAdd.add(path)
if path in filesToDelete:
filesToDelete.remove(path)
elif modifier == "D":
filesToDelete.add(path)
if path in filesToAdd:
filesToAdd.remove(path)
else:
die("unknown modifier %s for %s" % (modifier, path))
2007-05-20 22:55:05 +08:00
if self.directSubmit:
diffcmd = "cat \"%s\"" % self.diffFile
else:
diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
2007-05-20 22:33:21 +08:00
patchcmd = diffcmd + " | git apply "
2007-05-20 22:55:05 +08:00
tryPatchCmd = patchcmd + "--check -"
applyPatchCmd = patchcmd + "--check --apply -"
2007-04-15 15:59:56 +08:00
2007-05-20 22:33:21 +08:00
if os.system(tryPatchCmd) != 0:
2007-04-15 15:59:56 +08:00
print "Unfortunately applying the change failed!"
print "What do you want to do?"
response = "x"
while response != "s" and response != "a" and response != "w":
response = raw_input("[s]kip this patch / [a]pply the patch forcibly and with .rej files / [w]rite the patch to a file (patch.txt) ")
if response == "s":
print "Skipping! Good luck with the next patches..."
return
elif response == "a":
2007-05-20 22:33:21 +08:00
os.system(applyPatchCmd)
2007-04-15 15:59:56 +08:00
if len(filesToAdd) > 0:
print "You may also want to call p4 add on the following files:"
print " ".join(filesToAdd)
if len(filesToDelete):
print "The following files should be scheduled for deletion with p4 delete:"
print " ".join(filesToDelete)
die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
elif response == "w":
system(diffcmd + " > patch.txt")
print "Patch saved to patch.txt in %s !" % self.clientPath
die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
2007-05-20 22:33:21 +08:00
system(applyPatchCmd)
2007-03-20 05:25:17 +08:00
for f in filesToAdd:
system("p4 add %s" % f)
for f in filesToDelete:
system("p4 revert %s" % f)
system("p4 delete %s" % f)
2007-05-20 22:55:05 +08:00
logMessage = ""
if not self.directSubmit:
logMessage = extractLogMessageFromGitCommit(id)
logMessage = logMessage.replace("\n", "\n\t")
logMessage = logMessage[:-1]
2007-03-20 05:25:17 +08:00
2007-05-15 20:57:57 +08:00
template = mypopen("p4 change -o").read()
2007-03-20 05:25:17 +08:00
if self.interactive:
submitTemplate = self.prepareLogMessage(template, logMessage)
2007-05-15 20:57:57 +08:00
diff = mypopen("p4 diff -du ...").read()
2007-03-20 05:25:17 +08:00
for newFile in filesToAdd:
diff += "==== new file ====\n"
diff += "--- /dev/null\n"
diff += "+++ %s\n" % newFile
f = open(newFile, "r")
for line in f.readlines():
diff += "+" + line
f.close()
2007-05-15 21:15:39 +08:00
separatorLine = "######## everything below this line is just the diff #######"
if platform.system() == "Windows":
separatorLine += "\r"
separatorLine += "\n"
2007-03-20 05:25:17 +08:00
response = "e"
2007-03-22 04:04:12 +08:00
firstIteration = True
2007-03-20 05:25:17 +08:00
while response == "e":
2007-03-22 04:04:12 +08:00
if not firstIteration:
2007-05-16 15:41:26 +08:00
response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
2007-03-22 04:04:12 +08:00
firstIteration = False
2007-03-20 05:25:17 +08:00
if response == "e":
[handle, fileName] = tempfile.mkstemp()
tmpFile = os.fdopen(handle, "w+")
2007-03-22 04:04:12 +08:00
tmpFile.write(submitTemplate + separatorLine + diff)
2007-03-20 05:25:17 +08:00
tmpFile.close()
2007-05-15 21:15:39 +08:00
defaultEditor = "vi"
if platform.system() == "Windows":
defaultEditor = "notepad"
editor = os.environ.get("EDITOR", defaultEditor);
2007-03-20 05:25:17 +08:00
system(editor + " " + fileName)
2007-05-15 21:15:39 +08:00
tmpFile = open(fileName, "rb")
2007-03-22 04:04:12 +08:00
message = tmpFile.read()
2007-03-20 05:25:17 +08:00
tmpFile.close()
os.remove(fileName)
2007-03-22 04:04:12 +08:00
submitTemplate = message[:message.index(separatorLine)]
2007-03-20 05:25:17 +08:00
if response == "y" or response == "yes":
if self.dryRun:
print submitTemplate
raw_input("Press return to continue...")
else:
2007-05-21 17:04:26 +08:00
if self.directSubmit:
print "Submitting to git first"
os.chdir(self.oldWorkingDirectory)
pipe = os.popen("git commit -a -F -", "wb")
pipe.write(submitTemplate)
pipe.close()
os.chdir(self.clientPath)
pipe = os.popen("p4 submit -i", "wb")
pipe.write(submitTemplate)
pipe.close()
2007-05-16 15:41:26 +08:00
elif response == "s":
for f in editedFiles:
system("p4 revert \"%s\"" % f);
for f in filesToAdd:
system("p4 revert \"%s\"" % f);
system("rm %s" %f)
for f in filesToDelete:
system("p4 delete \"%s\"" % f);
return
2007-03-20 05:25:17 +08:00
else:
print "Not submitting!"
self.interactive = False
else:
fileName = "submit.txt"
file = open(fileName, "w+")
file.write(self.prepareLogMessage(template, logMessage))
file.close()
print "Perforce submit template written as %s. Please review/edit and then use p4 submit -i < %s to submit directly!" % (fileName, fileName)
def run(self, args):
2007-03-23 16:16:07 +08:00
global gitdir
# make gitdir absolute so we can cd out into the perforce checkout
gitdir = os.path.abspath(gitdir)
os.environ["GIT_DIR"] = gitdir
2007-03-30 01:15:24 +08:00
if len(args) == 0:
self.master = currentGitBranch()
2007-05-25 14:49:18 +08:00
if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
2007-03-30 01:15:24 +08:00
die("Detecting current git branch failed!")
elif len(args) == 1:
self.master = args[0]
else:
return False
2007-03-23 16:16:07 +08:00
depotPath = ""
if gitBranchExists("p4"):
[depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
if len(depotPath) == 0 and gitBranchExists("origin"):
[depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
if len(depotPath) == 0:
print "Internal error: cannot locate perforce depot path from existing branches"
sys.exit(128)
2007-04-15 15:59:56 +08:00
self.clientPath = p4Where(depotPath)
2007-03-23 16:16:07 +08:00
2007-04-15 15:59:56 +08:00
if len(self.clientPath) == 0:
2007-03-23 16:16:07 +08:00
print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
sys.exit(128)
2007-04-15 15:59:56 +08:00
print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
2007-05-21 17:04:26 +08:00
self.oldWorkingDirectory = os.getcwd()
2007-05-20 22:55:05 +08:00
if self.directSubmit:
self.diffStatus = mypopen("git diff -r --name-status HEAD").readlines()
2007-05-21 16:08:11 +08:00
if len(self.diffStatus) == 0:
print "No changes in working directory to submit."
return True
2007-05-20 22:55:05 +08:00
patch = mypopen("git diff -p --binary --diff-filter=ACMRTUXB HEAD").read()
self.diffFile = gitdir + "/p4-git-diff"
f = open(self.diffFile, "wb")
f.write(patch)
f.close();
2007-04-15 15:59:56 +08:00
os.chdir(self.clientPath)
response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
2007-03-23 16:16:07 +08:00
if response == "y" or response == "yes":
system("p4 sync ...")
if len(self.origin) == 0:
if gitBranchExists("p4"):
self.origin = "p4"
else:
self.origin = "origin"
2007-03-20 05:25:17 +08:00
if self.reset:
self.firstTime = True
if len(self.substFile) > 0:
for line in open(self.substFile, "r").readlines():
tokens = line[:-1].split("=")
self.logSubstitutions[tokens[0]] = tokens[1]
self.check()
self.configFile = gitdir + "/p4-git-sync.cfg"
self.config = shelve.open(self.configFile, writeback=True)
if self.firstTime:
self.start()
commits = self.config.get("commits", [])
while len(commits) > 0:
self.firstTime = False
commit = commits[0]
commits = commits[1:]
self.config["commits"] = commits
self.apply(commit)
if not self.interactive:
break
self.config.close()
2007-05-20 22:55:05 +08:00
if self.directSubmit:
os.remove(self.diffFile)
2007-03-20 05:25:17 +08:00
if len(commits) == 0:
if self.firstTime:
print "No changes found to apply between %s and current HEAD" % self.origin
else:
print "All changes applied!"
2007-05-21 17:04:26 +08:00
os.chdir(self.oldWorkingDirectory)
response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
2007-04-09 18:43:40 +08:00
if response == "y" or response == "yes":
rebase = P4Rebase()
rebase.run([])
2007-03-20 05:25:17 +08:00
os.remove(self.configFile)
2007-03-21 03:54:23 +08:00
return True
2007-04-01 21:40:46 +08:00
class P4Sync(Command):
2007-03-21 03:54:23 +08:00
def __init__(self):
Command.__init__(self)
self.options = [
optparse.make_option("--branch", dest="branch"),
optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
optparse.make_option("--changesfile", dest="changesFile"),
optparse.make_option("--silent", dest="silent", action="store_true"),
2007-05-18 04:17:49 +08:00
optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
2007-05-23 06:03:08 +08:00
optparse.make_option("--verbose", dest="verbose", action="store_true"),
2007-05-23 06:07:35 +08:00
optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false"),
optparse.make_option("--max-changes", dest="maxChanges")
2007-03-21 03:54:23 +08:00
]
self.description = """Imports from Perforce into a git repository.\n
example:
//depot/my/project/ -- to import the current head
//depot/my/project/@all -- to import everything
//depot/my/project/@1,6 -- to import only from revision 1 to 6
(a ... is not needed in the path p4 specification, it's added implicitly)"""
self.usage += " //depot/path[@revRange]"
self.silent = False
self.createdBranches = Set()
self.committedChanges = Set()
2007-03-23 04:34:16 +08:00
self.branch = ""
2007-03-21 03:54:23 +08:00
self.detectBranches = False
2007-04-08 06:12:02 +08:00
self.detectLabels = False
2007-03-21 03:54:23 +08:00
self.changesFile = ""
2007-05-25 16:36:10 +08:00
self.syncWithOrigin = True
2007-05-19 03:45:23 +08:00
self.verbose = False
2007-05-23 06:03:08 +08:00
self.importIntoRemotes = True
2007-05-23 06:07:35 +08:00
self.maxChanges = ""
2007-05-24 20:07:55 +08:00
self.isWindows = (platform.system() == "Windows")
2007-03-21 03:54:23 +08:00
2007-05-25 16:36:10 +08:00
if gitConfig("git-p4.syncFromOrigin") == "false":
self.syncWithOrigin = False
2007-03-21 03:54:23 +08:00
def p4File(self, depotPath):
return os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
def extractFilesFromCommit(self, commit):
files = []
fnum = 0
while commit.has_key("depotFile%s" % fnum):
path = commit["depotFile%s" % fnum]
2007-05-02 05:23:00 +08:00
if not path.startswith(self.depotPath):
2007-03-21 03:54:23 +08:00
# if not self.silent:
2007-05-02 05:23:00 +08:00
# print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
2007-03-21 03:54:23 +08:00
fnum = fnum + 1
continue
file = {}
file["path"] = path
file["rev"] = commit["rev%s" % fnum]
file["action"] = commit["action%s" % fnum]
file["type"] = commit["type%s" % fnum]
files.append(file)
fnum = fnum + 1
return files
2007-05-19 17:54:11 +08:00
def splitFilesIntoBranches(self, commit):
2007-05-19 17:07:32 +08:00
branches = {}
2007-03-21 03:54:23 +08:00
2007-05-19 17:54:11 +08:00
fnum = 0
while commit.has_key("depotFile%s" % fnum):
path = commit["depotFile%s" % fnum]
if not path.startswith(self.depotPath):
# if not self.silent:
# print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
fnum = fnum + 1
continue
file = {}
file["path"] = path
file["rev"] = commit["rev%s" % fnum]
file["action"] = commit["action%s" % fnum]
file["type"] = commit["type%s" % fnum]
fnum = fnum + 1
relPath = path[len(self.depotPath):]
2007-03-21 03:54:23 +08:00
2007-05-19 03:45:23 +08:00
for branch in self.knownBranches.keys():
2007-05-22 05:25:51 +08:00
if relPath.startswith(branch + "/"): # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
2007-05-19 17:07:32 +08:00
if branch not in branches:
branches[branch] = []
2007-05-19 17:54:11 +08:00
branches[branch].append(file)
2007-03-21 03:54:23 +08:00
return branches
2007-05-19 03:45:23 +08:00
def commit(self, details, files, branch, branchPrefix, parent = ""):
2007-03-21 03:54:23 +08:00
epoch = details["time"]
author = details["user"]
2007-05-19 03:45:23 +08:00
if self.verbose:
print "commit into %s" % branch
2007-03-21 03:54:23 +08:00
self.gitStream.write("commit %s\n" % branch)
# gitStream.write("mark :%s\n" % details["change"])
self.committedChanges.add(int(details["change"]))
committer = ""
2007-05-20 16:55:54 +08:00
if author not in self.users:
self.getUserMapFromPerforceServer()
2007-03-21 03:54:23 +08:00
if author in self.users:
2007-03-21 03:59:30 +08:00
committer = "%s %s %s" % (self.users[author], epoch, self.tz)
2007-03-21 03:54:23 +08:00
else:
2007-03-21 03:59:30 +08:00
committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
2007-03-21 03:54:23 +08:00
self.gitStream.write("committer %s\n" % committer)
self.gitStream.write("data <<EOT\n")
self.gitStream.write(details["desc"])
2007-03-23 04:10:25 +08:00
self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix, details["change"]))
2007-03-21 03:54:23 +08:00
self.gitStream.write("EOT\n\n")
if len(parent) > 0:
2007-05-19 03:45:23 +08:00
if self.verbose:
print "parent %s" % parent
2007-03-21 03:54:23 +08:00
self.gitStream.write("from %s\n" % parent)
for file in files:
path = file["path"]
if not path.startswith(branchPrefix):
# if not silent:
# print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
continue
rev = file["rev"]
depotPath = path + "#" + rev
relPath = path[len(branchPrefix):]
action = file["action"]
if file["type"] == "apple":
print "\nfile %s is a strange apple file that forks. Ignoring!" % path
continue
if action == "delete":
self.gitStream.write("D %s\n" % relPath)
else:
mode = 644
if file["type"].startswith("x"):
mode = 755
data = self.p4File(depotPath)
2007-05-24 20:07:55 +08:00
if self.isWindows and file["type"].endswith("text"):
data = data.replace("\r\n", "\n")
2007-03-21 03:54:23 +08:00
self.gitStream.write("M %s inline %s\n" % (mode, relPath))
self.gitStream.write("data %s\n" % len(data))
self.gitStream.write(data)
self.gitStream.write("\n")
self.gitStream.write("\n")
2007-03-27 04:34:34 +08:00
change = int(details["change"])
2007-05-19 18:05:40 +08:00
if self.labels.has_key(change):
2007-03-27 04:34:34 +08:00
label = self.labels[change]
labelDetails = label[0]
labelRevisions = label[1]
2007-05-19 17:54:11 +08:00
if self.verbose:
print "Change %s is labelled %s" % (change, labelDetails)
2007-03-27 04:34:34 +08:00
files = p4CmdList("files %s...@%s" % (branchPrefix, change))
if len(files) == len(labelRevisions):
cleanedFiles = {}
for info in files:
if info["action"] == "delete":
continue
cleanedFiles[info["depotFile"]] = info["rev"]
if cleanedFiles == labelRevisions:
self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
self.gitStream.write("from %s\n" % branch)
owner = labelDetails["Owner"]
tagger = ""
if author in self.users:
tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
else:
tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
self.gitStream.write("tagger %s\n" % tagger)
self.gitStream.write("data <<EOT\n")
self.gitStream.write(labelDetails["Description"])
self.gitStream.write("EOT\n\n")
else:
2007-03-28 23:05:38 +08:00
if not self.silent:
2007-03-27 04:34:34 +08:00
print "Tag %s does not match with change %s: files do not match." % (labelDetails["label"], change)
else:
2007-03-28 23:05:38 +08:00
if not self.silent:
2007-03-27 04:34:34 +08:00
print "Tag %s does not match with change %s: file count is different." % (labelDetails["label"], change)
2007-03-21 03:54:23 +08:00
2007-05-20 16:55:54 +08:00
def getUserMapFromPerforceServer(self):
2007-05-24 06:24:52 +08:00
if self.userMapFromPerforceServer:
return
2007-03-21 03:54:23 +08:00
self.users = {}
for output in p4CmdList("users"):
if not output.has_key("User"):
continue
self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
2007-05-20 16:55:54 +08:00
cache = open(gitdir + "/p4-usercache.txt", "wb")
for user in self.users.keys():
cache.write("%s\t%s\n" % (user, self.users[user]))
cache.close();
2007-05-24 06:24:52 +08:00
self.userMapFromPerforceServer = True
2007-05-20 16:55:54 +08:00
def loadUserMapFromCache(self):
self.users = {}
2007-05-24 06:24:52 +08:00
self.userMapFromPerforceServer = False
2007-05-20 16:55:54 +08:00
try:
cache = open(gitdir + "/p4-usercache.txt", "rb")
lines = cache.readlines()
cache.close()
for line in lines:
entry = line[:-1].split("\t")
self.users[entry[0]] = entry[1]
except IOError:
self.getUserMapFromPerforceServer()
2007-03-27 04:34:34 +08:00
def getLabels(self):
self.labels = {}
2007-05-02 05:23:00 +08:00
l = p4CmdList("labels %s..." % self.depotPath)
2007-04-08 16:15:47 +08:00
if len(l) > 0 and not self.silent:
2007-05-02 05:23:00 +08:00
print "Finding files belonging to labels in %s" % self.depotPath
2007-04-08 05:46:50 +08:00
for output in l:
2007-03-27 04:34:34 +08:00
label = output["label"]
revisions = {}
newestChange = 0
2007-05-19 17:54:11 +08:00
if self.verbose:
print "Querying files for label %s" % label
for file in p4CmdList("files %s...@%s" % (self.depotPath, label)):
2007-03-27 04:34:34 +08:00
revisions[file["depotFile"]] = file["rev"]
change = int(file["change"])
if change > newestChange:
newestChange = change
2007-05-19 18:05:40 +08:00
self.labels[newestChange] = [output, revisions]
if self.verbose:
print "Label changes: %s" % self.labels.keys()
2007-03-27 04:34:34 +08:00
2007-05-19 03:45:23 +08:00
def getBranchMapping(self):
2007-05-19 16:23:12 +08:00
self.projectName = self.depotPath[self.depotPath[:-1].rfind("/") + 1:]
2007-05-19 03:45:23 +08:00
for info in p4CmdList("branches"):
details = p4Cmd("branch -o %s" % info["branch"])
viewIdx = 0
while details.has_key("View%s" % viewIdx):
paths = details["View%s" % viewIdx].split(" ")
viewIdx = viewIdx + 1
# require standard //depot/foo/... //depot/bar/... mapping
if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
continue
source = paths[0]
destination = paths[1]
if source.startswith(self.depotPath) and destination.startswith(self.depotPath):
source = source[len(self.depotPath):-4]
destination = destination[len(self.depotPath):-4]
2007-05-19 16:23:12 +08:00
if destination not in self.knownBranches:
self.knownBranches[destination] = source
if source not in self.knownBranches:
self.knownBranches[source] = source
def listExistingP4GitBranches(self):
self.p4BranchesInGit = []
2007-05-23 06:03:08 +08:00
cmdline = "git rev-parse --symbolic "
if self.importIntoRemotes:
cmdline += " --remotes"
else:
cmdline += " --branches"
for line in mypopen(cmdline).readlines():
2007-05-23 06:15:50 +08:00
if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"):
continue
if self.importIntoRemotes:
# strip off p4
2007-05-19 16:23:12 +08:00
branch = line[3:-1]
2007-05-23 06:15:50 +08:00
else:
branch = line[:-1]
self.p4BranchesInGit.append(branch)
self.initialParents[self.refPrefix + branch] = parseRevision(line[:-1])
2007-05-19 03:45:23 +08:00
2007-05-25 04:25:36 +08:00
def createOrUpdateBranchesFromOrigin(self):
2007-05-25 03:23:04 +08:00
if not self.silent:
2007-05-25 04:25:36 +08:00
print "Creating/updating branch(es) in %s based on origin branch(es)" % self.refPrefix
2007-05-25 03:23:04 +08:00
for line in mypopen("git rev-parse --symbolic --remotes"):
if (not line.startswith("origin/")) or line.endswith("HEAD\n"):
continue
2007-05-25 14:44:41 +08:00
2007-05-25 03:23:04 +08:00
headName = line[len("origin/"):-1]
remoteHead = self.refPrefix + headName
2007-05-25 04:25:36 +08:00
originHead = "origin/" + headName
2007-05-25 14:44:41 +08:00
[originPreviousDepotPath, originP4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(originHead))
if len(originPreviousDepotPath) == 0 or len(originP4Change) == 0:
continue
2007-05-25 04:25:36 +08:00
update = False
2007-05-25 14:49:18 +08:00
if not gitBranchExists(remoteHead):
2007-05-25 03:23:04 +08:00
if self.verbose:
print "creating %s" % remoteHead
2007-05-25 04:25:36 +08:00
update = True
else:
[p4PreviousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(remoteHead))
2007-05-25 14:44:41 +08:00
if len(p4Change) > 0:
2007-05-25 04:25:36 +08:00
if originPreviousDepotPath == p4PreviousDepotPath:
originP4Change = int(originP4Change)
p4Change = int(p4Change)
if originP4Change > p4Change:
print "%s (%s) is newer than %s (%s). Updating p4 branch from origin." % (originHead, originP4Change, remoteHead, p4Change)
update = True
else:
print "Ignoring: %s was imported from %s while %s was imported from %s" % (originHead, originPreviousDepotPath, remoteHead, p4PreviousDepotPath)
if update:
system("git update-ref %s %s" % (remoteHead, originHead))
2007-05-25 03:23:04 +08:00
2007-03-21 03:54:23 +08:00
def run(self, args):
2007-05-02 05:23:00 +08:00
self.depotPath = ""
2007-03-23 05:17:42 +08:00
self.changeRange = ""
self.initialParent = ""
2007-05-15 22:15:26 +08:00
self.previousDepotPath = ""
2007-05-19 16:23:12 +08:00
# map from branch depot path to parent branch
self.knownBranches = {}
self.initialParents = {}
2007-05-25 17:36:42 +08:00
self.hasOrigin = gitBranchExists("origin")
2007-05-19 16:23:12 +08:00
2007-05-23 06:03:08 +08:00
if self.importIntoRemotes:
self.refPrefix = "refs/remotes/p4/"
else:
2007-05-23 06:15:50 +08:00
self.refPrefix = "refs/heads/"
2007-05-23 06:03:08 +08:00
2007-05-25 04:28:28 +08:00
if self.syncWithOrigin:
2007-05-25 17:36:42 +08:00
if self.hasOrigin:
2007-05-25 16:36:10 +08:00
if not self.silent:
print "Syncing with origin first by calling git fetch origin"
2007-05-25 16:28:46 +08:00
system("git fetch origin")
2007-05-25 04:28:28 +08:00
2007-05-21 16:05:30 +08:00
createP4HeadRef = False;
2007-03-23 04:34:16 +08:00
if len(self.branch) == 0:
2007-05-23 06:03:08 +08:00
self.branch = self.refPrefix + "master"
if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
2007-05-18 03:18:53 +08:00
system("git update-ref %s refs/heads/p4" % self.branch)
system("git branch -D p4");
2007-05-21 16:05:30 +08:00
# create it /after/ importing, when master exists
2007-05-23 06:03:08 +08:00
if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
2007-05-21 16:05:30 +08:00
createP4HeadRef = True
2007-03-23 16:30:41 +08:00
if len(args) == 0:
2007-05-25 17:36:42 +08:00
if self.hasOrigin:
self.createOrUpdateBranchesFromOrigin()
2007-05-25 04:25:36 +08:00
self.listExistingP4GitBranches()
if len(self.p4BranchesInGit) > 1:
if not self.silent:
print "Importing from/into multiple branches"
self.detectBranches = True
2007-03-23 16:30:41 +08:00
2007-05-19 16:23:12 +08:00
if self.verbose:
print "branches: %s" % self.p4BranchesInGit
p4Change = 0
for branch in self.p4BranchesInGit:
2007-05-23 06:03:08 +08:00
depotPath, change = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(self.refPrefix + branch))
2007-05-19 16:23:12 +08:00
if self.verbose:
print "path %s change %s" % (depotPath, change)
if len(depotPath) > 0 and len(change) > 0:
change = int(change) + 1
p4Change = max(p4Change, change)
if len(self.previousDepotPath) == 0:
self.previousDepotPath = depotPath
else:
i = 0
l = min(len(self.previousDepotPath), len(depotPath))
while i < l and self.previousDepotPath[i] == depotPath[i]:
i = i + 1
self.previousDepotPath = self.previousDepotPath[:i]
if p4Change > 0:
2007-05-02 05:23:00 +08:00
self.depotPath = self.previousDepotPath
2007-05-19 17:07:32 +08:00
self.changeRange = "@%s,#head" % p4Change
2007-05-17 15:13:54 +08:00
self.initialParent = parseRevision(self.branch)
2007-05-21 06:39:16 +08:00
if not self.silent and not self.detectBranches:
2007-03-23 16:30:41 +08:00
print "Performing incremental import into %s git branch" % self.branch
2007-03-23 04:34:16 +08:00
2007-05-17 15:02:45 +08:00
if not self.branch.startswith("refs/"):
self.branch = "refs/heads/" + self.branch
2007-03-23 05:17:42 +08:00
2007-05-02 05:23:00 +08:00
if len(self.depotPath) != 0:
self.depotPath = self.depotPath[:-1]
2007-03-21 03:54:23 +08:00
2007-05-02 05:23:00 +08:00
if len(args) == 0 and len(self.depotPath) != 0:
2007-03-21 03:54:23 +08:00
if not self.silent:
2007-05-02 05:23:00 +08:00
print "Depot path: %s" % self.depotPath
2007-03-21 03:54:23 +08:00
elif len(args) != 1:
return False
else:
2007-05-02 05:23:00 +08:00
if len(self.depotPath) != 0 and self.depotPath != args[0]:
print "previous import used depot path %s and now %s was specified. this doesn't work!" % (self.depotPath, args[0])
2007-03-21 03:54:23 +08:00
sys.exit(1)
2007-05-02 05:23:00 +08:00
self.depotPath = args[0]
2007-03-21 03:54:23 +08:00
self.revision = ""
self.users = {}
2007-05-02 05:23:00 +08:00
if self.depotPath.find("@") != -1:
atIdx = self.depotPath.index("@")
self.changeRange = self.depotPath[atIdx:]
2007-03-21 03:54:23 +08:00
if self.changeRange == "@all":
self.changeRange = ""
elif self.changeRange.find(",") == -1:
self.revision = self.changeRange
self.changeRange = ""
2007-05-02 05:23:00 +08:00
self.depotPath = self.depotPath[0:atIdx]
elif self.depotPath.find("#") != -1:
hashIdx = self.depotPath.index("#")
self.revision = self.depotPath[hashIdx:]
self.depotPath = self.depotPath[0:hashIdx]
2007-03-21 03:54:23 +08:00
elif len(self.previousDepotPath) == 0:
self.revision = "#head"
2007-05-02 05:23:00 +08:00
if self.depotPath.endswith("..."):
self.depotPath = self.depotPath[:-3]
2007-03-21 03:54:23 +08:00
2007-05-02 05:23:00 +08:00
if not self.depotPath.endswith("/"):
self.depotPath += "/"
2007-03-21 03:54:23 +08:00
2007-05-20 16:55:54 +08:00
self.loadUserMapFromCache()
2007-04-08 06:12:02 +08:00
self.labels = {}
if self.detectLabels:
self.getLabels();
2007-03-21 03:54:23 +08:00
2007-05-19 03:45:23 +08:00
if self.detectBranches:
self.getBranchMapping();
2007-05-19 16:23:12 +08:00
if self.verbose:
print "p4-git branches: %s" % self.p4BranchesInGit
print "initial parents: %s" % self.initialParents
for b in self.p4BranchesInGit:
if b != "master":
b = b[len(self.projectName):]
self.createdBranches.add(b)
2007-05-19 03:45:23 +08:00
2007-04-14 17:21:50 +08:00
self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
2007-03-21 03:54:23 +08:00
2007-05-15 20:31:06 +08:00
importProcess = subprocess.Popen(["git", "fast-import"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE);
self.gitOutput = importProcess.stdout
self.gitStream = importProcess.stdin
self.gitError = importProcess.stderr
2007-03-21 03:54:23 +08:00
if len(self.revision) > 0:
2007-05-02 05:23:00 +08:00
print "Doing initial import of %s from revision %s" % (self.depotPath, self.revision)
2007-03-21 03:54:23 +08:00
details = { "user" : "git perforce import user", "time" : int(time.time()) }
2007-05-02 05:23:00 +08:00
details["desc"] = "Initial import of %s from the state at revision %s" % (self.depotPath, self.revision)
2007-03-21 03:54:23 +08:00
details["change"] = self.revision
newestRevision = 0
fileCnt = 0
2007-05-02 05:23:00 +08:00
for info in p4CmdList("files %s...%s" % (self.depotPath, self.revision)):
2007-03-21 03:54:23 +08:00
change = int(info["change"])
if change > newestRevision:
newestRevision = change
if info["action"] == "delete":
2007-04-08 16:13:32 +08:00
# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
#fileCnt = fileCnt + 1
2007-03-21 03:54:23 +08:00
continue
for prop in [ "depotFile", "rev", "action", "type" ]:
details["%s%s" % (prop, fileCnt)] = info[prop]
fileCnt = fileCnt + 1
details["change"] = newestRevision
try:
2007-05-02 05:23:00 +08:00
self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPath)
2007-03-21 04:13:49 +08:00
except IOError:
2007-04-14 04:21:10 +08:00
print "IO error with git fast-import. Is your git version recent enough?"
2007-03-21 03:54:23 +08:00
print self.gitError.read()
else:
changes = []
2007-03-21 03:59:30 +08:00
if len(self.changesFile) > 0:
2007-03-21 03:54:23 +08:00
output = open(self.changesFile).readlines()
changeSet = Set()
for line in output:
changeSet.add(int(line))
for change in changeSet:
changes.append(change)
changes.sort()
else:
2007-05-19 16:23:12 +08:00
if self.verbose:
print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange)
2007-05-15 20:57:57 +08:00
output = mypopen("p4 changes %s...%s" % (self.depotPath, self.changeRange)).readlines()
2007-03-21 03:54:23 +08:00
for line in output:
changeNum = line.split(" ")[1]
changes.append(changeNum)
changes.reverse()
2007-05-23 06:07:35 +08:00
if len(self.maxChanges) > 0:
changes = changes[0:min(int(self.maxChanges), len(changes))]
2007-03-21 03:54:23 +08:00
if len(changes) == 0:
2007-03-21 03:59:30 +08:00
if not self.silent:
2007-05-21 06:39:16 +08:00
print "No changes to import!"
2007-04-08 06:07:02 +08:00
return True
2007-03-21 03:54:23 +08:00
2007-05-21 06:39:16 +08:00
self.updatedBranches = set()
2007-03-21 03:54:23 +08:00
cnt = 1
for change in changes:
description = p4Cmd("describe %s" % change)
2007-03-21 03:59:30 +08:00
if not self.silent:
2007-05-21 06:39:16 +08:00
sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
2007-03-21 03:54:23 +08:00
sys.stdout.flush()
cnt = cnt + 1
try:
if self.detectBranches:
2007-05-19 17:54:11 +08:00
branches = self.splitFilesIntoBranches(description)
2007-05-19 17:07:32 +08:00
for branch in branches.keys():
2007-05-02 05:23:00 +08:00
branchPrefix = self.depotPath + branch + "/"
2007-03-21 03:54:23 +08:00
parent = ""
2007-05-19 03:45:23 +08:00
2007-05-19 17:07:32 +08:00
filesForCommit = branches[branch]
2007-05-19 03:45:23 +08:00
2007-05-19 16:23:12 +08:00
if self.verbose:
print "branch is %s" % branch
2007-05-21 06:39:16 +08:00
self.updatedBranches.add(branch)
2007-05-19 04:13:26 +08:00
if branch not in self.createdBranches:
2007-03-21 03:54:23 +08:00
self.createdBranches.add(branch)
2007-05-19 03:45:23 +08:00
parent = self.knownBranches[branch]
2007-03-21 03:54:23 +08:00
if parent == branch:
parent = ""
2007-05-19 16:23:12 +08:00
elif self.verbose:
print "parent determined through known branches: %s" % parent
2007-03-21 03:54:23 +08:00
2007-05-19 04:13:26 +08:00
# main branch? use master
if branch == "main":
branch = "master"
else:
2007-05-19 16:23:12 +08:00
branch = self.projectName + branch
2007-05-19 04:13:26 +08:00
if parent == "main":
parent = "master"
elif len(parent) > 0:
2007-05-19 16:23:12 +08:00
parent = self.projectName + parent
2007-05-19 04:13:26 +08:00
2007-05-23 06:03:08 +08:00
branch = self.refPrefix + branch
2007-03-21 03:54:23 +08:00
if len(parent) > 0:
2007-05-23 06:03:08 +08:00
parent = self.refPrefix + parent
2007-05-19 16:23:12 +08:00
if self.verbose:
print "looking for initial parent for %s; current parent is %s" % (branch, parent)
if len(parent) == 0 and branch in self.initialParents:
parent = self.initialParents[branch]
del self.initialParents[branch]
2007-05-19 17:54:11 +08:00
self.commit(description, filesForCommit, branch, branchPrefix, parent)
2007-03-21 03:54:23 +08:00
else:
2007-05-19 17:54:11 +08:00
files = self.extractFilesFromCommit(description)
2007-05-02 05:23:00 +08:00
self.commit(description, files, self.branch, self.depotPath, self.initialParent)
2007-03-21 03:54:23 +08:00
self.initialParent = ""
except IOError:
print self.gitError.read()
sys.exit(1)
2007-05-21 06:39:16 +08:00
if not self.silent:
print ""
if len(self.updatedBranches) > 0:
sys.stdout.write("Updated branches: ")
for b in self.updatedBranches:
sys.stdout.write("%s " % b)
sys.stdout.write("\n")
2007-03-21 03:54:23 +08:00
self.gitStream.close()
2007-05-19 16:23:12 +08:00
if importProcess.wait() != 0:
die("fast-import failed: %s" % self.gitError.read())
2007-03-21 03:54:23 +08:00
self.gitOutput.close()
self.gitError.close()
2007-05-21 16:05:30 +08:00
if createP4HeadRef:
2007-05-23 22:41:46 +08:00
system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
2007-05-21 16:05:30 +08:00
2007-03-21 03:54:23 +08:00
return True
2007-04-08 05:46:50 +08:00
class P4Rebase(Command):
def __init__(self):
Command.__init__(self)
2007-05-25 16:36:10 +08:00
self.options = [ ]
2007-04-08 05:46:50 +08:00
self.description = "Fetches the latest revision from perforce and rebases the current work (branch) against it"
def run(self, args):
sync = P4Sync()
sync.run([])
print "Rebasing the current branch"
2007-05-15 20:57:57 +08:00
oldHead = mypopen("git rev-parse HEAD").read()[:-1]
2007-04-08 05:46:50 +08:00
system("git rebase p4")
2007-04-08 06:07:02 +08:00
system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
2007-04-08 05:46:50 +08:00
return True
2007-04-08 16:08:26 +08:00
class P4Clone(P4Sync):
def __init__(self):
P4Sync.__init__(self)
self.description = "Creates a new git repository and imports from Perforce into it"
self.usage = "usage: %prog [options] //depot/path[@revRange] [directory]"
self.needsGit = False
def run(self, args):
2007-05-20 21:15:34 +08:00
global gitdir
2007-04-08 16:08:26 +08:00
if len(args) < 1:
return False
depotPath = args[0]
dir = ""
if len(args) == 2:
dir = args[1]
elif len(args) > 2:
return False
if not depotPath.startswith("//"):
return False
if len(dir) == 0:
dir = depotPath
atPos = dir.rfind("@")
if atPos != -1:
dir = dir[0:atPos]
hashPos = dir.rfind("#")
if hashPos != -1:
dir = dir[0:hashPos]
if dir.endswith("..."):
dir = dir[:-3]
if dir.endswith("/"):
dir = dir[:-1]
slashPos = dir.rfind("/")
if slashPos != -1:
dir = dir[slashPos + 1:]
print "Importing from %s into %s" % (depotPath, dir)
os.makedirs(dir)
os.chdir(dir)
system("git init")
2007-05-20 21:24:01 +08:00
gitdir = os.getcwd() + "/.git"
2007-04-08 16:08:26 +08:00
if not P4Sync.run(self, [depotPath]):
return False
if self.branch != "master":
2007-05-19 04:13:26 +08:00
if gitBranchExists("refs/remotes/p4/master"):
system("git branch master refs/remotes/p4/master")
system("git checkout -f")
else:
print "Could not detect main branch. No checkout/master branch created."
2007-04-08 16:08:26 +08:00
return True
2007-03-21 03:54:23 +08:00
class HelpFormatter(optparse.IndentedHelpFormatter):
def __init__(self):
optparse.IndentedHelpFormatter.__init__(self)
def format_description(self, description):
if description:
return description + "\n"
else:
return ""
2007-03-20 05:25:17 +08:00
2007-03-20 03:59:12 +08:00
def printUsage(commands):
print "usage: %s <command> [options]" % sys.argv[0]
print ""
print "valid commands: %s" % ", ".join(commands)
print ""
print "Try %s <command> --help for command specific help." % sys.argv[0]
print ""
commands = {
"debug" : P4Debug(),
2007-04-01 21:40:46 +08:00
"submit" : P4Submit(),
2007-04-08 05:46:50 +08:00
"sync" : P4Sync(),
2007-04-08 16:08:26 +08:00
"rebase" : P4Rebase(),
2007-05-22 04:57:06 +08:00
"clone" : P4Clone(),
"rollback" : P4RollBack()
2007-03-20 03:59:12 +08:00
}
if len(sys.argv[1:]) == 0:
printUsage(commands.keys())
sys.exit(2)
cmd = ""
cmdName = sys.argv[1]
try:
cmd = commands[cmdName]
except KeyError:
print "unknown command %s" % cmdName
print ""
printUsage(commands.keys())
sys.exit(2)
2007-03-20 05:25:17 +08:00
options = cmd.options
cmd.gitdir = gitdir
2007-03-26 06:13:51 +08:00
args = sys.argv[2:]
2007-03-20 03:59:12 +08:00
2007-03-26 06:13:51 +08:00
if len(options) > 0:
options.append(optparse.make_option("--git-dir", dest="gitdir"))
parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
options,
description = cmd.description,
formatter = HelpFormatter())
(cmd, args) = parser.parse_args(sys.argv[2:], cmd);
2007-03-20 03:59:12 +08:00
2007-03-26 14:18:55 +08:00
if cmd.needsGit:
gitdir = cmd.gitdir
if len(gitdir) == 0:
gitdir = ".git"
if not isValidGitDir(gitdir):
2007-05-16 05:06:43 +08:00
gitdir = mypopen("git rev-parse --git-dir").read()[:-1]
2007-05-16 18:12:39 +08:00
if os.path.exists(gitdir):
2007-05-17 13:42:38 +08:00
cdup = mypopen("git rev-parse --show-cdup").read()[:-1];
if len(cdup) > 0:
os.chdir(cdup);
2007-03-20 05:25:17 +08:00
2007-03-26 14:18:55 +08:00
if not isValidGitDir(gitdir):
if isValidGitDir(gitdir + "/.git"):
gitdir += "/.git"
else:
die("fatal: cannot locate git repository at %s" % gitdir)
2007-03-20 05:25:17 +08:00
2007-03-26 14:18:55 +08:00
os.environ["GIT_DIR"] = gitdir
2007-03-20 05:25:17 +08:00
2007-03-21 03:54:23 +08:00
if not cmd.run(args):
parser.print_help()