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>
8 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
11 import optparse
, sys
, os
, marshal
, popen2
, shelve
12 import tempfile
, getopt
, sha
, os
.path
, time
15 gitdir
= os
.environ
.get("GIT_DIR", "")
18 cmd
= "p4 -G %s" % cmd
19 pipe
= os
.popen(cmd
, "rb")
24 entry
= marshal
.load(pipe
)
39 def p4Where(depotPath
):
40 if not depotPath
.endswith("/"):
42 output
= p4Cmd("where %s..." % depotPath
)
45 clientPath
= output
.get("path")
46 elif "data" in output
:
47 data
= output
.get("data")
48 lastSpace
= data
.rfind(" ")
49 clientPath
= data
[lastSpace
+ 1:]
51 if clientPath
.endswith("..."):
52 clientPath
= clientPath
[:-3]
56 sys
.stderr
.write(msg
+ "\n")
59 def currentGitBranch():
60 return os
.popen("git name-rev HEAD").read().split(" ")[1][:-1]
62 def isValidGitDir(path
):
63 if os
.path
.exists(path
+ "/HEAD") and os
.path
.exists(path
+ "/refs") and os
.path
.exists(path
+ "/objects"):
68 if os
.system(cmd
) != 0:
69 die("command failed: %s" % cmd
)
71 def extractLogMessageFromGitCommit(commit
):
74 for log
in os
.popen("git cat-file commit %s" % commit
).readlines():
83 def extractDepotPathAndChangeFromGitLog(log
):
85 for line
in log
.split("\n"):
87 if line
.startswith("[git-p4:") and line
.endswith("]"):
88 line
= line
[8:-1].strip()
89 for assignment
in line
.split(":"):
90 variable
= assignment
.strip()
92 equalPos
= assignment
.find("=")
94 variable
= assignment
[:equalPos
].strip()
95 value
= assignment
[equalPos
+ 1:].strip()
96 if value
.startswith("\"") and value
.endswith("\""):
98 values
[variable
] = value
100 return values
.get("depot-path"), values
.get("change")
102 def gitBranchExists(branch
):
103 if os
.system("git rev-parse %s 2>/dev/null >/dev/null" % branch
) == 0:
109 self
.usage
= "usage: %prog [options]"
112 class P4Debug(Command
):
114 Command
.__init
__(self
)
117 self
.description
= "A tool to debug the output of p4 -G."
118 self
.needsGit
= False
121 for output
in p4CmdList(" ".join(args
)):
125 class P4CleanTags(Command
):
127 Command
.__init
__(self
)
129 # optparse.make_option("--branch", dest="branch", default="refs/heads/master")
131 self
.description
= "A tool to remove stale unused tags from incremental perforce imports."
133 branch
= currentGitBranch()
134 print "Cleaning out stale p4 import tags..."
135 sout
, sin
, serr
= popen2
.popen3("git name-rev --tags `git rev-parse %s`" % branch
)
138 tagIdx
= output
.index(" tags/p4/")
140 print "Cannot find any p4/* tag. Nothing to do."
144 caretIdx
= output
.index("^")
146 caretIdx
= len(output
) - 1
147 rev
= int(output
[tagIdx
+ 9 : caretIdx
])
149 allTags
= os
.popen("git tag -l p4/").readlines()
150 for i
in range(len(allTags
)):
151 allTags
[i
] = int(allTags
[i
][3:-1])
158 print os
.popen("git tag -d p4/%s" % rev
).read()
160 print "%s tags removed." % len(allTags
)
163 class P4Submit(Command
):
165 Command
.__init
__(self
)
167 optparse
.make_option("--continue", action
="store_false", dest
="firstTime"),
168 optparse
.make_option("--origin", dest
="origin"),
169 optparse
.make_option("--reset", action
="store_true", dest
="reset"),
170 optparse
.make_option("--log-substitutions", dest
="substFile"),
171 optparse
.make_option("--noninteractive", action
="store_false"),
172 optparse
.make_option("--dry-run", action
="store_true"),
173 optparse
.make_option("--apply-as-patch", action
="store_true", dest
="applyAsPatch")
175 self
.description
= "Submit changes from git to the perforce depot."
176 self
.usage
+= " [name of git branch to submit into perforce depot]"
177 self
.firstTime
= True
179 self
.interactive
= True
182 self
.firstTime
= True
184 self
.applyAsPatch
= True
186 self
.logSubstitutions
= {}
187 self
.logSubstitutions
["<enter description here>"] = "%log%"
188 self
.logSubstitutions
["\tDetails:"] = "\tDetails: %log%"
191 if len(p4CmdList("opened ...")) > 0:
192 die("You have files opened with perforce! Close them before starting the sync.")
195 if len(self
.config
) > 0 and not self
.reset
:
196 die("Cannot start sync. Previous sync config found at %s" % self
.configFile
)
199 for line
in os
.popen("git rev-list --no-merges %s..%s" % (self
.origin
, self
.master
)).readlines():
200 commits
.append(line
[:-1])
203 self
.config
["commits"] = commits
205 if not self
.applyAsPatch
:
206 print "Creating temporary p4-sync branch from %s ..." % self
.origin
207 system("git checkout -f -b p4-sync %s" % self
.origin
)
209 def prepareLogMessage(self
, template
, message
):
212 for line
in template
.split("\n"):
213 if line
.startswith("#"):
214 result
+= line
+ "\n"
218 for key
in self
.logSubstitutions
.keys():
219 if line
.find(key
) != -1:
220 value
= self
.logSubstitutions
[key
]
221 value
= value
.replace("%log%", message
)
222 if value
!= "@remove@":
223 result
+= line
.replace(key
, value
) + "\n"
228 result
+= line
+ "\n"
233 print "Applying %s" % (os
.popen("git log --max-count=1 --pretty=oneline %s" % id).read())
234 diff
= os
.popen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines()
236 filesToDelete
= set()
239 path
= line
[1:].strip()
241 system("p4 edit %s" % path
)
242 elif modifier
== "A":
244 if path
in filesToDelete
:
245 filesToDelete
.remove(path
)
246 elif modifier
== "D":
247 filesToDelete
.add(path
)
248 if path
in filesToAdd
:
249 filesToAdd
.remove(path
)
251 die("unknown modifier %s for %s" % (modifier
, path
))
253 if self
.applyAsPatch
:
254 system("git diff-tree -p --diff-filter=ACMRTUXB \"%s^\" \"%s\" | patch -p1" % (id, id))
256 system("git diff-files --name-only -z | git update-index --remove -z --stdin")
257 system("git cherry-pick --no-commit \"%s\"" % id)
260 system("p4 add %s" % f
)
261 for f
in filesToDelete
:
262 system("p4 revert %s" % f
)
263 system("p4 delete %s" % f
)
265 logMessage
= extractLogMessageFromGitCommit(id)
266 logMessage
= logMessage
.replace("\n", "\n\t")
267 logMessage
= logMessage
[:-1]
269 template
= os
.popen("p4 change -o").read()
272 submitTemplate
= self
.prepareLogMessage(template
, logMessage
)
273 diff
= os
.popen("p4 diff -du ...").read()
275 for newFile
in filesToAdd
:
276 diff
+= "==== new file ====\n"
277 diff
+= "--- /dev/null\n"
278 diff
+= "+++ %s\n" % newFile
279 f
= open(newFile
, "r")
280 for line
in f
.readlines():
284 separatorLine
= "######## everything below this line is just the diff #######\n"
287 firstIteration
= True
288 while response
== "e":
289 if not firstIteration
:
290 response
= raw_input("Do you want to submit this change (y/e/n)? ")
291 firstIteration
= False
293 [handle
, fileName
] = tempfile
.mkstemp()
294 tmpFile
= os
.fdopen(handle
, "w+")
295 tmpFile
.write(submitTemplate
+ separatorLine
+ diff
)
297 editor
= os
.environ
.get("EDITOR", "vi")
298 system(editor
+ " " + fileName
)
299 tmpFile
= open(fileName
, "r")
300 message
= tmpFile
.read()
303 submitTemplate
= message
[:message
.index(separatorLine
)]
305 if response
== "y" or response
== "yes":
308 raw_input("Press return to continue...")
310 pipe
= os
.popen("p4 submit -i", "w")
311 pipe
.write(submitTemplate
)
314 print "Not submitting!"
315 self
.interactive
= False
317 fileName
= "submit.txt"
318 file = open(fileName
, "w+")
319 file.write(self
.prepareLogMessage(template
, logMessage
))
321 print "Perforce submit template written as %s. Please review/edit and then use p4 submit -i < %s to submit directly!" % (fileName
, fileName
)
325 # make gitdir absolute so we can cd out into the perforce checkout
326 gitdir
= os
.path
.abspath(gitdir
)
327 os
.environ
["GIT_DIR"] = gitdir
330 self
.master
= currentGitBranch()
331 if len(self
.master
) == 0 or not os
.path
.exists("%s/refs/heads/%s" % (gitdir
, self
.master
)):
332 die("Detecting current git branch failed!")
334 self
.master
= args
[0]
339 if gitBranchExists("p4"):
340 [depotPath
, dummy
] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
341 if len(depotPath
) == 0 and gitBranchExists("origin"):
342 [depotPath
, dummy
] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
344 if len(depotPath
) == 0:
345 print "Internal error: cannot locate perforce depot path from existing branches"
348 clientPath
= p4Where(depotPath
)
350 if len(clientPath
) == 0:
351 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
354 print "Perforce checkout for depot path %s located at %s" % (depotPath
, clientPath
)
356 response
= raw_input("Do you want to sync %s with p4 sync? (y/n) " % clientPath
)
357 if response
== "y" or response
== "yes":
358 system("p4 sync ...")
360 if len(self
.origin
) == 0:
361 if gitBranchExists("p4"):
364 self
.origin
= "origin"
367 self
.firstTime
= True
369 if len(self
.substFile
) > 0:
370 for line
in open(self
.substFile
, "r").readlines():
371 tokens
= line
[:-1].split("=")
372 self
.logSubstitutions
[tokens
[0]] = tokens
[1]
375 self
.configFile
= gitdir
+ "/p4-git-sync.cfg"
376 self
.config
= shelve
.open(self
.configFile
, writeback
=True)
381 commits
= self
.config
.get("commits", [])
383 while len(commits
) > 0:
384 self
.firstTime
= False
386 commits
= commits
[1:]
387 self
.config
["commits"] = commits
389 if not self
.interactive
:
394 if len(commits
) == 0:
396 print "No changes found to apply between %s and current HEAD" % self
.origin
398 print "All changes applied!"
399 if not self
.applyAsPatch
:
400 print "Deleting temporary p4-sync branch and going back to %s" % self
.master
401 system("git checkout %s" % self
.master
)
402 system("git branch -D p4-sync")
403 print "Cleaning out your perforce checkout by doing p4 edit ... ; p4 revert ..."
404 system("p4 edit ... >/dev/null")
405 system("p4 revert ... >/dev/null")
406 os
.remove(self
.configFile
)
410 class P4Sync(Command
):
412 Command
.__init
__(self
)
414 optparse
.make_option("--branch", dest
="branch"),
415 optparse
.make_option("--detect-branches", dest
="detectBranches", action
="store_true"),
416 optparse
.make_option("--changesfile", dest
="changesFile"),
417 optparse
.make_option("--silent", dest
="silent", action
="store_true"),
418 optparse
.make_option("--known-branches", dest
="knownBranches"),
419 optparse
.make_option("--data-cache", dest
="dataCache", action
="store_true"),
420 optparse
.make_option("--command-cache", dest
="commandCache", action
="store_true")
422 self
.description
= """Imports from Perforce into a git repository.\n
424 //depot/my/project/ -- to import the current head
425 //depot/my/project/@all -- to import everything
426 //depot/my/project/@1,6 -- to import only from revision 1 to 6
428 (a ... is not needed in the path p4 specification, it's added implicitly)"""
430 self
.usage
+= " //depot/path[@revRange]"
432 self
.dataCache
= False
433 self
.commandCache
= False
435 self
.knownBranches
= Set()
436 self
.createdBranches
= Set()
437 self
.committedChanges
= Set()
439 self
.detectBranches
= False
440 self
.changesFile
= ""
442 def p4File(self
, depotPath
):
443 return os
.popen("p4 print -q \"%s\"" % depotPath
, "rb").read()
445 def extractFilesFromCommit(self
, commit
):
448 while commit
.has_key("depotFile%s" % fnum
):
449 path
= commit
["depotFile%s" % fnum
]
450 if not path
.startswith(self
.globalPrefix
):
451 # if not self.silent:
452 # print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.globalPrefix, change)
458 file["rev"] = commit
["rev%s" % fnum
]
459 file["action"] = commit
["action%s" % fnum
]
460 file["type"] = commit
["type%s" % fnum
]
465 def isSubPathOf(self
, first
, second
):
466 if not first
.startswith(second
):
470 return first
[len(second
)] == "/"
472 def branchesForCommit(self
, files
):
476 relativePath
= file["path"][len(self
.globalPrefix
):]
477 # strip off the filename
478 relativePath
= relativePath
[0:relativePath
.rfind("/")]
480 # if len(branches) == 0:
481 # branches.add(relativePath)
482 # knownBranches.add(relativePath)
485 ###### this needs more testing :)
487 for branch
in branches
:
488 if relativePath
== branch
:
491 # if relativePath.startswith(branch):
492 if self
.isSubPathOf(relativePath
, branch
):
495 # if branch.startswith(relativePath):
496 if self
.isSubPathOf(branch
, relativePath
):
497 branches
.remove(branch
)
503 for branch
in self
.knownBranches
:
504 #if relativePath.startswith(branch):
505 if self
.isSubPathOf(relativePath
, branch
):
506 if len(branches
) == 0:
507 relativePath
= branch
515 branches
.add(relativePath
)
516 self
.knownBranches
.add(relativePath
)
520 def findBranchParent(self
, branchPrefix
, files
):
523 if not path
.startswith(branchPrefix
):
525 action
= file["action"]
526 if action
!= "integrate" and action
!= "branch":
529 depotPath
= path
+ "#" + rev
531 log
= p4CmdList("filelog \"%s\"" % depotPath
)
533 print "eek! I got confused by the filelog of %s" % depotPath
537 if log
["action0"] != action
:
538 print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath
, log
["action0"], action
)
541 branchAction
= log
["how0,0"]
542 # if branchAction == "branch into" or branchAction == "ignored":
543 # continue # ignore for branching
545 if not branchAction
.endswith(" from"):
546 continue # ignore for branching
547 # print "eek! file %s was not branched from but instead: %s" % (depotPath, branchAction)
550 source
= log
["file0,0"]
551 if source
.startswith(branchPrefix
):
554 lastSourceRev
= log
["erev0,0"]
556 sourceLog
= p4CmdList("filelog -m 1 \"%s%s\"" % (source
, lastSourceRev
))
557 if len(sourceLog
) != 1:
558 print "eek! I got confused by the source filelog of %s%s" % (source
, lastSourceRev
)
560 sourceLog
= sourceLog
[0]
562 relPath
= source
[len(self
.globalPrefix
):]
563 # strip off the filename
564 relPath
= relPath
[0:relPath
.rfind("/")]
566 for branch
in self
.knownBranches
:
567 if self
.isSubPathOf(relPath
, branch
):
568 # print "determined parent branch branch %s due to change in file %s" % (branch, source)
571 # print "%s is not a subpath of branch %s" % (relPath, branch)
575 def commit(self
, details
, files
, branch
, branchPrefix
, parent
= "", merged
= ""):
576 epoch
= details
["time"]
577 author
= details
["user"]
579 self
.gitStream
.write("commit %s\n" % branch
)
580 # gitStream.write("mark :%s\n" % details["change"])
581 self
.committedChanges
.add(int(details
["change"]))
583 if author
in self
.users
:
584 committer
= "%s %s %s" % (self
.users
[author
], epoch
, self
.tz
)
586 committer
= "%s <a@b> %s %s" % (author
, epoch
, self
.tz
)
588 self
.gitStream
.write("committer %s\n" % committer
)
590 self
.gitStream
.write("data <<EOT\n")
591 self
.gitStream
.write(details
["desc"])
592 self
.gitStream
.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix
, details
["change"]))
593 self
.gitStream
.write("EOT\n\n")
596 self
.gitStream
.write("from %s\n" % parent
)
599 self
.gitStream
.write("merge %s\n" % merged
)
603 if not path
.startswith(branchPrefix
):
605 # print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
608 depotPath
= path
+ "#" + rev
609 relPath
= path
[len(branchPrefix
):]
610 action
= file["action"]
612 if file["type"] == "apple":
613 print "\nfile %s is a strange apple file that forks. Ignoring!" % path
616 if action
== "delete":
617 self
.gitStream
.write("D %s\n" % relPath
)
620 if file["type"].startswith("x"):
623 data
= self
.p4File(depotPath
)
625 self
.gitStream
.write("M %s inline %s\n" % (mode
, relPath
))
626 self
.gitStream
.write("data %s\n" % len(data
))
627 self
.gitStream
.write(data
)
628 self
.gitStream
.write("\n")
630 self
.gitStream
.write("\n")
632 change
= int(details
["change"])
634 self
.lastChange
= change
636 if change
in self
.labels
:
637 label
= self
.labels
[change
]
638 labelDetails
= label
[0]
639 labelRevisions
= label
[1]
641 files
= p4CmdList("files %s...@%s" % (branchPrefix
, change
))
643 if len(files
) == len(labelRevisions
):
647 if info
["action"] == "delete":
649 cleanedFiles
[info
["depotFile"]] = info
["rev"]
651 if cleanedFiles
== labelRevisions
:
652 self
.gitStream
.write("tag tag_%s\n" % labelDetails
["label"])
653 self
.gitStream
.write("from %s\n" % branch
)
655 owner
= labelDetails
["Owner"]
657 if author
in self
.users
:
658 tagger
= "%s %s %s" % (self
.users
[owner
], epoch
, self
.tz
)
660 tagger
= "%s <a@b> %s %s" % (owner
, epoch
, self
.tz
)
661 self
.gitStream
.write("tagger %s\n" % tagger
)
662 self
.gitStream
.write("data <<EOT\n")
663 self
.gitStream
.write(labelDetails
["Description"])
664 self
.gitStream
.write("EOT\n\n")
668 print "Tag %s does not match with change %s: files do not match." % (labelDetails
["label"], change
)
672 print "Tag %s does not match with change %s: file count is different." % (labelDetails
["label"], change
)
674 def extractFilesInCommitToBranch(self
, files
, branchPrefix
):
679 if path
.startswith(branchPrefix
):
680 newFiles
.append(file)
684 def findBranchSourceHeuristic(self
, files
, branch
, branchPrefix
):
686 action
= file["action"]
687 if action
!= "integrate" and action
!= "branch":
691 depotPath
= path
+ "#" + rev
693 log
= p4CmdList("filelog \"%s\"" % depotPath
)
695 print "eek! I got confused by the filelog of %s" % depotPath
699 if log
["action0"] != action
:
700 print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath
, log
["action0"], action
)
703 branchAction
= log
["how0,0"]
705 if not branchAction
.endswith(" from"):
706 continue # ignore for branching
707 # print "eek! file %s was not branched from but instead: %s" % (depotPath, branchAction)
710 source
= log
["file0,0"]
711 if source
.startswith(branchPrefix
):
714 lastSourceRev
= log
["erev0,0"]
716 sourceLog
= p4CmdList("filelog -m 1 \"%s%s\"" % (source
, lastSourceRev
))
717 if len(sourceLog
) != 1:
718 print "eek! I got confused by the source filelog of %s%s" % (source
, lastSourceRev
)
720 sourceLog
= sourceLog
[0]
722 relPath
= source
[len(self
.globalPrefix
):]
723 # strip off the filename
724 relPath
= relPath
[0:relPath
.rfind("/")]
726 for candidate
in self
.knownBranches
:
727 if self
.isSubPathOf(relPath
, candidate
) and candidate
!= branch
:
732 def changeIsBranchMerge(self
, sourceBranch
, destinationBranch
, change
):
734 for file in p4CmdList("files %s...@%s" % (self
.globalPrefix
+ sourceBranch
+ "/", change
)):
735 if file["action"] == "delete":
737 sourceFiles
[file["depotFile"]] = file
739 destinationFiles
= {}
740 for file in p4CmdList("files %s...@%s" % (self
.globalPrefix
+ destinationBranch
+ "/", change
)):
741 destinationFiles
[file["depotFile"]] = file
743 for fileName
in sourceFiles
.keys():
747 for integration
in p4CmdList("integrated \"%s\"" % fileName
):
748 toFile
= integration
["fromFile"] # yes, it's true, it's fromFile
749 if not toFile
in destinationFiles
:
751 destFile
= destinationFiles
[toFile
]
752 if destFile
["action"] == "delete":
753 # print "file %s has been deleted in %s" % (fileName, toFile)
756 integrationCount
+= 1
757 if integration
["how"] == "branch from":
760 if int(integration
["change"]) == change
:
761 integrations
.append(integration
)
763 if int(integration
["change"]) > change
:
766 destRev
= int(destFile
["rev"])
768 startRev
= integration
["startFromRev"][1:]
769 if startRev
== "none":
772 startRev
= int(startRev
)
774 endRev
= integration
["endFromRev"][1:]
780 initialBranch
= (destRev
== 1 and integration
["how"] != "branch into")
781 inRange
= (destRev
>= startRev
and destRev
<= endRev
)
782 newer
= (destRev
> startRev
and destRev
> endRev
)
784 if initialBranch
or inRange
or newer
:
785 integrations
.append(integration
)
790 if len(integrations
) == 0 and integrationCount
> 1:
791 print "file %s was not integrated from %s into %s" % (fileName
, sourceBranch
, destinationBranch
)
796 def getUserMap(self
):
799 for output
in p4CmdList("users"):
800 if not output
.has_key("User"):
802 self
.users
[output
["User"]] = output
["FullName"] + " <" + output
["Email"] + ">"
807 l
= p4CmdList("labels %s..." % self
.globalPrefix
)
809 print "Finding files belonging to labels in %s" % self
.globalPrefix
812 label
= output
["label"]
815 for file in p4CmdList("files //...@%s" % label
):
816 revisions
[file["depotFile"]] = file["rev"]
817 change
= int(file["change"])
818 if change
> newestChange
:
819 newestChange
= change
821 self
.labels
[newestChange
] = [output
, revisions
]
824 self
.globalPrefix
= ""
825 self
.changeRange
= ""
826 self
.initialParent
= ""
827 self
.tagLastChange
= True
829 if len(self
.branch
) == 0:
833 if not gitBranchExists(self
.branch
) and gitBranchExists("origin"):
835 print "Creating %s branch in git repository based on origin" % self
.branch
836 system("git branch %s origin" % self
.branch
)
838 [self
.previousDepotPath
, p4Change
] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(self
.branch
))
839 if len(self
.previousDepotPath
) > 0 and len(p4Change
) > 0:
840 p4Change
= int(p4Change
) + 1
841 self
.globalPrefix
= self
.previousDepotPath
842 self
.changeRange
= "@%s,#head" % p4Change
843 self
.initialParent
= self
.branch
844 self
.tagLastChange
= False
846 print "Performing incremental import into %s git branch" % self
.branch
848 self
.branch
= "refs/heads/" + self
.branch
850 if len(self
.globalPrefix
) == 0:
851 self
.globalPrefix
= self
.previousDepotPath
= os
.popen("git repo-config --get p4.depotpath").read()
853 if len(self
.globalPrefix
) != 0:
854 self
.globalPrefix
= self
.globalPrefix
[:-1]
856 if len(args
) == 0 and len(self
.globalPrefix
) != 0:
858 print "Depot path: %s" % self
.globalPrefix
862 if len(self
.globalPrefix
) != 0 and self
.globalPrefix
!= args
[0]:
863 print "previous import used depot path %s and now %s was specified. this doesn't work!" % (self
.globalPrefix
, args
[0])
865 self
.globalPrefix
= args
[0]
872 if self
.globalPrefix
.find("@") != -1:
873 atIdx
= self
.globalPrefix
.index("@")
874 self
.changeRange
= self
.globalPrefix
[atIdx
:]
875 if self
.changeRange
== "@all":
876 self
.changeRange
= ""
877 elif self
.changeRange
.find(",") == -1:
878 self
.revision
= self
.changeRange
879 self
.changeRange
= ""
880 self
.globalPrefix
= self
.globalPrefix
[0:atIdx
]
881 elif self
.globalPrefix
.find("#") != -1:
882 hashIdx
= self
.globalPrefix
.index("#")
883 self
.revision
= self
.globalPrefix
[hashIdx
:]
884 self
.globalPrefix
= self
.globalPrefix
[0:hashIdx
]
885 elif len(self
.previousDepotPath
) == 0:
886 self
.revision
= "#head"
888 if self
.globalPrefix
.endswith("..."):
889 self
.globalPrefix
= self
.globalPrefix
[:-3]
891 if not self
.globalPrefix
.endswith("/"):
892 self
.globalPrefix
+= "/"
897 if len(self
.changeRange
) == 0:
899 sout
, sin
, serr
= popen2
.popen3("git name-rev --tags `git rev-parse %s`" % self
.branch
)
901 if output
.endswith("\n"):
903 tagIdx
= output
.index(" tags/p4/")
904 caretIdx
= output
.find("^")
908 self
.rev
= int(output
[tagIdx
+ 9 : endPos
]) + 1
909 self
.changeRange
= "@%s,#head" % self
.rev
910 self
.initialParent
= os
.popen("git rev-parse %s" % self
.branch
).read()[:-1]
911 self
.initialTag
= "p4/%s" % (int(self
.rev
) - 1)
915 self
.tz
= - time
.timezone
/ 36
916 tzsign
= ("%s" % self
.tz
)[0]
917 if tzsign
!= '+' and tzsign
!= '-':
918 self
.tz
= "+" + ("%s" % self
.tz
)
920 self
.gitOutput
, self
.gitStream
, self
.gitError
= popen2
.popen3("git fast-import")
922 if len(self
.revision
) > 0:
923 print "Doing initial import of %s from revision %s" % (self
.globalPrefix
, self
.revision
)
925 details
= { "user" : "git perforce import user", "time" : int(time
.time()) }
926 details
["desc"] = "Initial import of %s from the state at revision %s" % (self
.globalPrefix
, self
.revision
)
927 details
["change"] = self
.revision
931 for info
in p4CmdList("files %s...%s" % (self
.globalPrefix
, self
.revision
)):
932 change
= int(info
["change"])
933 if change
> newestRevision
:
934 newestRevision
= change
936 if info
["action"] == "delete":
937 fileCnt
= fileCnt
+ 1
940 for prop
in [ "depotFile", "rev", "action", "type" ]:
941 details
["%s%s" % (prop
, fileCnt
)] = info
[prop
]
943 fileCnt
= fileCnt
+ 1
945 details
["change"] = newestRevision
948 self
.commit(details
, self
.extractFilesFromCommit(details
), self
.branch
, self
.globalPrefix
)
950 print self
.gitError
.read()
955 if len(self
.changesFile
) > 0:
956 output
= open(self
.changesFile
).readlines()
959 changeSet
.add(int(line
))
961 for change
in changeSet
:
962 changes
.append(change
)
966 output
= os
.popen("p4 changes %s...%s" % (self
.globalPrefix
, self
.changeRange
)).readlines()
969 changeNum
= line
.split(" ")[1]
970 changes
.append(changeNum
)
974 if len(changes
) == 0:
976 print "no changes to import!"
980 for change
in changes
:
981 description
= p4Cmd("describe %s" % change
)
984 sys
.stdout
.write("\rimporting revision %s (%s%%)" % (change
, cnt
* 100 / len(changes
)))
989 files
= self
.extractFilesFromCommit(description
)
990 if self
.detectBranches
:
991 for branch
in self
.branchesForCommit(files
):
992 self
.knownBranches
.add(branch
)
993 branchPrefix
= self
.globalPrefix
+ branch
+ "/"
995 filesForCommit
= self
.extractFilesInCommitToBranch(files
, branchPrefix
)
999 ########### remove cnt!!!
1000 if branch
not in self
.createdBranches
and cnt
> 2:
1001 self
.createdBranches
.add(branch
)
1002 parent
= self
.findBranchParent(branchPrefix
, files
)
1003 if parent
== branch
:
1005 # elif len(parent) > 0:
1006 # print "%s branched off of %s" % (branch, parent)
1008 if len(parent
) == 0:
1009 merged
= self
.findBranchSourceHeuristic(filesForCommit
, branch
, branchPrefix
)
1011 print "change %s could be a merge from %s into %s" % (description
["change"], merged
, branch
)
1012 if not self
.changeIsBranchMerge(merged
, branch
, int(description
["change"])):
1015 branch
= "refs/heads/" + branch
1017 parent
= "refs/heads/" + parent
1019 merged
= "refs/heads/" + merged
1020 self
.commit(description
, files
, branch
, branchPrefix
, parent
, merged
)
1022 self
.commit(description
, files
, self
.branch
, self
.globalPrefix
, self
.initialParent
)
1023 self
.initialParent
= ""
1025 print self
.gitError
.read()
1031 if self
.tagLastChange
:
1032 self
.gitStream
.write("reset refs/tags/p4/%s\n" % self
.lastChange
)
1033 self
.gitStream
.write("from %s\n\n" % self
.branch
);
1036 self
.gitStream
.close()
1037 self
.gitOutput
.close()
1038 self
.gitError
.close()
1040 os
.popen("git repo-config p4.depotpath %s" % self
.globalPrefix
).read()
1041 if len(self
.initialTag
) > 0:
1042 os
.popen("git tag -d %s" % self
.initialTag
).read()
1046 class P4Rebase(Command
):
1048 Command
.__init
__(self
)
1050 self
.description
= "Fetches the latest revision from perforce and rebases the current work (branch) against it"
1052 def run(self
, args
):
1055 print "Rebasing the current branch"
1056 oldHead
= os
.popen("git rev-parse HEAD").read()[:-1]
1057 system("git rebase p4")
1058 system("git diff-tree --stat --summary -M %s HEAD" % oldHead
)
1061 class HelpFormatter(optparse
.IndentedHelpFormatter
):
1063 optparse
.IndentedHelpFormatter
.__init
__(self
)
1065 def format_description(self
, description
):
1067 return description
+ "\n"
1071 def printUsage(commands
):
1072 print "usage: %s <command> [options]" % sys
.argv
[0]
1074 print "valid commands: %s" % ", ".join(commands
)
1076 print "Try %s <command> --help for command specific help." % sys
.argv
[0]
1080 "debug" : P4Debug(),
1081 "clean-tags" : P4CleanTags(),
1082 "submit" : P4Submit(),
1084 "rebase" : P4Rebase()
1087 if len(sys
.argv
[1:]) == 0:
1088 printUsage(commands
.keys())
1092 cmdName
= sys
.argv
[1]
1094 cmd
= commands
[cmdName
]
1096 print "unknown command %s" % cmdName
1098 printUsage(commands
.keys())
1101 options
= cmd
.options
1106 if len(options
) > 0:
1107 options
.append(optparse
.make_option("--git-dir", dest
="gitdir"))
1109 parser
= optparse
.OptionParser(cmd
.usage
.replace("%prog", "%prog " + cmdName
),
1111 description
= cmd
.description
,
1112 formatter
= HelpFormatter())
1114 (cmd
, args
) = parser
.parse_args(sys
.argv
[2:], cmd
);
1118 if len(gitdir
) == 0:
1120 if not isValidGitDir(gitdir
):
1121 cdup
= os
.popen("git rev-parse --show-cdup").read()[:-1]
1122 if isValidGitDir(cdup
+ "/" + gitdir
):
1125 if not isValidGitDir(gitdir
):
1126 if isValidGitDir(gitdir
+ "/.git"):
1129 die("fatal: cannot locate git repository at %s" % gitdir
)
1131 os
.environ
["GIT_DIR"] = gitdir
1133 if not cmd
.run(args
):