blob: 2c1dc9e2b3431a8f0bfa3e20d0f5672c049f763e [file] [log] [blame]
Simon Hausmann86949ee2007-03-19 20:59:12 +01001#!/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>
Simon Hausmann83dce552007-03-19 22:26:36 +01006# Copyright: 2007 Simon Hausmann <hausmann@kde.org>
7# 2007 Trolltech ASA
Simon Hausmann86949ee2007-03-19 20:59:12 +01008# License: MIT <http://www.opensource.org/licenses/mit-license.php>
9#
10
Simon Hausmann08483582007-05-15 14:31:06 +020011import optparse, sys, os, marshal, popen2, subprocess, shelve
Simon Hausmann25df95c2007-05-15 15:15:39 +020012import tempfile, getopt, sha, os.path, time, platform
Simon Hausmannb9847332007-03-20 20:54:23 +010013from sets import Set;
Simon Hausmann4f5cf762007-03-19 22:25:17 +010014
15gitdir = os.environ.get("GIT_DIR", "")
Simon Hausmann86949ee2007-03-19 20:59:12 +010016
Simon Hausmanncaace112007-05-15 14:57:57 +020017def mypopen(command):
18 return os.popen(command, "rb");
19
Simon Hausmann86949ee2007-03-19 20:59:12 +010020def p4CmdList(cmd):
21 cmd = "p4 -G %s" % cmd
22 pipe = os.popen(cmd, "rb")
23
24 result = []
25 try:
26 while True:
27 entry = marshal.load(pipe)
28 result.append(entry)
29 except EOFError:
30 pass
31 pipe.close()
32
33 return result
34
35def p4Cmd(cmd):
36 list = p4CmdList(cmd)
37 result = {}
38 for entry in list:
39 result.update(entry)
40 return result;
41
Simon Hausmanncb2c9db2007-03-24 09:15:11 +010042def p4Where(depotPath):
43 if not depotPath.endswith("/"):
44 depotPath += "/"
45 output = p4Cmd("where %s..." % depotPath)
46 clientPath = ""
47 if "path" in output:
48 clientPath = output.get("path")
49 elif "data" in output:
50 data = output.get("data")
51 lastSpace = data.rfind(" ")
52 clientPath = data[lastSpace + 1:]
53
54 if clientPath.endswith("..."):
55 clientPath = clientPath[:-3]
56 return clientPath
57
Simon Hausmann86949ee2007-03-19 20:59:12 +010058def die(msg):
59 sys.stderr.write(msg + "\n")
60 sys.exit(1)
61
62def currentGitBranch():
Simon Hausmanncaace112007-05-15 14:57:57 +020063 return mypopen("git name-rev HEAD").read().split(" ")[1][:-1]
Simon Hausmann86949ee2007-03-19 20:59:12 +010064
Simon Hausmann4f5cf762007-03-19 22:25:17 +010065def isValidGitDir(path):
66 if os.path.exists(path + "/HEAD") and os.path.exists(path + "/refs") and os.path.exists(path + "/objects"):
67 return True;
68 return False
69
Simon Hausmann463e8af2007-05-17 09:13:54 +020070def parseRevision(ref):
71 return mypopen("git rev-parse %s" % ref).read()[:-1]
72
Simon Hausmann4f5cf762007-03-19 22:25:17 +010073def system(cmd):
74 if os.system(cmd) != 0:
75 die("command failed: %s" % cmd)
76
Simon Hausmann6ae8de82007-03-22 21:10:25 +010077def extractLogMessageFromGitCommit(commit):
78 logMessage = ""
79 foundTitle = False
Simon Hausmanncaace112007-05-15 14:57:57 +020080 for log in mypopen("git cat-file commit %s" % commit).readlines():
Simon Hausmann6ae8de82007-03-22 21:10:25 +010081 if not foundTitle:
82 if len(log) == 1:
Simon Hausmann1c094182007-05-01 23:15:48 +020083 foundTitle = True
Simon Hausmann6ae8de82007-03-22 21:10:25 +010084 continue
85
86 logMessage += log
87 return logMessage
88
89def extractDepotPathAndChangeFromGitLog(log):
90 values = {}
91 for line in log.split("\n"):
92 line = line.strip()
93 if line.startswith("[git-p4:") and line.endswith("]"):
94 line = line[8:-1].strip()
95 for assignment in line.split(":"):
96 variable = assignment.strip()
97 value = ""
98 equalPos = assignment.find("=")
99 if equalPos != -1:
100 variable = assignment[:equalPos].strip()
101 value = assignment[equalPos + 1:].strip()
102 if value.startswith("\"") and value.endswith("\""):
103 value = value[1:-1]
104 values[variable] = value
105
106 return values.get("depot-path"), values.get("change")
107
Simon Hausmann8136a632007-03-22 21:27:14 +0100108def gitBranchExists(branch):
Simon Hausmanncaace112007-05-15 14:57:57 +0200109 proc = subprocess.Popen(["git", "rev-parse", branch], stderr=subprocess.PIPE, stdout=subprocess.PIPE);
110 return proc.wait() == 0;
Simon Hausmann8136a632007-03-22 21:27:14 +0100111
Simon Hausmannb9847332007-03-20 20:54:23 +0100112class Command:
113 def __init__(self):
114 self.usage = "usage: %prog [options]"
Simon Hausmann8910ac02007-03-26 08:18:55 +0200115 self.needsGit = True
Simon Hausmannb9847332007-03-20 20:54:23 +0100116
117class P4Debug(Command):
Simon Hausmann86949ee2007-03-19 20:59:12 +0100118 def __init__(self):
Simon Hausmann6ae8de82007-03-22 21:10:25 +0100119 Command.__init__(self)
Simon Hausmann86949ee2007-03-19 20:59:12 +0100120 self.options = [
121 ]
Simon Hausmannc8c39112007-03-19 21:02:30 +0100122 self.description = "A tool to debug the output of p4 -G."
Simon Hausmann8910ac02007-03-26 08:18:55 +0200123 self.needsGit = False
Simon Hausmann86949ee2007-03-19 20:59:12 +0100124
125 def run(self, args):
126 for output in p4CmdList(" ".join(args)):
127 print output
Simon Hausmannb9847332007-03-20 20:54:23 +0100128 return True
Simon Hausmann86949ee2007-03-19 20:59:12 +0100129
Simon Hausmann711544b2007-04-01 15:40:46 +0200130class P4Submit(Command):
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100131 def __init__(self):
Simon Hausmannb9847332007-03-20 20:54:23 +0100132 Command.__init__(self)
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100133 self.options = [
134 optparse.make_option("--continue", action="store_false", dest="firstTime"),
135 optparse.make_option("--origin", dest="origin"),
136 optparse.make_option("--reset", action="store_true", dest="reset"),
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100137 optparse.make_option("--log-substitutions", dest="substFile"),
138 optparse.make_option("--noninteractive", action="store_false"),
Simon Hausmann04219c02007-03-21 10:11:20 +0100139 optparse.make_option("--dry-run", action="store_true"),
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100140 ]
141 self.description = "Submit changes from git to the perforce depot."
Simon Hausmannc9b50e62007-03-29 19:15:24 +0200142 self.usage += " [name of git branch to submit into perforce depot]"
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100143 self.firstTime = True
144 self.reset = False
145 self.interactive = True
146 self.dryRun = False
147 self.substFile = ""
148 self.firstTime = True
Simon Hausmann95124972007-03-23 09:16:07 +0100149 self.origin = ""
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100150
151 self.logSubstitutions = {}
152 self.logSubstitutions["<enter description here>"] = "%log%"
153 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
154
155 def check(self):
156 if len(p4CmdList("opened ...")) > 0:
157 die("You have files opened with perforce! Close them before starting the sync.")
158
159 def start(self):
160 if len(self.config) > 0 and not self.reset:
Simon Hausmannc3c46242007-05-16 09:43:13 +0200161 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)
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100162
163 commits = []
Simon Hausmanncaace112007-05-15 14:57:57 +0200164 for line in mypopen("git rev-list --no-merges %s..%s" % (self.origin, self.master)).readlines():
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100165 commits.append(line[:-1])
166 commits.reverse()
167
168 self.config["commits"] = commits
169
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100170 def prepareLogMessage(self, template, message):
171 result = ""
172
173 for line in template.split("\n"):
174 if line.startswith("#"):
175 result += line + "\n"
176 continue
177
178 substituted = False
179 for key in self.logSubstitutions.keys():
180 if line.find(key) != -1:
181 value = self.logSubstitutions[key]
182 value = value.replace("%log%", message)
183 if value != "@remove@":
184 result += line.replace(key, value) + "\n"
185 substituted = True
186 break
187
188 if not substituted:
189 result += line + "\n"
190
191 return result
192
193 def apply(self, id):
Simon Hausmanncaace112007-05-15 14:57:57 +0200194 print "Applying %s" % (mypopen("git log --max-count=1 --pretty=oneline %s" % id).read())
195 diff = mypopen("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id)).readlines()
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100196 filesToAdd = set()
197 filesToDelete = set()
Simon Hausmannd336c152007-05-16 09:41:26 +0200198 editedFiles = set()
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100199 for line in diff:
200 modifier = line[0]
201 path = line[1:].strip()
202 if modifier == "M":
Simon Hausmannd336c152007-05-16 09:41:26 +0200203 system("p4 edit \"%s\"" % path)
204 editedFiles.add(path)
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100205 elif modifier == "A":
206 filesToAdd.add(path)
207 if path in filesToDelete:
208 filesToDelete.remove(path)
209 elif modifier == "D":
210 filesToDelete.add(path)
211 if path in filesToAdd:
212 filesToAdd.remove(path)
213 else:
214 die("unknown modifier %s for %s" % (modifier, path))
215
Simon Hausmann51a26402007-04-15 09:59:56 +0200216 diffcmd = "git diff-tree -p --diff-filter=ACMRTUXB \"%s^\" \"%s\"" % (id, id)
217 patchcmd = diffcmd + " | patch -p1"
218
219 if os.system(patchcmd + " --dry-run --silent") != 0:
220 print "Unfortunately applying the change failed!"
221 print "What do you want to do?"
222 response = "x"
223 while response != "s" and response != "a" and response != "w":
224 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) ")
225 if response == "s":
226 print "Skipping! Good luck with the next patches..."
227 return
228 elif response == "a":
229 os.system(patchcmd)
230 if len(filesToAdd) > 0:
231 print "You may also want to call p4 add on the following files:"
232 print " ".join(filesToAdd)
233 if len(filesToDelete):
234 print "The following files should be scheduled for deletion with p4 delete:"
235 print " ".join(filesToDelete)
236 die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
237 elif response == "w":
238 system(diffcmd + " > patch.txt")
239 print "Patch saved to patch.txt in %s !" % self.clientPath
240 die("Please resolve and submit the conflict manually and continue afterwards with git-p4 submit --continue")
241
242 system(patchcmd)
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100243
244 for f in filesToAdd:
245 system("p4 add %s" % f)
246 for f in filesToDelete:
247 system("p4 revert %s" % f)
248 system("p4 delete %s" % f)
249
Simon Hausmann6ae8de82007-03-22 21:10:25 +0100250 logMessage = extractLogMessageFromGitCommit(id)
251 logMessage = logMessage.replace("\n", "\n\t")
252 logMessage = logMessage[:-1]
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100253
Simon Hausmanncaace112007-05-15 14:57:57 +0200254 template = mypopen("p4 change -o").read()
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100255
256 if self.interactive:
257 submitTemplate = self.prepareLogMessage(template, logMessage)
Simon Hausmanncaace112007-05-15 14:57:57 +0200258 diff = mypopen("p4 diff -du ...").read()
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100259
260 for newFile in filesToAdd:
261 diff += "==== new file ====\n"
262 diff += "--- /dev/null\n"
263 diff += "+++ %s\n" % newFile
264 f = open(newFile, "r")
265 for line in f.readlines():
266 diff += "+" + line
267 f.close()
268
Simon Hausmann25df95c2007-05-15 15:15:39 +0200269 separatorLine = "######## everything below this line is just the diff #######"
270 if platform.system() == "Windows":
271 separatorLine += "\r"
272 separatorLine += "\n"
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100273
274 response = "e"
Simon Hausmann53150252007-03-21 21:04:12 +0100275 firstIteration = True
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100276 while response == "e":
Simon Hausmann53150252007-03-21 21:04:12 +0100277 if not firstIteration:
Simon Hausmannd336c152007-05-16 09:41:26 +0200278 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
Simon Hausmann53150252007-03-21 21:04:12 +0100279 firstIteration = False
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100280 if response == "e":
281 [handle, fileName] = tempfile.mkstemp()
282 tmpFile = os.fdopen(handle, "w+")
Simon Hausmann53150252007-03-21 21:04:12 +0100283 tmpFile.write(submitTemplate + separatorLine + diff)
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100284 tmpFile.close()
Simon Hausmann25df95c2007-05-15 15:15:39 +0200285 defaultEditor = "vi"
286 if platform.system() == "Windows":
287 defaultEditor = "notepad"
288 editor = os.environ.get("EDITOR", defaultEditor);
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100289 system(editor + " " + fileName)
Simon Hausmann25df95c2007-05-15 15:15:39 +0200290 tmpFile = open(fileName, "rb")
Simon Hausmann53150252007-03-21 21:04:12 +0100291 message = tmpFile.read()
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100292 tmpFile.close()
293 os.remove(fileName)
Simon Hausmann53150252007-03-21 21:04:12 +0100294 submitTemplate = message[:message.index(separatorLine)]
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100295
296 if response == "y" or response == "yes":
297 if self.dryRun:
298 print submitTemplate
299 raw_input("Press return to continue...")
300 else:
Simon Hausmann25df95c2007-05-15 15:15:39 +0200301 pipe = os.popen("p4 submit -i", "wb")
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100302 pipe.write(submitTemplate)
303 pipe.close()
Simon Hausmannd336c152007-05-16 09:41:26 +0200304 elif response == "s":
305 for f in editedFiles:
306 system("p4 revert \"%s\"" % f);
307 for f in filesToAdd:
308 system("p4 revert \"%s\"" % f);
309 system("rm %s" %f)
310 for f in filesToDelete:
311 system("p4 delete \"%s\"" % f);
312 return
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100313 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):
Simon Hausmann95124972007-03-23 09:16:07 +0100324 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
Simon Hausmannc9b50e62007-03-29 19:15:24 +0200328
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
Simon Hausmann95124972007-03-23 09:16:07 +0100338 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
Simon Hausmann51a26402007-04-15 09:59:56 +0200348 self.clientPath = p4Where(depotPath)
Simon Hausmann95124972007-03-23 09:16:07 +0100349
Simon Hausmann51a26402007-04-15 09:59:56 +0200350 if len(self.clientPath) == 0:
Simon Hausmann95124972007-03-23 09:16:07 +0100351 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
352 sys.exit(128)
353
Simon Hausmann51a26402007-04-15 09:59:56 +0200354 print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
Simon Hausmann80b59102007-04-09 12:43:40 +0200355 oldWorkingDirectory = os.getcwd()
Simon Hausmann51a26402007-04-15 09:59:56 +0200356 os.chdir(self.clientPath)
357 response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
Simon Hausmann95124972007-03-23 09:16:07 +0100358 if response == "y" or response == "yes":
359 system("p4 sync ...")
360
361 if len(self.origin) == 0:
362 if gitBranchExists("p4"):
363 self.origin = "p4"
364 else:
365 self.origin = "origin"
366
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100367 if self.reset:
368 self.firstTime = True
369
370 if len(self.substFile) > 0:
371 for line in open(self.substFile, "r").readlines():
372 tokens = line[:-1].split("=")
373 self.logSubstitutions[tokens[0]] = tokens[1]
374
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100375 self.check()
376 self.configFile = gitdir + "/p4-git-sync.cfg"
377 self.config = shelve.open(self.configFile, writeback=True)
378
379 if self.firstTime:
380 self.start()
381
382 commits = self.config.get("commits", [])
383
384 while len(commits) > 0:
385 self.firstTime = False
386 commit = commits[0]
387 commits = commits[1:]
388 self.config["commits"] = commits
389 self.apply(commit)
390 if not self.interactive:
391 break
392
393 self.config.close()
394
395 if len(commits) == 0:
396 if self.firstTime:
397 print "No changes found to apply between %s and current HEAD" % self.origin
398 else:
399 print "All changes applied!"
Simon Hausmann5e80dd42007-04-14 16:09:43 +0200400 response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
Simon Hausmann80b59102007-04-09 12:43:40 +0200401 if response == "y" or response == "yes":
402 os.chdir(oldWorkingDirectory)
403 rebase = P4Rebase()
404 rebase.run([])
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100405 os.remove(self.configFile)
406
Simon Hausmannb9847332007-03-20 20:54:23 +0100407 return True
408
Simon Hausmann711544b2007-04-01 15:40:46 +0200409class P4Sync(Command):
Simon Hausmannb9847332007-03-20 20:54:23 +0100410 def __init__(self):
411 Command.__init__(self)
412 self.options = [
413 optparse.make_option("--branch", dest="branch"),
414 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
415 optparse.make_option("--changesfile", dest="changesFile"),
416 optparse.make_option("--silent", dest="silent", action="store_true"),
Simon Hausmannef48f902007-05-17 22:17:49 +0200417 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200418 optparse.make_option("--with-origin", dest="syncWithOrigin", action="store_true"),
419 optparse.make_option("--verbose", dest="verbose", action="store_true")
Simon Hausmannb9847332007-03-20 20:54:23 +0100420 ]
421 self.description = """Imports from Perforce into a git repository.\n
422 example:
423 //depot/my/project/ -- to import the current head
424 //depot/my/project/@all -- to import everything
425 //depot/my/project/@1,6 -- to import only from revision 1 to 6
426
427 (a ... is not needed in the path p4 specification, it's added implicitly)"""
428
429 self.usage += " //depot/path[@revRange]"
430
Simon Hausmannb9847332007-03-20 20:54:23 +0100431 self.silent = False
Simon Hausmannb9847332007-03-20 20:54:23 +0100432 self.createdBranches = Set()
433 self.committedChanges = Set()
Simon Hausmann569d1bd2007-03-22 21:34:16 +0100434 self.branch = ""
Simon Hausmannb9847332007-03-20 20:54:23 +0100435 self.detectBranches = False
Simon Hausmanncb53e1f2007-04-08 00:12:02 +0200436 self.detectLabels = False
Simon Hausmannb9847332007-03-20 20:54:23 +0100437 self.changesFile = ""
Simon Hausmannef48f902007-05-17 22:17:49 +0200438 self.syncWithOrigin = False
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200439 self.verbose = False
Simon Hausmannb9847332007-03-20 20:54:23 +0100440
441 def p4File(self, depotPath):
442 return os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
443
444 def extractFilesFromCommit(self, commit):
445 files = []
446 fnum = 0
447 while commit.has_key("depotFile%s" % fnum):
448 path = commit["depotFile%s" % fnum]
Simon Hausmann8f872532007-05-01 23:23:00 +0200449 if not path.startswith(self.depotPath):
Simon Hausmannb9847332007-03-20 20:54:23 +0100450 # if not self.silent:
Simon Hausmann8f872532007-05-01 23:23:00 +0200451 # print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, self.depotPath, change)
Simon Hausmannb9847332007-03-20 20:54:23 +0100452 fnum = fnum + 1
453 continue
454
455 file = {}
456 file["path"] = path
457 file["rev"] = commit["rev%s" % fnum]
458 file["action"] = commit["action%s" % fnum]
459 file["type"] = commit["type%s" % fnum]
460 files.append(file)
461 fnum = fnum + 1
462 return files
463
Simon Hausmannb9847332007-03-20 20:54:23 +0100464 def branchesForCommit(self, files):
465 branches = Set()
466
467 for file in files:
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200468 path = file["path"][len(self.depotPath):]
Simon Hausmannb9847332007-03-20 20:54:23 +0100469
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200470 for branch in self.knownBranches.keys():
471 if path.startswith(branch):
472 branches.add(branch)
Simon Hausmannb9847332007-03-20 20:54:23 +0100473
474 return branches
475
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200476 def commit(self, details, files, branch, branchPrefix, parent = ""):
Simon Hausmannb9847332007-03-20 20:54:23 +0100477 epoch = details["time"]
478 author = details["user"]
479
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200480 if self.verbose:
481 print "commit into %s" % branch
482
Simon Hausmannb9847332007-03-20 20:54:23 +0100483 self.gitStream.write("commit %s\n" % branch)
484 # gitStream.write("mark :%s\n" % details["change"])
485 self.committedChanges.add(int(details["change"]))
486 committer = ""
487 if author in self.users:
Simon Hausmann0828ab12007-03-20 20:59:30 +0100488 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
Simon Hausmannb9847332007-03-20 20:54:23 +0100489 else:
Simon Hausmann0828ab12007-03-20 20:59:30 +0100490 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
Simon Hausmannb9847332007-03-20 20:54:23 +0100491
492 self.gitStream.write("committer %s\n" % committer)
493
494 self.gitStream.write("data <<EOT\n")
495 self.gitStream.write(details["desc"])
Simon Hausmann6ae8de82007-03-22 21:10:25 +0100496 self.gitStream.write("\n[git-p4: depot-path = \"%s\": change = %s]\n" % (branchPrefix, details["change"]))
Simon Hausmannb9847332007-03-20 20:54:23 +0100497 self.gitStream.write("EOT\n\n")
498
499 if len(parent) > 0:
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200500 if self.verbose:
501 print "parent %s" % parent
Simon Hausmannb9847332007-03-20 20:54:23 +0100502 self.gitStream.write("from %s\n" % parent)
503
Simon Hausmannb9847332007-03-20 20:54:23 +0100504 for file in files:
505 path = file["path"]
506 if not path.startswith(branchPrefix):
507 # if not silent:
508 # print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, details["change"])
509 continue
510 rev = file["rev"]
511 depotPath = path + "#" + rev
512 relPath = path[len(branchPrefix):]
513 action = file["action"]
514
515 if file["type"] == "apple":
516 print "\nfile %s is a strange apple file that forks. Ignoring!" % path
517 continue
518
519 if action == "delete":
520 self.gitStream.write("D %s\n" % relPath)
521 else:
522 mode = 644
523 if file["type"].startswith("x"):
524 mode = 755
525
526 data = self.p4File(depotPath)
527
528 self.gitStream.write("M %s inline %s\n" % (mode, relPath))
529 self.gitStream.write("data %s\n" % len(data))
530 self.gitStream.write(data)
531 self.gitStream.write("\n")
532
533 self.gitStream.write("\n")
534
Simon Hausmann1f4ba1c2007-03-26 22:34:34 +0200535 change = int(details["change"])
536
537 self.lastChange = change
538
539 if change in self.labels:
540 label = self.labels[change]
541 labelDetails = label[0]
542 labelRevisions = label[1]
543
544 files = p4CmdList("files %s...@%s" % (branchPrefix, change))
545
546 if len(files) == len(labelRevisions):
547
548 cleanedFiles = {}
549 for info in files:
550 if info["action"] == "delete":
551 continue
552 cleanedFiles[info["depotFile"]] = info["rev"]
553
554 if cleanedFiles == labelRevisions:
555 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
556 self.gitStream.write("from %s\n" % branch)
557
558 owner = labelDetails["Owner"]
559 tagger = ""
560 if author in self.users:
561 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
562 else:
563 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
564 self.gitStream.write("tagger %s\n" % tagger)
565 self.gitStream.write("data <<EOT\n")
566 self.gitStream.write(labelDetails["Description"])
567 self.gitStream.write("EOT\n\n")
568
569 else:
Simon Hausmanna46668f2007-03-28 17:05:38 +0200570 if not self.silent:
Simon Hausmann1f4ba1c2007-03-26 22:34:34 +0200571 print "Tag %s does not match with change %s: files do not match." % (labelDetails["label"], change)
572
573 else:
Simon Hausmanna46668f2007-03-28 17:05:38 +0200574 if not self.silent:
Simon Hausmann1f4ba1c2007-03-26 22:34:34 +0200575 print "Tag %s does not match with change %s: file count is different." % (labelDetails["label"], change)
Simon Hausmannb9847332007-03-20 20:54:23 +0100576
577 def extractFilesInCommitToBranch(self, files, branchPrefix):
578 newFiles = []
579
580 for file in files:
581 path = file["path"]
582 if path.startswith(branchPrefix):
583 newFiles.append(file)
584
585 return newFiles
586
Simon Hausmannb9847332007-03-20 20:54:23 +0100587 def getUserMap(self):
588 self.users = {}
589
590 for output in p4CmdList("users"):
591 if not output.has_key("User"):
592 continue
593 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
594
Simon Hausmann1f4ba1c2007-03-26 22:34:34 +0200595 def getLabels(self):
596 self.labels = {}
597
Simon Hausmann8f872532007-05-01 23:23:00 +0200598 l = p4CmdList("labels %s..." % self.depotPath)
Simon Hausmann10c32112007-04-08 10:15:47 +0200599 if len(l) > 0 and not self.silent:
Simon Hausmann8f872532007-05-01 23:23:00 +0200600 print "Finding files belonging to labels in %s" % self.depotPath
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200601
602 for output in l:
Simon Hausmann1f4ba1c2007-03-26 22:34:34 +0200603 label = output["label"]
604 revisions = {}
605 newestChange = 0
606 for file in p4CmdList("files //...@%s" % label):
607 revisions[file["depotFile"]] = file["rev"]
608 change = int(file["change"])
609 if change > newestChange:
610 newestChange = change
611
612 self.labels[newestChange] = [output, revisions]
613
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200614 def getBranchMapping(self):
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200615 self.projectName = self.depotPath[self.depotPath[:-1].rfind("/") + 1:]
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200616
617 for info in p4CmdList("branches"):
618 details = p4Cmd("branch -o %s" % info["branch"])
619 viewIdx = 0
620 while details.has_key("View%s" % viewIdx):
621 paths = details["View%s" % viewIdx].split(" ")
622 viewIdx = viewIdx + 1
623 # require standard //depot/foo/... //depot/bar/... mapping
624 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
625 continue
626 source = paths[0]
627 destination = paths[1]
628 if source.startswith(self.depotPath) and destination.startswith(self.depotPath):
629 source = source[len(self.depotPath):-4]
630 destination = destination[len(self.depotPath):-4]
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200631 if destination not in self.knownBranches:
632 self.knownBranches[destination] = source
633 if source not in self.knownBranches:
634 self.knownBranches[source] = source
635
636 def listExistingP4GitBranches(self):
637 self.p4BranchesInGit = []
638
639 for line in mypopen("git rev-parse --symbolic --remotes").readlines():
640 if line.startswith("p4/") and line != "p4/HEAD\n":
641 branch = line[3:-1]
642 self.p4BranchesInGit.append(branch)
643 self.initialParents["refs/remotes/p4/" + branch] = parseRevision(line[:-1])
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200644
Simon Hausmannb9847332007-03-20 20:54:23 +0100645 def run(self, args):
Simon Hausmann8f872532007-05-01 23:23:00 +0200646 self.depotPath = ""
Simon Hausmann179caeb2007-03-22 22:17:42 +0100647 self.changeRange = ""
648 self.initialParent = ""
Simon Hausmanncd6cc0d2007-05-15 16:15:26 +0200649 self.previousDepotPath = ""
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200650 # map from branch depot path to parent branch
651 self.knownBranches = {}
652 self.initialParents = {}
Simon Hausmann179caeb2007-03-22 22:17:42 +0100653
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200654 self.listExistingP4GitBranches()
655
656 if self.syncWithOrigin and gitBranchExists("origin") and gitBranchExists("refs/remotes/p4/master") and not self.detectBranches:
657 ### needs to be ported to multi branch import
658
Simon Hausmannef48f902007-05-17 22:17:49 +0200659 print "Syncing with origin first as requested by calling git fetch origin"
660 system("git fetch origin")
661 [originPreviousDepotPath, originP4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("origin"))
662 [p4PreviousDepotPath, p4Change] = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("p4"))
663 if len(originPreviousDepotPath) > 0 and len(originP4Change) > 0 and len(p4Change) > 0:
664 if originPreviousDepotPath == p4PreviousDepotPath:
665 originP4Change = int(originP4Change)
666 p4Change = int(p4Change)
667 if originP4Change > p4Change:
668 print "origin (%s) is newer than p4 (%s). Updating p4 branch from origin." % (originP4Change, p4Change)
669 system("git update-ref refs/remotes/p4/master origin");
670 else:
671 print "Cannot sync with origin. It was imported from %s while remotes/p4 was imported from %s" % (originPreviousDepotPath, p4PreviousDepotPath)
672
Simon Hausmann569d1bd2007-03-22 21:34:16 +0100673 if len(self.branch) == 0:
Simon Hausmann48df6fd2007-05-17 21:18:53 +0200674 self.branch = "refs/remotes/p4/master"
Simon Hausmannc6d44cb2007-05-17 20:57:05 +0200675 if gitBranchExists("refs/heads/p4"):
Simon Hausmann48df6fd2007-05-17 21:18:53 +0200676 system("git update-ref %s refs/heads/p4" % self.branch)
Simon Hausmann48df6fd2007-05-17 21:18:53 +0200677 system("git branch -D p4");
Simon Hausmann05094f92007-05-18 20:32:35 +0200678 if not gitBranchExists("refs/remotes/p4/HEAD"):
679 system("git symbolic-ref refs/remotes/p4/HEAD %s" % self.branch)
Simon Hausmann179caeb2007-03-22 22:17:42 +0100680
Simon Hausmann967f72e2007-03-23 09:30:41 +0100681 if len(args) == 0:
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200682 if not gitBranchExists(self.branch) and gitBranchExists("origin") and not self.detectBranches:
683 ### needs to be ported to multi branch import
Simon Hausmann967f72e2007-03-23 09:30:41 +0100684 if not self.silent:
685 print "Creating %s branch in git repository based on origin" % self.branch
Simon Hausmann8ead4fd2007-05-17 20:26:58 +0200686 branch = self.branch
687 if not branch.startswith("refs"):
688 branch = "refs/heads/" + branch
689 system("git update-ref %s origin" % branch)
Simon Hausmann967f72e2007-03-23 09:30:41 +0100690
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200691 if self.verbose:
692 print "branches: %s" % self.p4BranchesInGit
693
694 p4Change = 0
695 for branch in self.p4BranchesInGit:
696 depotPath, change = extractDepotPathAndChangeFromGitLog(extractLogMessageFromGitCommit("refs/remotes/p4/" + branch))
697
698 if self.verbose:
699 print "path %s change %s" % (depotPath, change)
700
701 if len(depotPath) > 0 and len(change) > 0:
702 change = int(change) + 1
703 p4Change = max(p4Change, change)
704
705 if len(self.previousDepotPath) == 0:
706 self.previousDepotPath = depotPath
707 else:
708 i = 0
709 l = min(len(self.previousDepotPath), len(depotPath))
710 while i < l and self.previousDepotPath[i] == depotPath[i]:
711 i = i + 1
712 self.previousDepotPath = self.previousDepotPath[:i]
713
714 if p4Change > 0:
Simon Hausmann8f872532007-05-01 23:23:00 +0200715 self.depotPath = self.previousDepotPath
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200716 #self.changeRange = "@%s,#head" % p4Change
717 self.changeRange = "@%s,%s" % (p4Change, p4Change + 10)
Simon Hausmann463e8af2007-05-17 09:13:54 +0200718 self.initialParent = parseRevision(self.branch)
Simon Hausmann967f72e2007-03-23 09:30:41 +0100719 if not self.silent:
720 print "Performing incremental import into %s git branch" % self.branch
Simon Hausmann569d1bd2007-03-22 21:34:16 +0100721
Simon Hausmannf9162f62007-05-17 09:02:45 +0200722 if not self.branch.startswith("refs/"):
723 self.branch = "refs/heads/" + self.branch
Simon Hausmann179caeb2007-03-22 22:17:42 +0100724
Simon Hausmann8f872532007-05-01 23:23:00 +0200725 if len(self.depotPath) != 0:
726 self.depotPath = self.depotPath[:-1]
Simon Hausmannb9847332007-03-20 20:54:23 +0100727
Simon Hausmann8f872532007-05-01 23:23:00 +0200728 if len(args) == 0 and len(self.depotPath) != 0:
Simon Hausmannb9847332007-03-20 20:54:23 +0100729 if not self.silent:
Simon Hausmann8f872532007-05-01 23:23:00 +0200730 print "Depot path: %s" % self.depotPath
Simon Hausmannb9847332007-03-20 20:54:23 +0100731 elif len(args) != 1:
732 return False
733 else:
Simon Hausmann8f872532007-05-01 23:23:00 +0200734 if len(self.depotPath) != 0 and self.depotPath != args[0]:
735 print "previous import used depot path %s and now %s was specified. this doesn't work!" % (self.depotPath, args[0])
Simon Hausmannb9847332007-03-20 20:54:23 +0100736 sys.exit(1)
Simon Hausmann8f872532007-05-01 23:23:00 +0200737 self.depotPath = args[0]
Simon Hausmannb9847332007-03-20 20:54:23 +0100738
Simon Hausmannb9847332007-03-20 20:54:23 +0100739 self.revision = ""
740 self.users = {}
Simon Hausmannb9847332007-03-20 20:54:23 +0100741 self.lastChange = 0
Simon Hausmannb9847332007-03-20 20:54:23 +0100742
Simon Hausmann8f872532007-05-01 23:23:00 +0200743 if self.depotPath.find("@") != -1:
744 atIdx = self.depotPath.index("@")
745 self.changeRange = self.depotPath[atIdx:]
Simon Hausmannb9847332007-03-20 20:54:23 +0100746 if self.changeRange == "@all":
747 self.changeRange = ""
748 elif self.changeRange.find(",") == -1:
749 self.revision = self.changeRange
750 self.changeRange = ""
Simon Hausmann8f872532007-05-01 23:23:00 +0200751 self.depotPath = self.depotPath[0:atIdx]
752 elif self.depotPath.find("#") != -1:
753 hashIdx = self.depotPath.index("#")
754 self.revision = self.depotPath[hashIdx:]
755 self.depotPath = self.depotPath[0:hashIdx]
Simon Hausmannb9847332007-03-20 20:54:23 +0100756 elif len(self.previousDepotPath) == 0:
757 self.revision = "#head"
758
Simon Hausmann8f872532007-05-01 23:23:00 +0200759 if self.depotPath.endswith("..."):
760 self.depotPath = self.depotPath[:-3]
Simon Hausmannb9847332007-03-20 20:54:23 +0100761
Simon Hausmann8f872532007-05-01 23:23:00 +0200762 if not self.depotPath.endswith("/"):
763 self.depotPath += "/"
Simon Hausmannb9847332007-03-20 20:54:23 +0100764
765 self.getUserMap()
Simon Hausmanncb53e1f2007-04-08 00:12:02 +0200766 self.labels = {}
767 if self.detectLabels:
768 self.getLabels();
Simon Hausmannb9847332007-03-20 20:54:23 +0100769
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200770 if self.detectBranches:
771 self.getBranchMapping();
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200772 if self.verbose:
773 print "p4-git branches: %s" % self.p4BranchesInGit
774 print "initial parents: %s" % self.initialParents
775 for b in self.p4BranchesInGit:
776 if b != "master":
777 b = b[len(self.projectName):]
778 self.createdBranches.add(b)
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200779
Simon Hausmannf291b4e2007-04-14 11:21:50 +0200780 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
Simon Hausmannb9847332007-03-20 20:54:23 +0100781
Simon Hausmann08483582007-05-15 14:31:06 +0200782 importProcess = subprocess.Popen(["git", "fast-import"], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE);
783 self.gitOutput = importProcess.stdout
784 self.gitStream = importProcess.stdin
785 self.gitError = importProcess.stderr
Simon Hausmannb9847332007-03-20 20:54:23 +0100786
787 if len(self.revision) > 0:
Simon Hausmann8f872532007-05-01 23:23:00 +0200788 print "Doing initial import of %s from revision %s" % (self.depotPath, self.revision)
Simon Hausmannb9847332007-03-20 20:54:23 +0100789
790 details = { "user" : "git perforce import user", "time" : int(time.time()) }
Simon Hausmann8f872532007-05-01 23:23:00 +0200791 details["desc"] = "Initial import of %s from the state at revision %s" % (self.depotPath, self.revision)
Simon Hausmannb9847332007-03-20 20:54:23 +0100792 details["change"] = self.revision
793 newestRevision = 0
794
795 fileCnt = 0
Simon Hausmann8f872532007-05-01 23:23:00 +0200796 for info in p4CmdList("files %s...%s" % (self.depotPath, self.revision)):
Simon Hausmannb9847332007-03-20 20:54:23 +0100797 change = int(info["change"])
798 if change > newestRevision:
799 newestRevision = change
800
801 if info["action"] == "delete":
Simon Hausmannc45b1cf2007-04-08 10:13:32 +0200802 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
803 #fileCnt = fileCnt + 1
Simon Hausmannb9847332007-03-20 20:54:23 +0100804 continue
805
806 for prop in [ "depotFile", "rev", "action", "type" ]:
807 details["%s%s" % (prop, fileCnt)] = info[prop]
808
809 fileCnt = fileCnt + 1
810
811 details["change"] = newestRevision
812
813 try:
Simon Hausmann8f872532007-05-01 23:23:00 +0200814 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPath)
Simon Hausmannc7157062007-03-20 21:13:49 +0100815 except IOError:
Simon Hausmannfd4ca862007-04-13 22:21:10 +0200816 print "IO error with git fast-import. Is your git version recent enough?"
Simon Hausmannb9847332007-03-20 20:54:23 +0100817 print self.gitError.read()
818
819 else:
820 changes = []
821
Simon Hausmann0828ab12007-03-20 20:59:30 +0100822 if len(self.changesFile) > 0:
Simon Hausmannb9847332007-03-20 20:54:23 +0100823 output = open(self.changesFile).readlines()
824 changeSet = Set()
825 for line in output:
826 changeSet.add(int(line))
827
828 for change in changeSet:
829 changes.append(change)
830
831 changes.sort()
832 else:
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200833 if self.verbose:
834 print "Getting p4 changes for %s...%s" % (self.depotPath, self.changeRange)
Simon Hausmanncaace112007-05-15 14:57:57 +0200835 output = mypopen("p4 changes %s...%s" % (self.depotPath, self.changeRange)).readlines()
Simon Hausmannb9847332007-03-20 20:54:23 +0100836
837 for line in output:
838 changeNum = line.split(" ")[1]
839 changes.append(changeNum)
840
841 changes.reverse()
842
843 if len(changes) == 0:
Simon Hausmann0828ab12007-03-20 20:59:30 +0100844 if not self.silent:
Simon Hausmannb9847332007-03-20 20:54:23 +0100845 print "no changes to import!"
Simon Hausmann1f52af62007-04-08 00:07:02 +0200846 return True
Simon Hausmannb9847332007-03-20 20:54:23 +0100847
848 cnt = 1
849 for change in changes:
850 description = p4Cmd("describe %s" % change)
851
Simon Hausmann0828ab12007-03-20 20:59:30 +0100852 if not self.silent:
Simon Hausmannb9847332007-03-20 20:54:23 +0100853 sys.stdout.write("\rimporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
854 sys.stdout.flush()
855 cnt = cnt + 1
856
857 try:
858 files = self.extractFilesFromCommit(description)
859 if self.detectBranches:
860 for branch in self.branchesForCommit(files):
Simon Hausmann8f872532007-05-01 23:23:00 +0200861 branchPrefix = self.depotPath + branch + "/"
Simon Hausmannb9847332007-03-20 20:54:23 +0100862
Simon Hausmannb9847332007-03-20 20:54:23 +0100863 parent = ""
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200864
865 filesForCommit = self.extractFilesInCommitToBranch(files, branch)
866
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200867 if self.verbose:
868 print "branch is %s" % branch
869
Simon Hausmann8f9b2e02007-05-18 22:13:26 +0200870 if branch not in self.createdBranches:
Simon Hausmannb9847332007-03-20 20:54:23 +0100871 self.createdBranches.add(branch)
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200872 parent = self.knownBranches[branch]
Simon Hausmannb9847332007-03-20 20:54:23 +0100873 if parent == branch:
874 parent = ""
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200875 elif self.verbose:
876 print "parent determined through known branches: %s" % parent
Simon Hausmannb9847332007-03-20 20:54:23 +0100877
Simon Hausmann8f9b2e02007-05-18 22:13:26 +0200878 # main branch? use master
879 if branch == "main":
880 branch = "master"
881 else:
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200882 branch = self.projectName + branch
Simon Hausmann8f9b2e02007-05-18 22:13:26 +0200883
884 if parent == "main":
885 parent = "master"
886 elif len(parent) > 0:
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200887 parent = self.projectName + parent
Simon Hausmann8f9b2e02007-05-18 22:13:26 +0200888
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200889 branch = "refs/remotes/p4/" + branch
Simon Hausmannb9847332007-03-20 20:54:23 +0100890 if len(parent) > 0:
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200891 parent = "refs/remotes/p4/" + parent
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200892
893 if self.verbose:
894 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
895
896 if len(parent) == 0 and branch in self.initialParents:
897 parent = self.initialParents[branch]
898 del self.initialParents[branch]
899
Simon Hausmann4b97ffb2007-05-18 21:45:23 +0200900 self.commit(description, files, branch, branchPrefix, parent)
Simon Hausmannb9847332007-03-20 20:54:23 +0100901 else:
Simon Hausmann8f872532007-05-01 23:23:00 +0200902 self.commit(description, files, self.branch, self.depotPath, self.initialParent)
Simon Hausmannb9847332007-03-20 20:54:23 +0100903 self.initialParent = ""
904 except IOError:
905 print self.gitError.read()
906 sys.exit(1)
907
908 if not self.silent:
909 print ""
910
Simon Hausmannb9847332007-03-20 20:54:23 +0100911
912 self.gitStream.close()
Simon Hausmann29bdbac2007-05-19 10:23:12 +0200913 if importProcess.wait() != 0:
914 die("fast-import failed: %s" % self.gitError.read())
Simon Hausmannb9847332007-03-20 20:54:23 +0100915 self.gitOutput.close()
916 self.gitError.close()
917
Simon Hausmannb9847332007-03-20 20:54:23 +0100918 return True
919
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200920class P4Rebase(Command):
921 def __init__(self):
922 Command.__init__(self)
Simon Hausmannef48f902007-05-17 22:17:49 +0200923 self.options = [ optparse.make_option("--with-origin", dest="syncWithOrigin", action="store_true") ]
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200924 self.description = "Fetches the latest revision from perforce and rebases the current work (branch) against it"
Simon Hausmannef48f902007-05-17 22:17:49 +0200925 self.syncWithOrigin = False
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200926
927 def run(self, args):
928 sync = P4Sync()
Simon Hausmannef48f902007-05-17 22:17:49 +0200929 sync.syncWithOrigin = self.syncWithOrigin
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200930 sync.run([])
931 print "Rebasing the current branch"
Simon Hausmanncaace112007-05-15 14:57:57 +0200932 oldHead = mypopen("git rev-parse HEAD").read()[:-1]
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200933 system("git rebase p4")
Simon Hausmann1f52af62007-04-08 00:07:02 +0200934 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
Simon Hausmann01ce1fe2007-04-07 23:46:50 +0200935 return True
936
Simon Hausmannf9a3a4f2007-04-08 10:08:26 +0200937class P4Clone(P4Sync):
938 def __init__(self):
939 P4Sync.__init__(self)
940 self.description = "Creates a new git repository and imports from Perforce into it"
941 self.usage = "usage: %prog [options] //depot/path[@revRange] [directory]"
942 self.needsGit = False
Simon Hausmannf9a3a4f2007-04-08 10:08:26 +0200943
944 def run(self, args):
945 if len(args) < 1:
946 return False
947 depotPath = args[0]
948 dir = ""
949 if len(args) == 2:
950 dir = args[1]
951 elif len(args) > 2:
952 return False
953
954 if not depotPath.startswith("//"):
955 return False
956
957 if len(dir) == 0:
958 dir = depotPath
959 atPos = dir.rfind("@")
960 if atPos != -1:
961 dir = dir[0:atPos]
962 hashPos = dir.rfind("#")
963 if hashPos != -1:
964 dir = dir[0:hashPos]
965
966 if dir.endswith("..."):
967 dir = dir[:-3]
968
969 if dir.endswith("/"):
970 dir = dir[:-1]
971
972 slashPos = dir.rfind("/")
973 if slashPos != -1:
974 dir = dir[slashPos + 1:]
975
976 print "Importing from %s into %s" % (depotPath, dir)
977 os.makedirs(dir)
978 os.chdir(dir)
979 system("git init")
980 if not P4Sync.run(self, [depotPath]):
981 return False
Simon Hausmannf9a3a4f2007-04-08 10:08:26 +0200982 if self.branch != "master":
Simon Hausmann8f9b2e02007-05-18 22:13:26 +0200983 if gitBranchExists("refs/remotes/p4/master"):
984 system("git branch master refs/remotes/p4/master")
985 system("git checkout -f")
986 else:
987 print "Could not detect main branch. No checkout/master branch created."
Simon Hausmannf9a3a4f2007-04-08 10:08:26 +0200988 return True
989
Simon Hausmannb9847332007-03-20 20:54:23 +0100990class HelpFormatter(optparse.IndentedHelpFormatter):
991 def __init__(self):
992 optparse.IndentedHelpFormatter.__init__(self)
993
994 def format_description(self, description):
995 if description:
996 return description + "\n"
997 else:
998 return ""
Simon Hausmann4f5cf762007-03-19 22:25:17 +0100999
Simon Hausmann86949ee2007-03-19 20:59:12 +01001000def printUsage(commands):
1001 print "usage: %s <command> [options]" % sys.argv[0]
1002 print ""
1003 print "valid commands: %s" % ", ".join(commands)
1004 print ""
1005 print "Try %s <command> --help for command specific help." % sys.argv[0]
1006 print ""
1007
1008commands = {
1009 "debug" : P4Debug(),
Simon Hausmann711544b2007-04-01 15:40:46 +02001010 "submit" : P4Submit(),
Simon Hausmann01ce1fe2007-04-07 23:46:50 +02001011 "sync" : P4Sync(),
Simon Hausmannf9a3a4f2007-04-08 10:08:26 +02001012 "rebase" : P4Rebase(),
1013 "clone" : P4Clone()
Simon Hausmann86949ee2007-03-19 20:59:12 +01001014}
1015
1016if len(sys.argv[1:]) == 0:
1017 printUsage(commands.keys())
1018 sys.exit(2)
1019
1020cmd = ""
1021cmdName = sys.argv[1]
1022try:
1023 cmd = commands[cmdName]
1024except KeyError:
1025 print "unknown command %s" % cmdName
1026 print ""
1027 printUsage(commands.keys())
1028 sys.exit(2)
1029
Simon Hausmann4f5cf762007-03-19 22:25:17 +01001030options = cmd.options
1031cmd.gitdir = gitdir
Simon Hausmann4f5cf762007-03-19 22:25:17 +01001032
Simon Hausmanne20a9e52007-03-26 00:13:51 +02001033args = sys.argv[2:]
Simon Hausmann86949ee2007-03-19 20:59:12 +01001034
Simon Hausmanne20a9e52007-03-26 00:13:51 +02001035if len(options) > 0:
1036 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1037
1038 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1039 options,
1040 description = cmd.description,
1041 formatter = HelpFormatter())
1042
1043 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
Simon Hausmann86949ee2007-03-19 20:59:12 +01001044
Simon Hausmann8910ac02007-03-26 08:18:55 +02001045if cmd.needsGit:
1046 gitdir = cmd.gitdir
1047 if len(gitdir) == 0:
1048 gitdir = ".git"
1049 if not isValidGitDir(gitdir):
Simon Hausmann81f23732007-05-15 23:06:43 +02001050 gitdir = mypopen("git rev-parse --git-dir").read()[:-1]
Simon Hausmanndc1a93b2007-05-16 12:12:39 +02001051 if os.path.exists(gitdir):
Simon Hausmann5c4153e2007-05-17 07:42:38 +02001052 cdup = mypopen("git rev-parse --show-cdup").read()[:-1];
1053 if len(cdup) > 0:
1054 os.chdir(cdup);
Simon Hausmann8910ac02007-03-26 08:18:55 +02001055
Simon Hausmann20618652007-03-21 13:05:30 +01001056 if not isValidGitDir(gitdir):
Simon Hausmann8910ac02007-03-26 08:18:55 +02001057 if isValidGitDir(gitdir + "/.git"):
1058 gitdir += "/.git"
1059 else:
1060 die("fatal: cannot locate git repository at %s" % gitdir)
Simon Hausmann4f5cf762007-03-19 22:25:17 +01001061
Simon Hausmann8910ac02007-03-26 08:18:55 +02001062 os.environ["GIT_DIR"] = gitdir
Simon Hausmann4f5cf762007-03-19 22:25:17 +01001063
Simon Hausmannb9847332007-03-20 20:54:23 +01001064if not cmd.run(args):
1065 parser.print_help()
1066