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, subprocess, shelve
12 import tempfile, getopt, os.path, time, platform
18 def p4_build_cmd(cmd):
19 """Build a suitable p4 command line.
21 This consolidates building and returning a p4 command line into one
22 location. It means that hooking into the environment, or other configuration
23 can be done more easily.
25 real_cmd = "%s " % "p4"
27 user = gitConfig("git-p4.user")
29 real_cmd += "-u %s " % user
31 password = gitConfig("git-p4.password")
33 real_cmd += "-P %s " % password
35 port = gitConfig("git-p4.port")
37 real_cmd += "-p %s " % port
39 host = gitConfig("git-p4.host")
41 real_cmd += "-h %s " % host
43 client = gitConfig("git-p4.client")
45 real_cmd += "-c %s " % client
47 real_cmd += "%s" % (cmd)
61 sys.stderr.write(msg + "\n")
64 def write_pipe(c, str):
66 sys.stderr.write('Writing pipe: %s\n' % c)
68 pipe = os.popen(c, 'w')
71 die('Command failed: %s' % c)
75 def p4_write_pipe(c, str):
76 real_cmd = p4_build_cmd(c)
77 return write_pipe(real_cmd, str)
79 def read_pipe(c, ignore_error=False):
81 sys.stderr.write('Reading pipe: %s\n' % c)
83 pipe = os.popen(c, 'rb')
85 if pipe.close() and not ignore_error:
86 die('Command failed: %s' % c)
90 def p4_read_pipe(c, ignore_error=False):
91 real_cmd = p4_build_cmd(c)
92 return read_pipe(real_cmd, ignore_error)
94 def read_pipe_lines(c):
96 sys.stderr.write('Reading pipe: %s\n' % c)
97 ## todo: check return status
98 pipe = os.popen(c, 'rb')
99 val = pipe.readlines()
101 die('Command failed: %s' % c)
105 def p4_read_pipe_lines(c):
106 """Specifically invoke p4 on the command supplied. """
107 real_cmd = p4_build_cmd(c)
108 return read_pipe_lines(real_cmd)
112 sys.stderr.write("executing %s\n" % cmd)
113 if os.system(cmd) != 0:
114 die("command failed: %s" % cmd)
117 """Specifically invoke p4 as the system command. """
118 real_cmd = p4_build_cmd(cmd)
119 return system(real_cmd)
122 """Determine if a Perforce 'kind' should have execute permission
124 'p4 help filetypes' gives a list of the types. If it starts with 'x',
125 or x follows one of a few letters. Otherwise, if there is an 'x' after
126 a plus sign, it is also executable"""
127 return (re.search(r"(^[cku]?x)|\+.*x", kind) != None)
129 def setP4ExecBit(file, mode):
130 # Reopens an already open file and changes the execute bit to match
131 # the execute bit setting in the passed in mode.
135 if not isModeExec(mode):
136 p4Type = getP4OpenedType(file)
137 p4Type = re.sub('^([cku]?)x(.*)', '\\1\\2', p4Type)
138 p4Type = re.sub('(.*?\+.*?)x(.*?)', '\\1\\2', p4Type)
139 if p4Type[-1] == "+":
140 p4Type = p4Type[0:-1]
142 p4_system("reopen -t %s %s" % (p4Type, file))
144 def getP4OpenedType(file):
145 # Returns the perforce file type for the given file.
147 result = p4_read_pipe("opened %s" % file)
148 match = re.match(".*\((.+)\)\r?$", result)
150 return match.group(1)
152 die("Could not determine file type for %s (result: '%s')" % (file, result))
154 def diffTreePattern():
155 # This is a simple generator for the diff tree regex pattern. This could be
156 # a class variable if this and parseDiffTreeEntry were a part of a class.
157 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)')
161 def parseDiffTreeEntry(entry):
162 """Parses a single diff tree entry into its component elements.
164 See git-diff-tree(1) manpage for details about the format of the diff
165 output. This method returns a dictionary with the following elements:
167 src_mode - The mode of the source file
168 dst_mode - The mode of the destination file
169 src_sha1 - The sha1 for the source file
170 dst_sha1 - The sha1 fr the destination file
171 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc)
172 status_score - The score for the status (applicable for 'C' and 'R'
173 statuses). This is None if there is no score.
174 src - The path for the source file.
175 dst - The path for the destination file. This is only present for
176 copy or renames. If it is not present, this is None.
178 If the pattern is not matched, None is returned."""
180 match = diffTreePattern().next().match(entry)
183 'src_mode': match.group(1),
184 'dst_mode': match.group(2),
185 'src_sha1': match.group(3),
186 'dst_sha1': match.group(4),
187 'status': match.group(5),
188 'status_score': match.group(6),
189 'src': match.group(7),
190 'dst': match.group(10)
194 def isModeExec(mode):
195 # Returns True if the given git mode represents an executable file,
197 return mode[-3:] == "755"
199 def isModeExecChanged(src_mode, dst_mode):
200 return isModeExec(src_mode) != isModeExec(dst_mode)
202 def p4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None):
203 cmd = p4_build_cmd("-G %s" % (cmd))
205 sys.stderr.write("Opening pipe: %s\n" % cmd)
207 # Use a temporary file to avoid deadlocks without
208 # subprocess.communicate(), which would put another copy
209 # of stdout into memory.
211 if stdin is not None:
212 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode)
213 stdin_file.write(stdin)
217 p4 = subprocess.Popen(cmd, shell=True,
219 stdout=subprocess.PIPE)
224 entry = marshal.load(p4.stdout)
234 entry["p4ExitCode"] = exitCode
240 list = p4CmdList(cmd)
246 def p4Where(depotPath):
247 if not depotPath.endswith("/"):
249 depotPath = depotPath + "..."
250 outputList = p4CmdList("where %s" % depotPath)
252 for entry in outputList:
253 if "depotFile" in entry:
254 if entry["depotFile"] == depotPath:
257 elif "data" in entry:
258 data = entry.get("data")
259 space = data.find(" ")
260 if data[:space] == depotPath:
265 if output["code"] == "error":
269 clientPath = output.get("path")
270 elif "data" in output:
271 data = output.get("data")
272 lastSpace = data.rfind(" ")
273 clientPath = data[lastSpace + 1:]
275 if clientPath.endswith("..."):
276 clientPath = clientPath[:-3]
279 def currentGitBranch():
280 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
282 def isValidGitDir(path):
283 if (os.path.exists(path + "/HEAD")
284 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
288 def parseRevision(ref):
289 return read_pipe("git rev-parse %s" % ref).strip()
291 def extractLogMessageFromGitCommit(commit):
294 ## fixme: title is first line of commit, not 1st paragraph.
296 for log in read_pipe_lines("git cat-file commit %s" % commit):
305 def extractSettingsGitLog(log):
307 for line in log.split("\n"):
309 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
313 assignments = m.group(1).split (':')
314 for a in assignments:
316 key = vals[0].strip()
317 val = ('='.join (vals[1:])).strip()
318 if val.endswith ('\"') and val.startswith('"'):
323 paths = values.get("depot-paths")
325 paths = values.get("depot-path")
327 values['depot-paths'] = paths.split(',')
330 def gitBranchExists(branch):
331 proc = subprocess.Popen(["git", "rev-parse", branch],
332 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
333 return proc.wait() == 0;
336 def gitConfig(key, args = None): # set args to "--bool", for instance
337 if not _gitConfig.has_key(key):
340 argsFilter = "%s " % args
341 cmd = "git config %s%s" % (argsFilter, key)
342 _gitConfig[key] = read_pipe(cmd, ignore_error=True).strip()
343 return _gitConfig[key]
345 def gitConfigList(key):
346 if not _gitConfig.has_key(key):
347 _gitConfig[key] = read_pipe("git config --get-all %s" % key, ignore_error=True).strip().split(os.linesep)
348 return _gitConfig[key]
350 def p4BranchesInGit(branchesAreInRemotes = True):
353 cmdline = "git rev-parse --symbolic "
354 if branchesAreInRemotes:
355 cmdline += " --remotes"
357 cmdline += " --branches"
359 for line in read_pipe_lines(cmdline):
362 ## only import to p4/
363 if not line.startswith('p4/') or line == "p4/HEAD":
368 branch = re.sub ("^p4/", "", line)
370 branches[branch] = parseRevision(line)
373 def findUpstreamBranchPoint(head = "HEAD"):
374 branches = p4BranchesInGit()
375 # map from depot-path to branch name
376 branchByDepotPath = {}
377 for branch in branches.keys():
378 tip = branches[branch]
379 log = extractLogMessageFromGitCommit(tip)
380 settings = extractSettingsGitLog(log)
381 if settings.has_key("depot-paths"):
382 paths = ",".join(settings["depot-paths"])
383 branchByDepotPath[paths] = "remotes/p4/" + branch
387 while parent < 65535:
388 commit = head + "~%s" % parent
389 log = extractLogMessageFromGitCommit(commit)
390 settings = extractSettingsGitLog(log)
391 if settings.has_key("depot-paths"):
392 paths = ",".join(settings["depot-paths"])
393 if branchByDepotPath.has_key(paths):
394 return [branchByDepotPath[paths], settings]
398 return ["", settings]
400 def createOrUpdateBranchesFromOrigin(localRefPrefix = "refs/remotes/p4/", silent=True):
402 print ("Creating/updating branch(es) in %s based on origin branch(es)"
405 originPrefix = "origin/p4/"
407 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
409 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
412 headName = line[len(originPrefix):]
413 remoteHead = localRefPrefix + headName
416 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
417 if (not original.has_key('depot-paths')
418 or not original.has_key('change')):
422 if not gitBranchExists(remoteHead):
424 print "creating %s" % remoteHead
427 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
428 if settings.has_key('change') > 0:
429 if settings['depot-paths'] == original['depot-paths']:
430 originP4Change = int(original['change'])
431 p4Change = int(settings['change'])
432 if originP4Change > p4Change:
433 print ("%s (%s) is newer than %s (%s). "
434 "Updating p4 branch from origin."
435 % (originHead, originP4Change,
436 remoteHead, p4Change))
439 print ("Ignoring: %s was imported from %s while "
440 "%s was imported from %s"
441 % (originHead, ','.join(original['depot-paths']),
442 remoteHead, ','.join(settings['depot-paths'])))
445 system("git update-ref %s %s" % (remoteHead, originHead))
447 def originP4BranchesExist():
448 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
450 def p4ChangesForPaths(depotPaths, changeRange):
452 output = p4_read_pipe_lines("changes " + ' '.join (["%s...%s" % (p, changeRange)
453 for p in depotPaths]))
457 changeNum = int(line.split(" ")[1])
458 changes[changeNum] = True
460 changelist = changes.keys()
464 def p4PathStartsWith(path, prefix):
465 # This method tries to remedy a potential mixed-case issue:
467 # If UserA adds //depot/DirA/file1
468 # and UserB adds //depot/dira/file2
470 # we may or may not have a problem. If you have core.ignorecase=true,
471 # we treat DirA and dira as the same directory
472 ignorecase = gitConfig("core.ignorecase", "--bool") == "true"
474 return path.lower().startswith(prefix.lower())
475 return path.startswith(prefix)
479 self.usage = "usage: %prog [options]"
484 self.userMapFromPerforceServer = False
486 def getUserCacheFilename(self):
487 home = os.environ.get("HOME", os.environ.get("USERPROFILE"))
488 return home + "/.gitp4-usercache.txt"
490 def getUserMapFromPerforceServer(self):
491 if self.userMapFromPerforceServer:
496 for output in p4CmdList("users"):
497 if not output.has_key("User"):
499 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
500 self.emails[output["Email"]] = output["User"]
504 for (key, val) in self.users.items():
505 s += "%s\t%s\n" % (key.expandtabs(1), val.expandtabs(1))
507 open(self.getUserCacheFilename(), "wb").write(s)
508 self.userMapFromPerforceServer = True
510 def loadUserMapFromCache(self):
512 self.userMapFromPerforceServer = False
514 cache = open(self.getUserCacheFilename(), "rb")
515 lines = cache.readlines()
518 entry = line.strip().split("\t")
519 self.users[entry[0]] = entry[1]
521 self.getUserMapFromPerforceServer()
523 class P4Debug(Command):
525 Command.__init__(self)
527 optparse.make_option("--verbose", dest="verbose", action="store_true",
530 self.description = "A tool to debug the output of p4 -G."
531 self.needsGit = False
536 for output in p4CmdList(" ".join(args)):
537 print 'Element: %d' % j
542 class P4RollBack(Command):
544 Command.__init__(self)
546 optparse.make_option("--verbose", dest="verbose", action="store_true"),
547 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
549 self.description = "A tool to debug the multi-branch import. Don't use :)"
551 self.rollbackLocalBranches = False
556 maxChange = int(args[0])
558 if "p4ExitCode" in p4Cmd("changes -m 1"):
559 die("Problems executing p4");
561 if self.rollbackLocalBranches:
562 refPrefix = "refs/heads/"
563 lines = read_pipe_lines("git rev-parse --symbolic --branches")
565 refPrefix = "refs/remotes/"
566 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
569 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
571 ref = refPrefix + line
572 log = extractLogMessageFromGitCommit(ref)
573 settings = extractSettingsGitLog(log)
575 depotPaths = settings['depot-paths']
576 change = settings['change']
580 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
581 for p in depotPaths]))) == 0:
582 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
583 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
586 while change and int(change) > maxChange:
589 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
590 system("git update-ref %s \"%s^\"" % (ref, ref))
591 log = extractLogMessageFromGitCommit(ref)
592 settings = extractSettingsGitLog(log)
595 depotPaths = settings['depot-paths']
596 change = settings['change']
599 print "%s rewound to %s" % (ref, change)
603 class P4Submit(Command, P4UserMap):
605 Command.__init__(self)
606 P4UserMap.__init__(self)
608 optparse.make_option("--verbose", dest="verbose", action="store_true"),
609 optparse.make_option("--origin", dest="origin"),
610 optparse.make_option("-M", dest="detectRenames", action="store_true"),
611 # preserve the user, requires relevant p4 permissions
612 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"),
614 self.description = "Submit changes from git to the perforce depot."
615 self.usage += " [name of git branch to submit into perforce depot]"
616 self.interactive = True
618 self.detectRenames = False
620 self.preserveUser = gitConfig("git-p4.preserveUser").lower() == "true"
621 self.isWindows = (platform.system() == "Windows")
622 self.myP4UserId = None
625 if len(p4CmdList("opened ...")) > 0:
626 die("You have files opened with perforce! Close them before starting the sync.")
628 # replaces everything between 'Description:' and the next P4 submit template field with the
630 def prepareLogMessage(self, template, message):
633 inDescriptionSection = False
635 for line in template.split("\n"):
636 if line.startswith("#"):
637 result += line + "\n"
640 if inDescriptionSection:
641 if line.startswith("Files:") or line.startswith("Jobs:"):
642 inDescriptionSection = False
646 if line.startswith("Description:"):
647 inDescriptionSection = True
649 for messageLine in message.split("\n"):
650 line += "\t" + messageLine + "\n"
652 result += line + "\n"
656 def p4UserForCommit(self,id):
657 # Return the tuple (perforce user,git email) for a given git commit id
658 self.getUserMapFromPerforceServer()
659 gitEmail = read_pipe("git log --max-count=1 --format='%%ae' %s" % id)
660 gitEmail = gitEmail.strip()
661 if not self.emails.has_key(gitEmail):
662 return (None,gitEmail)
664 return (self.emails[gitEmail],gitEmail)
666 def checkValidP4Users(self,commits):
667 # check if any git authors cannot be mapped to p4 users
669 (user,email) = self.p4UserForCommit(id)
671 msg = "Cannot find p4 user for email %s in commit %s." % (email, id)
672 if gitConfig('git-p4.allowMissingP4Users').lower() == "true":
675 die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg)
677 def lastP4Changelist(self):
678 # Get back the last changelist number submitted in this client spec. This
679 # then gets used to patch up the username in the change. If the same
680 # client spec is being used by multiple processes then this might go
682 results = p4CmdList("client -o") # find the current client
685 if r.has_key('Client'):
689 die("could not get client spec")
690 results = p4CmdList("changes -c %s -m 1" % client)
692 if r.has_key('change'):
694 die("Could not get changelist number for last submit - cannot patch up user details")
696 def modifyChangelistUser(self, changelist, newUser):
697 # fixup the user field of a changelist after it has been submitted.
698 changes = p4CmdList("change -o %s" % changelist)
699 if len(changes) != 1:
700 die("Bad output from p4 change modifying %s to user %s" %
701 (changelist, newUser))
704 if c['User'] == newUser: return # nothing to do
706 input = marshal.dumps(c)
708 result = p4CmdList("change -f -i", stdin=input)
710 if r.has_key('code'):
711 if r['code'] == 'error':
712 die("Could not modify user field of changelist %s to %s:%s" % (changelist, newUser, r['data']))
713 if r.has_key('data'):
714 print("Updated user field for changelist %s to %s" % (changelist, newUser))
716 die("Could not modify user field of changelist %s to %s" % (changelist, newUser))
718 def canChangeChangelists(self):
719 # check to see if we have p4 admin or super-user permissions, either of
720 # which are required to modify changelists.
721 results = p4CmdList("protects %s" % self.depotPath)
723 if r.has_key('perm'):
724 if r['perm'] == 'admin':
726 if r['perm'] == 'super':
732 return self.myP4UserId
734 results = p4CmdList("user -o")
736 if r.has_key('User'):
737 self.myP4UserId = r['User']
739 die("Could not find your p4 user id")
741 def p4UserIsMe(self, p4User):
742 # return True if the given p4 user is actually me
744 if not p4User or p4User != me:
749 def prepareSubmitTemplate(self):
750 # remove lines in the Files section that show changes to files outside the depot path we're committing into
752 inFilesSection = False
753 for line in p4_read_pipe_lines("change -o"):
754 if line.endswith("\r\n"):
755 line = line[:-2] + "\n"
757 if line.startswith("\t"):
758 # path starts and ends with a tab
760 lastTab = path.rfind("\t")
762 path = path[:lastTab]
763 if not p4PathStartsWith(path, self.depotPath):
766 inFilesSection = False
768 if line.startswith("Files:"):
769 inFilesSection = True
775 def applyCommit(self, id):
776 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
778 (p4User, gitEmail) = self.p4UserForCommit(id)
780 if not self.detectRenames:
781 # If not explicitly set check the config variable
782 self.detectRenames = gitConfig("git-p4.detectRenames")
784 if self.detectRenames.lower() == "false" or self.detectRenames == "":
786 elif self.detectRenames.lower() == "true":
789 diffOpts = "-M%s" % self.detectRenames
791 detectCopies = gitConfig("git-p4.detectCopies")
792 if detectCopies.lower() == "true":
794 elif detectCopies != "" and detectCopies.lower() != "false":
795 diffOpts += " -C%s" % detectCopies
797 if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true":
798 diffOpts += " --find-copies-harder"
800 diff = read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (diffOpts, id, id))
802 filesToDelete = set()
804 filesToChangeExecBit = {}
806 diff = parseDiffTreeEntry(line)
807 modifier = diff['status']
810 p4_system("edit \"%s\"" % path)
811 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
812 filesToChangeExecBit[path] = diff['dst_mode']
813 editedFiles.add(path)
814 elif modifier == "A":
816 filesToChangeExecBit[path] = diff['dst_mode']
817 if path in filesToDelete:
818 filesToDelete.remove(path)
819 elif modifier == "D":
820 filesToDelete.add(path)
821 if path in filesToAdd:
822 filesToAdd.remove(path)
823 elif modifier == "C":
824 src, dest = diff['src'], diff['dst']
825 p4_system("integrate -Dt \"%s\" \"%s\"" % (src, dest))
826 if diff['src_sha1'] != diff['dst_sha1']:
827 p4_system("edit \"%s\"" % (dest))
828 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
829 p4_system("edit \"%s\"" % (dest))
830 filesToChangeExecBit[dest] = diff['dst_mode']
832 editedFiles.add(dest)
833 elif modifier == "R":
834 src, dest = diff['src'], diff['dst']
835 p4_system("integrate -Dt \"%s\" \"%s\"" % (src, dest))
836 if diff['src_sha1'] != diff['dst_sha1']:
837 p4_system("edit \"%s\"" % (dest))
838 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
839 p4_system("edit \"%s\"" % (dest))
840 filesToChangeExecBit[dest] = diff['dst_mode']
842 editedFiles.add(dest)
843 filesToDelete.add(src)
845 die("unknown modifier %s for %s" % (modifier, path))
847 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
848 patchcmd = diffcmd + " | git apply "
849 tryPatchCmd = patchcmd + "--check -"
850 applyPatchCmd = patchcmd + "--check --apply -"
852 if os.system(tryPatchCmd) != 0:
853 print "Unfortunately applying the change failed!"
854 print "What do you want to do?"
856 while response != "s" and response != "a" and response != "w":
857 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
858 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
860 print "Skipping! Good luck with the next patches..."
861 for f in editedFiles:
862 p4_system("revert \"%s\"" % f);
866 elif response == "a":
867 os.system(applyPatchCmd)
868 if len(filesToAdd) > 0:
869 print "You may also want to call p4 add on the following files:"
870 print " ".join(filesToAdd)
871 if len(filesToDelete):
872 print "The following files should be scheduled for deletion with p4 delete:"
873 print " ".join(filesToDelete)
874 die("Please resolve and submit the conflict manually and "
875 + "continue afterwards with git-p4 submit --continue")
876 elif response == "w":
877 system(diffcmd + " > patch.txt")
878 print "Patch saved to patch.txt in %s !" % self.clientPath
879 die("Please resolve and submit the conflict manually and "
880 "continue afterwards with git-p4 submit --continue")
882 system(applyPatchCmd)
885 p4_system("add \"%s\"" % f)
886 for f in filesToDelete:
887 p4_system("revert \"%s\"" % f)
888 p4_system("delete \"%s\"" % f)
890 # Set/clear executable bits
891 for f in filesToChangeExecBit.keys():
892 mode = filesToChangeExecBit[f]
893 setP4ExecBit(f, mode)
895 logMessage = extractLogMessageFromGitCommit(id)
896 logMessage = logMessage.strip()
898 template = self.prepareSubmitTemplate()
901 submitTemplate = self.prepareLogMessage(template, logMessage)
903 if self.preserveUser:
904 submitTemplate = submitTemplate + ("\n######## Actual user %s, modified after commit\n" % p4User)
906 if os.environ.has_key("P4DIFF"):
907 del(os.environ["P4DIFF"])
909 for editedFile in editedFiles:
910 diff += p4_read_pipe("diff -du %r" % editedFile)
913 for newFile in filesToAdd:
914 newdiff += "==== new file ====\n"
915 newdiff += "--- /dev/null\n"
916 newdiff += "+++ %s\n" % newFile
917 f = open(newFile, "r")
918 for line in f.readlines():
919 newdiff += "+" + line
922 if self.checkAuthorship and not self.p4UserIsMe(p4User):
923 submitTemplate += "######## git author %s does not match your p4 account.\n" % gitEmail
924 submitTemplate += "######## Use git-p4 option --preserve-user to modify authorship\n"
925 submitTemplate += "######## Use git-p4 config git-p4.skipUserNameCheck hides this message.\n"
927 separatorLine = "######## everything below this line is just the diff #######\n"
929 [handle, fileName] = tempfile.mkstemp()
930 tmpFile = os.fdopen(handle, "w+")
932 submitTemplate = submitTemplate.replace("\n", "\r\n")
933 separatorLine = separatorLine.replace("\n", "\r\n")
934 newdiff = newdiff.replace("\n", "\r\n")
935 tmpFile.write(submitTemplate + separatorLine + diff + newdiff)
937 mtime = os.stat(fileName).st_mtime
938 if os.environ.has_key("P4EDITOR"):
939 editor = os.environ.get("P4EDITOR")
941 editor = read_pipe("git var GIT_EDITOR").strip()
942 system(editor + " " + fileName)
944 if gitConfig("git-p4.skipSubmitEditCheck") == "true":
950 if checkModTime and (os.stat(fileName).st_mtime <= mtime):
952 while response != "y" and response != "n":
953 response = raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")
956 tmpFile = open(fileName, "rb")
957 message = tmpFile.read()
959 submitTemplate = message[:message.index(separatorLine)]
961 submitTemplate = submitTemplate.replace("\r\n", "\n")
962 p4_write_pipe("submit -i", submitTemplate)
964 if self.preserveUser:
966 # Get last changelist number. Cannot easily get it from
967 # the submit command output as the output is unmarshalled.
968 changelist = self.lastP4Changelist()
969 self.modifyChangelistUser(changelist, p4User)
972 for f in editedFiles:
973 p4_system("revert \"%s\"" % f);
975 p4_system("revert \"%s\"" % f);
980 fileName = "submit.txt"
981 file = open(fileName, "w+")
982 file.write(self.prepareLogMessage(template, logMessage))
984 print ("Perforce submit template written as %s. "
985 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
986 % (fileName, fileName))
990 self.master = currentGitBranch()
991 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
992 die("Detecting current git branch failed!")
994 self.master = args[0]
998 allowSubmit = gitConfig("git-p4.allowSubmit")
999 if len(allowSubmit) > 0 and not self.master in allowSubmit.split(","):
1000 die("%s is not in git-p4.allowSubmit" % self.master)
1002 [upstream, settings] = findUpstreamBranchPoint()
1003 self.depotPath = settings['depot-paths'][0]
1004 if len(self.origin) == 0:
1005 self.origin = upstream
1007 if self.preserveUser:
1008 if not self.canChangeChangelists():
1009 die("Cannot preserve user names without p4 super-user or admin permissions")
1012 print "Origin branch is " + self.origin
1014 if len(self.depotPath) == 0:
1015 print "Internal error: cannot locate perforce depot path from existing branches"
1018 self.clientPath = p4Where(self.depotPath)
1020 if len(self.clientPath) == 0:
1021 print "Error: Cannot locate perforce checkout of %s in client view" % self.depotPath
1024 print "Perforce checkout for depot path %s located at %s" % (self.depotPath, self.clientPath)
1025 self.oldWorkingDirectory = os.getcwd()
1027 chdir(self.clientPath)
1028 print "Synchronizing p4 checkout..."
1029 p4_system("sync ...")
1034 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
1035 commits.append(line.strip())
1038 if self.preserveUser or (gitConfig("git-p4.skipUserNameCheck") == "true"):
1039 self.checkAuthorship = False
1041 self.checkAuthorship = True
1043 if self.preserveUser:
1044 self.checkValidP4Users(commits)
1046 while len(commits) > 0:
1048 commits = commits[1:]
1049 self.applyCommit(commit)
1050 if not self.interactive:
1053 if len(commits) == 0:
1054 print "All changes applied!"
1055 chdir(self.oldWorkingDirectory)
1065 class P4Sync(Command, P4UserMap):
1066 delete_actions = ( "delete", "move/delete", "purge" )
1069 Command.__init__(self)
1070 P4UserMap.__init__(self)
1072 optparse.make_option("--branch", dest="branch"),
1073 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
1074 optparse.make_option("--changesfile", dest="changesFile"),
1075 optparse.make_option("--silent", dest="silent", action="store_true"),
1076 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
1077 optparse.make_option("--verbose", dest="verbose", action="store_true"),
1078 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
1079 help="Import into refs/heads/ , not refs/remotes"),
1080 optparse.make_option("--max-changes", dest="maxChanges"),
1081 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
1082 help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),
1083 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',
1084 help="Only sync files that are included in the Perforce Client Spec")
1086 self.description = """Imports from Perforce into a git repository.\n
1088 //depot/my/project/ -- to import the current head
1089 //depot/my/project/@all -- to import everything
1090 //depot/my/project/@1,6 -- to import only from revision 1 to 6
1092 (a ... is not needed in the path p4 specification, it's added implicitly)"""
1094 self.usage += " //depot/path[@revRange]"
1096 self.createdBranches = set()
1097 self.committedChanges = set()
1099 self.detectBranches = False
1100 self.detectLabels = False
1101 self.changesFile = ""
1102 self.syncWithOrigin = True
1103 self.verbose = False
1104 self.importIntoRemotes = True
1105 self.maxChanges = ""
1106 self.isWindows = (platform.system() == "Windows")
1107 self.keepRepoPath = False
1108 self.depotPaths = None
1109 self.p4BranchesInGit = []
1110 self.cloneExclude = []
1111 self.useClientSpec = False
1112 self.clientSpecDirs = []
1114 if gitConfig("git-p4.syncFromOrigin") == "false":
1115 self.syncWithOrigin = False
1118 # P4 wildcards are not allowed in filenames. P4 complains
1119 # if you simply add them, but you can force it with "-f", in
1120 # which case it translates them into %xx encoding internally.
1121 # Search for and fix just these four characters. Do % last so
1122 # that fixing it does not inadvertently create new %-escapes.
1124 def wildcard_decode(self, path):
1125 # Cannot have * in a filename in windows; untested as to
1126 # what p4 would do in such a case.
1127 if not self.isWindows:
1128 path = path.replace("%2A", "*")
1129 path = path.replace("%23", "#") \
1130 .replace("%40", "@") \
1131 .replace("%25", "%")
1134 def extractFilesFromCommit(self, commit):
1135 self.cloneExclude = [re.sub(r"\.\.\.$", "", path)
1136 for path in self.cloneExclude]
1139 while commit.has_key("depotFile%s" % fnum):
1140 path = commit["depotFile%s" % fnum]
1142 if [p for p in self.cloneExclude
1143 if p4PathStartsWith(path, p)]:
1146 found = [p for p in self.depotPaths
1147 if p4PathStartsWith(path, p)]
1154 file["rev"] = commit["rev%s" % fnum]
1155 file["action"] = commit["action%s" % fnum]
1156 file["type"] = commit["type%s" % fnum]
1161 def stripRepoPath(self, path, prefixes):
1162 if self.useClientSpec:
1164 # if using the client spec, we use the output directory
1165 # specified in the client. For example, a view
1166 # //depot/foo/branch/... //client/branch/foo/...
1167 # will end up putting all foo/branch files into
1169 for val in self.clientSpecDirs:
1170 if path.startswith(val[0]):
1171 # replace the depot path with the client path
1172 path = path.replace(val[0], val[1][1])
1173 # now strip out the client (//client/...)
1174 path = re.sub("^(//[^/]+/)", '', path)
1175 # the rest is all path
1178 if self.keepRepoPath:
1179 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
1182 if p4PathStartsWith(path, p):
1183 path = path[len(p):]
1187 def splitFilesIntoBranches(self, commit):
1190 while commit.has_key("depotFile%s" % fnum):
1191 path = commit["depotFile%s" % fnum]
1192 found = [p for p in self.depotPaths
1193 if p4PathStartsWith(path, p)]
1200 file["rev"] = commit["rev%s" % fnum]
1201 file["action"] = commit["action%s" % fnum]
1202 file["type"] = commit["type%s" % fnum]
1205 relPath = self.stripRepoPath(path, self.depotPaths)
1207 for branch in self.knownBranches.keys():
1209 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
1210 if relPath.startswith(branch + "/"):
1211 if branch not in branches:
1212 branches[branch] = []
1213 branches[branch].append(file)
1218 # output one file from the P4 stream
1219 # - helper for streamP4Files
1221 def streamOneP4File(self, file, contents):
1222 if file["type"] == "apple":
1223 print "\nfile %s is a strange apple file that forks. Ignoring" % \
1227 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)
1228 relPath = self.wildcard_decode(relPath)
1230 sys.stderr.write("%s\n" % relPath)
1233 if isP4Exec(file["type"]):
1235 elif file["type"] == "symlink":
1237 # p4 print on a symlink contains "target\n", so strip it off
1238 data = ''.join(contents)
1239 contents = [data[:-1]]
1241 if self.isWindows and file["type"].endswith("text"):
1243 for data in contents:
1244 data = data.replace("\r\n", "\n")
1245 mangled.append(data)
1248 if file['type'] in ('text+ko', 'unicode+ko', 'binary+ko'):
1249 contents = map(lambda text: re.sub(r'(?i)\$(Id|Header):[^$]*\$',r'$\1$', text), contents)
1250 elif file['type'] in ('text+k', 'ktext', 'kxtext', 'unicode+k', 'binary+k'):
1251 contents = map(lambda text: re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$\n]*\$',r'$\1$', text), contents)
1253 self.gitStream.write("M %s inline %s\n" % (mode, relPath))
1258 length = length + len(d)
1260 self.gitStream.write("data %d\n" % length)
1262 self.gitStream.write(d)
1263 self.gitStream.write("\n")
1265 def streamOneP4Deletion(self, file):
1266 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)
1268 sys.stderr.write("delete %s\n" % relPath)
1269 self.gitStream.write("D %s\n" % relPath)
1271 # handle another chunk of streaming data
1272 def streamP4FilesCb(self, marshalled):
1274 if marshalled.has_key('depotFile') and self.stream_have_file_info:
1275 # start of a new file - output the old one first
1276 self.streamOneP4File(self.stream_file, self.stream_contents)
1277 self.stream_file = {}
1278 self.stream_contents = []
1279 self.stream_have_file_info = False
1281 # pick up the new file information... for the
1282 # 'data' field we need to append to our array
1283 for k in marshalled.keys():
1285 self.stream_contents.append(marshalled['data'])
1287 self.stream_file[k] = marshalled[k]
1289 self.stream_have_file_info = True
1291 # Stream directly from "p4 files" into "git fast-import"
1292 def streamP4Files(self, files):
1299 for val in self.clientSpecDirs:
1300 if f['path'].startswith(val[0]):
1306 filesForCommit.append(f)
1307 if f['action'] in self.delete_actions:
1308 filesToDelete.append(f)
1310 filesToRead.append(f)
1313 for f in filesToDelete:
1314 self.streamOneP4Deletion(f)
1316 if len(filesToRead) > 0:
1317 self.stream_file = {}
1318 self.stream_contents = []
1319 self.stream_have_file_info = False
1321 # curry self argument
1322 def streamP4FilesCbSelf(entry):
1323 self.streamP4FilesCb(entry)
1325 p4CmdList("-x - print",
1326 '\n'.join(['%s#%s' % (f['path'], f['rev'])
1327 for f in filesToRead]),
1328 cb=streamP4FilesCbSelf)
1331 if self.stream_file.has_key('depotFile'):
1332 self.streamOneP4File(self.stream_file, self.stream_contents)
1334 def commit(self, details, files, branch, branchPrefixes, parent = ""):
1335 epoch = details["time"]
1336 author = details["user"]
1337 self.branchPrefixes = branchPrefixes
1340 print "commit into %s" % branch
1342 # start with reading files; if that fails, we should not
1346 if [p for p in branchPrefixes if p4PathStartsWith(f['path'], p)]:
1347 new_files.append (f)
1349 sys.stderr.write("Ignoring file outside of prefix: %s\n" % f['path'])
1351 self.gitStream.write("commit %s\n" % branch)
1352 # gitStream.write("mark :%s\n" % details["change"])
1353 self.committedChanges.add(int(details["change"]))
1355 if author not in self.users:
1356 self.getUserMapFromPerforceServer()
1357 if author in self.users:
1358 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
1360 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
1362 self.gitStream.write("committer %s\n" % committer)
1364 self.gitStream.write("data <<EOT\n")
1365 self.gitStream.write(details["desc"])
1366 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
1367 % (','.join (branchPrefixes), details["change"]))
1368 if len(details['options']) > 0:
1369 self.gitStream.write(": options = %s" % details['options'])
1370 self.gitStream.write("]\nEOT\n\n")
1374 print "parent %s" % parent
1375 self.gitStream.write("from %s\n" % parent)
1377 self.streamP4Files(new_files)
1378 self.gitStream.write("\n")
1380 change = int(details["change"])
1382 if self.labels.has_key(change):
1383 label = self.labels[change]
1384 labelDetails = label[0]
1385 labelRevisions = label[1]
1387 print "Change %s is labelled %s" % (change, labelDetails)
1389 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
1390 for p in branchPrefixes]))
1392 if len(files) == len(labelRevisions):
1396 if info["action"] in self.delete_actions:
1398 cleanedFiles[info["depotFile"]] = info["rev"]
1400 if cleanedFiles == labelRevisions:
1401 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
1402 self.gitStream.write("from %s\n" % branch)
1404 owner = labelDetails["Owner"]
1406 if author in self.users:
1407 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
1409 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
1410 self.gitStream.write("tagger %s\n" % tagger)
1411 self.gitStream.write("data <<EOT\n")
1412 self.gitStream.write(labelDetails["Description"])
1413 self.gitStream.write("EOT\n\n")
1417 print ("Tag %s does not match with change %s: files do not match."
1418 % (labelDetails["label"], change))
1422 print ("Tag %s does not match with change %s: file count is different."
1423 % (labelDetails["label"], change))
1425 def getLabels(self):
1428 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
1429 if len(l) > 0 and not self.silent:
1430 print "Finding files belonging to labels in %s" % `self.depotPaths`
1433 label = output["label"]
1437 print "Querying files for label %s" % label
1438 for file in p4CmdList("files "
1439 + ' '.join (["%s...@%s" % (p, label)
1440 for p in self.depotPaths])):
1441 revisions[file["depotFile"]] = file["rev"]
1442 change = int(file["change"])
1443 if change > newestChange:
1444 newestChange = change
1446 self.labels[newestChange] = [output, revisions]
1449 print "Label changes: %s" % self.labels.keys()
1451 def guessProjectName(self):
1452 for p in self.depotPaths:
1455 p = p[p.strip().rfind("/") + 1:]
1456 if not p.endswith("/"):
1460 def getBranchMapping(self):
1461 lostAndFoundBranches = set()
1463 user = gitConfig("git-p4.branchUser")
1465 command = "branches -u %s" % user
1467 command = "branches"
1469 for info in p4CmdList(command):
1470 details = p4Cmd("branch -o %s" % info["branch"])
1472 while details.has_key("View%s" % viewIdx):
1473 paths = details["View%s" % viewIdx].split(" ")
1474 viewIdx = viewIdx + 1
1475 # require standard //depot/foo/... //depot/bar/... mapping
1476 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
1479 destination = paths[1]
1481 if p4PathStartsWith(source, self.depotPaths[0]) and p4PathStartsWith(destination, self.depotPaths[0]):
1482 source = source[len(self.depotPaths[0]):-4]
1483 destination = destination[len(self.depotPaths[0]):-4]
1485 if destination in self.knownBranches:
1487 print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination)
1488 print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination)
1491 self.knownBranches[destination] = source
1493 lostAndFoundBranches.discard(destination)
1495 if source not in self.knownBranches:
1496 lostAndFoundBranches.add(source)
1498 # Perforce does not strictly require branches to be defined, so we also
1499 # check git config for a branch list.
1501 # Example of branch definition in git config file:
1503 # branchList=main:branchA
1504 # branchList=main:branchB
1505 # branchList=branchA:branchC
1506 configBranches = gitConfigList("git-p4.branchList")
1507 for branch in configBranches:
1509 (source, destination) = branch.split(":")
1510 self.knownBranches[destination] = source
1512 lostAndFoundBranches.discard(destination)
1514 if source not in self.knownBranches:
1515 lostAndFoundBranches.add(source)
1518 for branch in lostAndFoundBranches:
1519 self.knownBranches[branch] = branch
1521 def getBranchMappingFromGitBranches(self):
1522 branches = p4BranchesInGit(self.importIntoRemotes)
1523 for branch in branches.keys():
1524 if branch == "master":
1527 branch = branch[len(self.projectName):]
1528 self.knownBranches[branch] = branch
1530 def listExistingP4GitBranches(self):
1531 # branches holds mapping from name to commit
1532 branches = p4BranchesInGit(self.importIntoRemotes)
1533 self.p4BranchesInGit = branches.keys()
1534 for branch in branches.keys():
1535 self.initialParents[self.refPrefix + branch] = branches[branch]
1537 def updateOptionDict(self, d):
1539 if self.keepRepoPath:
1540 option_keys['keepRepoPath'] = 1
1542 d["options"] = ' '.join(sorted(option_keys.keys()))
1544 def readOptions(self, d):
1545 self.keepRepoPath = (d.has_key('options')
1546 and ('keepRepoPath' in d['options']))
1548 def gitRefForBranch(self, branch):
1549 if branch == "main":
1550 return self.refPrefix + "master"
1552 if len(branch) <= 0:
1555 return self.refPrefix + self.projectName + branch
1557 def gitCommitByP4Change(self, ref, change):
1559 print "looking in ref " + ref + " for change %s using bisect..." % change
1562 latestCommit = parseRevision(ref)
1566 print "trying: earliest %s latest %s" % (earliestCommit, latestCommit)
1567 next = read_pipe("git rev-list --bisect %s %s" % (latestCommit, earliestCommit)).strip()
1572 log = extractLogMessageFromGitCommit(next)
1573 settings = extractSettingsGitLog(log)
1574 currentChange = int(settings['change'])
1576 print "current change %s" % currentChange
1578 if currentChange == change:
1580 print "found %s" % next
1583 if currentChange < change:
1584 earliestCommit = "^%s" % next
1586 latestCommit = "%s" % next
1590 def importNewBranch(self, branch, maxChange):
1591 # make fast-import flush all changes to disk and update the refs using the checkpoint
1592 # command so that we can try to find the branch parent in the git history
1593 self.gitStream.write("checkpoint\n\n");
1594 self.gitStream.flush();
1595 branchPrefix = self.depotPaths[0] + branch + "/"
1596 range = "@1,%s" % maxChange
1597 #print "prefix" + branchPrefix
1598 changes = p4ChangesForPaths([branchPrefix], range)
1599 if len(changes) <= 0:
1601 firstChange = changes[0]
1602 #print "first change in branch: %s" % firstChange
1603 sourceBranch = self.knownBranches[branch]
1604 sourceDepotPath = self.depotPaths[0] + sourceBranch
1605 sourceRef = self.gitRefForBranch(sourceBranch)
1606 #print "source " + sourceBranch
1608 branchParentChange = int(p4Cmd("changes -m 1 %s...@1,%s" % (sourceDepotPath, firstChange))["change"])
1609 #print "branch parent: %s" % branchParentChange
1610 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)
1611 if len(gitParent) > 0:
1612 self.initialParents[self.gitRefForBranch(branch)] = gitParent
1613 #print "parent git commit: %s" % gitParent
1615 self.importChanges(changes)
1618 def importChanges(self, changes):
1620 for change in changes:
1621 description = p4Cmd("describe %s" % change)
1622 self.updateOptionDict(description)
1625 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1630 if self.detectBranches:
1631 branches = self.splitFilesIntoBranches(description)
1632 for branch in branches.keys():
1634 branchPrefix = self.depotPaths[0] + branch + "/"
1638 filesForCommit = branches[branch]
1641 print "branch is %s" % branch
1643 self.updatedBranches.add(branch)
1645 if branch not in self.createdBranches:
1646 self.createdBranches.add(branch)
1647 parent = self.knownBranches[branch]
1648 if parent == branch:
1651 fullBranch = self.projectName + branch
1652 if fullBranch not in self.p4BranchesInGit:
1654 print("\n Importing new branch %s" % fullBranch);
1655 if self.importNewBranch(branch, change - 1):
1657 self.p4BranchesInGit.append(fullBranch)
1659 print("\n Resuming with change %s" % change);
1662 print "parent determined through known branches: %s" % parent
1664 branch = self.gitRefForBranch(branch)
1665 parent = self.gitRefForBranch(parent)
1668 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1670 if len(parent) == 0 and branch in self.initialParents:
1671 parent = self.initialParents[branch]
1672 del self.initialParents[branch]
1674 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1676 files = self.extractFilesFromCommit(description)
1677 self.commit(description, files, self.branch, self.depotPaths,
1679 self.initialParent = ""
1681 print self.gitError.read()
1684 def importHeadRevision(self, revision):
1685 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), revision, self.branch)
1688 details["user"] = "git perforce import user"
1689 details["desc"] = ("Initial import of %s from the state at revision %s\n"
1690 % (' '.join(self.depotPaths), revision))
1691 details["change"] = revision
1695 for info in p4CmdList("files "
1696 + ' '.join(["%s...%s"
1698 for p in self.depotPaths])):
1700 if 'code' in info and info['code'] == 'error':
1701 sys.stderr.write("p4 returned an error: %s\n"
1703 if info['data'].find("must refer to client") >= 0:
1704 sys.stderr.write("This particular p4 error is misleading.\n")
1705 sys.stderr.write("Perhaps the depot path was misspelled.\n");
1706 sys.stderr.write("Depot path: %s\n" % " ".join(self.depotPaths))
1708 if 'p4ExitCode' in info:
1709 sys.stderr.write("p4 exitcode: %s\n" % info['p4ExitCode'])
1713 change = int(info["change"])
1714 if change > newestRevision:
1715 newestRevision = change
1717 if info["action"] in self.delete_actions:
1718 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1719 #fileCnt = fileCnt + 1
1722 for prop in ["depotFile", "rev", "action", "type" ]:
1723 details["%s%s" % (prop, fileCnt)] = info[prop]
1725 fileCnt = fileCnt + 1
1727 details["change"] = newestRevision
1729 # Use time from top-most change so that all git-p4 clones of
1730 # the same p4 repo have the same commit SHA1s.
1731 res = p4CmdList("describe -s %d" % newestRevision)
1734 if r.has_key('time'):
1735 newestTime = int(r['time'])
1736 if newestTime is None:
1737 die("\"describe -s\" on newest change %d did not give a time")
1738 details["time"] = newestTime
1740 self.updateOptionDict(details)
1742 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1744 print "IO error with git fast-import. Is your git version recent enough?"
1745 print self.gitError.read()
1748 def getClientSpec(self):
1749 specList = p4CmdList( "client -o" )
1751 for entry in specList:
1752 for k,v in entry.iteritems():
1753 if k.startswith("View"):
1755 # p4 has these %%1 to %%9 arguments in specs to
1756 # reorder paths; which we can't handle (yet :)
1757 if re.match('%%\d', v) != None:
1758 print "Sorry, can't handle %%n arguments in client specs"
1761 if v.startswith('"'):
1765 index = v.find("...")
1767 # save the "client view"; i.e the RHS of the view
1768 # line that tells the client where to put the
1769 # files for this view.
1770 cv = v[index+3:].strip() # +3 to remove previous '...'
1772 # if the client view doesn't end with a
1773 # ... wildcard, then we're going to mess up the
1774 # output directory, so fail gracefully.
1775 if not cv.endswith('...'):
1776 print 'Sorry, client view in "%s" needs to end with wildcard' % (k)
1780 # now save the view; +index means included, -index
1781 # means it should be filtered out.
1783 if v.startswith("-"):
1789 temp[v] = (include, cv)
1791 self.clientSpecDirs = temp.items()
1792 self.clientSpecDirs.sort( lambda x, y: abs( y[1][0] ) - abs( x[1][0] ) )
1794 def run(self, args):
1795 self.depotPaths = []
1796 self.changeRange = ""
1797 self.initialParent = ""
1798 self.previousDepotPaths = []
1800 # map from branch depot path to parent branch
1801 self.knownBranches = {}
1802 self.initialParents = {}
1803 self.hasOrigin = originP4BranchesExist()
1804 if not self.syncWithOrigin:
1805 self.hasOrigin = False
1807 if self.importIntoRemotes:
1808 self.refPrefix = "refs/remotes/p4/"
1810 self.refPrefix = "refs/heads/p4/"
1812 if self.syncWithOrigin and self.hasOrigin:
1814 print "Syncing with origin first by calling git fetch origin"
1815 system("git fetch origin")
1817 if len(self.branch) == 0:
1818 self.branch = self.refPrefix + "master"
1819 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
1820 system("git update-ref %s refs/heads/p4" % self.branch)
1821 system("git branch -D p4");
1822 # create it /after/ importing, when master exists
1823 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes and gitBranchExists(self.branch):
1824 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1826 if self.useClientSpec or gitConfig("git-p4.useclientspec") == "true":
1827 self.getClientSpec()
1829 # TODO: should always look at previous commits,
1830 # merge with previous imports, if possible.
1833 createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)
1834 self.listExistingP4GitBranches()
1836 if len(self.p4BranchesInGit) > 1:
1838 print "Importing from/into multiple branches"
1839 self.detectBranches = True
1842 print "branches: %s" % self.p4BranchesInGit
1845 for branch in self.p4BranchesInGit:
1846 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
1848 settings = extractSettingsGitLog(logMsg)
1850 self.readOptions(settings)
1851 if (settings.has_key('depot-paths')
1852 and settings.has_key ('change')):
1853 change = int(settings['change']) + 1
1854 p4Change = max(p4Change, change)
1856 depotPaths = sorted(settings['depot-paths'])
1857 if self.previousDepotPaths == []:
1858 self.previousDepotPaths = depotPaths
1861 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
1862 prev_list = prev.split("/")
1863 cur_list = cur.split("/")
1864 for i in range(0, min(len(cur_list), len(prev_list))):
1865 if cur_list[i] <> prev_list[i]:
1869 paths.append ("/".join(cur_list[:i + 1]))
1871 self.previousDepotPaths = paths
1874 self.depotPaths = sorted(self.previousDepotPaths)
1875 self.changeRange = "@%s,#head" % p4Change
1876 if not self.detectBranches:
1877 self.initialParent = parseRevision(self.branch)
1878 if not self.silent and not self.detectBranches:
1879 print "Performing incremental import into %s git branch" % self.branch
1881 if not self.branch.startswith("refs/"):
1882 self.branch = "refs/heads/" + self.branch
1884 if len(args) == 0 and self.depotPaths:
1886 print "Depot paths: %s" % ' '.join(self.depotPaths)
1888 if self.depotPaths and self.depotPaths != args:
1889 print ("previous import used depot path %s and now %s was specified. "
1890 "This doesn't work!" % (' '.join (self.depotPaths),
1894 self.depotPaths = sorted(args)
1900 for p in self.depotPaths:
1901 if p.find("@") != -1:
1902 atIdx = p.index("@")
1903 self.changeRange = p[atIdx:]
1904 if self.changeRange == "@all":
1905 self.changeRange = ""
1906 elif ',' not in self.changeRange:
1907 revision = self.changeRange
1908 self.changeRange = ""
1910 elif p.find("#") != -1:
1911 hashIdx = p.index("#")
1912 revision = p[hashIdx:]
1914 elif self.previousDepotPaths == []:
1917 p = re.sub ("\.\.\.$", "", p)
1918 if not p.endswith("/"):
1923 self.depotPaths = newPaths
1926 self.loadUserMapFromCache()
1928 if self.detectLabels:
1931 if self.detectBranches:
1932 ## FIXME - what's a P4 projectName ?
1933 self.projectName = self.guessProjectName()
1936 self.getBranchMappingFromGitBranches()
1938 self.getBranchMapping()
1940 print "p4-git branches: %s" % self.p4BranchesInGit
1941 print "initial parents: %s" % self.initialParents
1942 for b in self.p4BranchesInGit:
1946 b = b[len(self.projectName):]
1947 self.createdBranches.add(b)
1949 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
1951 importProcess = subprocess.Popen(["git", "fast-import"],
1952 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1953 stderr=subprocess.PIPE);
1954 self.gitOutput = importProcess.stdout
1955 self.gitStream = importProcess.stdin
1956 self.gitError = importProcess.stderr
1959 self.importHeadRevision(revision)
1963 if len(self.changesFile) > 0:
1964 output = open(self.changesFile).readlines()
1967 changeSet.add(int(line))
1969 for change in changeSet:
1970 changes.append(change)
1974 # catch "git-p4 sync" with no new branches, in a repo that
1975 # does not have any existing git-p4 branches
1976 if len(args) == 0 and not self.p4BranchesInGit:
1977 die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.");
1979 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
1981 changes = p4ChangesForPaths(self.depotPaths, self.changeRange)
1983 if len(self.maxChanges) > 0:
1984 changes = changes[:min(int(self.maxChanges), len(changes))]
1986 if len(changes) == 0:
1988 print "No changes to import!"
1991 if not self.silent and not self.detectBranches:
1992 print "Import destination: %s" % self.branch
1994 self.updatedBranches = set()
1996 self.importChanges(changes)
2000 if len(self.updatedBranches) > 0:
2001 sys.stdout.write("Updated branches: ")
2002 for b in self.updatedBranches:
2003 sys.stdout.write("%s " % b)
2004 sys.stdout.write("\n")
2006 self.gitStream.close()
2007 if importProcess.wait() != 0:
2008 die("fast-import failed: %s" % self.gitError.read())
2009 self.gitOutput.close()
2010 self.gitError.close()
2014 class P4Rebase(Command):
2016 Command.__init__(self)
2018 self.description = ("Fetches the latest revision from perforce and "
2019 + "rebases the current work (branch) against it")
2020 self.verbose = False
2022 def run(self, args):
2026 return self.rebase()
2029 if os.system("git update-index --refresh") != 0:
2030 die("Some files in your working directory are modified and different than what is in your index. You can use git update-index <filename> to bring the index up-to-date or stash away all your changes with git stash.");
2031 if len(read_pipe("git diff-index HEAD --")) > 0:
2032 die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");
2034 [upstream, settings] = findUpstreamBranchPoint()
2035 if len(upstream) == 0:
2036 die("Cannot find upstream branchpoint for rebase")
2038 # the branchpoint may be p4/foo~3, so strip off the parent
2039 upstream = re.sub("~[0-9]+$", "", upstream)
2041 print "Rebasing the current branch onto %s" % upstream
2042 oldHead = read_pipe("git rev-parse HEAD").strip()
2043 system("git rebase %s" % upstream)
2044 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
2047 class P4Clone(P4Sync):
2049 P4Sync.__init__(self)
2050 self.description = "Creates a new git repository and imports from Perforce into it"
2051 self.usage = "usage: %prog [options] //depot/path[@revRange]"
2053 optparse.make_option("--destination", dest="cloneDestination",
2054 action='store', default=None,
2055 help="where to leave result of the clone"),
2056 optparse.make_option("-/", dest="cloneExclude",
2057 action="append", type="string",
2058 help="exclude depot path"),
2059 optparse.make_option("--bare", dest="cloneBare",
2060 action="store_true", default=False),
2062 self.cloneDestination = None
2063 self.needsGit = False
2064 self.cloneBare = False
2066 # This is required for the "append" cloneExclude action
2067 def ensure_value(self, attr, value):
2068 if not hasattr(self, attr) or getattr(self, attr) is None:
2069 setattr(self, attr, value)
2070 return getattr(self, attr)
2072 def defaultDestination(self, args):
2073 ## TODO: use common prefix of args?
2075 depotDir = re.sub("(@[^@]*)$", "", depotPath)
2076 depotDir = re.sub("(#[^#]*)$", "", depotDir)
2077 depotDir = re.sub(r"\.\.\.$", "", depotDir)
2078 depotDir = re.sub(r"/$", "", depotDir)
2079 return os.path.split(depotDir)[1]
2081 def run(self, args):
2085 if self.keepRepoPath and not self.cloneDestination:
2086 sys.stderr.write("Must specify destination for --keep-path\n")
2091 if not self.cloneDestination and len(depotPaths) > 1:
2092 self.cloneDestination = depotPaths[-1]
2093 depotPaths = depotPaths[:-1]
2095 self.cloneExclude = ["/"+p for p in self.cloneExclude]
2096 for p in depotPaths:
2097 if not p.startswith("//"):
2100 if not self.cloneDestination:
2101 self.cloneDestination = self.defaultDestination(args)
2103 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
2105 if not os.path.exists(self.cloneDestination):
2106 os.makedirs(self.cloneDestination)
2107 chdir(self.cloneDestination)
2109 init_cmd = [ "git", "init" ]
2111 init_cmd.append("--bare")
2112 subprocess.check_call(init_cmd)
2114 if not P4Sync.run(self, depotPaths):
2116 if self.branch != "master":
2117 if self.importIntoRemotes:
2118 masterbranch = "refs/remotes/p4/master"
2120 masterbranch = "refs/heads/p4/master"
2121 if gitBranchExists(masterbranch):
2122 system("git branch master %s" % masterbranch)
2123 if not self.cloneBare:
2124 system("git checkout -f")
2126 print "Could not detect main branch. No checkout/master branch created."
2130 class P4Branches(Command):
2132 Command.__init__(self)
2134 self.description = ("Shows the git branches that hold imports and their "
2135 + "corresponding perforce depot paths")
2136 self.verbose = False
2138 def run(self, args):
2139 if originP4BranchesExist():
2140 createOrUpdateBranchesFromOrigin()
2142 cmdline = "git rev-parse --symbolic "
2143 cmdline += " --remotes"
2145 for line in read_pipe_lines(cmdline):
2148 if not line.startswith('p4/') or line == "p4/HEAD":
2152 log = extractLogMessageFromGitCommit("refs/remotes/%s" % branch)
2153 settings = extractSettingsGitLog(log)
2155 print "%s <= %s (%s)" % (branch, ",".join(settings["depot-paths"]), settings["change"])
2158 class HelpFormatter(optparse.IndentedHelpFormatter):
2160 optparse.IndentedHelpFormatter.__init__(self)
2162 def format_description(self, description):
2164 return description + "\n"
2168 def printUsage(commands):
2169 print "usage: %s <command> [options]" % sys.argv[0]
2171 print "valid commands: %s" % ", ".join(commands)
2173 print "Try %s <command> --help for command specific help." % sys.argv[0]
2178 "submit" : P4Submit,
2179 "commit" : P4Submit,
2181 "rebase" : P4Rebase,
2183 "rollback" : P4RollBack,
2184 "branches" : P4Branches
2189 if len(sys.argv[1:]) == 0:
2190 printUsage(commands.keys())
2194 cmdName = sys.argv[1]
2196 klass = commands[cmdName]
2199 print "unknown command %s" % cmdName
2201 printUsage(commands.keys())
2204 options = cmd.options
2205 cmd.gitdir = os.environ.get("GIT_DIR", None)
2209 if len(options) > 0:
2210 options.append(optparse.make_option("--git-dir", dest="gitdir"))
2212 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
2214 description = cmd.description,
2215 formatter = HelpFormatter())
2217 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
2219 verbose = cmd.verbose
2221 if cmd.gitdir == None:
2222 cmd.gitdir = os.path.abspath(".git")
2223 if not isValidGitDir(cmd.gitdir):
2224 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
2225 if os.path.exists(cmd.gitdir):
2226 cdup = read_pipe("git rev-parse --show-cdup").strip()
2230 if not isValidGitDir(cmd.gitdir):
2231 if isValidGitDir(cmd.gitdir + "/.git"):
2232 cmd.gitdir += "/.git"
2234 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
2236 os.environ["GIT_DIR"] = cmd.gitdir
2238 if not cmd.run(args):
2242 if __name__ == '__main__':