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 cmd = "p4 -G %s" % cmd
69 sys.stderr.write("Opening pipe: %s\n" % cmd)
70 pipe = os.popen(cmd, "rb")
75 entry = marshal.load(pipe)
79 exitCode = pipe.close()
82 entry["p4ExitCode"] = exitCode
94 def p4Where(depotPath):
95 if not depotPath.endswith("/"):
97 output = p4Cmd("where %s..." % depotPath)
98 if output["code"] == "error":
102 clientPath = output.get("path")
103 elif "data" in output:
104 data = output.get("data")
105 lastSpace = data.rfind(" ")
106 clientPath = data[lastSpace + 1:]
108 if clientPath.endswith("..."):
109 clientPath = clientPath[:-3]
112 def currentGitBranch():
113 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
115 def isValidGitDir(path):
116 if (os.path.exists(path + "/HEAD")
117 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
121 def parseRevision(ref):
122 return read_pipe("git rev-parse %s" % ref).strip()
124 def extractLogMessageFromGitCommit(commit):
127 ## fixme: title is first line of commit, not 1st paragraph.
129 for log in read_pipe_lines("git cat-file commit %s" % commit):
138 def extractSettingsGitLog(log):
140 for line in log.split("\n"):
142 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
146 assignments = m.group(1).split (':')
147 for a in assignments:
149 key = vals[0].strip()
150 val = ('='.join (vals[1:])).strip()
151 if val.endswith ('\"') and val.startswith('"'):
156 paths = values.get("depot-paths")
158 paths = values.get("depot-path")
160 values['depot-paths'] = paths.split(',')
163 def gitBranchExists(branch):
164 proc = subprocess.Popen(["git", "rev-parse", branch],
165 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
166 return proc.wait() == 0;
169 return read_pipe("git config %s" % key, ignore_error=True).strip()
171 def findUpstreamBranchPoint(head = "HEAD"):
175 while parent < 65535:
176 commit = head + "~%s" % parent
177 log = extractLogMessageFromGitCommit(commit)
178 settings = extractSettingsGitLog(log)
179 if not settings.has_key("depot-paths"):
183 names = read_pipe_lines("git name-rev \"--refs=refs/remotes/p4/*\" \"%s\"" % commit)
187 # strip away the beginning of 'HEAD~42 refs/remotes/p4/foo'
188 branchPoint = names[0].strip()[len(commit) + 1:]
191 return [branchPoint, settings]
195 self.usage = "usage: %prog [options]"
198 class P4Debug(Command):
200 Command.__init__(self)
202 optparse.make_option("--verbose", dest="verbose", action="store_true",
205 self.description = "A tool to debug the output of p4 -G."
206 self.needsGit = False
211 for output in p4CmdList(" ".join(args)):
212 print 'Element: %d' % j
217 class P4RollBack(Command):
219 Command.__init__(self)
221 optparse.make_option("--verbose", dest="verbose", action="store_true"),
222 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
224 self.description = "A tool to debug the multi-branch import. Don't use :)"
226 self.rollbackLocalBranches = False
231 maxChange = int(args[0])
233 if "p4ExitCode" in p4Cmd("changes -m 1"):
234 die("Problems executing p4");
236 if self.rollbackLocalBranches:
237 refPrefix = "refs/heads/"
238 lines = read_pipe_lines("git rev-parse --symbolic --branches")
240 refPrefix = "refs/remotes/"
241 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
244 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
246 ref = refPrefix + line
247 log = extractLogMessageFromGitCommit(ref)
248 settings = extractSettingsGitLog(log)
250 depotPaths = settings['depot-paths']
251 change = settings['change']
255 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
256 for p in depotPaths]))) == 0:
257 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
258 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
261 while change and int(change) > maxChange:
264 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
265 system("git update-ref %s \"%s^\"" % (ref, ref))
266 log = extractLogMessageFromGitCommit(ref)
267 settings = extractSettingsGitLog(log)
270 depotPaths = settings['depot-paths']
271 change = settings['change']
274 print "%s rewound to %s" % (ref, change)
278 class P4Submit(Command):
280 Command.__init__(self)
282 optparse.make_option("--continue", action="store_false", dest="firstTime"),
283 optparse.make_option("--verbose", dest="verbose", action="store_true"),
284 optparse.make_option("--origin", dest="origin"),
285 optparse.make_option("--reset", action="store_true", dest="reset"),
286 optparse.make_option("--log-substitutions", dest="substFile"),
287 optparse.make_option("--dry-run", action="store_true"),
288 optparse.make_option("--direct", dest="directSubmit", action="store_true"),
289 optparse.make_option("--trust-me-like-a-fool", dest="trustMeLikeAFool", action="store_true"),
291 self.description = "Submit changes from git to the perforce depot."
292 self.usage += " [name of git branch to submit into perforce depot]"
293 self.firstTime = True
295 self.interactive = True
298 self.firstTime = True
300 self.directSubmit = False
301 self.trustMeLikeAFool = False
303 self.isWindows = (platform.system() == "Windows")
305 self.logSubstitutions = {}
306 self.logSubstitutions["<enter description here>"] = "%log%"
307 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
310 if len(p4CmdList("opened ...")) > 0:
311 die("You have files opened with perforce! Close them before starting the sync.")
314 if len(self.config) > 0 and not self.reset:
315 die("Cannot start sync. Previous sync config found at %s\n"
316 "If you want to start submitting again from scratch "
317 "maybe you want to call git-p4 submit --reset" % self.configFile)
320 if self.directSubmit:
323 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
324 commits.append(line.strip())
327 self.config["commits"] = commits
329 def prepareLogMessage(self, template, message):
332 for line in template.split("\n"):
333 if line.startswith("#"):
334 result += line + "\n"
338 for key in self.logSubstitutions.keys():
339 if line.find(key) != -1:
340 value = self.logSubstitutions[key]
341 value = value.replace("%log%", message)
342 if value != "@remove@":
343 result += line.replace(key, value) + "\n"
348 result += line + "\n"
352 def applyCommit(self, id):
353 if self.directSubmit:
354 print "Applying local change in working directory/index"
355 diff = self.diffStatus
357 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
358 diff = read_pipe_lines("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id))
360 filesToDelete = set()
364 path = line[1:].strip()
366 system("p4 edit \"%s\"" % path)
367 editedFiles.add(path)
368 elif modifier == "A":
370 if path in filesToDelete:
371 filesToDelete.remove(path)
372 elif modifier == "D":
373 filesToDelete.add(path)
374 if path in filesToAdd:
375 filesToAdd.remove(path)
377 die("unknown modifier %s for %s" % (modifier, path))
379 if self.directSubmit:
380 diffcmd = "cat \"%s\"" % self.diffFile
382 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
383 patchcmd = diffcmd + " | git apply "
384 tryPatchCmd = patchcmd + "--check -"
385 applyPatchCmd = patchcmd + "--check --apply -"
387 if os.system(tryPatchCmd) != 0:
388 print "Unfortunately applying the change failed!"
389 print "What do you want to do?"
391 while response != "s" and response != "a" and response != "w":
392 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
393 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
395 print "Skipping! Good luck with the next patches..."
397 elif response == "a":
398 os.system(applyPatchCmd)
399 if len(filesToAdd) > 0:
400 print "You may also want to call p4 add on the following files:"
401 print " ".join(filesToAdd)
402 if len(filesToDelete):
403 print "The following files should be scheduled for deletion with p4 delete:"
404 print " ".join(filesToDelete)
405 die("Please resolve and submit the conflict manually and "
406 + "continue afterwards with git-p4 submit --continue")
407 elif response == "w":
408 system(diffcmd + " > patch.txt")
409 print "Patch saved to patch.txt in %s !" % self.clientPath
410 die("Please resolve and submit the conflict manually and "
411 "continue afterwards with git-p4 submit --continue")
413 system(applyPatchCmd)
416 system("p4 add \"%s\"" % f)
417 for f in filesToDelete:
418 system("p4 revert \"%s\"" % f)
419 system("p4 delete \"%s\"" % f)
422 if not self.directSubmit:
423 logMessage = extractLogMessageFromGitCommit(id)
424 logMessage = logMessage.replace("\n", "\n\t")
426 logMessage = logMessage.replace("\n", "\r\n")
427 logMessage = logMessage.strip()
429 template = read_pipe("p4 change -o")
432 submitTemplate = self.prepareLogMessage(template, logMessage)
433 diff = read_pipe("p4 diff -du ...")
435 for newFile in filesToAdd:
436 diff += "==== new file ====\n"
437 diff += "--- /dev/null\n"
438 diff += "+++ %s\n" % newFile
439 f = open(newFile, "r")
440 for line in f.readlines():
444 separatorLine = "######## everything below this line is just the diff #######"
445 if platform.system() == "Windows":
446 separatorLine += "\r"
447 separatorLine += "\n"
450 if self.trustMeLikeAFool:
453 firstIteration = True
454 while response == "e":
455 if not firstIteration:
456 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
457 firstIteration = False
459 [handle, fileName] = tempfile.mkstemp()
460 tmpFile = os.fdopen(handle, "w+")
461 tmpFile.write(submitTemplate + separatorLine + diff)
464 if platform.system() == "Windows":
465 defaultEditor = "notepad"
466 editor = os.environ.get("EDITOR", defaultEditor);
467 system(editor + " " + fileName)
468 tmpFile = open(fileName, "rb")
469 message = tmpFile.read()
472 submitTemplate = message[:message.index(separatorLine)]
474 submitTemplate = submitTemplate.replace("\r\n", "\n")
476 if response == "y" or response == "yes":
479 raw_input("Press return to continue...")
481 if self.directSubmit:
482 print "Submitting to git first"
483 os.chdir(self.oldWorkingDirectory)
484 write_pipe("git commit -a -F -", submitTemplate)
485 os.chdir(self.clientPath)
487 write_pipe("p4 submit -i", submitTemplate)
488 elif response == "s":
489 for f in editedFiles:
490 system("p4 revert \"%s\"" % f);
492 system("p4 revert \"%s\"" % f);
494 for f in filesToDelete:
495 system("p4 delete \"%s\"" % f);
498 print "Not submitting!"
499 self.interactive = False
501 fileName = "submit.txt"
502 file = open(fileName, "w+")
503 file.write(self.prepareLogMessage(template, logMessage))
505 print ("Perforce submit template written as %s. "
506 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
507 % (fileName, fileName))
511 self.master = currentGitBranch()
512 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
513 die("Detecting current git branch failed!")
515 self.master = args[0]
519 [upstream, settings] = findUpstreamBranchPoint()
520 depotPath = settings['depot-paths'][0]
521 if len(self.origin) == 0:
522 self.origin = upstream
525 print "Origin branch is " + self.origin
527 if len(depotPath) == 0:
528 print "Internal error: cannot locate perforce depot path from existing branches"
531 self.clientPath = p4Where(depotPath)
533 if len(self.clientPath) == 0:
534 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
537 print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
538 self.oldWorkingDirectory = os.getcwd()
540 if self.directSubmit:
541 self.diffStatus = read_pipe_lines("git diff -r --name-status HEAD")
542 if len(self.diffStatus) == 0:
543 print "No changes in working directory to submit."
545 patch = read_pipe("git diff -p --binary --diff-filter=ACMRTUXB HEAD")
546 self.diffFile = self.gitdir + "/p4-git-diff"
547 f = open(self.diffFile, "wb")
551 os.chdir(self.clientPath)
552 response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
553 if response == "y" or response == "yes":
554 system("p4 sync ...")
557 self.firstTime = True
559 if len(self.substFile) > 0:
560 for line in open(self.substFile, "r").readlines():
561 tokens = line.strip().split("=")
562 self.logSubstitutions[tokens[0]] = tokens[1]
565 self.configFile = self.gitdir + "/p4-git-sync.cfg"
566 self.config = shelve.open(self.configFile, writeback=True)
571 commits = self.config.get("commits", [])
573 while len(commits) > 0:
574 self.firstTime = False
576 commits = commits[1:]
577 self.config["commits"] = commits
578 self.applyCommit(commit)
579 if not self.interactive:
584 if self.directSubmit:
585 os.remove(self.diffFile)
587 if len(commits) == 0:
589 print "No changes found to apply between %s and current HEAD" % self.origin
591 print "All changes applied!"
592 os.chdir(self.oldWorkingDirectory)
593 response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
594 if response == "y" or response == "yes":
597 os.remove(self.configFile)
601 class P4Sync(Command):
603 Command.__init__(self)
605 optparse.make_option("--branch", dest="branch"),
606 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
607 optparse.make_option("--changesfile", dest="changesFile"),
608 optparse.make_option("--silent", dest="silent", action="store_true"),
609 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
610 optparse.make_option("--verbose", dest="verbose", action="store_true"),
611 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
612 help="Import into refs/heads/ , not refs/remotes"),
613 optparse.make_option("--max-changes", dest="maxChanges"),
614 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
615 help="Keep entire BRANCH/DIR/SUBDIR prefix during import")
617 self.description = """Imports from Perforce into a git repository.\n
619 //depot/my/project/ -- to import the current head
620 //depot/my/project/@all -- to import everything
621 //depot/my/project/@1,6 -- to import only from revision 1 to 6
623 (a ... is not needed in the path p4 specification, it's added implicitly)"""
625 self.usage += " //depot/path[@revRange]"
627 self.createdBranches = Set()
628 self.committedChanges = Set()
630 self.detectBranches = False
631 self.detectLabels = False
632 self.changesFile = ""
633 self.syncWithOrigin = True
635 self.importIntoRemotes = True
637 self.isWindows = (platform.system() == "Windows")
638 self.keepRepoPath = False
639 self.depotPaths = None
640 self.p4BranchesInGit = []
642 if gitConfig("git-p4.syncFromOrigin") == "false":
643 self.syncWithOrigin = False
645 def extractFilesFromCommit(self, commit):
648 while commit.has_key("depotFile%s" % fnum):
649 path = commit["depotFile%s" % fnum]
651 found = [p for p in self.depotPaths
652 if path.startswith (p)]
659 file["rev"] = commit["rev%s" % fnum]
660 file["action"] = commit["action%s" % fnum]
661 file["type"] = commit["type%s" % fnum]
666 def stripRepoPath(self, path, prefixes):
667 if self.keepRepoPath:
668 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
671 if path.startswith(p):
676 def splitFilesIntoBranches(self, commit):
679 while commit.has_key("depotFile%s" % fnum):
680 path = commit["depotFile%s" % fnum]
681 found = [p for p in self.depotPaths
682 if path.startswith (p)]
689 file["rev"] = commit["rev%s" % fnum]
690 file["action"] = commit["action%s" % fnum]
691 file["type"] = commit["type%s" % fnum]
694 relPath = self.stripRepoPath(path, self.depotPaths)
696 for branch in self.knownBranches.keys():
698 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
699 if relPath.startswith(branch + "/"):
700 if branch not in branches:
701 branches[branch] = []
702 branches[branch].append(file)
707 ## Should move this out, doesn't use SELF.
708 def readP4Files(self, files):
709 files = [f for f in files
710 if f['action'] != 'delete']
715 # We cannot put all the files on the command line
716 # OS have limitations on the max lenght of arguments
717 # POSIX says it's 4096 bytes, default for Linux seems to be 130 K.
718 # and all OS from the table below seems to be higher than POSIX.
719 # See http://www.in-ulm.de/~mascheck/various/argmax/
723 argmax = min(4000, os.sysconf('SC_ARG_MAX'))
727 for i in xrange(len(files)):
729 chunk += '"%s#%s" ' % (f['path'], f['rev'])
730 if len(chunk) > argmax or i == len(files)-1:
731 data = p4CmdList('print %s' % chunk)
732 if "p4ExitCode" in data[0]:
733 die("Problems executing p4. Error: [%d]." % (data[0]['p4ExitCode']));
734 filedata.extend(data)
739 while j < len(filedata):
743 while j < len(filedata) and filedata[j]['code'] in ('text',
745 text += filedata[j]['data']
749 if not stat.has_key('depotFile'):
750 sys.stderr.write("p4 print fails with: %s\n" % repr(stat))
753 contents[stat['depotFile']] = text
756 assert not f.has_key('data')
757 f['data'] = contents[f['path']]
759 def commit(self, details, files, branch, branchPrefixes, parent = ""):
760 epoch = details["time"]
761 author = details["user"]
764 print "commit into %s" % branch
766 # start with reading files; if that fails, we should not
770 if [p for p in branchPrefixes if f['path'].startswith(p)]:
773 sys.stderr.write("Ignoring file outside of prefix: %s\n" % path)
775 self.readP4Files(files)
780 self.gitStream.write("commit %s\n" % branch)
781 # gitStream.write("mark :%s\n" % details["change"])
782 self.committedChanges.add(int(details["change"]))
784 if author not in self.users:
785 self.getUserMapFromPerforceServer()
786 if author in self.users:
787 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
789 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
791 self.gitStream.write("committer %s\n" % committer)
793 self.gitStream.write("data <<EOT\n")
794 self.gitStream.write(details["desc"])
795 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
796 % (','.join (branchPrefixes), details["change"]))
797 if len(details['options']) > 0:
798 self.gitStream.write(": options = %s" % details['options'])
799 self.gitStream.write("]\nEOT\n\n")
803 print "parent %s" % parent
804 self.gitStream.write("from %s\n" % parent)
807 if file["type"] == "apple":
808 print "\nfile %s is a strange apple file that forks. Ignoring!" % file['path']
811 relPath = self.stripRepoPath(file['path'], branchPrefixes)
812 if file["action"] == "delete":
813 self.gitStream.write("D %s\n" % relPath)
816 if file["type"].startswith("x"):
821 if self.isWindows and file["type"].endswith("text"):
822 data = data.replace("\r\n", "\n")
824 self.gitStream.write("M %d inline %s\n" % (mode, relPath))
825 self.gitStream.write("data %s\n" % len(data))
826 self.gitStream.write(data)
827 self.gitStream.write("\n")
829 self.gitStream.write("\n")
831 change = int(details["change"])
833 if self.labels.has_key(change):
834 label = self.labels[change]
835 labelDetails = label[0]
836 labelRevisions = label[1]
838 print "Change %s is labelled %s" % (change, labelDetails)
840 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
841 for p in branchPrefixes]))
843 if len(files) == len(labelRevisions):
847 if info["action"] == "delete":
849 cleanedFiles[info["depotFile"]] = info["rev"]
851 if cleanedFiles == labelRevisions:
852 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
853 self.gitStream.write("from %s\n" % branch)
855 owner = labelDetails["Owner"]
857 if author in self.users:
858 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
860 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
861 self.gitStream.write("tagger %s\n" % tagger)
862 self.gitStream.write("data <<EOT\n")
863 self.gitStream.write(labelDetails["Description"])
864 self.gitStream.write("EOT\n\n")
868 print ("Tag %s does not match with change %s: files do not match."
869 % (labelDetails["label"], change))
873 print ("Tag %s does not match with change %s: file count is different."
874 % (labelDetails["label"], change))
876 def getUserCacheFilename(self):
877 return os.environ["HOME"] + "/.gitp4-usercache.txt"
879 def getUserMapFromPerforceServer(self):
880 if self.userMapFromPerforceServer:
884 for output in p4CmdList("users"):
885 if not output.has_key("User"):
887 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
891 for (key, val) in self.users.items():
892 s += "%s\t%s\n" % (key, val)
894 open(self.getUserCacheFilename(), "wb").write(s)
895 self.userMapFromPerforceServer = True
897 def loadUserMapFromCache(self):
899 self.userMapFromPerforceServer = False
901 cache = open(self.getUserCacheFilename(), "rb")
902 lines = cache.readlines()
905 entry = line.strip().split("\t")
906 self.users[entry[0]] = entry[1]
908 self.getUserMapFromPerforceServer()
913 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
914 if len(l) > 0 and not self.silent:
915 print "Finding files belonging to labels in %s" % `self.depotPath`
918 label = output["label"]
922 print "Querying files for label %s" % label
923 for file in p4CmdList("files "
924 + ' '.join (["%s...@%s" % (p, label)
925 for p in self.depotPaths])):
926 revisions[file["depotFile"]] = file["rev"]
927 change = int(file["change"])
928 if change > newestChange:
929 newestChange = change
931 self.labels[newestChange] = [output, revisions]
934 print "Label changes: %s" % self.labels.keys()
936 def guessProjectName(self):
937 for p in self.depotPaths:
940 p = p[p.strip().rfind("/") + 1:]
941 if not p.endswith("/"):
945 def getBranchMapping(self):
946 lostAndFoundBranches = set()
948 for info in p4CmdList("branches"):
949 details = p4Cmd("branch -o %s" % info["branch"])
951 while details.has_key("View%s" % viewIdx):
952 paths = details["View%s" % viewIdx].split(" ")
953 viewIdx = viewIdx + 1
954 # require standard //depot/foo/... //depot/bar/... mapping
955 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
958 destination = paths[1]
960 if source.startswith(self.depotPaths[0]) and destination.startswith(self.depotPaths[0]):
961 source = source[len(self.depotPaths[0]):-4]
962 destination = destination[len(self.depotPaths[0]):-4]
964 if destination in self.knownBranches:
966 print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination)
967 print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination)
970 self.knownBranches[destination] = source
972 lostAndFoundBranches.discard(destination)
974 if source not in self.knownBranches:
975 lostAndFoundBranches.add(source)
978 for branch in lostAndFoundBranches:
979 self.knownBranches[branch] = branch
981 def listExistingP4GitBranches(self):
982 self.p4BranchesInGit = []
984 cmdline = "git rev-parse --symbolic "
985 if self.importIntoRemotes:
986 cmdline += " --remotes"
988 cmdline += " --branches"
990 for line in read_pipe_lines(cmdline):
993 ## only import to p4/
994 if not line.startswith('p4/') or line == "p4/HEAD":
999 branch = re.sub ("^p4/", "", line)
1001 self.p4BranchesInGit.append(branch)
1002 self.initialParents[self.refPrefix + branch] = parseRevision(line)
1004 def createOrUpdateBranchesFromOrigin(self):
1006 print ("Creating/updating branch(es) in %s based on origin branch(es)"
1009 originPrefix = "origin/p4/"
1011 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
1013 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
1016 headName = line[len(originPrefix):]
1017 remoteHead = self.refPrefix + headName
1020 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
1021 if (not original.has_key('depot-paths')
1022 or not original.has_key('change')):
1026 if not gitBranchExists(remoteHead):
1028 print "creating %s" % remoteHead
1031 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
1032 if settings.has_key('change') > 0:
1033 if settings['depot-paths'] == original['depot-paths']:
1034 originP4Change = int(original['change'])
1035 p4Change = int(settings['change'])
1036 if originP4Change > p4Change:
1037 print ("%s (%s) is newer than %s (%s). "
1038 "Updating p4 branch from origin."
1039 % (originHead, originP4Change,
1040 remoteHead, p4Change))
1043 print ("Ignoring: %s was imported from %s while "
1044 "%s was imported from %s"
1045 % (originHead, ','.join(original['depot-paths']),
1046 remoteHead, ','.join(settings['depot-paths'])))
1049 system("git update-ref %s %s" % (remoteHead, originHead))
1051 def updateOptionDict(self, d):
1053 if self.keepRepoPath:
1054 option_keys['keepRepoPath'] = 1
1056 d["options"] = ' '.join(sorted(option_keys.keys()))
1058 def readOptions(self, d):
1059 self.keepRepoPath = (d.has_key('options')
1060 and ('keepRepoPath' in d['options']))
1062 def run(self, args):
1063 self.depotPaths = []
1064 self.changeRange = ""
1065 self.initialParent = ""
1066 self.previousDepotPaths = []
1068 # map from branch depot path to parent branch
1069 self.knownBranches = {}
1070 self.initialParents = {}
1071 self.hasOrigin = gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
1072 if not self.syncWithOrigin:
1073 self.hasOrigin = False
1075 if self.importIntoRemotes:
1076 self.refPrefix = "refs/remotes/p4/"
1078 self.refPrefix = "refs/heads/p4/"
1080 if self.syncWithOrigin and self.hasOrigin:
1082 print "Syncing with origin first by calling git fetch origin"
1083 system("git fetch origin")
1085 if len(self.branch) == 0:
1086 self.branch = self.refPrefix + "master"
1087 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
1088 system("git update-ref %s refs/heads/p4" % self.branch)
1089 system("git branch -D p4");
1090 # create it /after/ importing, when master exists
1091 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
1092 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1094 # TODO: should always look at previous commits,
1095 # merge with previous imports, if possible.
1098 self.createOrUpdateBranchesFromOrigin()
1099 self.listExistingP4GitBranches()
1101 if len(self.p4BranchesInGit) > 1:
1103 print "Importing from/into multiple branches"
1104 self.detectBranches = True
1107 print "branches: %s" % self.p4BranchesInGit
1110 for branch in self.p4BranchesInGit:
1111 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
1113 settings = extractSettingsGitLog(logMsg)
1115 self.readOptions(settings)
1116 if (settings.has_key('depot-paths')
1117 and settings.has_key ('change')):
1118 change = int(settings['change']) + 1
1119 p4Change = max(p4Change, change)
1121 depotPaths = sorted(settings['depot-paths'])
1122 if self.previousDepotPaths == []:
1123 self.previousDepotPaths = depotPaths
1126 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
1127 for i in range(0, min(len(cur), len(prev))):
1128 if cur[i] <> prev[i]:
1132 paths.append (cur[:i + 1])
1134 self.previousDepotPaths = paths
1137 self.depotPaths = sorted(self.previousDepotPaths)
1138 self.changeRange = "@%s,#head" % p4Change
1139 if not self.detectBranches:
1140 self.initialParent = parseRevision(self.branch)
1141 if not self.silent and not self.detectBranches:
1142 print "Performing incremental import into %s git branch" % self.branch
1144 if not self.branch.startswith("refs/"):
1145 self.branch = "refs/heads/" + self.branch
1147 if len(args) == 0 and self.depotPaths:
1149 print "Depot paths: %s" % ' '.join(self.depotPaths)
1151 if self.depotPaths and self.depotPaths != args:
1152 print ("previous import used depot path %s and now %s was specified. "
1153 "This doesn't work!" % (' '.join (self.depotPaths),
1157 self.depotPaths = sorted(args)
1163 for p in self.depotPaths:
1164 if p.find("@") != -1:
1165 atIdx = p.index("@")
1166 self.changeRange = p[atIdx:]
1167 if self.changeRange == "@all":
1168 self.changeRange = ""
1169 elif ',' not in self.changeRange:
1170 self.revision = self.changeRange
1171 self.changeRange = ""
1173 elif p.find("#") != -1:
1174 hashIdx = p.index("#")
1175 self.revision = p[hashIdx:]
1177 elif self.previousDepotPaths == []:
1178 self.revision = "#head"
1180 p = re.sub ("\.\.\.$", "", p)
1181 if not p.endswith("/"):
1186 self.depotPaths = newPaths
1189 self.loadUserMapFromCache()
1191 if self.detectLabels:
1194 if self.detectBranches:
1195 ## FIXME - what's a P4 projectName ?
1196 self.projectName = self.guessProjectName()
1198 if not self.hasOrigin:
1199 self.getBranchMapping();
1201 print "p4-git branches: %s" % self.p4BranchesInGit
1202 print "initial parents: %s" % self.initialParents
1203 for b in self.p4BranchesInGit:
1207 b = b[len(self.projectName):]
1208 self.createdBranches.add(b)
1210 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
1212 importProcess = subprocess.Popen(["git", "fast-import"],
1213 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1214 stderr=subprocess.PIPE);
1215 self.gitOutput = importProcess.stdout
1216 self.gitStream = importProcess.stdin
1217 self.gitError = importProcess.stderr
1220 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), self.revision, self.branch)
1222 details = { "user" : "git perforce import user", "time" : int(time.time()) }
1223 details["desc"] = ("Initial import of %s from the state at revision %s"
1224 % (' '.join(self.depotPaths), self.revision))
1225 details["change"] = self.revision
1229 for info in p4CmdList("files "
1230 + ' '.join(["%s...%s"
1231 % (p, self.revision)
1232 for p in self.depotPaths])):
1234 if info['code'] == 'error':
1235 sys.stderr.write("p4 returned an error: %s\n"
1240 change = int(info["change"])
1241 if change > newestRevision:
1242 newestRevision = change
1244 if info["action"] == "delete":
1245 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1246 #fileCnt = fileCnt + 1
1249 for prop in ["depotFile", "rev", "action", "type" ]:
1250 details["%s%s" % (prop, fileCnt)] = info[prop]
1252 fileCnt = fileCnt + 1
1254 details["change"] = newestRevision
1255 self.updateOptionDict(details)
1257 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1259 print "IO error with git fast-import. Is your git version recent enough?"
1260 print self.gitError.read()
1265 if len(self.changesFile) > 0:
1266 output = open(self.changesFile).readlines()
1269 changeSet.add(int(line))
1271 for change in changeSet:
1272 changes.append(change)
1277 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
1279 assert self.depotPaths
1280 output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, self.changeRange)
1281 for p in self.depotPaths]))
1284 changeNum = line.split(" ")[1]
1285 changes.append(changeNum)
1289 if len(self.maxChanges) > 0:
1290 changes = changes[0:min(int(self.maxChanges), len(changes))]
1292 if len(changes) == 0:
1294 print "No changes to import!"
1297 if not self.silent and not self.detectBranches:
1298 print "Import destination: %s" % self.branch
1300 self.updatedBranches = set()
1303 for change in changes:
1304 description = p4Cmd("describe %s" % change)
1305 self.updateOptionDict(description)
1308 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1313 if self.detectBranches:
1314 branches = self.splitFilesIntoBranches(description)
1315 for branch in branches.keys():
1317 branchPrefix = self.depotPaths[0] + branch + "/"
1321 filesForCommit = branches[branch]
1324 print "branch is %s" % branch
1326 self.updatedBranches.add(branch)
1328 if branch not in self.createdBranches:
1329 self.createdBranches.add(branch)
1330 parent = self.knownBranches[branch]
1331 if parent == branch:
1334 print "parent determined through known branches: %s" % parent
1336 # main branch? use master
1337 if branch == "main":
1342 branch = self.projectName + branch
1344 if parent == "main":
1346 elif len(parent) > 0:
1348 parent = self.projectName + parent
1350 branch = self.refPrefix + branch
1352 parent = self.refPrefix + parent
1355 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1357 if len(parent) == 0 and branch in self.initialParents:
1358 parent = self.initialParents[branch]
1359 del self.initialParents[branch]
1361 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1363 files = self.extractFilesFromCommit(description)
1364 self.commit(description, files, self.branch, self.depotPaths,
1366 self.initialParent = ""
1368 print self.gitError.read()
1373 if len(self.updatedBranches) > 0:
1374 sys.stdout.write("Updated branches: ")
1375 for b in self.updatedBranches:
1376 sys.stdout.write("%s " % b)
1377 sys.stdout.write("\n")
1380 self.gitStream.close()
1381 if importProcess.wait() != 0:
1382 die("fast-import failed: %s" % self.gitError.read())
1383 self.gitOutput.close()
1384 self.gitError.close()
1388 class P4Rebase(Command):
1390 Command.__init__(self)
1392 self.description = ("Fetches the latest revision from perforce and "
1393 + "rebases the current work (branch) against it")
1394 self.verbose = False
1396 def run(self, args):
1400 [upstream, settings] = findUpstreamBranchPoint()
1401 if len(upstream) == 0:
1402 die("Cannot find upstream branchpoint for rebase")
1404 # the branchpoint may be p4/foo~3, so strip off the parent
1405 upstream = re.sub("~[0-9]+$", "", upstream)
1407 print "Rebasing the current branch onto %s" % upstream
1408 oldHead = read_pipe("git rev-parse HEAD").strip()
1409 system("git rebase %s" % upstream)
1410 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
1413 class P4Clone(P4Sync):
1415 P4Sync.__init__(self)
1416 self.description = "Creates a new git repository and imports from Perforce into it"
1417 self.usage = "usage: %prog [options] //depot/path[@revRange]"
1418 self.options.append(
1419 optparse.make_option("--destination", dest="cloneDestination",
1420 action='store', default=None,
1421 help="where to leave result of the clone"))
1422 self.cloneDestination = None
1423 self.needsGit = False
1425 def defaultDestination(self, args):
1426 ## TODO: use common prefix of args?
1428 depotDir = re.sub("(@[^@]*)$", "", depotPath)
1429 depotDir = re.sub("(#[^#]*)$", "", depotDir)
1430 depotDir = re.sub(r"\.\.\.$,", "", depotDir)
1431 depotDir = re.sub(r"/$", "", depotDir)
1432 return os.path.split(depotDir)[1]
1434 def run(self, args):
1438 if self.keepRepoPath and not self.cloneDestination:
1439 sys.stderr.write("Must specify destination for --keep-path\n")
1444 if not self.cloneDestination and len(depotPaths) > 1:
1445 self.cloneDestination = depotPaths[-1]
1446 depotPaths = depotPaths[:-1]
1448 for p in depotPaths:
1449 if not p.startswith("//"):
1452 if not self.cloneDestination:
1453 self.cloneDestination = self.defaultDestination(args)
1455 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
1456 if not os.path.exists(self.cloneDestination):
1457 os.makedirs(self.cloneDestination)
1458 os.chdir(self.cloneDestination)
1460 self.gitdir = os.getcwd() + "/.git"
1461 if not P4Sync.run(self, depotPaths):
1463 if self.branch != "master":
1464 if gitBranchExists("refs/remotes/p4/master"):
1465 system("git branch master refs/remotes/p4/master")
1466 system("git checkout -f")
1468 print "Could not detect main branch. No checkout/master branch created."
1472 class P4Branches(Command):
1474 Command.__init__(self)
1476 self.description = ("Shows the git branches that hold imports and their "
1477 + "corresponding perforce depot paths")
1478 self.verbose = False
1480 def run(self, args):
1481 cmdline = "git rev-parse --symbolic "
1482 cmdline += " --remotes"
1484 for line in read_pipe_lines(cmdline):
1487 if not line.startswith('p4/') or line == "p4/HEAD":
1491 log = extractLogMessageFromGitCommit("refs/remotes/%s" % branch)
1492 settings = extractSettingsGitLog(log)
1494 print "%s <= %s (%s)" % (branch, ",".join(settings["depot-paths"]), settings["change"])
1497 class HelpFormatter(optparse.IndentedHelpFormatter):
1499 optparse.IndentedHelpFormatter.__init__(self)
1501 def format_description(self, description):
1503 return description + "\n"
1507 def printUsage(commands):
1508 print "usage: %s <command> [options]" % sys.argv[0]
1510 print "valid commands: %s" % ", ".join(commands)
1512 print "Try %s <command> --help for command specific help." % sys.argv[0]
1517 "submit" : P4Submit,
1519 "rebase" : P4Rebase,
1521 "rollback" : P4RollBack,
1522 "branches" : P4Branches
1527 if len(sys.argv[1:]) == 0:
1528 printUsage(commands.keys())
1532 cmdName = sys.argv[1]
1534 klass = commands[cmdName]
1537 print "unknown command %s" % cmdName
1539 printUsage(commands.keys())
1542 options = cmd.options
1543 cmd.gitdir = os.environ.get("GIT_DIR", None)
1547 if len(options) > 0:
1548 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1550 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1552 description = cmd.description,
1553 formatter = HelpFormatter())
1555 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1557 verbose = cmd.verbose
1559 if cmd.gitdir == None:
1560 cmd.gitdir = os.path.abspath(".git")
1561 if not isValidGitDir(cmd.gitdir):
1562 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
1563 if os.path.exists(cmd.gitdir):
1564 cdup = read_pipe("git rev-parse --show-cdup").strip()
1568 if not isValidGitDir(cmd.gitdir):
1569 if isValidGitDir(cmd.gitdir + "/.git"):
1570 cmd.gitdir += "/.git"
1572 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
1574 os.environ["GIT_DIR"] = cmd.gitdir
1576 if not cmd.run(args):
1580 if __name__ == '__main__':