Load the user map from p4 only once at run-time.
[fast-export/barak.git] / git-p4
blob9e9d623a3c1d34c93f2e3a383762b248188869b6
1 #!/usr/bin/env python
3 # git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
5 # Author: Simon Hausmann <hausmann@kde.org>
6 # Copyright: 2007 Simon Hausmann <hausmann@kde.org>
7 # 2007 Trolltech ASA
8 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
10 # TODO: * Consider making --with-origin the default, assuming that the git
11 # protocol is always more efficient. (needs manual testing first :)
14 import optparse, sys, os, marshal, popen2, subprocess, shelve
15 import tempfile, getopt, sha, os.path, time, platform
16 from sets import Set;
18 gitdir = os.environ.get("GIT_DIR", "")
20 def mypopen(command):
21 return os.popen(command, "rb");
23 def p4CmdList(cmd):
24 cmd = "p4 -G %s" % cmd
25 pipe = os.popen(cmd, "rb")
27 result = []
28 try:
29 while True:
30 entry = marshal.load(pipe)
31 result.append(entry)
32 except EOFError:
33 pass
34 exitCode = pipe.close()
35 if exitCode != None:
36 entry = {}
37 entry["p4ExitCode"] = exitCode
38 result.append(entry)
40 return result
42 def p4Cmd(cmd):
43 list = p4CmdList(cmd)
44 result = {}
45 for entry in list:
46 result.update(entry)
47 return result;
49 def p4Where(depotPath):
50 if not depotPath.endswith("/"):
51 depotPath += "/"
52 output = p4Cmd("where %s..." % depotPath)
53 if output["code"] == "error":
54 return ""
55 clientPath = ""
56 if "path" in output:
57 clientPath = output.get("path")
58 elif "data" in output:
59 data = output.get("data")
60 lastSpace = data.rfind(" ")
61 clientPath = data[lastSpace + 1:]
63 if clientPath.endswith("..."):
64 clientPath = clientPath[:-3]
65 return clientPath
67 def die(msg):
68 sys.stderr.write(msg + "\n")
69 sys.exit(1)
71 def currentGitBranch():
72 return mypopen("git name-rev HEAD").read().split(" ")[1][:-1]
74 def isValidGitDir(path):
75 if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"):
76 return True;
77 return False
79 def parseRevision(ref):
80 return mypopen("git rev-parse %s" % ref).read()[:-1]
82 def system(cmd):
83 if os.system(cmd) != 0:
84 die("command failed: %s" % cmd)
86 def extractLogMessageFromGitCommit(commit):
87 logMessage = ""
88 foundTitle = False
89 for log in mypopen("git cat-file commit %s" % commit).readlines():
90 if not foundTitle:
91 if len(log) == 1:
92 foundTitle = True
93 continue
95 logMessage += log
96 return logMessage
98 def extractDepotPathAndChangeFromGitLog(log):
99 values = {}
100 for line in log.split("\n"):
101 line = line.strip()
102 if line.startswith("[git-p4:") and line.endswith("]"):
103 line = line[8:-1].strip()
104 for assignment in line.split(":"):
105 variable = assignment.strip()
106 value = ""
107 equalPos = assignment.find("=")
108 if equalPos != -1:
109 variable = assignment[:equalPos].strip()
110 value = assignment[equalPos + 1:].strip()
111 if value.startswith("\"") and value.endswith("\""):
112 value = value[1:-1]
113 values[variable] = value
115 return values.get("depot-path"), values.get("change")
117 def gitBranchExists(branch):
118 proc = subprocess.Popen(["git", "rev-parse", branch], stderr=subprocess.PIPE, stdout=subprocess.PIPE);
119 return proc.wait() == 0;
121 class Command:
122 def __init__(self):
123 self.usage = "usage: %prog [options]"
124 self.needsGit = True
126 class P4Debug(Command):
127 def __init__(self):
128 Command.__init__(self)
129 self.options = [
131 self.description = "A tool to debug the output of p4 -G."
132 self.needsGit = False
134 def run(self, args):
135 for output in p4CmdList(" ".join(args)):
136 print output
137 return True
139 class P4RollBack(Command):
140 def __init__(self):
141 Command.__init__(self)
142 self.options = [
143 optparse.make_option("--verbose", dest="verbose", action="store_true"),
144 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
146 self.description = "A tool to debug the multi-branch import. Don't use :)"
147 self.verbose = False
148 self.rollbackLocalBranches = False
150 def run(self, args):
151 if len(args) != 1:
152 return False
153 maxChange = int(args[0])
155 if "p4ExitCode" in p4Cmd("changes -m 1"):
156 die("Problems executing p4");
158 if self.rollbackLocalBranches:
159 refPrefix = "refs/heads/"
160 lines = mypopen("git rev-parse --symbolic --branches").readlines()
161 else:
162 refPrefix = "refs/remotes/"
163 lines = mypopen("git rev-parse --symbolic --remotes").readlines()
165 for line in lines:
166 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
167 ref = refPrefix + line[:-1]
168 log = extractLogMessageFromGitCommit(ref)
169 depotPath, change = extractDepotPathAndChangeFromGitLog(log)
170 changed = False
172 if len(p4Cmd("changes -m 1 %s...@%s" % (depotPath, maxChange))) == 0:
173 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
174 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
175 continue
177 while len(change) > 0 and int(change) > maxChange:
178 changed = True
179 if self.verbose:
180 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
181 system("git update-ref %s \"%s^\"" % (ref, ref))
182 log = extractLogMessageFromGitCommit(ref)
183 depotPath, change = extractDepotPathAndChangeFromGitLog(log)
185 if changed:
186 print "%s rewound to %s" % (ref, change)
188 return True
190 class P4Submit(Command):
191 def __init__(self):
192 Command.__init__(self)
193 self.options = [
194 optparse.make_option("--continue", action="store_false", dest="firstTime"),
195 optparse.make_option("--origin", dest="origin"),
196 optparse.make_option("--reset", action="store_true", dest="reset"),
197 optparse.make_option("--log-substitutions", dest="substFile"),
198 optparse.make_option("--noninteractive", action="store_false"),
199 optparse.make_option("--dry-run", action="store_true"),
200 optparse.make_option("--direct", dest="directSubmit", action="store_true"),
202 self.description = "Submit changes from git to the perforce depot."
203 self.usage += " [name of git branch to submit into perforce depot]"
204 self.firstTime = True
205 self.reset = False
206 self.interactive = True
207 self.dryRun = False
208 self.substFile = ""
209 self.firstTime = True
210 self.origin = ""
211 self.directSubmit = False
213 self.logSubstitutions = {}
214 self.logSubstitutions["<enter description here>"] = "%log%"
215 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
217 def check(self):
218 if len(p4CmdList("opened ...")) > 0:
219 die("You have files opened with perforce! Close them before starting the sync.")
221 def start(self):
222 if len(self.config) > 0 and not self.reset:
223 die("Cannot start sync. Previous sync config found at %s\nIf you want to start submitting again from scratch maybe you want to call git-p4 submit --reset" % self.configFile)
225 commits = []
226 if self.directSubmit:
227 commits.append("0")
228 else:
229 for line in mypopen("git rev-list --no-merges %s..%s" % (self.origin, self.master)).readlines():
230 commits.append(line[:-1])
231 commits.reverse()
233 self.config["commits"] = commits
235 def prepareLogMessage(self, template, message):
236 result = ""
238 for line in template.split("\n"):
239 if line.startswith("#"):
240 result += line + "\n"
241 continue
243 substituted = False
244 for key in self.logSubstitutions.keys():
245 if line.find(key) != -1:
246 value = self.logSubstitutions[key]
247 value = value.replace("%log%", message)
248 if value != "@remove@":
249 result += line.replace(key, value) + "\n"
250 substituted = True
251 break
253 if not substituted:
254 result += line + "\n"
256 return result
258 def apply(self, id):
259 if self.directSubmit:
260 print "Applying local change in working directory/index"
261 diff = self.diffStatus
262 else:
263 print "Applying %s" % (mypopen("git log --max-count=1 --pretty=oneline %s" % id).read())
264 diff = mypopen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines()
265 filesToAdd = set()
266 filesToDelete = set()
267 editedFiles = set()
268 for line in diff:
269 modifier = line[0]
270 path = line[1:].strip()
271 if modifier == "M":
272 system("p4 edit \"%s\"" % path)
273 editedFiles.add(path)
274 elif modifier == "A":
275 filesToAdd.add(path)
276 if path in filesToDelete:
277 filesToDelete.remove(path)
278 elif modifier == "D":
279 filesToDelete.add(path)
280 if path in filesToAdd:
281 filesToAdd.remove(path)
282 else:
283 die("unknown modifier %s for %s" % (modifier, path))
285 if self.directSubmit:
286 diffcmd = "cat \"%s\"" % self.diffFile
287 else:
288 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
289 patchcmd = diffcmd + " | git apply "
290 tryPatchCmd = patchcmd + "--check -"
291 applyPatchCmd = patchcmd + "--check --apply -"
293 if os.system(tryPatchCmd) != 0:
294 print "Unfortunately applying the change failed!"
295 print "What do you want to do?"
296 response = "x"
297 while response != "s" and response != "a" and response != "w":
298 response = raw_input("[s]kip this patch / [a]pply the patch forcibly and with .rej files / [w]rite the patch to a file (patch.txt) ")
299 if response == "s":
300 print "Skipping! Good luck with the next patches..."
301 return
302 elif response == "a":
303 os.system(applyPatchCmd)
304 if len(filesToAdd) > 0:
305 print "You may also want to call p4 add on the following files:"
306 print " ".join(filesToAdd)
307 if len(filesToDelete):
308 print "The following files should be scheduled for deletion with p4 delete:"
309 print " ".join(filesToDelete)
310 die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
311 elif response == "w":
312 system(diffcmd + " > patch.txt")
313 print "Patch saved to patch.txt in %s !" % self.clientPath
314 die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
316 system(applyPatchCmd)
318 for f in filesToAdd:
319 system("p4 add %s" % f)
320 for f in filesToDelete:
321 system("p4 revert %s" % f)
322 system("p4 delete %s" % f)
324 logMessage = ""
325 if not self.directSubmit:
326 logMessage = extractLogMessageFromGitCommit(id)
327 logMessage = logMessage.replace("\n", "\n\t")
328 logMessage = logMessage[:-1]
330 template = mypopen("p4 change -o").read()
332 if self.interactive:
333 submitTemplate = self.prepareLogMessage(template, logMessage)
334 diff = mypopen("p4 diff -du ...").read()
336 for newFile in filesToAdd:
337 diff += "==== new file ====\n"
338 diff += "--- /dev/null\n"
339 diff += "+++ %s\n" % newFile
340 f = open(newFile, "r")
341 for line in f.readlines():
342 diff += "+" + line
343 f.close()
345 separatorLine = "######## everything below this line is just the diff #######"
346 if platform.system() == "Windows":
347 separatorLine += "\r"
348 separatorLine += "\n"
350 response = "e"
351 firstIteration = True
352 while response == "e":
353 if not firstIteration:
354 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
355 firstIteration = False
356 if response == "e":
357 [handle, fileName] = tempfile.mkstemp()
358 tmpFile = os.fdopen(handle, "w+")
359 tmpFile.write(submitTemplate + separatorLine + diff)
360 tmpFile.close()
361 defaultEditor = "vi"
362 if platform.system() == "Windows":
363 defaultEditor = "notepad"
364 editor = os.environ.get("EDITOR", defaultEditor);
365 system(editor + " " + fileName)
366 tmpFile = open(fileName, "rb")
367 message = tmpFile.read()
368 tmpFile.close()
369 os.remove(fileName)
370 submitTemplate = message[:message.index(separatorLine)]
372 if response == "y" or response == "yes":
373 if self.dryRun:
374 print submitTemplate
375 raw_input("Press return to continue...")
376 else:
377 if self.directSubmit:
378 print "Submitting to git first"
379 os.chdir(self.oldWorkingDirectory)
380 pipe = os.popen("git commit -a -F -", "wb")
381 pipe.write(submitTemplate)
382 pipe.close()
383 os.chdir(self.clientPath)
385 pipe = os.popen("p4 submit -i", "wb")
386 pipe.write(submitTemplate)
387 pipe.close()
388 elif response == "s":
389 for f in editedFiles:
390 system("p4 revert \"%s\"" % f);
391 for f in filesToAdd:
392 system("p4 revert \"%s\"" % f);
393 system("rm %s" %f)
394 for f in filesToDelete:
395 system("p4 delete \"%s\"" % f);
396 return
397 else:
398 print "Not submitting!"
399 self.interactive = False
400 else:
401 fileName = "submit.txt"
402 file = open(fileName, "w+")
403 file.write(self.prepareLogMessage(template, logMessage))
404 file.close()
405 print "Perforce submit template written as %s. Please review/edit and then use p4 submit -i < %s to submit directly!" % (fileName, fileName)
407 def run(self, args):
408 global gitdir
409 # make gitdir absolute so we can cd out into the perforce checkout
410 gitdir = os.path.abspath(gitdir)
411 os.environ["GIT_DIR"] = gitdir
413 if len(args) == 0:
414 self.master = currentGitBranch()
415 if len(self.master) == 0 or not os.path.exists("%s/refs/heads/%s" % (gitdir, self.master)):
416 die("Detecting current git branch failed!")
417 elif len(args) == 1:
418 self.master = args[0]
419 else:
420 return False
422 depotPath = ""
423 if gitBranchExists("p4"):
424 [depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
425 if len(depotPath) == 0 and gitBranchExists("origin"):
426 [depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
428 if len(depotPath) == 0:
429 print "Internal error: cannot locate perforce depot path from existing branches"
430 sys.exit(128)
432 self.clientPath = p4Where(depotPath)
434 if len(self.clientPath) == 0:
435 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
436 sys.exit(128)
438 print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
439 self.oldWorkingDirectory = os.getcwd()
441 if self.directSubmit:
442 self.diffStatus = mypopen("git diff -r --name-status HEAD").readlines()
443 if len(self.diffStatus) == 0:
444 print "No changes in working directory to submit."
445 return True
446 patch = mypopen("git diff -p --binary --diff-filter=ACMRTUXB HEAD").read()
447 self.diffFile = gitdir + "/p4-git-diff"
448 f = open(self.diffFile, "wb")
449 f.write(patch)
450 f.close();
452 os.chdir(self.clientPath)
453 response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
454 if response == "y" or response == "yes":
455 system("p4 sync ...")
457 if len(self.origin) == 0:
458 if gitBranchExists("p4"):
459 self.origin = "p4"
460 else:
461 self.origin = "origin"
463 if self.reset:
464 self.firstTime = True
466 if len(self.substFile) > 0:
467 for line in open(self.substFile, "r").readlines():
468 tokens = line[:-1].split("=")
469 self.logSubstitutions[tokens[0]] = tokens[1]
471 self.check()
472 self.configFile = gitdir + "/p4-git-sync.cfg"
473 self.config = shelve.open(self.configFile, writeback=True)
475 if self.firstTime:
476 self.start()
478 commits = self.config.get("commits", [])
480 while len(commits) > 0:
481 self.firstTime = False
482 commit = commits[0]
483 commits = commits[1:]
484 self.config["commits"] = commits
485 self.apply(commit)
486 if not self.interactive:
487 break
489 self.config.close()
491 if self.directSubmit:
492 os.remove(self.diffFile)
494 if len(commits) == 0:
495 if self.firstTime:
496 print "No changes found to apply between %s and current HEAD" % self.origin
497 else:
498 print "All changes applied!"
499 os.chdir(self.oldWorkingDirectory)
500 response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
501 if response == "y" or response == "yes":
502 rebase = P4Rebase()
503 rebase.run([])
504 os.remove(self.configFile)
506 return True
508 class P4Sync(Command):
509 def __init__(self):
510 Command.__init__(self)
511 self.options = [
512 optparse.make_option("--branch", dest="branch"),
513 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
514 optparse.make_option("--changesfile", dest="changesFile"),
515 optparse.make_option("--silent", dest="silent", action="store_true"),
516 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
517 optparse.make_option("--with-origin", dest="syncWithOrigin", action="store_true"),
518 optparse.make_option("--verbose", dest="verbose", action="store_true"),
519 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false"),
520 optparse.make_option("--max-changes", dest="maxChanges")
522 self.description = """Imports from Perforce into a git repository.\n
523 example:
524 //depot/my/project/ -- to import the current head
525 //depot/my/project/@all -- to import everything
526 //depot/my/project/@1,6 -- to import only from revision 1 to 6
528 (a ... is not needed in the path p4 specification, it's added implicitly)"""
530 self.usage += " //depot/path[@revRange]"
532 self.silent = False
533 self.createdBranches = Set()
534 self.committedChanges = Set()
535 self.branch = ""
536 self.detectBranches = False
537 self.detectLabels = False
538 self.changesFile = ""
539 self.syncWithOrigin = False
540 self.verbose = False
541 self.importIntoRemotes = True
542 self.maxChanges = ""
544 def p4File(self, depotPath):
545 return os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
547 def extractFilesFromCommit(self, commit):
548 files = []
549 fnum = 0
550 while commit.has_key("depotFile%s" % fnum):
551 path = commit["depotFile%s" % fnum]
552 if not path.startswith(self.depotPath):
553 # if not self.silent:
554 # print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
555 fnum = fnum + 1
556 continue
558 file = {}
559 file["path"] = path
560 file["rev"] = commit["rev%s" % fnum]
561 file["action"] = commit["action%s" % fnum]
562 file["type"] = commit["type%s" % fnum]
563 files.append(file)
564 fnum = fnum + 1
565 return files
567 def splitFilesIntoBranches(self, commit):
568 branches = {}
570 fnum = 0
571 while commit.has_key("depotFile%s" % fnum):
572 path = commit["depotFile%s" % fnum]
573 if not path.startswith(self.depotPath):
574 # if not self.silent:
575 # print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
576 fnum = fnum + 1
577 continue
579 file = {}
580 file["path"] = path
581 file["rev"] = commit["rev%s" % fnum]
582 file["action"] = commit["action%s" % fnum]
583 file["type"] = commit["type%s" % fnum]
584 fnum = fnum + 1
586 relPath = path[len(self.depotPath):]
588 for branch in self.knownBranches.keys():
589 if relPath.startswith(branch + "/"): # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
590 if branch not in branches:
591 branches[branch] = []
592 branches[branch].append(file)
594 return branches
596 def commit(self, details, files, branch, branchPrefix, parent = ""):
597 epoch = details["time"]
598 author = details["user"]
600 if self.verbose:
601 print "commit into %s" % branch
603 self.gitStream.write("commit %s\n" % branch)
604 # gitStream.write("mark :%s\n" % details["change"])
605 self.committedChanges.add(int(details["change"]))
606 committer = ""
607 if author not in self.users:
608 self.getUserMapFromPerforceServer()
609 if author in self.users:
610 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
611 else:
612 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
614 self.gitStream.write("committer %s\n" % committer)
616 self.gitStream.write("data <<EOT\n")
617 self.gitStream.write(details["desc"])
618 self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix, details["change"]))
619 self.gitStream.write("EOT\n\n")
621 if len(parent) > 0:
622 if self.verbose:
623 print "parent %s" % parent
624 self.gitStream.write("from %s\n" % parent)
626 for file in files:
627 path = file["path"]
628 if not path.startswith(branchPrefix):
629 # if not silent:
630 # print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
631 continue
632 rev = file["rev"]
633 depotPath = path + "#" + rev
634 relPath = path[len(branchPrefix):]
635 action = file["action"]
637 if file["type"] == "apple":
638 print "\nfile %s is a strange apple file that forks. Ignoring!" % path
639 continue
641 if action == "delete":
642 self.gitStream.write("D %s\n" % relPath)
643 else:
644 mode = 644
645 if file["type"].startswith("x"):
646 mode = 755
648 data = self.p4File(depotPath)
650 self.gitStream.write("M %s inline %s\n" % (mode, relPath))
651 self.gitStream.write("data %s\n" % len(data))
652 self.gitStream.write(data)
653 self.gitStream.write("\n")
655 self.gitStream.write("\n")
657 change = int(details["change"])
659 if self.labels.has_key(change):
660 label = self.labels[change]
661 labelDetails = label[0]
662 labelRevisions = label[1]
663 if self.verbose:
664 print "Change %s is labelled %s" % (change, labelDetails)
666 files = p4CmdList("files %s...@%s" % (branchPrefix, change))
668 if len(files) == len(labelRevisions):
670 cleanedFiles = {}
671 for info in files:
672 if info["action"] == "delete":
673 continue
674 cleanedFiles[info["depotFile"]] = info["rev"]
676 if cleanedFiles == labelRevisions:
677 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
678 self.gitStream.write("from %s\n" % branch)
680 owner = labelDetails["Owner"]
681 tagger = ""
682 if author in self.users:
683 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
684 else:
685 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
686 self.gitStream.write("tagger %s\n" % tagger)
687 self.gitStream.write("data <<EOT\n")
688 self.gitStream.write(labelDetails["Description"])
689 self.gitStream.write("EOT\n\n")
691 else:
692 if not self.silent:
693 print "Tag %s does not match with change %s: files do not match." % (labelDetails["label"], change)
695 else:
696 if not self.silent:
697 print "Tag %s does not match with change %s: file count is different." % (labelDetails["label"], change)
699 def getUserMapFromPerforceServer(self):
700 if self.userMapFromPerforceServer:
701 return
702 self.users = {}
704 for output in p4CmdList("users"):
705 if not output.has_key("User"):
706 continue
707 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
709 cache = open(gitdir + "/p4-usercache.txt", "wb")
710 for user in self.users.keys():
711 cache.write("%s\t%s\n" % (user, self.users[user]))
712 cache.close();
713 self.userMapFromPerforceServer = True
715 def loadUserMapFromCache(self):
716 self.users = {}
717 self.userMapFromPerforceServer = False
718 try:
719 cache = open(gitdir + "/p4-usercache.txt", "rb")
720 lines = cache.readlines()
721 cache.close()
722 for line in lines:
723 entry = line[:-1].split("\t")
724 self.users[entry[0]] = entry[1]
725 except IOError:
726 self.getUserMapFromPerforceServer()
728 def getLabels(self):
729 self.labels = {}
731 l = p4CmdList("labels %s..." % self.depotPath)
732 if len(l) > 0 and not self.silent:
733 print "Finding files belonging to labels in %s" % self.depotPath
735 for output in l:
736 label = output["label"]
737 revisions = {}
738 newestChange = 0
739 if self.verbose:
740 print "Querying files for label %s" % label
741 for file in p4CmdList("files %s...@%s" % (self.depotPath, label)):
742 revisions[file["depotFile"]] = file["rev"]
743 change = int(file["change"])
744 if change > newestChange:
745 newestChange = change
747 self.labels[newestChange] = [output, revisions]
749 if self.verbose:
750 print "Label changes: %s" % self.labels.keys()
752 def getBranchMapping(self):
753 self.projectName = self.depotPath[self.depotPath[:-1].rfind("/") + 1:]
755 for info in p4CmdList("branches"):
756 details = p4Cmd("branch -o %s" % info["branch"])
757 viewIdx = 0
758 while details.has_key("View%s" % viewIdx):
759 paths = details["View%s" % viewIdx].split(" ")
760 viewIdx = viewIdx + 1
761 # require standard //depot/foo/... //depot/bar/... mapping
762 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
763 continue
764 source = paths[0]
765 destination = paths[1]
766 if source.startswith(self.depotPath) and destination.startswith(self.depotPath):
767 source = source[len(self.depotPath):-4]
768 destination = destination[len(self.depotPath):-4]
769 if destination not in self.knownBranches:
770 self.knownBranches[destination] = source
771 if source not in self.knownBranches:
772 self.knownBranches[source] = source
774 def listExistingP4GitBranches(self):
775 self.p4BranchesInGit = []
777 cmdline = "git rev-parse --symbolic "
778 if self.importIntoRemotes:
779 cmdline += " --remotes"
780 else:
781 cmdline += " --branches"
783 for line in mypopen(cmdline).readlines():
784 if self.importIntoRemotes and ((not line.startswith("p4/")) or line == "p4/HEAD\n"):
785 continue
786 if self.importIntoRemotes:
787 # strip off p4
788 branch = line[3:-1]
789 else:
790 branch = line[:-1]
791 self.p4BranchesInGit.append(branch)
792 self.initialParents[self.refPrefix + branch] = parseRevision(line[:-1])
794 def run(self, args):
795 self.depotPath = ""
796 self.changeRange = ""
797 self.initialParent = ""
798 self.previousDepotPath = ""
799 # map from branch depot path to parent branch
800 self.knownBranches = {}
801 self.initialParents = {}
803 if self.importIntoRemotes:
804 self.refPrefix = "refs/remotes/p4/"
805 else:
806 self.refPrefix = "refs/heads/"
808 createP4HeadRef = False;
810 if self.syncWithOrigin and gitBranchExists("origin") and gitBranchExists(self.refPrefix + "master") and not self.detectBranches and self.importIntoRemotes:
811 ### needs to be ported to multi branch import
813 print "Syncing with origin first as requested by calling git fetch origin"
814 system("git fetch origin")
815 [originPreviousDepotPath, originP4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
816 [p4PreviousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
817 if len(originPreviousDepotPath) > 0 and len(originP4Change) > 0 and len(p4Change) > 0:
818 if originPreviousDepotPath == p4PreviousDepotPath:
819 originP4Change = int(originP4Change)
820 p4Change = int(p4Change)
821 if originP4Change > p4Change:
822 print "origin (%s) is newer than p4 (%s). Updating p4 branch from origin." % (originP4Change, p4Change)
823 system("git update-ref " + self.refPrefix + "master origin");
824 else:
825 print "Cannot sync with origin. It was imported from %s while remotes/p4 was imported from %s" % (originPreviousDepotPath, p4PreviousDepotPath)
827 if len(self.branch) == 0:
828 self.branch = self.refPrefix + "master"
829 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
830 system("git update-ref %s refs/heads/p4" % self.branch)
831 system("git branch -D p4");
832 # create it /after/ importing, when master exists
833 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
834 createP4HeadRef = True
836 # this needs to be called after the conversion from heads/p4 to remotes/p4/master
837 self.listExistingP4GitBranches()
838 if len(self.p4BranchesInGit) > 1:
839 if not self.silent:
840 print "Importing from/into multiple branches"
841 self.detectBranches = True
843 if len(args) == 0:
844 if not gitBranchExists(self.branch) and gitBranchExists("origin") and not self.detectBranches:
845 ### needs to be ported to multi branch import
846 if not self.silent:
847 print "Creating %s branch in git repository based on origin" % self.branch
848 branch = self.branch
849 if not branch.startswith("refs"):
850 branch = "refs/heads/" + branch
851 system("git update-ref %s origin" % branch)
853 if self.verbose:
854 print "branches: %s" % self.p4BranchesInGit
856 p4Change = 0
857 for branch in self.p4BranchesInGit:
858 depotPath, change = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(self.refPrefix + branch))
860 if self.verbose:
861 print "path %s change %s" % (depotPath, change)
863 if len(depotPath) > 0 and len(change) > 0:
864 change = int(change) + 1
865 p4Change = max(p4Change, change)
867 if len(self.previousDepotPath) == 0:
868 self.previousDepotPath = depotPath
869 else:
870 i = 0
871 l = min(len(self.previousDepotPath), len(depotPath))
872 while i < l and self.previousDepotPath[i] == depotPath[i]:
873 i = i + 1
874 self.previousDepotPath = self.previousDepotPath[:i]
876 if p4Change > 0:
877 self.depotPath = self.previousDepotPath
878 self.changeRange = "@%s,#head" % p4Change
879 self.initialParent = parseRevision(self.branch)
880 if not self.silent and not self.detectBranches:
881 print "Performing incremental import into %s git branch" % self.branch
883 if not self.branch.startswith("refs/"):
884 self.branch = "refs/heads/" + self.branch
886 if len(self.depotPath) != 0:
887 self.depotPath = self.depotPath[:-1]
889 if len(args) == 0 and len(self.depotPath) != 0:
890 if not self.silent:
891 print "Depot path: %s" % self.depotPath
892 elif len(args) != 1:
893 return False
894 else:
895 if len(self.depotPath) != 0 and self.depotPath != args[0]:
896 print "previous import used depot path %s and now %s was specified. this doesn't work!" % (self.depotPath, args[0])
897 sys.exit(1)
898 self.depotPath = args[0]
900 self.revision = ""
901 self.users = {}
903 if self.depotPath.find("@") != -1:
904 atIdx = self.depotPath.index("@")
905 self.changeRange = self.depotPath[atIdx:]
906 if self.changeRange == "@all":
907 self.changeRange = ""
908 elif self.changeRange.find(",") == -1:
909 self.revision = self.changeRange
910 self.changeRange = ""
911 self.depotPath = self.depotPath[0:atIdx]
912 elif self.depotPath.find("#") != -1:
913 hashIdx = self.depotPath.index("#")
914 self.revision = self.depotPath[hashIdx:]
915 self.depotPath = self.depotPath[0:hashIdx]
916 elif len(self.previousDepotPath) == 0:
917 self.revision = "#head"
919 if self.depotPath.endswith("..."):
920 self.depotPath = self.depotPath[:-3]
922 if not self.depotPath.endswith("/"):
923 self.depotPath += "/"
925 self.loadUserMapFromCache()
926 self.labels = {}
927 if self.detectLabels:
928 self.getLabels();
930 if self.detectBranches:
931 self.getBranchMapping();
932 if self.verbose:
933 print "p4-git branches: %s" % self.p4BranchesInGit
934 print "initial parents: %s" % self.initialParents
935 for b in self.p4BranchesInGit:
936 if b != "master":
937 b = b[len(self.projectName):]
938 self.createdBranches.add(b)
940 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
942 importProcess = subprocess.Popen(["git", "fast-import"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE);
943 self.gitOutput = importProcess.stdout
944 self.gitStream = importProcess.stdin
945 self.gitError = importProcess.stderr
947 if len(self.revision) > 0:
948 print "Doing initial import of %s from revision %s" % (self.depotPath, self.revision)
950 details = { "user" : "git perforce import user", "time" : int(time.time()) }
951 details["desc"] = "Initial import of %s from the state at revision %s" % (self.depotPath, self.revision)
952 details["change"] = self.revision
953 newestRevision = 0
955 fileCnt = 0
956 for info in p4CmdList("files %s...%s" % (self.depotPath, self.revision)):
957 change = int(info["change"])
958 if change > newestRevision:
959 newestRevision = change
961 if info["action"] == "delete":
962 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
963 #fileCnt = fileCnt + 1
964 continue
966 for prop in [ "depotFile", "rev", "action", "type" ]:
967 details["%s%s" % (prop, fileCnt)] = info[prop]
969 fileCnt = fileCnt + 1
971 details["change"] = newestRevision
973 try:
974 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPath)
975 except IOError:
976 print "IO error with git fast-import. Is your git version recent enough?"
977 print self.gitError.read()
979 else:
980 changes = []
982 if len(self.changesFile) > 0:
983 output = open(self.changesFile).readlines()
984 changeSet = Set()
985 for line in output:
986 changeSet.add(int(line))
988 for change in changeSet:
989 changes.append(change)
991 changes.sort()
992 else:
993 if self.verbose:
994 print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange)
995 output = mypopen("p4 changes %s...%s" % (self.depotPath, self.changeRange)).readlines()
997 for line in output:
998 changeNum = line.split(" ")[1]
999 changes.append(changeNum)
1001 changes.reverse()
1003 if len(self.maxChanges) > 0:
1004 changes = changes[0:min(int(self.maxChanges), len(changes))]
1006 if len(changes) == 0:
1007 if not self.silent:
1008 print "No changes to import!"
1009 return True
1011 self.updatedBranches = set()
1013 cnt = 1
1014 for change in changes:
1015 description = p4Cmd("describe %s" % change)
1017 if not self.silent:
1018 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1019 sys.stdout.flush()
1020 cnt = cnt + 1
1022 try:
1023 if self.detectBranches:
1024 branches = self.splitFilesIntoBranches(description)
1025 for branch in branches.keys():
1026 branchPrefix = self.depotPath + branch + "/"
1028 parent = ""
1030 filesForCommit = branches[branch]
1032 if self.verbose:
1033 print "branch is %s" % branch
1035 self.updatedBranches.add(branch)
1037 if branch not in self.createdBranches:
1038 self.createdBranches.add(branch)
1039 parent = self.knownBranches[branch]
1040 if parent == branch:
1041 parent = ""
1042 elif self.verbose:
1043 print "parent determined through known branches: %s" % parent
1045 # main branch? use master
1046 if branch == "main":
1047 branch = "master"
1048 else:
1049 branch = self.projectName + branch
1051 if parent == "main":
1052 parent = "master"
1053 elif len(parent) > 0:
1054 parent = self.projectName + parent
1056 branch = self.refPrefix + branch
1057 if len(parent) > 0:
1058 parent = self.refPrefix + parent
1060 if self.verbose:
1061 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1063 if len(parent) == 0 and branch in self.initialParents:
1064 parent = self.initialParents[branch]
1065 del self.initialParents[branch]
1067 self.commit(description, filesForCommit, branch, branchPrefix, parent)
1068 else:
1069 files = self.extractFilesFromCommit(description)
1070 self.commit(description, files, self.branch, self.depotPath, self.initialParent)
1071 self.initialParent = ""
1072 except IOError:
1073 print self.gitError.read()
1074 sys.exit(1)
1076 if not self.silent:
1077 print ""
1078 if len(self.updatedBranches) > 0:
1079 sys.stdout.write("Updated branches: ")
1080 for b in self.updatedBranches:
1081 sys.stdout.write("%s " % b)
1082 sys.stdout.write("\n")
1085 self.gitStream.close()
1086 if importProcess.wait() != 0:
1087 die("fast-import failed: %s" % self.gitError.read())
1088 self.gitOutput.close()
1089 self.gitError.close()
1091 if createP4HeadRef:
1092 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1094 return True
1096 class P4Rebase(Command):
1097 def __init__(self):
1098 Command.__init__(self)
1099 self.options = [ optparse.make_option("--with-origin", dest="syncWithOrigin", action="store_true") ]
1100 self.description = "Fetches the latest revision from perforce and rebases the current work (branch) against it"
1101 self.syncWithOrigin = False
1103 def run(self, args):
1104 sync = P4Sync()
1105 sync.syncWithOrigin = self.syncWithOrigin
1106 sync.run([])
1107 print "Rebasing the current branch"
1108 oldHead = mypopen("git rev-parse HEAD").read()[:-1]
1109 system("git rebase p4")
1110 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
1111 return True
1113 class P4Clone(P4Sync):
1114 def __init__(self):
1115 P4Sync.__init__(self)
1116 self.description = "Creates a new git repository and imports from Perforce into it"
1117 self.usage = "usage: %prog [options] //depot/path[@revRange] [directory]"
1118 self.needsGit = False
1120 def run(self, args):
1121 global gitdir
1123 if len(args) < 1:
1124 return False
1125 depotPath = args[0]
1126 dir = ""
1127 if len(args) == 2:
1128 dir = args[1]
1129 elif len(args) > 2:
1130 return False
1132 if not depotPath.startswith("//"):
1133 return False
1135 if len(dir) == 0:
1136 dir = depotPath
1137 atPos = dir.rfind("@")
1138 if atPos != -1:
1139 dir = dir[0:atPos]
1140 hashPos = dir.rfind("#")
1141 if hashPos != -1:
1142 dir = dir[0:hashPos]
1144 if dir.endswith("..."):
1145 dir = dir[:-3]
1147 if dir.endswith("/"):
1148 dir = dir[:-1]
1150 slashPos = dir.rfind("/")
1151 if slashPos != -1:
1152 dir = dir[slashPos + 1:]
1154 print "Importing from %s into %s" % (depotPath, dir)
1155 os.makedirs(dir)
1156 os.chdir(dir)
1157 system("git init")
1158 gitdir = os.getcwd() + "/.git"
1159 if not P4Sync.run(self, [depotPath]):
1160 return False
1161 if self.branch != "master":
1162 if gitBranchExists("refs/remotes/p4/master"):
1163 system("git branch master refs/remotes/p4/master")
1164 system("git checkout -f")
1165 else:
1166 print "Could not detect main branch. No checkout/master branch created."
1167 return True
1169 class HelpFormatter(optparse.IndentedHelpFormatter):
1170 def __init__(self):
1171 optparse.IndentedHelpFormatter.__init__(self)
1173 def format_description(self, description):
1174 if description:
1175 return description + "\n"
1176 else:
1177 return ""
1179 def printUsage(commands):
1180 print "usage: %s <command> [options]" % sys.argv[0]
1181 print ""
1182 print "valid commands: %s" % ", ".join(commands)
1183 print ""
1184 print "Try %s <command> --help for command specific help." % sys.argv[0]
1185 print ""
1187 commands = {
1188 "debug" : P4Debug(),
1189 "submit" : P4Submit(),
1190 "sync" : P4Sync(),
1191 "rebase" : P4Rebase(),
1192 "clone" : P4Clone(),
1193 "rollback" : P4RollBack()
1196 if len(sys.argv[1:]) == 0:
1197 printUsage(commands.keys())
1198 sys.exit(2)
1200 cmd = ""
1201 cmdName = sys.argv[1]
1202 try:
1203 cmd = commands[cmdName]
1204 except KeyError:
1205 print "unknown command %s" % cmdName
1206 print ""
1207 printUsage(commands.keys())
1208 sys.exit(2)
1210 options = cmd.options
1211 cmd.gitdir = gitdir
1213 args = sys.argv[2:]
1215 if len(options) > 0:
1216 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1218 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1219 options,
1220 description = cmd.description,
1221 formatter = HelpFormatter())
1223 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1225 if cmd.needsGit:
1226 gitdir = cmd.gitdir
1227 if len(gitdir) == 0:
1228 gitdir = ".git"
1229 if not isValidGitDir(gitdir):
1230 gitdir = mypopen("git rev-parse --git-dir").read()[:-1]
1231 if os.path.exists(gitdir):
1232 cdup = mypopen("git rev-parse --show-cdup").read()[:-1];
1233 if len(cdup) > 0:
1234 os.chdir(cdup);
1236 if not isValidGitDir(gitdir):
1237 if isValidGitDir(gitdir + "/.git"):
1238 gitdir += "/.git"
1239 else:
1240 die("fatal: cannot locate git repository at %s" % gitdir)
1242 os.environ["GIT_DIR"] = gitdir
1244 if not cmd.run(args):
1245 parser.print_help()