3 # git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
5 # Author: Simon Hausmann <simon@lst.de>
6 # Copyright: 2007 Simon Hausmann <simon@lst.de>
8 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
11 import optparse, sys, os, marshal, popen2, subprocess, shelve
12 import tempfile, getopt, sha, os.path, time, platform
23 sys.stderr.write(msg + "\n")
26 def write_pipe(c, str):
28 sys.stderr.write('Writing pipe: %s\n' % c)
30 pipe = os.popen(c, 'w')
33 die('Command failed: %s' % c)
37 def read_pipe(c, ignore_error=False):
39 sys.stderr.write('Reading pipe: %s\n' % c)
41 pipe = os.popen(c, 'rb')
43 if pipe.close() and not ignore_error:
44 die('Command failed: %s' % c)
49 def read_pipe_lines(c):
51 sys.stderr.write('Reading pipe: %s\n' % c)
52 ## todo: check return status
53 pipe = os.popen(c, 'rb')
54 val = pipe.readlines()
56 die('Command failed: %s' % c)
62 sys.stderr.write("executing %s\n" % cmd)
63 if os.system(cmd) != 0:
64 die("command failed: %s" % cmd)
67 """Determine if a Perforce 'kind' should have execute permission
69 'p4 help filetypes' gives a list of the types. If it starts with 'x',
70 or x follows one of a few letters. Otherwise, if there is an 'x' after
71 a plus sign, it is also executable"""
72 return (re.search(r"(^[cku]?x)|\+.*x", kind) != None)
74 def p4CmdList(cmd, stdin=None, stdin_mode='w+b'):
75 cmd = "p4 -G %s" % cmd
77 sys.stderr.write("Opening pipe: %s\n" % cmd)
79 # Use a temporary file to avoid deadlocks without
80 # subprocess.communicate(), which would put another copy
81 # of stdout into memory.
84 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode)
85 stdin_file.write(stdin)
89 p4 = subprocess.Popen(cmd, shell=True,
91 stdout=subprocess.PIPE)
96 entry = marshal.load(p4.stdout)
103 entry["p4ExitCode"] = exitCode
109 list = p4CmdList(cmd)
115 def p4Where(depotPath):
116 if not depotPath.endswith("/"):
118 output = p4Cmd("where %s..." % depotPath)
119 if output["code"] == "error":
123 clientPath = output.get("path")
124 elif "data" in output:
125 data = output.get("data")
126 lastSpace = data.rfind(" ")
127 clientPath = data[lastSpace + 1:]
129 if clientPath.endswith("..."):
130 clientPath = clientPath[:-3]
133 def currentGitBranch():
134 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
136 def isValidGitDir(path):
137 if (os.path.exists(path + "/HEAD")
138 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
142 def parseRevision(ref):
143 return read_pipe("git rev-parse %s" % ref).strip()
145 def extractLogMessageFromGitCommit(commit):
148 ## fixme: title is first line of commit, not 1st paragraph.
150 for log in read_pipe_lines("git cat-file commit %s" % commit):
159 def extractSettingsGitLog(log):
161 for line in log.split("\n"):
163 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
167 assignments = m.group(1).split (':')
168 for a in assignments:
170 key = vals[0].strip()
171 val = ('='.join (vals[1:])).strip()
172 if val.endswith ('\"') and val.startswith('"'):
177 paths = values.get("depot-paths")
179 paths = values.get("depot-path")
181 values['depot-paths'] = paths.split(',')
184 def gitBranchExists(branch):
185 proc = subprocess.Popen(["git", "rev-parse", branch],
186 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
187 return proc.wait() == 0;
190 return read_pipe("git config %s" % key, ignore_error=True).strip()
192 def p4BranchesInGit(branchesAreInRemotes = True):
195 cmdline = "git rev-parse --symbolic "
196 if branchesAreInRemotes:
197 cmdline += " --remotes"
199 cmdline += " --branches"
201 for line in read_pipe_lines(cmdline):
204 ## only import to p4/
205 if not line.startswith('p4/') or line == "p4/HEAD":
210 branch = re.sub ("^p4/", "", line)
212 branches[branch] = parseRevision(line)
215 def findUpstreamBranchPoint(head = "HEAD"):
216 branches = p4BranchesInGit()
217 # map from depot-path to branch name
218 branchByDepotPath = {}
219 for branch in branches.keys():
220 tip = branches[branch]
221 log = extractLogMessageFromGitCommit(tip)
222 settings = extractSettingsGitLog(log)
223 if settings.has_key("depot-paths"):
224 paths = ",".join(settings["depot-paths"])
225 branchByDepotPath[paths] = "remotes/p4/" + branch
229 while parent < 65535:
230 commit = head + "~%s" % parent
231 log = extractLogMessageFromGitCommit(commit)
232 settings = extractSettingsGitLog(log)
233 if settings.has_key("depot-paths"):
234 paths = ",".join(settings["depot-paths"])
235 if branchByDepotPath.has_key(paths):
236 return [branchByDepotPath[paths], settings]
240 return ["", settings]
242 def createOrUpdateBranchesFromOrigin(localRefPrefix = "refs/remotes/p4/", silent=True):
244 print ("Creating/updating branch(es) in %s based on origin branch(es)"
247 originPrefix = "origin/p4/"
249 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
251 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
254 headName = line[len(originPrefix):]
255 remoteHead = localRefPrefix + headName
258 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
259 if (not original.has_key('depot-paths')
260 or not original.has_key('change')):
264 if not gitBranchExists(remoteHead):
266 print "creating %s" % remoteHead
269 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
270 if settings.has_key('change') > 0:
271 if settings['depot-paths'] == original['depot-paths']:
272 originP4Change = int(original['change'])
273 p4Change = int(settings['change'])
274 if originP4Change > p4Change:
275 print ("%s (%s) is newer than %s (%s). "
276 "Updating p4 branch from origin."
277 % (originHead, originP4Change,
278 remoteHead, p4Change))
281 print ("Ignoring: %s was imported from %s while "
282 "%s was imported from %s"
283 % (originHead, ','.join(original['depot-paths']),
284 remoteHead, ','.join(settings['depot-paths'])))
287 system("git update-ref %s %s" % (remoteHead, originHead))
289 def originP4BranchesExist():
290 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
292 def p4ChangesForPaths(depotPaths, changeRange):
294 output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, changeRange)
295 for p in depotPaths]))
299 changeNum = line.split(" ")[1]
300 changes.append(int(changeNum))
307 self.usage = "usage: %prog [options]"
310 class P4Debug(Command):
312 Command.__init__(self)
314 optparse.make_option("--verbose", dest="verbose", action="store_true",
317 self.description = "A tool to debug the output of p4 -G."
318 self.needsGit = False
323 for output in p4CmdList(" ".join(args)):
324 print 'Element: %d' % j
329 class P4RollBack(Command):
331 Command.__init__(self)
333 optparse.make_option("--verbose", dest="verbose", action="store_true"),
334 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
336 self.description = "A tool to debug the multi-branch import. Don't use :)"
338 self.rollbackLocalBranches = False
343 maxChange = int(args[0])
345 if "p4ExitCode" in p4Cmd("changes -m 1"):
346 die("Problems executing p4");
348 if self.rollbackLocalBranches:
349 refPrefix = "refs/heads/"
350 lines = read_pipe_lines("git rev-parse --symbolic --branches")
352 refPrefix = "refs/remotes/"
353 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
356 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
358 ref = refPrefix + line
359 log = extractLogMessageFromGitCommit(ref)
360 settings = extractSettingsGitLog(log)
362 depotPaths = settings['depot-paths']
363 change = settings['change']
367 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
368 for p in depotPaths]))) == 0:
369 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
370 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
373 while change and int(change) > maxChange:
376 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
377 system("git update-ref %s \"%s^\"" % (ref, ref))
378 log = extractLogMessageFromGitCommit(ref)
379 settings = extractSettingsGitLog(log)
382 depotPaths = settings['depot-paths']
383 change = settings['change']
386 print "%s rewound to %s" % (ref, change)
390 class P4Submit(Command):
392 Command.__init__(self)
394 optparse.make_option("--continue", action="store_false", dest="firstTime"),
395 optparse.make_option("--verbose", dest="verbose", action="store_true"),
396 optparse.make_option("--origin", dest="origin"),
397 optparse.make_option("--reset", action="store_true", dest="reset"),
398 optparse.make_option("--log-substitutions", dest="substFile"),
399 optparse.make_option("--dry-run", action="store_true"),
400 optparse.make_option("--direct", dest="directSubmit", action="store_true"),
401 optparse.make_option("--trust-me-like-a-fool", dest="trustMeLikeAFool", action="store_true"),
403 self.description = "Submit changes from git to the perforce depot."
404 self.usage += " [name of git branch to submit into perforce depot]"
405 self.firstTime = True
407 self.interactive = True
410 self.firstTime = True
412 self.directSubmit = False
413 self.trustMeLikeAFool = False
415 self.isWindows = (platform.system() == "Windows")
417 self.logSubstitutions = {}
418 self.logSubstitutions["<enter description here>"] = "%log%"
419 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
422 if len(p4CmdList("opened ...")) > 0:
423 die("You have files opened with perforce! Close them before starting the sync.")
426 if len(self.config) > 0 and not self.reset:
427 die("Cannot start sync. Previous sync config found at %s\n"
428 "If you want to start submitting again from scratch "
429 "maybe you want to call git-p4 submit --reset" % self.configFile)
432 if self.directSubmit:
435 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
436 commits.append(line.strip())
439 self.config["commits"] = commits
441 def prepareLogMessage(self, template, message):
444 for line in template.split("\n"):
445 if line.startswith("#"):
446 result += line + "\n"
450 for key in self.logSubstitutions.keys():
451 if line.find(key) != -1:
452 value = self.logSubstitutions[key]
453 value = value.replace("%log%", message)
454 if value != "@remove@":
455 result += line.replace(key, value) + "\n"
460 result += line + "\n"
464 def prepareSubmitTemplate(self):
465 # remove lines in the Files section that show changes to files outside the depot path we're committing into
467 inFilesSection = False
468 for line in read_pipe_lines("p4 change -o"):
470 if line.startswith("\t"):
471 # path starts and ends with a tab
473 lastTab = path.rfind("\t")
475 path = path[:lastTab]
476 if not path.startswith(self.depotPath):
479 inFilesSection = False
481 if line.startswith("Files:"):
482 inFilesSection = True
488 def applyCommit(self, id):
489 if self.directSubmit:
490 print "Applying local change in working directory/index"
491 diff = self.diffStatus
493 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
494 diff = read_pipe_lines("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id))
496 filesToDelete = set()
500 path = line[1:].strip()
502 system("p4 edit \"%s\"" % path)
503 editedFiles.add(path)
504 elif modifier == "A":
506 if path in filesToDelete:
507 filesToDelete.remove(path)
508 elif modifier == "D":
509 filesToDelete.add(path)
510 if path in filesToAdd:
511 filesToAdd.remove(path)
513 die("unknown modifier %s for %s" % (modifier, path))
515 if self.directSubmit:
516 diffcmd = "cat \"%s\"" % self.diffFile
518 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
519 patchcmd = diffcmd + " | git apply "
520 tryPatchCmd = patchcmd + "--check -"
521 applyPatchCmd = patchcmd + "--check --apply -"
523 if os.system(tryPatchCmd) != 0:
524 print "Unfortunately applying the change failed!"
525 print "What do you want to do?"
527 while response != "s" and response != "a" and response != "w":
528 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
529 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
531 print "Skipping! Good luck with the next patches..."
533 elif response == "a":
534 os.system(applyPatchCmd)
535 if len(filesToAdd) > 0:
536 print "You may also want to call p4 add on the following files:"
537 print " ".join(filesToAdd)
538 if len(filesToDelete):
539 print "The following files should be scheduled for deletion with p4 delete:"
540 print " ".join(filesToDelete)
541 die("Please resolve and submit the conflict manually and "
542 + "continue afterwards with git-p4 submit --continue")
543 elif response == "w":
544 system(diffcmd + " > patch.txt")
545 print "Patch saved to patch.txt in %s !" % self.clientPath
546 die("Please resolve and submit the conflict manually and "
547 "continue afterwards with git-p4 submit --continue")
549 system(applyPatchCmd)
552 system("p4 add \"%s\"" % f)
553 for f in filesToDelete:
554 system("p4 revert \"%s\"" % f)
555 system("p4 delete \"%s\"" % f)
558 if not self.directSubmit:
559 logMessage = extractLogMessageFromGitCommit(id)
560 logMessage = logMessage.replace("\n", "\n\t")
562 logMessage = logMessage.replace("\n", "\r\n")
563 logMessage = logMessage.strip()
565 template = self.prepareSubmitTemplate()
568 submitTemplate = self.prepareLogMessage(template, logMessage)
569 diff = read_pipe("p4 diff -du ...")
571 for newFile in filesToAdd:
572 diff += "==== new file ====\n"
573 diff += "--- /dev/null\n"
574 diff += "+++ %s\n" % newFile
575 f = open(newFile, "r")
576 for line in f.readlines():
580 separatorLine = "######## everything below this line is just the diff #######"
581 if platform.system() == "Windows":
582 separatorLine += "\r"
583 separatorLine += "\n"
586 if self.trustMeLikeAFool:
589 firstIteration = True
590 while response == "e":
591 if not firstIteration:
592 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
593 firstIteration = False
595 [handle, fileName] = tempfile.mkstemp()
596 tmpFile = os.fdopen(handle, "w+")
597 tmpFile.write(submitTemplate + separatorLine + diff)
600 if platform.system() == "Windows":
601 defaultEditor = "notepad"
602 editor = os.environ.get("EDITOR", defaultEditor);
603 system(editor + " " + fileName)
604 tmpFile = open(fileName, "rb")
605 message = tmpFile.read()
608 submitTemplate = message[:message.index(separatorLine)]
610 submitTemplate = submitTemplate.replace("\r\n", "\n")
612 if response == "y" or response == "yes":
615 raw_input("Press return to continue...")
617 if self.directSubmit:
618 print "Submitting to git first"
619 os.chdir(self.oldWorkingDirectory)
620 write_pipe("git commit -a -F -", submitTemplate)
621 os.chdir(self.clientPath)
623 write_pipe("p4 submit -i", submitTemplate)
624 elif response == "s":
625 for f in editedFiles:
626 system("p4 revert \"%s\"" % f);
628 system("p4 revert \"%s\"" % f);
630 for f in filesToDelete:
631 system("p4 delete \"%s\"" % f);
634 print "Not submitting!"
635 self.interactive = False
637 fileName = "submit.txt"
638 file = open(fileName, "w+")
639 file.write(self.prepareLogMessage(template, logMessage))
641 print ("Perforce submit template written as %s. "
642 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
643 % (fileName, fileName))
647 self.master = currentGitBranch()
648 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
649 die("Detecting current git branch failed!")
651 self.master = args[0]
655 [upstream, settings] = findUpstreamBranchPoint()
656 self.depotPath = settings['depot-paths'][0]
657 if len(self.origin) == 0:
658 self.origin = upstream
661 print "Origin branch is " + self.origin
663 if len(self.depotPath) == 0:
664 print "Internal error: cannot locate perforce depot path from existing branches"
667 self.clientPath = p4Where(self.depotPath)
669 if len(self.clientPath) == 0:
670 print "Error: Cannot locate perforce checkout of %s in client view" % self.depotPath
673 print "Perforce checkout for depot path %s located at %s" % (self.depotPath, self.clientPath)
674 self.oldWorkingDirectory = os.getcwd()
676 if self.directSubmit:
677 self.diffStatus = read_pipe_lines("git diff -r --name-status HEAD")
678 if len(self.diffStatus) == 0:
679 print "No changes in working directory to submit."
681 patch = read_pipe("git diff -p --binary --diff-filter=ACMRTUXB HEAD")
682 self.diffFile = self.gitdir + "/p4-git-diff"
683 f = open(self.diffFile, "wb")
687 os.chdir(self.clientPath)
688 print "Syncronizing p4 checkout..."
689 system("p4 sync ...")
692 self.firstTime = True
694 if len(self.substFile) > 0:
695 for line in open(self.substFile, "r").readlines():
696 tokens = line.strip().split("=")
697 self.logSubstitutions[tokens[0]] = tokens[1]
700 self.configFile = self.gitdir + "/p4-git-sync.cfg"
701 self.config = shelve.open(self.configFile, writeback=True)
706 commits = self.config.get("commits", [])
708 while len(commits) > 0:
709 self.firstTime = False
711 commits = commits[1:]
712 self.config["commits"] = commits
713 self.applyCommit(commit)
714 if not self.interactive:
719 if self.directSubmit:
720 os.remove(self.diffFile)
722 if len(commits) == 0:
724 print "No changes found to apply between %s and current HEAD" % self.origin
726 print "All changes applied!"
727 os.chdir(self.oldWorkingDirectory)
732 response = raw_input("Do you want to rebase current HEAD from Perforce now using git-p4 rebase? [y]es/[n]o ")
733 if response == "y" or response == "yes":
736 os.remove(self.configFile)
740 class P4Sync(Command):
742 Command.__init__(self)
744 optparse.make_option("--branch", dest="branch"),
745 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
746 optparse.make_option("--changesfile", dest="changesFile"),
747 optparse.make_option("--silent", dest="silent", action="store_true"),
748 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
749 optparse.make_option("--verbose", dest="verbose", action="store_true"),
750 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
751 help="Import into refs/heads/ , not refs/remotes"),
752 optparse.make_option("--max-changes", dest="maxChanges"),
753 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
754 help="Keep entire BRANCH/DIR/SUBDIR prefix during import")
756 self.description = """Imports from Perforce into a git repository.\n
758 //depot/my/project/ -- to import the current head
759 //depot/my/project/@all -- to import everything
760 //depot/my/project/@1,6 -- to import only from revision 1 to 6
762 (a ... is not needed in the path p4 specification, it's added implicitly)"""
764 self.usage += " //depot/path[@revRange]"
766 self.createdBranches = Set()
767 self.committedChanges = Set()
769 self.detectBranches = False
770 self.detectLabels = False
771 self.changesFile = ""
772 self.syncWithOrigin = True
774 self.importIntoRemotes = True
776 self.isWindows = (platform.system() == "Windows")
777 self.keepRepoPath = False
778 self.depotPaths = None
779 self.p4BranchesInGit = []
781 if gitConfig("git-p4.syncFromOrigin") == "false":
782 self.syncWithOrigin = False
784 def extractFilesFromCommit(self, commit):
787 while commit.has_key("depotFile%s" % fnum):
788 path = commit["depotFile%s" % fnum]
790 found = [p for p in self.depotPaths
791 if path.startswith (p)]
798 file["rev"] = commit["rev%s" % fnum]
799 file["action"] = commit["action%s" % fnum]
800 file["type"] = commit["type%s" % fnum]
805 def stripRepoPath(self, path, prefixes):
806 if self.keepRepoPath:
807 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
810 if path.startswith(p):
815 def splitFilesIntoBranches(self, commit):
818 while commit.has_key("depotFile%s" % fnum):
819 path = commit["depotFile%s" % fnum]
820 found = [p for p in self.depotPaths
821 if path.startswith (p)]
828 file["rev"] = commit["rev%s" % fnum]
829 file["action"] = commit["action%s" % fnum]
830 file["type"] = commit["type%s" % fnum]
833 relPath = self.stripRepoPath(path, self.depotPaths)
835 for branch in self.knownBranches.keys():
837 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
838 if relPath.startswith(branch + "/"):
839 if branch not in branches:
840 branches[branch] = []
841 branches[branch].append(file)
846 ## Should move this out, doesn't use SELF.
847 def readP4Files(self, files):
848 files = [f for f in files
849 if f['action'] != 'delete']
854 filedata = p4CmdList('-x - print',
855 stdin='\n'.join(['%s#%s' % (f['path'], f['rev'])
858 if "p4ExitCode" in filedata[0]:
859 die("Problems executing p4. Error: [%d]."
860 % (filedata[0]['p4ExitCode']));
864 while j < len(filedata):
868 while j < len(filedata) and filedata[j]['code'] in ('text',
870 text += filedata[j]['data']
874 if not stat.has_key('depotFile'):
875 sys.stderr.write("p4 print fails with: %s\n" % repr(stat))
878 contents[stat['depotFile']] = text
881 assert not f.has_key('data')
882 f['data'] = contents[f['path']]
884 def commit(self, details, files, branch, branchPrefixes, parent = ""):
885 epoch = details["time"]
886 author = details["user"]
889 print "commit into %s" % branch
891 # start with reading files; if that fails, we should not
895 if [p for p in branchPrefixes if f['path'].startswith(p)]:
898 sys.stderr.write("Ignoring file outside of prefix: %s\n" % path)
900 self.readP4Files(files)
905 self.gitStream.write("commit %s\n" % branch)
906 # gitStream.write("mark :%s\n" % details["change"])
907 self.committedChanges.add(int(details["change"]))
909 if author not in self.users:
910 self.getUserMapFromPerforceServer()
911 if author in self.users:
912 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
914 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
916 self.gitStream.write("committer %s\n" % committer)
918 self.gitStream.write("data <<EOT\n")
919 self.gitStream.write(details["desc"])
920 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
921 % (','.join (branchPrefixes), details["change"]))
922 if len(details['options']) > 0:
923 self.gitStream.write(": options = %s" % details['options'])
924 self.gitStream.write("]\nEOT\n\n")
928 print "parent %s" % parent
929 self.gitStream.write("from %s\n" % parent)
932 if file["type"] == "apple":
933 print "\nfile %s is a strange apple file that forks. Ignoring!" % file['path']
936 relPath = self.stripRepoPath(file['path'], branchPrefixes)
937 if file["action"] == "delete":
938 self.gitStream.write("D %s\n" % relPath)
943 if isP4Exec(file["type"]):
945 elif file["type"] == "symlink":
947 # p4 print on a symlink contains "target\n", so strip it off
950 if self.isWindows and file["type"].endswith("text"):
951 data = data.replace("\r\n", "\n")
953 self.gitStream.write("M %s inline %s\n" % (mode, relPath))
954 self.gitStream.write("data %s\n" % len(data))
955 self.gitStream.write(data)
956 self.gitStream.write("\n")
958 self.gitStream.write("\n")
960 change = int(details["change"])
962 if self.labels.has_key(change):
963 label = self.labels[change]
964 labelDetails = label[0]
965 labelRevisions = label[1]
967 print "Change %s is labelled %s" % (change, labelDetails)
969 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
970 for p in branchPrefixes]))
972 if len(files) == len(labelRevisions):
976 if info["action"] == "delete":
978 cleanedFiles[info["depotFile"]] = info["rev"]
980 if cleanedFiles == labelRevisions:
981 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
982 self.gitStream.write("from %s\n" % branch)
984 owner = labelDetails["Owner"]
986 if author in self.users:
987 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
989 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
990 self.gitStream.write("tagger %s\n" % tagger)
991 self.gitStream.write("data <<EOT\n")
992 self.gitStream.write(labelDetails["Description"])
993 self.gitStream.write("EOT\n\n")
997 print ("Tag %s does not match with change %s: files do not match."
998 % (labelDetails["label"], change))
1002 print ("Tag %s does not match with change %s: file count is different."
1003 % (labelDetails["label"], change))
1005 def getUserCacheFilename(self):
1006 home = os.environ.get("HOME", os.environ.get("USERPROFILE"))
1007 return home + "/.gitp4-usercache.txt"
1009 def getUserMapFromPerforceServer(self):
1010 if self.userMapFromPerforceServer:
1014 for output in p4CmdList("users"):
1015 if not output.has_key("User"):
1017 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
1021 for (key, val) in self.users.items():
1022 s += "%s\t%s\n" % (key, val)
1024 open(self.getUserCacheFilename(), "wb").write(s)
1025 self.userMapFromPerforceServer = True
1027 def loadUserMapFromCache(self):
1029 self.userMapFromPerforceServer = False
1031 cache = open(self.getUserCacheFilename(), "rb")
1032 lines = cache.readlines()
1035 entry = line.strip().split("\t")
1036 self.users[entry[0]] = entry[1]
1038 self.getUserMapFromPerforceServer()
1040 def getLabels(self):
1043 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
1044 if len(l) > 0 and not self.silent:
1045 print "Finding files belonging to labels in %s" % `self.depotPath`
1048 label = output["label"]
1052 print "Querying files for label %s" % label
1053 for file in p4CmdList("files "
1054 + ' '.join (["%s...@%s" % (p, label)
1055 for p in self.depotPaths])):
1056 revisions[file["depotFile"]] = file["rev"]
1057 change = int(file["change"])
1058 if change > newestChange:
1059 newestChange = change
1061 self.labels[newestChange] = [output, revisions]
1064 print "Label changes: %s" % self.labels.keys()
1066 def guessProjectName(self):
1067 for p in self.depotPaths:
1070 p = p[p.strip().rfind("/") + 1:]
1071 if not p.endswith("/"):
1075 def getBranchMapping(self):
1076 lostAndFoundBranches = set()
1078 for info in p4CmdList("branches"):
1079 details = p4Cmd("branch -o %s" % info["branch"])
1081 while details.has_key("View%s" % viewIdx):
1082 paths = details["View%s" % viewIdx].split(" ")
1083 viewIdx = viewIdx + 1
1084 # require standard //depot/foo/... //depot/bar/... mapping
1085 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
1088 destination = paths[1]
1090 if source.startswith(self.depotPaths[0]) and destination.startswith(self.depotPaths[0]):
1091 source = source[len(self.depotPaths[0]):-4]
1092 destination = destination[len(self.depotPaths[0]):-4]
1094 if destination in self.knownBranches:
1096 print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination)
1097 print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination)
1100 self.knownBranches[destination] = source
1102 lostAndFoundBranches.discard(destination)
1104 if source not in self.knownBranches:
1105 lostAndFoundBranches.add(source)
1108 for branch in lostAndFoundBranches:
1109 self.knownBranches[branch] = branch
1111 def listExistingP4GitBranches(self):
1112 # branches holds mapping from name to commit
1113 branches = p4BranchesInGit(self.importIntoRemotes)
1114 self.p4BranchesInGit = branches.keys()
1115 for branch in branches.keys():
1116 self.initialParents[self.refPrefix + branch] = branches[branch]
1118 def updateOptionDict(self, d):
1120 if self.keepRepoPath:
1121 option_keys['keepRepoPath'] = 1
1123 d["options"] = ' '.join(sorted(option_keys.keys()))
1125 def readOptions(self, d):
1126 self.keepRepoPath = (d.has_key('options')
1127 and ('keepRepoPath' in d['options']))
1129 def gitRefForBranch(self, branch):
1130 if branch == "main":
1131 return self.refPrefix + "master"
1133 if len(branch) <= 0:
1136 return self.refPrefix + self.projectName + branch
1138 def gitCommitByP4Change(self, ref, change):
1140 print "looking in ref " + ref + " for change %s using bisect..." % change
1143 latestCommit = parseRevision(ref)
1147 print "trying: earliest %s latest %s" % (earliestCommit, latestCommit)
1148 next = read_pipe("git rev-list --bisect %s %s" % (latestCommit, earliestCommit)).strip()
1153 log = extractLogMessageFromGitCommit(next)
1154 settings = extractSettingsGitLog(log)
1155 currentChange = int(settings['change'])
1157 print "current change %s" % currentChange
1159 if currentChange == change:
1161 print "found %s" % next
1164 if currentChange < change:
1165 earliestCommit = "^%s" % next
1167 latestCommit = "%s" % next
1171 def importNewBranch(self, branch, maxChange):
1172 # make fast-import flush all changes to disk and update the refs using the checkpoint
1173 # command so that we can try to find the branch parent in the git history
1174 self.gitStream.write("checkpoint\n\n");
1175 self.gitStream.flush();
1176 branchPrefix = self.depotPaths[0] + branch + "/"
1177 range = "@1,%s" % maxChange
1178 #print "prefix" + branchPrefix
1179 changes = p4ChangesForPaths([branchPrefix], range)
1180 if len(changes) <= 0:
1182 firstChange = changes[0]
1183 #print "first change in branch: %s" % firstChange
1184 sourceBranch = self.knownBranches[branch]
1185 sourceDepotPath = self.depotPaths[0] + sourceBranch
1186 sourceRef = self.gitRefForBranch(sourceBranch)
1187 #print "source " + sourceBranch
1189 branchParentChange = int(p4Cmd("changes -m 1 %s...@1,%s" % (sourceDepotPath, firstChange))["change"])
1190 #print "branch parent: %s" % branchParentChange
1191 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)
1192 if len(gitParent) > 0:
1193 self.initialParents[self.gitRefForBranch(branch)] = gitParent
1194 #print "parent git commit: %s" % gitParent
1196 self.importChanges(changes)
1199 def importChanges(self, changes):
1201 for change in changes:
1202 description = p4Cmd("describe %s" % change)
1203 self.updateOptionDict(description)
1206 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1211 if self.detectBranches:
1212 branches = self.splitFilesIntoBranches(description)
1213 for branch in branches.keys():
1215 branchPrefix = self.depotPaths[0] + branch + "/"
1219 filesForCommit = branches[branch]
1222 print "branch is %s" % branch
1224 self.updatedBranches.add(branch)
1226 if branch not in self.createdBranches:
1227 self.createdBranches.add(branch)
1228 parent = self.knownBranches[branch]
1229 if parent == branch:
1232 fullBranch = self.projectName + branch
1233 if fullBranch not in self.p4BranchesInGit:
1235 print("\n Importing new branch %s" % fullBranch);
1236 if self.importNewBranch(branch, change - 1):
1238 self.p4BranchesInGit.append(fullBranch)
1240 print("\n Resuming with change %s" % change);
1243 print "parent determined through known branches: %s" % parent
1245 branch = self.gitRefForBranch(branch)
1246 parent = self.gitRefForBranch(parent)
1249 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1251 if len(parent) == 0 and branch in self.initialParents:
1252 parent = self.initialParents[branch]
1253 del self.initialParents[branch]
1255 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1257 files = self.extractFilesFromCommit(description)
1258 self.commit(description, files, self.branch, self.depotPaths,
1260 self.initialParent = ""
1262 print self.gitError.read()
1265 def importHeadRevision(self, revision):
1266 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), revision, self.branch)
1268 details = { "user" : "git perforce import user", "time" : int(time.time()) }
1269 details["desc"] = ("Initial import of %s from the state at revision %s"
1270 % (' '.join(self.depotPaths), revision))
1271 details["change"] = revision
1275 for info in p4CmdList("files "
1276 + ' '.join(["%s...%s"
1278 for p in self.depotPaths])):
1280 if info['code'] == 'error':
1281 sys.stderr.write("p4 returned an error: %s\n"
1286 change = int(info["change"])
1287 if change > newestRevision:
1288 newestRevision = change
1290 if info["action"] == "delete":
1291 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1292 #fileCnt = fileCnt + 1
1295 for prop in ["depotFile", "rev", "action", "type" ]:
1296 details["%s%s" % (prop, fileCnt)] = info[prop]
1298 fileCnt = fileCnt + 1
1300 details["change"] = newestRevision
1301 self.updateOptionDict(details)
1303 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1305 print "IO error with git fast-import. Is your git version recent enough?"
1306 print self.gitError.read()
1309 def run(self, args):
1310 self.depotPaths = []
1311 self.changeRange = ""
1312 self.initialParent = ""
1313 self.previousDepotPaths = []
1315 # map from branch depot path to parent branch
1316 self.knownBranches = {}
1317 self.initialParents = {}
1318 self.hasOrigin = originP4BranchesExist()
1319 if not self.syncWithOrigin:
1320 self.hasOrigin = False
1322 if self.importIntoRemotes:
1323 self.refPrefix = "refs/remotes/p4/"
1325 self.refPrefix = "refs/heads/p4/"
1327 if self.syncWithOrigin and self.hasOrigin:
1329 print "Syncing with origin first by calling git fetch origin"
1330 system("git fetch origin")
1332 if len(self.branch) == 0:
1333 self.branch = self.refPrefix + "master"
1334 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
1335 system("git update-ref %s refs/heads/p4" % self.branch)
1336 system("git branch -D p4");
1337 # create it /after/ importing, when master exists
1338 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes and gitBranchExists(self.branch):
1339 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1341 # TODO: should always look at previous commits,
1342 # merge with previous imports, if possible.
1345 createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)
1346 self.listExistingP4GitBranches()
1348 if len(self.p4BranchesInGit) > 1:
1350 print "Importing from/into multiple branches"
1351 self.detectBranches = True
1354 print "branches: %s" % self.p4BranchesInGit
1357 for branch in self.p4BranchesInGit:
1358 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
1360 settings = extractSettingsGitLog(logMsg)
1362 self.readOptions(settings)
1363 if (settings.has_key('depot-paths')
1364 and settings.has_key ('change')):
1365 change = int(settings['change']) + 1
1366 p4Change = max(p4Change, change)
1368 depotPaths = sorted(settings['depot-paths'])
1369 if self.previousDepotPaths == []:
1370 self.previousDepotPaths = depotPaths
1373 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
1374 for i in range(0, min(len(cur), len(prev))):
1375 if cur[i] <> prev[i]:
1379 paths.append (cur[:i + 1])
1381 self.previousDepotPaths = paths
1384 self.depotPaths = sorted(self.previousDepotPaths)
1385 self.changeRange = "@%s,#head" % p4Change
1386 if not self.detectBranches:
1387 self.initialParent = parseRevision(self.branch)
1388 if not self.silent and not self.detectBranches:
1389 print "Performing incremental import into %s git branch" % self.branch
1391 if not self.branch.startswith("refs/"):
1392 self.branch = "refs/heads/" + self.branch
1394 if len(args) == 0 and self.depotPaths:
1396 print "Depot paths: %s" % ' '.join(self.depotPaths)
1398 if self.depotPaths and self.depotPaths != args:
1399 print ("previous import used depot path %s and now %s was specified. "
1400 "This doesn't work!" % (' '.join (self.depotPaths),
1404 self.depotPaths = sorted(args)
1410 for p in self.depotPaths:
1411 if p.find("@") != -1:
1412 atIdx = p.index("@")
1413 self.changeRange = p[atIdx:]
1414 if self.changeRange == "@all":
1415 self.changeRange = ""
1416 elif ',' not in self.changeRange:
1417 revision = self.changeRange
1418 self.changeRange = ""
1420 elif p.find("#") != -1:
1421 hashIdx = p.index("#")
1422 revision = p[hashIdx:]
1424 elif self.previousDepotPaths == []:
1427 p = re.sub ("\.\.\.$", "", p)
1428 if not p.endswith("/"):
1433 self.depotPaths = newPaths
1436 self.loadUserMapFromCache()
1438 if self.detectLabels:
1441 if self.detectBranches:
1442 ## FIXME - what's a P4 projectName ?
1443 self.projectName = self.guessProjectName()
1445 if not self.hasOrigin:
1446 self.getBranchMapping();
1448 print "p4-git branches: %s" % self.p4BranchesInGit
1449 print "initial parents: %s" % self.initialParents
1450 for b in self.p4BranchesInGit:
1454 b = b[len(self.projectName):]
1455 self.createdBranches.add(b)
1457 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
1459 importProcess = subprocess.Popen(["git", "fast-import"],
1460 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1461 stderr=subprocess.PIPE);
1462 self.gitOutput = importProcess.stdout
1463 self.gitStream = importProcess.stdin
1464 self.gitError = importProcess.stderr
1467 self.importHeadRevision(revision)
1471 if len(self.changesFile) > 0:
1472 output = open(self.changesFile).readlines()
1475 changeSet.add(int(line))
1477 for change in changeSet:
1478 changes.append(change)
1483 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
1485 changes = p4ChangesForPaths(self.depotPaths, self.changeRange)
1487 if len(self.maxChanges) > 0:
1488 changes = changes[:min(int(self.maxChanges), len(changes))]
1490 if len(changes) == 0:
1492 print "No changes to import!"
1495 if not self.silent and not self.detectBranches:
1496 print "Import destination: %s" % self.branch
1498 self.updatedBranches = set()
1500 self.importChanges(changes)
1504 if len(self.updatedBranches) > 0:
1505 sys.stdout.write("Updated branches: ")
1506 for b in self.updatedBranches:
1507 sys.stdout.write("%s " % b)
1508 sys.stdout.write("\n")
1510 self.gitStream.close()
1511 if importProcess.wait() != 0:
1512 die("fast-import failed: %s" % self.gitError.read())
1513 self.gitOutput.close()
1514 self.gitError.close()
1518 class P4Rebase(Command):
1520 Command.__init__(self)
1522 self.description = ("Fetches the latest revision from perforce and "
1523 + "rebases the current work (branch) against it")
1524 self.verbose = False
1526 def run(self, args):
1530 return self.rebase()
1533 [upstream, settings] = findUpstreamBranchPoint()
1534 if len(upstream) == 0:
1535 die("Cannot find upstream branchpoint for rebase")
1537 # the branchpoint may be p4/foo~3, so strip off the parent
1538 upstream = re.sub("~[0-9]+$", "", upstream)
1540 print "Rebasing the current branch onto %s" % upstream
1541 oldHead = read_pipe("git rev-parse HEAD").strip()
1542 system("git rebase %s" % upstream)
1543 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
1546 class P4Clone(P4Sync):
1548 P4Sync.__init__(self)
1549 self.description = "Creates a new git repository and imports from Perforce into it"
1550 self.usage = "usage: %prog [options] //depot/path[@revRange]"
1551 self.options.append(
1552 optparse.make_option("--destination", dest="cloneDestination",
1553 action='store', default=None,
1554 help="where to leave result of the clone"))
1555 self.cloneDestination = None
1556 self.needsGit = False
1558 def defaultDestination(self, args):
1559 ## TODO: use common prefix of args?
1561 depotDir = re.sub("(@[^@]*)$", "", depotPath)
1562 depotDir = re.sub("(#[^#]*)$", "", depotDir)
1563 depotDir = re.sub(r"\.\.\.$,", "", depotDir)
1564 depotDir = re.sub(r"/$", "", depotDir)
1565 return os.path.split(depotDir)[1]
1567 def run(self, args):
1571 if self.keepRepoPath and not self.cloneDestination:
1572 sys.stderr.write("Must specify destination for --keep-path\n")
1577 if not self.cloneDestination and len(depotPaths) > 1:
1578 self.cloneDestination = depotPaths[-1]
1579 depotPaths = depotPaths[:-1]
1581 for p in depotPaths:
1582 if not p.startswith("//"):
1585 if not self.cloneDestination:
1586 self.cloneDestination = self.defaultDestination(args)
1588 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
1589 if not os.path.exists(self.cloneDestination):
1590 os.makedirs(self.cloneDestination)
1591 os.chdir(self.cloneDestination)
1593 self.gitdir = os.getcwd() + "/.git"
1594 if not P4Sync.run(self, depotPaths):
1596 if self.branch != "master":
1597 if gitBranchExists("refs/remotes/p4/master"):
1598 system("git branch master refs/remotes/p4/master")
1599 system("git checkout -f")
1601 print "Could not detect main branch. No checkout/master branch created."
1605 class P4Branches(Command):
1607 Command.__init__(self)
1609 self.description = ("Shows the git branches that hold imports and their "
1610 + "corresponding perforce depot paths")
1611 self.verbose = False
1613 def run(self, args):
1614 if originP4BranchesExist():
1615 createOrUpdateBranchesFromOrigin()
1617 cmdline = "git rev-parse --symbolic "
1618 cmdline += " --remotes"
1620 for line in read_pipe_lines(cmdline):
1623 if not line.startswith('p4/') or line == "p4/HEAD":
1627 log = extractLogMessageFromGitCommit("refs/remotes/%s" % branch)
1628 settings = extractSettingsGitLog(log)
1630 print "%s <= %s (%s)" % (branch, ",".join(settings["depot-paths"]), settings["change"])
1633 class HelpFormatter(optparse.IndentedHelpFormatter):
1635 optparse.IndentedHelpFormatter.__init__(self)
1637 def format_description(self, description):
1639 return description + "\n"
1643 def printUsage(commands):
1644 print "usage: %s <command> [options]" % sys.argv[0]
1646 print "valid commands: %s" % ", ".join(commands)
1648 print "Try %s <command> --help for command specific help." % sys.argv[0]
1653 "submit" : P4Submit,
1654 "commit" : P4Submit,
1656 "rebase" : P4Rebase,
1658 "rollback" : P4RollBack,
1659 "branches" : P4Branches
1664 if len(sys.argv[1:]) == 0:
1665 printUsage(commands.keys())
1669 cmdName = sys.argv[1]
1671 klass = commands[cmdName]
1674 print "unknown command %s" % cmdName
1676 printUsage(commands.keys())
1679 options = cmd.options
1680 cmd.gitdir = os.environ.get("GIT_DIR", None)
1684 if len(options) > 0:
1685 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1687 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1689 description = cmd.description,
1690 formatter = HelpFormatter())
1692 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1694 verbose = cmd.verbose
1696 if cmd.gitdir == None:
1697 cmd.gitdir = os.path.abspath(".git")
1698 if not isValidGitDir(cmd.gitdir):
1699 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
1700 if os.path.exists(cmd.gitdir):
1701 cdup = read_pipe("git rev-parse --show-cdup").strip()
1705 if not isValidGitDir(cmd.gitdir):
1706 if isValidGitDir(cmd.gitdir + "/.git"):
1707 cmd.gitdir += "/.git"
1709 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
1711 os.environ["GIT_DIR"] = cmd.gitdir
1713 if not cmd.run(args):
1717 if __name__ == '__main__':