]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/fast-import/git-p4
Clean up python class names.
[thirdparty/git.git] / contrib / fast-import / git-p4
CommitLineData
86949eef
SH
1#!/usr/bin/env python
2#
3# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
4#
5# Author: Simon Hausmann <hausmann@kde.org>
83dce55a
SH
6# Copyright: 2007 Simon Hausmann <hausmann@kde.org>
7# 2007 Trolltech ASA
86949eef
SH
8# License: MIT <http://www.opensource.org/licenses/mit-license.php>
9#
10
4f5cf76a 11import optparse, sys, os, marshal, popen2, shelve
b984733c
SH
12import tempfile, getopt, sha, os.path, time
13from sets import Set;
4f5cf76a
SH
14
15gitdir = os.environ.get("GIT_DIR", "")
86949eef
SH
16
17def p4CmdList(cmd):
18 cmd = "p4 -G %s" % cmd
19 pipe = os.popen(cmd, "rb")
20
21 result = []
22 try:
23 while True:
24 entry = marshal.load(pipe)
25 result.append(entry)
26 except EOFError:
27 pass
28 pipe.close()
29
30 return result
31
32def p4Cmd(cmd):
33 list = p4CmdList(cmd)
34 result = {}
35 for entry in list:
36 result.update(entry)
37 return result;
38
cb2c9db5
SH
39def p4Where(depotPath):
40 if not depotPath.endswith("/"):
41 depotPath += "/"
42 output = p4Cmd("where %s..." % depotPath)
43 clientPath = ""
44 if "path" in output:
45 clientPath = output.get("path")
46 elif "data" in output:
47 data = output.get("data")
48 lastSpace = data.rfind(" ")
49 clientPath = data[lastSpace + 1:]
50
51 if clientPath.endswith("..."):
52 clientPath = clientPath[:-3]
53 return clientPath
54
86949eef
SH
55def die(msg):
56 sys.stderr.write(msg + "\n")
57 sys.exit(1)
58
59def currentGitBranch():
9863f405 60 return os.popen("git name-rev HEAD").read().split(" ")[1][:-1]
86949eef 61
4f5cf76a
SH
62def isValidGitDir(path):
63 if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"):
64 return True;
65 return False
66
67def system(cmd):
68 if os.system(cmd) != 0:
69 die("command failed: %s" % cmd)
70
6ae8de88
SH
71def extractLogMessageFromGitCommit(commit):
72 logMessage = ""
73 foundTitle = False
9863f405 74 for log in os.popen("git cat-file commit %s" % commit).readlines():
6ae8de88
SH
75 if not foundTitle:
76 if len(log) == 1:
77 foundTitle = 1
78 continue
79
80 logMessage += log
81 return logMessage
82
83def extractDepotPathAndChangeFromGitLog(log):
84 values = {}
85 for line in log.split("\n"):
86 line = line.strip()
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()
91 value = ""
92 equalPos = assignment.find("=")
93 if equalPos != -1:
94 variable = assignment[:equalPos].strip()
95 value = assignment[equalPos + 1:].strip()
96 if value.startswith("\"") and value.endswith("\""):
97 value = value[1:-1]
98 values[variable] = value
99
100 return values.get("depot-path"), values.get("change")
101
8136a639 102def gitBranchExists(branch):
9863f405 103 if os.system("git rev-parse %s 2>/dev/null >/dev/null" % branch) == 0:
179caebf
SH
104 return True
105 return False
8136a639 106
b984733c
SH
107class Command:
108 def __init__(self):
109 self.usage = "usage: %prog [options]"
8910ac0e 110 self.needsGit = True
b984733c
SH
111
112class P4Debug(Command):
86949eef 113 def __init__(self):
6ae8de88 114 Command.__init__(self)
86949eef
SH
115 self.options = [
116 ]
c8c39116 117 self.description = "A tool to debug the output of p4 -G."
8910ac0e 118 self.needsGit = False
86949eef
SH
119
120 def run(self, args):
121 for output in p4CmdList(" ".join(args)):
122 print output
b984733c 123 return True
86949eef 124
b984733c 125class P4CleanTags(Command):
86949eef 126 def __init__(self):
b984733c 127 Command.__init__(self)
86949eef
SH
128 self.options = [
129# optparse.make_option("--branch", dest="branch", default="refs/heads/master")
130 ]
c8c39116 131 self.description = "A tool to remove stale unused tags from incremental perforce imports."
86949eef
SH
132 def run(self, args):
133 branch = currentGitBranch()
134 print "Cleaning out stale p4 import tags..."
9863f405 135 sout, sin, serr = popen2.popen3("git name-rev --tags `git rev-parse %s`" % branch)
86949eef
SH
136 output = sout.read()
137 try:
138 tagIdx = output.index(" tags/p4/")
139 except:
140 print "Cannot find any p4/* tag. Nothing to do."
141 sys.exit(0)
142
143 try:
144 caretIdx = output.index("^")
145 except:
146 caretIdx = len(output) - 1
147 rev = int(output[tagIdx + 9 : caretIdx])
148
149 allTags = os.popen("git tag -l p4/").readlines()
150 for i in range(len(allTags)):
151 allTags[i] = int(allTags[i][3:-1])
152
153 allTags.sort()
154
155 allTags.remove(rev)
156
157 for rev in allTags:
158 print os.popen("git tag -d p4/%s" % rev).read()
159
160 print "%s tags removed." % len(allTags)
b984733c 161 return True
86949eef 162
711544b0 163class P4Submit(Command):
4f5cf76a 164 def __init__(self):
b984733c 165 Command.__init__(self)
4f5cf76a
SH
166 self.options = [
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"),
4f5cf76a
SH
170 optparse.make_option("--log-substitutions", dest="substFile"),
171 optparse.make_option("--noninteractive", action="store_false"),
04219c04
SH
172 optparse.make_option("--dry-run", action="store_true"),
173 optparse.make_option("--apply-as-patch", action="store_true", dest="applyAsPatch")
4f5cf76a
SH
174 ]
175 self.description = "Submit changes from git to the perforce depot."
c9b50e63 176 self.usage += " [name of git branch to submit into perforce depot]"
4f5cf76a
SH
177 self.firstTime = True
178 self.reset = False
179 self.interactive = True
180 self.dryRun = False
181 self.substFile = ""
182 self.firstTime = True
9512497b 183 self.origin = ""
1932a6ac 184 self.applyAsPatch = True
4f5cf76a
SH
185
186 self.logSubstitutions = {}
187 self.logSubstitutions["<enter description here>"] = "%log%"
188 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
189
190 def check(self):
191 if len(p4CmdList("opened ...")) > 0:
192 die("You have files opened with perforce! Close them before starting the sync.")
193
194 def start(self):
195 if len(self.config) > 0 and not self.reset:
196 die("Cannot start sync. Previous sync config found at %s" % self.configFile)
197
198 commits = []
9863f405 199 for line in os.popen("git rev-list --no-merges %s..%s" % (self.origin, self.master)).readlines():
4f5cf76a
SH
200 commits.append(line[:-1])
201 commits.reverse()
202
203 self.config["commits"] = commits
204
04219c04
SH
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)
4f5cf76a
SH
208
209 def prepareLogMessage(self, template, message):
210 result = ""
211
212 for line in template.split("\n"):
213 if line.startswith("#"):
214 result += line + "\n"
215 continue
216
217 substituted = False
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"
224 substituted = True
225 break
226
227 if not substituted:
228 result += line + "\n"
229
230 return result
231
232 def apply(self, id):
9863f405 233 print "Applying %s" % (os.popen("git log --max-count=1 --pretty=oneline %s" % id).read())
4f5cf76a
SH
234 diff = os.popen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines()
235 filesToAdd = set()
236 filesToDelete = set()
237 for line in diff:
238 modifier = line[0]
239 path = line[1:].strip()
240 if modifier == "M":
241 system("p4 edit %s" % path)
242 elif modifier == "A":
243 filesToAdd.add(path)
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)
250 else:
251 die("unknown modifier %s for %s" % (modifier, path))
252
04219c04 253 if self.applyAsPatch:
9863f405 254 system("git diff-tree -p --diff-filter=ACMRTUXB \"%s^\" \"%s\" | patch -p1" % (id, id))
04219c04 255 else:
9863f405 256 system("git diff-files --name-only -z | git update-index --remove -z --stdin")
04219c04 257 system("git cherry-pick --no-commit \"%s\"" % id)
4f5cf76a
SH
258
259 for f in filesToAdd:
260 system("p4 add %s" % f)
261 for f in filesToDelete:
262 system("p4 revert %s" % f)
263 system("p4 delete %s" % f)
264
6ae8de88
SH
265 logMessage = extractLogMessageFromGitCommit(id)
266 logMessage = logMessage.replace("\n", "\n\t")
267 logMessage = logMessage[:-1]
4f5cf76a
SH
268
269 template = os.popen("p4 change -o").read()
270
271 if self.interactive:
272 submitTemplate = self.prepareLogMessage(template, logMessage)
273 diff = os.popen("p4 diff -du ...").read()
274
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():
281 diff += "+" + line
282 f.close()
283
53150250 284 separatorLine = "######## everything below this line is just the diff #######\n"
4f5cf76a
SH
285
286 response = "e"
53150250 287 firstIteration = True
4f5cf76a 288 while response == "e":
53150250
SH
289 if not firstIteration:
290 response = raw_input("Do you want to submit this change (y/e/n)? ")
291 firstIteration = False
4f5cf76a
SH
292 if response == "e":
293 [handle, fileName] = tempfile.mkstemp()
294 tmpFile = os.fdopen(handle, "w+")
53150250 295 tmpFile.write(submitTemplate + separatorLine + diff)
4f5cf76a
SH
296 tmpFile.close()
297 editor = os.environ.get("EDITOR", "vi")
298 system(editor + " " + fileName)
299 tmpFile = open(fileName, "r")
53150250 300 message = tmpFile.read()
4f5cf76a
SH
301 tmpFile.close()
302 os.remove(fileName)
53150250 303 submitTemplate = message[:message.index(separatorLine)]
4f5cf76a
SH
304
305 if response == "y" or response == "yes":
306 if self.dryRun:
307 print submitTemplate
308 raw_input("Press return to continue...")
309 else:
310 pipe = os.popen("p4 submit -i", "w")
311 pipe.write(submitTemplate)
312 pipe.close()
313 else:
314 print "Not submitting!"
315 self.interactive = False
316 else:
317 fileName = "submit.txt"
318 file = open(fileName, "w+")
319 file.write(self.prepareLogMessage(template, logMessage))
320 file.close()
321 print "Perforce submit template written as %s. Please review/edit and then use p4 submit -i < %s to submit directly!" % (fileName, fileName)
322
323 def run(self, args):
9512497b
SH
324 global gitdir
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
c9b50e63
SH
328
329 if len(args) == 0:
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!")
333 elif len(args) == 1:
334 self.master = args[0]
335 else:
336 return False
337
9512497b
SH
338 depotPath = ""
339 if gitBranchExists("p4"):
340 [depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
341 if len(depotPath) == 0 and gitBranchExists("origin"):
342 [depotPath, dummy] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
343
344 if len(depotPath) == 0:
345 print "Internal error: cannot locate perforce depot path from existing branches"
346 sys.exit(128)
347
cb2c9db5 348 clientPath = p4Where(depotPath)
9512497b
SH
349
350 if len(clientPath) == 0:
351 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
352 sys.exit(128)
353
354 print "Perforce checkout for depot path %s located at %s" % (depotPath, clientPath)
355 os.chdir(clientPath)
274917a3 356 response = raw_input("Do you want to sync %s with p4 sync? (y/n) " % clientPath)
9512497b
SH
357 if response == "y" or response == "yes":
358 system("p4 sync ...")
359
360 if len(self.origin) == 0:
361 if gitBranchExists("p4"):
362 self.origin = "p4"
363 else:
364 self.origin = "origin"
365
4f5cf76a
SH
366 if self.reset:
367 self.firstTime = True
368
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]
373
4f5cf76a
SH
374 self.check()
375 self.configFile = gitdir + "/p4-git-sync.cfg"
376 self.config = shelve.open(self.configFile, writeback=True)
377
378 if self.firstTime:
379 self.start()
380
381 commits = self.config.get("commits", [])
382
383 while len(commits) > 0:
384 self.firstTime = False
385 commit = commits[0]
386 commits = commits[1:]
387 self.config["commits"] = commits
388 self.apply(commit)
389 if not self.interactive:
390 break
391
392 self.config.close()
393
394 if len(commits) == 0:
395 if self.firstTime:
396 print "No changes found to apply between %s and current HEAD" % self.origin
397 else:
398 print "All changes applied!"
04219c04
SH
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")
4f5cf76a
SH
406 os.remove(self.configFile)
407
b984733c
SH
408 return True
409
711544b0 410class P4Sync(Command):
b984733c
SH
411 def __init__(self):
412 Command.__init__(self)
413 self.options = [
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"),
2a9489c0 419 optparse.make_option("--data-cache", dest="dataCache", action="store_true"),
b984733c
SH
420 optparse.make_option("--command-cache", dest="commandCache", action="store_true")
421 ]
422 self.description = """Imports from Perforce into a git repository.\n
423 example:
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
427
428 (a ... is not needed in the path p4 specification, it's added implicitly)"""
429
430 self.usage += " //depot/path[@revRange]"
431
432 self.dataCache = False
433 self.commandCache = False
434 self.silent = False
435 self.knownBranches = Set()
436 self.createdBranches = Set()
437 self.committedChanges = Set()
569d1bd4 438 self.branch = ""
b984733c
SH
439 self.detectBranches = False
440 self.changesFile = ""
441
442 def p4File(self, depotPath):
443 return os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
444
445 def extractFilesFromCommit(self, commit):
446 files = []
447 fnum = 0
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)
453 fnum = fnum + 1
454 continue
455
456 file = {}
457 file["path"] = path
458 file["rev"] = commit["rev%s" % fnum]
459 file["action"] = commit["action%s" % fnum]
460 file["type"] = commit["type%s" % fnum]
461 files.append(file)
462 fnum = fnum + 1
463 return files
464
465 def isSubPathOf(self, first, second):
466 if not first.startswith(second):
467 return False
468 if first == second:
469 return True
470 return first[len(second)] == "/"
471
472 def branchesForCommit(self, files):
473 branches = Set()
474
475 for file in files:
476 relativePath = file["path"][len(self.globalPrefix):]
477 # strip off the filename
478 relativePath = relativePath[0:relativePath.rfind("/")]
479
480 # if len(branches) == 0:
481 # branches.add(relativePath)
482 # knownBranches.add(relativePath)
483 # continue
484
485 ###### this needs more testing :)
486 knownBranch = False
487 for branch in branches:
488 if relativePath == branch:
489 knownBranch = True
490 break
491 # if relativePath.startswith(branch):
492 if self.isSubPathOf(relativePath, branch):
493 knownBranch = True
494 break
495 # if branch.startswith(relativePath):
496 if self.isSubPathOf(branch, relativePath):
497 branches.remove(branch)
498 break
499
500 if knownBranch:
501 continue
502
2a9489c0 503 for branch in self.knownBranches:
b984733c
SH
504 #if relativePath.startswith(branch):
505 if self.isSubPathOf(relativePath, branch):
506 if len(branches) == 0:
507 relativePath = branch
508 else:
509 knownBranch = True
510 break
511
512 if knownBranch:
513 continue
514
515 branches.add(relativePath)
516 self.knownBranches.add(relativePath)
517
518 return branches
519
520 def findBranchParent(self, branchPrefix, files):
521 for file in files:
522 path = file["path"]
523 if not path.startswith(branchPrefix):
524 continue
525 action = file["action"]
526 if action != "integrate" and action != "branch":
527 continue
528 rev = file["rev"]
529 depotPath = path + "#" + rev
530
531 log = p4CmdList("filelog \"%s\"" % depotPath)
532 if len(log) != 1:
533 print "eek! I got confused by the filelog of %s" % depotPath
534 sys.exit(1);
535
536 log = log[0]
537 if log["action0"] != action:
538 print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath, log["action0"], action)
539 sys.exit(1);
540
541 branchAction = log["how0,0"]
542 # if branchAction == "branch into" or branchAction == "ignored":
543 # continue # ignore for branching
544
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)
548 # sys.exit(1);
549
550 source = log["file0,0"]
551 if source.startswith(branchPrefix):
552 continue
553
554 lastSourceRev = log["erev0,0"]
555
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)
559 sys.exit(1);
560 sourceLog = sourceLog[0]
561
562 relPath = source[len(self.globalPrefix):]
563 # strip off the filename
564 relPath = relPath[0:relPath.rfind("/")]
565
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)
569 return branch
570 # else:
571 # print "%s is not a subpath of branch %s" % (relPath, branch)
572
573 return ""
574
c715706b 575 def commit(self, details, files, branch, branchPrefix, parent = "", merged = ""):
b984733c
SH
576 epoch = details["time"]
577 author = details["user"]
578
579 self.gitStream.write("commit %s\n" % branch)
580 # gitStream.write("mark :%s\n" % details["change"])
581 self.committedChanges.add(int(details["change"]))
582 committer = ""
583 if author in self.users:
0828ab14 584 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
b984733c 585 else:
0828ab14 586 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
b984733c
SH
587
588 self.gitStream.write("committer %s\n" % committer)
589
590 self.gitStream.write("data <<EOT\n")
591 self.gitStream.write(details["desc"])
6ae8de88 592 self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix, details["change"]))
b984733c
SH
593 self.gitStream.write("EOT\n\n")
594
595 if len(parent) > 0:
596 self.gitStream.write("from %s\n" % parent)
597
598 if len(merged) > 0:
599 self.gitStream.write("merge %s\n" % merged)
600
601 for file in files:
602 path = file["path"]
603 if not path.startswith(branchPrefix):
604 # if not silent:
605 # print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
606 continue
607 rev = file["rev"]
608 depotPath = path + "#" + rev
609 relPath = path[len(branchPrefix):]
610 action = file["action"]
611
612 if file["type"] == "apple":
613 print "\nfile %s is a strange apple file that forks. Ignoring!" % path
614 continue
615
616 if action == "delete":
617 self.gitStream.write("D %s\n" % relPath)
618 else:
619 mode = 644
620 if file["type"].startswith("x"):
621 mode = 755
622
623 data = self.p4File(depotPath)
624
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")
629
630 self.gitStream.write("\n")
631
1f4ba1cb
SH
632 change = int(details["change"])
633
634 self.lastChange = change
635
636 if change in self.labels:
637 label = self.labels[change]
638 labelDetails = label[0]
639 labelRevisions = label[1]
640
641 files = p4CmdList("files %s...@%s" % (branchPrefix, change))
642
643 if len(files) == len(labelRevisions):
644
645 cleanedFiles = {}
646 for info in files:
647 if info["action"] == "delete":
648 continue
649 cleanedFiles[info["depotFile"]] = info["rev"]
650
651 if cleanedFiles == labelRevisions:
652 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
653 self.gitStream.write("from %s\n" % branch)
654
655 owner = labelDetails["Owner"]
656 tagger = ""
657 if author in self.users:
658 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
659 else:
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")
665
666 else:
a46668fa 667 if not self.silent:
1f4ba1cb
SH
668 print "Tag %s does not match with change %s: files do not match." % (labelDetails["label"], change)
669
670 else:
a46668fa 671 if not self.silent:
1f4ba1cb 672 print "Tag %s does not match with change %s: file count is different." % (labelDetails["label"], change)
b984733c
SH
673
674 def extractFilesInCommitToBranch(self, files, branchPrefix):
675 newFiles = []
676
677 for file in files:
678 path = file["path"]
679 if path.startswith(branchPrefix):
680 newFiles.append(file)
681
682 return newFiles
683
684 def findBranchSourceHeuristic(self, files, branch, branchPrefix):
685 for file in files:
686 action = file["action"]
687 if action != "integrate" and action != "branch":
688 continue
689 path = file["path"]
690 rev = file["rev"]
691 depotPath = path + "#" + rev
692
693 log = p4CmdList("filelog \"%s\"" % depotPath)
694 if len(log) != 1:
695 print "eek! I got confused by the filelog of %s" % depotPath
696 sys.exit(1);
697
698 log = log[0]
699 if log["action0"] != action:
700 print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath, log["action0"], action)
701 sys.exit(1);
702
703 branchAction = log["how0,0"]
704
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)
708 # sys.exit(1);
709
710 source = log["file0,0"]
711 if source.startswith(branchPrefix):
712 continue
713
714 lastSourceRev = log["erev0,0"]
715
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)
719 sys.exit(1);
720 sourceLog = sourceLog[0]
721
722 relPath = source[len(self.globalPrefix):]
723 # strip off the filename
724 relPath = relPath[0:relPath.rfind("/")]
725
726 for candidate in self.knownBranches:
727 if self.isSubPathOf(relPath, candidate) and candidate != branch:
728 return candidate
729
730 return ""
731
732 def changeIsBranchMerge(self, sourceBranch, destinationBranch, change):
733 sourceFiles = {}
734 for file in p4CmdList("files %s...@%s" % (self.globalPrefix + sourceBranch + "/", change)):
735 if file["action"] == "delete":
736 continue
737 sourceFiles[file["depotFile"]] = file
738
739 destinationFiles = {}
740 for file in p4CmdList("files %s...@%s" % (self.globalPrefix + destinationBranch + "/", change)):
741 destinationFiles[file["depotFile"]] = file
742
743 for fileName in sourceFiles.keys():
744 integrations = []
745 deleted = False
746 integrationCount = 0
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:
750 continue
751 destFile = destinationFiles[toFile]
752 if destFile["action"] == "delete":
753 # print "file %s has been deleted in %s" % (fileName, toFile)
754 deleted = True
755 break
756 integrationCount += 1
757 if integration["how"] == "branch from":
758 continue
759
760 if int(integration["change"]) == change:
761 integrations.append(integration)
762 continue
763 if int(integration["change"]) > change:
764 continue
765
766 destRev = int(destFile["rev"])
767
768 startRev = integration["startFromRev"][1:]
769 if startRev == "none":
770 startRev = 0
771 else:
772 startRev = int(startRev)
773
774 endRev = integration["endFromRev"][1:]
775 if endRev == "none":
776 endRev = 0
777 else:
778 endRev = int(endRev)
779
780 initialBranch = (destRev == 1 and integration["how"] != "branch into")
781 inRange = (destRev >= startRev and destRev <= endRev)
782 newer = (destRev > startRev and destRev > endRev)
783
784 if initialBranch or inRange or newer:
785 integrations.append(integration)
786
787 if deleted:
788 continue
789
790 if len(integrations) == 0 and integrationCount > 1:
791 print "file %s was not integrated from %s into %s" % (fileName, sourceBranch, destinationBranch)
792 return False
793
794 return True
795
796 def getUserMap(self):
797 self.users = {}
798
799 for output in p4CmdList("users"):
800 if not output.has_key("User"):
801 continue
802 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
803
1f4ba1cb
SH
804 def getLabels(self):
805 self.labels = {}
806
807 for output in p4CmdList("labels %s..." % self.globalPrefix):
808 label = output["label"]
809 revisions = {}
810 newestChange = 0
811 for file in p4CmdList("files //...@%s" % label):
812 revisions[file["depotFile"]] = file["rev"]
813 change = int(file["change"])
814 if change > newestChange:
815 newestChange = change
816
817 self.labels[newestChange] = [output, revisions]
818
b984733c 819 def run(self, args):
179caebf
SH
820 self.globalPrefix = ""
821 self.changeRange = ""
822 self.initialParent = ""
823 self.tagLastChange = True
824
569d1bd4
SH
825 if len(self.branch) == 0:
826 self.branch = "p4"
967f72e2
SH
827
828 if len(args) == 0:
829 if not gitBranchExists(self.branch) and gitBranchExists("origin"):
830 if not self.silent:
831 print "Creating %s branch in git repository based on origin" % self.branch
832 system("git branch %s origin" % self.branch)
833
834 [self.previousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit(self.branch))
835 if len(self.previousDepotPath) > 0 and len(p4Change) > 0:
836 p4Change = int(p4Change) + 1
837 self.globalPrefix = self.previousDepotPath
838 self.changeRange = "@%s,#head" % p4Change
839 self.initialParent = self.branch
840 self.tagLastChange = False
841 if not self.silent:
842 print "Performing incremental import into %s git branch" % self.branch
569d1bd4 843
b984733c 844 self.branch = "refs/heads/" + self.branch
179caebf
SH
845
846 if len(self.globalPrefix) == 0:
9863f405 847 self.globalPrefix = self.previousDepotPath = os.popen("git repo-config --get p4.depotpath").read()
179caebf 848
b984733c
SH
849 if len(self.globalPrefix) != 0:
850 self.globalPrefix = self.globalPrefix[:-1]
851
852 if len(args) == 0 and len(self.globalPrefix) != 0:
853 if not self.silent:
179caebf 854 print "Depot path: %s" % self.globalPrefix
b984733c
SH
855 elif len(args) != 1:
856 return False
857 else:
858 if len(self.globalPrefix) != 0 and self.globalPrefix != args[0]:
859 print "previous import used depot path %s and now %s was specified. this doesn't work!" % (self.globalPrefix, args[0])
860 sys.exit(1)
861 self.globalPrefix = args[0]
862
b984733c
SH
863 self.revision = ""
864 self.users = {}
b984733c
SH
865 self.lastChange = 0
866 self.initialTag = ""
867
868 if self.globalPrefix.find("@") != -1:
869 atIdx = self.globalPrefix.index("@")
870 self.changeRange = self.globalPrefix[atIdx:]
871 if self.changeRange == "@all":
872 self.changeRange = ""
873 elif self.changeRange.find(",") == -1:
874 self.revision = self.changeRange
875 self.changeRange = ""
876 self.globalPrefix = self.globalPrefix[0:atIdx]
877 elif self.globalPrefix.find("#") != -1:
878 hashIdx = self.globalPrefix.index("#")
879 self.revision = self.globalPrefix[hashIdx:]
880 self.globalPrefix = self.globalPrefix[0:hashIdx]
881 elif len(self.previousDepotPath) == 0:
882 self.revision = "#head"
883
884 if self.globalPrefix.endswith("..."):
885 self.globalPrefix = self.globalPrefix[:-3]
886
887 if not self.globalPrefix.endswith("/"):
888 self.globalPrefix += "/"
889
890 self.getUserMap()
1f4ba1cb 891 self.getLabels();
b984733c
SH
892
893 if len(self.changeRange) == 0:
894 try:
9863f405 895 sout, sin, serr = popen2.popen3("git name-rev --tags `git rev-parse %s`" % self.branch)
b984733c
SH
896 output = sout.read()
897 if output.endswith("\n"):
898 output = output[:-1]
899 tagIdx = output.index(" tags/p4/")
900 caretIdx = output.find("^")
901 endPos = len(output)
902 if caretIdx != -1:
903 endPos = caretIdx
904 self.rev = int(output[tagIdx + 9 : endPos]) + 1
905 self.changeRange = "@%s,#head" % self.rev
9863f405 906 self.initialParent = os.popen("git rev-parse %s" % self.branch).read()[:-1]
b984733c
SH
907 self.initialTag = "p4/%s" % (int(self.rev) - 1)
908 except:
909 pass
910
0828ab14
SH
911 self.tz = - time.timezone / 36
912 tzsign = ("%s" % self.tz)[0]
b984733c 913 if tzsign != '+' and tzsign != '-':
0828ab14 914 self.tz = "+" + ("%s" % self.tz)
b984733c 915
9863f405 916 self.gitOutput, self.gitStream, self.gitError = popen2.popen3("git fast-import")
b984733c
SH
917
918 if len(self.revision) > 0:
919 print "Doing initial import of %s from revision %s" % (self.globalPrefix, self.revision)
920
921 details = { "user" : "git perforce import user", "time" : int(time.time()) }
922 details["desc"] = "Initial import of %s from the state at revision %s" % (self.globalPrefix, self.revision)
923 details["change"] = self.revision
924 newestRevision = 0
925
926 fileCnt = 0
927 for info in p4CmdList("files %s...%s" % (self.globalPrefix, self.revision)):
928 change = int(info["change"])
929 if change > newestRevision:
930 newestRevision = change
931
932 if info["action"] == "delete":
c715706b 933 fileCnt = fileCnt + 1
b984733c
SH
934 continue
935
936 for prop in [ "depotFile", "rev", "action", "type" ]:
937 details["%s%s" % (prop, fileCnt)] = info[prop]
938
939 fileCnt = fileCnt + 1
940
941 details["change"] = newestRevision
942
943 try:
944 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.globalPrefix)
c715706b 945 except IOError:
b984733c
SH
946 print self.gitError.read()
947
948 else:
949 changes = []
950
0828ab14 951 if len(self.changesFile) > 0:
b984733c
SH
952 output = open(self.changesFile).readlines()
953 changeSet = Set()
954 for line in output:
955 changeSet.add(int(line))
956
957 for change in changeSet:
958 changes.append(change)
959
960 changes.sort()
961 else:
962 output = os.popen("p4 changes %s...%s" % (self.globalPrefix, self.changeRange)).readlines()
963
964 for line in output:
965 changeNum = line.split(" ")[1]
966 changes.append(changeNum)
967
968 changes.reverse()
969
970 if len(changes) == 0:
0828ab14 971 if not self.silent:
b984733c
SH
972 print "no changes to import!"
973 sys.exit(1)
974
975 cnt = 1
976 for change in changes:
977 description = p4Cmd("describe %s" % change)
978
0828ab14 979 if not self.silent:
b984733c
SH
980 sys.stdout.write("\rimporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
981 sys.stdout.flush()
982 cnt = cnt + 1
983
984 try:
985 files = self.extractFilesFromCommit(description)
986 if self.detectBranches:
987 for branch in self.branchesForCommit(files):
988 self.knownBranches.add(branch)
989 branchPrefix = self.globalPrefix + branch + "/"
990
991 filesForCommit = self.extractFilesInCommitToBranch(files, branchPrefix)
992
993 merged = ""
994 parent = ""
995 ########### remove cnt!!!
996 if branch not in self.createdBranches and cnt > 2:
997 self.createdBranches.add(branch)
998 parent = self.findBranchParent(branchPrefix, files)
999 if parent == branch:
1000 parent = ""
1001 # elif len(parent) > 0:
1002 # print "%s branched off of %s" % (branch, parent)
1003
1004 if len(parent) == 0:
1005 merged = self.findBranchSourceHeuristic(filesForCommit, branch, branchPrefix)
1006 if len(merged) > 0:
1007 print "change %s could be a merge from %s into %s" % (description["change"], merged, branch)
1008 if not self.changeIsBranchMerge(merged, branch, int(description["change"])):
1009 merged = ""
1010
1011 branch = "refs/heads/" + branch
1012 if len(parent) > 0:
1013 parent = "refs/heads/" + parent
1014 if len(merged) > 0:
1015 merged = "refs/heads/" + merged
1016 self.commit(description, files, branch, branchPrefix, parent, merged)
1017 else:
0828ab14 1018 self.commit(description, files, self.branch, self.globalPrefix, self.initialParent)
b984733c
SH
1019 self.initialParent = ""
1020 except IOError:
1021 print self.gitError.read()
1022 sys.exit(1)
1023
1024 if not self.silent:
1025 print ""
1026
179caebf
SH
1027 if self.tagLastChange:
1028 self.gitStream.write("reset refs/tags/p4/%s\n" % self.lastChange)
1029 self.gitStream.write("from %s\n\n" % self.branch);
b984733c
SH
1030
1031
1032 self.gitStream.close()
1033 self.gitOutput.close()
1034 self.gitError.close()
1035
9863f405 1036 os.popen("git repo-config p4.depotpath %s" % self.globalPrefix).read()
b984733c
SH
1037 if len(self.initialTag) > 0:
1038 os.popen("git tag -d %s" % self.initialTag).read()
1039
1040 return True
1041
1042class HelpFormatter(optparse.IndentedHelpFormatter):
1043 def __init__(self):
1044 optparse.IndentedHelpFormatter.__init__(self)
1045
1046 def format_description(self, description):
1047 if description:
1048 return description + "\n"
1049 else:
1050 return ""
4f5cf76a 1051
86949eef
SH
1052def printUsage(commands):
1053 print "usage: %s <command> [options]" % sys.argv[0]
1054 print ""
1055 print "valid commands: %s" % ", ".join(commands)
1056 print ""
1057 print "Try %s <command> --help for command specific help." % sys.argv[0]
1058 print ""
1059
1060commands = {
1061 "debug" : P4Debug(),
4f5cf76a 1062 "clean-tags" : P4CleanTags(),
711544b0
SH
1063 "submit" : P4Submit(),
1064 "sync" : P4Sync()
86949eef
SH
1065}
1066
1067if len(sys.argv[1:]) == 0:
1068 printUsage(commands.keys())
1069 sys.exit(2)
1070
1071cmd = ""
1072cmdName = sys.argv[1]
1073try:
1074 cmd = commands[cmdName]
1075except KeyError:
1076 print "unknown command %s" % cmdName
1077 print ""
1078 printUsage(commands.keys())
1079 sys.exit(2)
1080
4f5cf76a
SH
1081options = cmd.options
1082cmd.gitdir = gitdir
4f5cf76a 1083
e20a9e53 1084args = sys.argv[2:]
86949eef 1085
e20a9e53
SH
1086if len(options) > 0:
1087 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1088
1089 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1090 options,
1091 description = cmd.description,
1092 formatter = HelpFormatter())
1093
1094 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
86949eef 1095
8910ac0e
SH
1096if cmd.needsGit:
1097 gitdir = cmd.gitdir
1098 if len(gitdir) == 0:
1099 gitdir = ".git"
1100 if not isValidGitDir(gitdir):
1101 cdup = os.popen("git rev-parse --show-cdup").read()[:-1]
1102 if isValidGitDir(cdup + "/" + gitdir):
1103 os.chdir(cdup)
4f5cf76a 1104
8910ac0e
SH
1105 if not isValidGitDir(gitdir):
1106 if isValidGitDir(gitdir + "/.git"):
1107 gitdir += "/.git"
1108 else:
1109 die("fatal: cannot locate git repository at %s" % gitdir)
4f5cf76a 1110
8910ac0e 1111 os.environ["GIT_DIR"] = gitdir
4f5cf76a 1112
b984733c
SH
1113if not cmd.run(args):
1114 parser.print_help()
1115