]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/fast-import/git-p4
Write out the options tag in the log message of imports only if we actually have
[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#
c8cbbee9
SH
5# Author: Simon Hausmann <simon@lst.de>
6# Copyright: 2007 Simon Hausmann <simon@lst.de>
83dce55a 7# 2007 Trolltech ASA
86949eef
SH
8# License: MIT <http://www.opensource.org/licenses/mit-license.php>
9#
10
08483580 11import optparse, sys, os, marshal, popen2, subprocess, shelve
25df95cc 12import tempfile, getopt, sha, os.path, time, platform
ce6f33c8 13import re
8b41a97f 14
b984733c 15from sets import Set;
4f5cf76a 16
4addad22 17verbose = False
86949eef 18
86dff6b6
HWN
19def die(msg):
20 if verbose:
21 raise Exception(msg)
22 else:
23 sys.stderr.write(msg + "\n")
24 sys.exit(1)
25
bce4c5fc 26def write_pipe(c, str):
4addad22 27 if verbose:
86dff6b6 28 sys.stderr.write('Writing pipe: %s\n' % c)
b016d397 29
bce4c5fc 30 pipe = os.popen(c, 'w')
b016d397 31 val = pipe.write(str)
bce4c5fc 32 if pipe.close():
86dff6b6 33 die('Command failed: %s' % c)
b016d397
HWN
34
35 return val
36
4addad22
HWN
37def read_pipe(c, ignore_error=False):
38 if verbose:
86dff6b6 39 sys.stderr.write('Reading pipe: %s\n' % c)
8b41a97f 40
bce4c5fc 41 pipe = os.popen(c, 'rb')
b016d397 42 val = pipe.read()
4addad22 43 if pipe.close() and not ignore_error:
86dff6b6 44 die('Command failed: %s' % c)
b016d397
HWN
45
46 return val
47
48
bce4c5fc 49def read_pipe_lines(c):
4addad22 50 if verbose:
86dff6b6 51 sys.stderr.write('Reading pipe: %s\n' % c)
b016d397 52 ## todo: check return status
bce4c5fc 53 pipe = os.popen(c, 'rb')
b016d397 54 val = pipe.readlines()
bce4c5fc 55 if pipe.close():
86dff6b6 56 die('Command failed: %s' % c)
b016d397
HWN
57
58 return val
caace111 59
6754a299 60def system(cmd):
4addad22 61 if verbose:
bb6e09b2 62 sys.stderr.write("executing %s\n" % cmd)
6754a299
HWN
63 if os.system(cmd) != 0:
64 die("command failed: %s" % cmd)
65
86949eef
SH
66def p4CmdList(cmd):
67 cmd = "p4 -G %s" % cmd
6a49f8e2
HWN
68 if verbose:
69 sys.stderr.write("Opening pipe: %s\n" % cmd)
86949eef
SH
70 pipe = os.popen(cmd, "rb")
71
72 result = []
73 try:
74 while True:
75 entry = marshal.load(pipe)
76 result.append(entry)
77 except EOFError:
78 pass
a6d5da36
SH
79 exitCode = pipe.close()
80 if exitCode != None:
ac3e0d79
SH
81 entry = {}
82 entry["p4ExitCode"] = exitCode
83 result.append(entry)
86949eef
SH
84
85 return result
86
87def p4Cmd(cmd):
88 list = p4CmdList(cmd)
89 result = {}
90 for entry in list:
91 result.update(entry)
92 return result;
93
cb2c9db5
SH
94def p4Where(depotPath):
95 if not depotPath.endswith("/"):
96 depotPath += "/"
97 output = p4Cmd("where %s..." % depotPath)
dc524036
SH
98 if output["code"] == "error":
99 return ""
cb2c9db5
SH
100 clientPath = ""
101 if "path" in output:
102 clientPath = output.get("path")
103 elif "data" in output:
104 data = output.get("data")
105 lastSpace = data.rfind(" ")
106 clientPath = data[lastSpace + 1:]
107
108 if clientPath.endswith("..."):
109 clientPath = clientPath[:-3]
110 return clientPath
111
86949eef 112def currentGitBranch():
b25b2065 113 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
86949eef 114
4f5cf76a 115def isValidGitDir(path):
bb6e09b2
HWN
116 if (os.path.exists(path + "/HEAD")
117 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
4f5cf76a
SH
118 return True;
119 return False
120
463e8af6 121def parseRevision(ref):
b25b2065 122 return read_pipe("git rev-parse %s" % ref).strip()
463e8af6 123
6ae8de88
SH
124def extractLogMessageFromGitCommit(commit):
125 logMessage = ""
b016d397
HWN
126
127 ## fixme: title is first line of commit, not 1st paragraph.
6ae8de88 128 foundTitle = False
b016d397 129 for log in read_pipe_lines("git cat-file commit %s" % commit):
6ae8de88
SH
130 if not foundTitle:
131 if len(log) == 1:
1c094184 132 foundTitle = True
6ae8de88
SH
133 continue
134
135 logMessage += log
136 return logMessage
137
bb6e09b2 138def extractSettingsGitLog(log):
6ae8de88
SH
139 values = {}
140 for line in log.split("\n"):
141 line = line.strip()
6326aa58
HWN
142 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
143 if not m:
144 continue
145
146 assignments = m.group(1).split (':')
147 for a in assignments:
148 vals = a.split ('=')
149 key = vals[0].strip()
150 val = ('='.join (vals[1:])).strip()
151 if val.endswith ('\"') and val.startswith('"'):
152 val = val[1:-1]
153
154 values[key] = val
155
845b42cb
SH
156 paths = values.get("depot-paths")
157 if not paths:
158 paths = values.get("depot-path")
a3fdd579
SH
159 if paths:
160 values['depot-paths'] = paths.split(',')
bb6e09b2 161 return values
6ae8de88 162
8136a639 163def gitBranchExists(branch):
bb6e09b2
HWN
164 proc = subprocess.Popen(["git", "rev-parse", branch],
165 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
caace111 166 return proc.wait() == 0;
8136a639 167
01265103 168def gitConfig(key):
4addad22 169 return read_pipe("git config %s" % key, ignore_error=True).strip()
01265103 170
b984733c
SH
171class Command:
172 def __init__(self):
173 self.usage = "usage: %prog [options]"
8910ac0e 174 self.needsGit = True
b984733c
SH
175
176class P4Debug(Command):
86949eef 177 def __init__(self):
6ae8de88 178 Command.__init__(self)
86949eef 179 self.options = [
b1ce9447
HWN
180 optparse.make_option("--verbose", dest="verbose", action="store_true",
181 default=False),
4addad22 182 ]
c8c39116 183 self.description = "A tool to debug the output of p4 -G."
8910ac0e 184 self.needsGit = False
b1ce9447 185 self.verbose = False
86949eef
SH
186
187 def run(self, args):
b1ce9447 188 j = 0
86949eef 189 for output in p4CmdList(" ".join(args)):
b1ce9447
HWN
190 print 'Element: %d' % j
191 j += 1
86949eef 192 print output
b984733c 193 return True
86949eef 194
5834684d
SH
195class P4RollBack(Command):
196 def __init__(self):
197 Command.__init__(self)
198 self.options = [
0c66a783
SH
199 optparse.make_option("--verbose", dest="verbose", action="store_true"),
200 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
5834684d
SH
201 ]
202 self.description = "A tool to debug the multi-branch import. Don't use :)"
52102d47 203 self.verbose = False
0c66a783 204 self.rollbackLocalBranches = False
5834684d
SH
205
206 def run(self, args):
207 if len(args) != 1:
208 return False
209 maxChange = int(args[0])
0c66a783 210
ad192f28 211 if "p4ExitCode" in p4Cmd("changes -m 1"):
66a2f523
SH
212 die("Problems executing p4");
213
0c66a783
SH
214 if self.rollbackLocalBranches:
215 refPrefix = "refs/heads/"
b016d397 216 lines = read_pipe_lines("git rev-parse --symbolic --branches")
0c66a783
SH
217 else:
218 refPrefix = "refs/remotes/"
b016d397 219 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
0c66a783
SH
220
221 for line in lines:
222 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
b25b2065
HWN
223 line = line.strip()
224 ref = refPrefix + line
5834684d 225 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
226 settings = extractSettingsGitLog(log)
227
228 depotPaths = settings['depot-paths']
229 change = settings['change']
230
5834684d 231 changed = False
52102d47 232
6326aa58
HWN
233 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
234 for p in depotPaths]))) == 0:
52102d47
SH
235 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
236 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
237 continue
238
bb6e09b2 239 while change and int(change) > maxChange:
5834684d 240 changed = True
52102d47
SH
241 if self.verbose:
242 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
5834684d
SH
243 system("git update-ref %s \"%s^\"" % (ref, ref))
244 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
245 settings = extractSettingsGitLog(log)
246
247
248 depotPaths = settings['depot-paths']
249 change = settings['change']
5834684d
SH
250
251 if changed:
52102d47 252 print "%s rewound to %s" % (ref, change)
5834684d
SH
253
254 return True
255
711544b0 256class P4Submit(Command):
4f5cf76a 257 def __init__(self):
b984733c 258 Command.__init__(self)
4f5cf76a
SH
259 self.options = [
260 optparse.make_option("--continue", action="store_false", dest="firstTime"),
4addad22 261 optparse.make_option("--verbose", dest="verbose", action="store_true"),
4f5cf76a
SH
262 optparse.make_option("--origin", dest="origin"),
263 optparse.make_option("--reset", action="store_true", dest="reset"),
4f5cf76a 264 optparse.make_option("--log-substitutions", dest="substFile"),
04219c04 265 optparse.make_option("--dry-run", action="store_true"),
c1b296b9 266 optparse.make_option("--direct", dest="directSubmit", action="store_true"),
cb4f1280 267 optparse.make_option("--trust-me-like-a-fool", dest="trustMeLikeAFool", action="store_true"),
4f5cf76a
SH
268 ]
269 self.description = "Submit changes from git to the perforce depot."
c9b50e63 270 self.usage += " [name of git branch to submit into perforce depot]"
4f5cf76a
SH
271 self.firstTime = True
272 self.reset = False
273 self.interactive = True
274 self.dryRun = False
275 self.substFile = ""
276 self.firstTime = True
9512497b 277 self.origin = ""
c1b296b9 278 self.directSubmit = False
cb4f1280 279 self.trustMeLikeAFool = False
b0d10df7 280 self.verbose = False
f7baba8b 281 self.isWindows = (platform.system() == "Windows")
4f5cf76a
SH
282
283 self.logSubstitutions = {}
284 self.logSubstitutions["<enter description here>"] = "%log%"
285 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
286
287 def check(self):
288 if len(p4CmdList("opened ...")) > 0:
289 die("You have files opened with perforce! Close them before starting the sync.")
290
291 def start(self):
292 if len(self.config) > 0 and not self.reset:
cebdf5af
HWN
293 die("Cannot start sync. Previous sync config found at %s\n"
294 "If you want to start submitting again from scratch "
295 "maybe you want to call git-p4 submit --reset" % self.configFile)
4f5cf76a
SH
296
297 commits = []
c1b296b9
SH
298 if self.directSubmit:
299 commits.append("0")
300 else:
b016d397 301 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
b25b2065 302 commits.append(line.strip())
c1b296b9 303 commits.reverse()
4f5cf76a
SH
304
305 self.config["commits"] = commits
306
4f5cf76a
SH
307 def prepareLogMessage(self, template, message):
308 result = ""
309
310 for line in template.split("\n"):
311 if line.startswith("#"):
312 result += line + "\n"
313 continue
314
315 substituted = False
316 for key in self.logSubstitutions.keys():
317 if line.find(key) != -1:
318 value = self.logSubstitutions[key]
319 value = value.replace("%log%", message)
320 if value != "@remove@":
321 result += line.replace(key, value) + "\n"
322 substituted = True
323 break
324
325 if not substituted:
326 result += line + "\n"
327
328 return result
329
7cb5cbef 330 def applyCommit(self, id):
c1b296b9
SH
331 if self.directSubmit:
332 print "Applying local change in working directory/index"
333 diff = self.diffStatus
334 else:
b016d397
HWN
335 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
336 diff = read_pipe_lines("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id))
4f5cf76a
SH
337 filesToAdd = set()
338 filesToDelete = set()
d336c158 339 editedFiles = set()
4f5cf76a
SH
340 for line in diff:
341 modifier = line[0]
342 path = line[1:].strip()
343 if modifier == "M":
d336c158
SH
344 system("p4 edit \"%s\"" % path)
345 editedFiles.add(path)
4f5cf76a
SH
346 elif modifier == "A":
347 filesToAdd.add(path)
348 if path in filesToDelete:
349 filesToDelete.remove(path)
350 elif modifier == "D":
351 filesToDelete.add(path)
352 if path in filesToAdd:
353 filesToAdd.remove(path)
354 else:
355 die("unknown modifier %s for %s" % (modifier, path))
356
c1b296b9
SH
357 if self.directSubmit:
358 diffcmd = "cat \"%s\"" % self.diffFile
359 else:
360 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
47a130b7 361 patchcmd = diffcmd + " | git apply "
c1b296b9
SH
362 tryPatchCmd = patchcmd + "--check -"
363 applyPatchCmd = patchcmd + "--check --apply -"
51a2640a 364
47a130b7 365 if os.system(tryPatchCmd) != 0:
51a2640a
SH
366 print "Unfortunately applying the change failed!"
367 print "What do you want to do?"
368 response = "x"
369 while response != "s" and response != "a" and response != "w":
cebdf5af
HWN
370 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
371 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
51a2640a
SH
372 if response == "s":
373 print "Skipping! Good luck with the next patches..."
374 return
375 elif response == "a":
47a130b7 376 os.system(applyPatchCmd)
51a2640a
SH
377 if len(filesToAdd) > 0:
378 print "You may also want to call p4 add on the following files:"
379 print " ".join(filesToAdd)
380 if len(filesToDelete):
381 print "The following files should be scheduled for deletion with p4 delete:"
382 print " ".join(filesToDelete)
cebdf5af
HWN
383 die("Please resolve and submit the conflict manually and "
384 + "continue afterwards with git-p4 submit --continue")
51a2640a
SH
385 elif response == "w":
386 system(diffcmd + " > patch.txt")
387 print "Patch saved to patch.txt in %s !" % self.clientPath
cebdf5af
HWN
388 die("Please resolve and submit the conflict manually and "
389 "continue afterwards with git-p4 submit --continue")
51a2640a 390
47a130b7 391 system(applyPatchCmd)
4f5cf76a
SH
392
393 for f in filesToAdd:
394 system("p4 add %s" % f)
395 for f in filesToDelete:
396 system("p4 revert %s" % f)
397 system("p4 delete %s" % f)
398
c1b296b9
SH
399 logMessage = ""
400 if not self.directSubmit:
401 logMessage = extractLogMessageFromGitCommit(id)
402 logMessage = logMessage.replace("\n", "\n\t")
f7baba8b
MSO
403 if self.isWindows:
404 logMessage = logMessage.replace("\n", "\r\n")
b25b2065 405 logMessage = logMessage.strip()
4f5cf76a 406
b016d397 407 template = read_pipe("p4 change -o")
4f5cf76a
SH
408
409 if self.interactive:
410 submitTemplate = self.prepareLogMessage(template, logMessage)
b016d397 411 diff = read_pipe("p4 diff -du ...")
4f5cf76a
SH
412
413 for newFile in filesToAdd:
414 diff += "==== new file ====\n"
415 diff += "--- /dev/null\n"
416 diff += "+++ %s\n" % newFile
417 f = open(newFile, "r")
418 for line in f.readlines():
419 diff += "+" + line
420 f.close()
421
25df95cc
SH
422 separatorLine = "######## everything below this line is just the diff #######"
423 if platform.system() == "Windows":
424 separatorLine += "\r"
425 separatorLine += "\n"
4f5cf76a
SH
426
427 response = "e"
cb4f1280
SH
428 if self.trustMeLikeAFool:
429 response = "y"
430
53150250 431 firstIteration = True
4f5cf76a 432 while response == "e":
53150250 433 if not firstIteration:
d336c158 434 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
53150250 435 firstIteration = False
4f5cf76a
SH
436 if response == "e":
437 [handle, fileName] = tempfile.mkstemp()
438 tmpFile = os.fdopen(handle, "w+")
53150250 439 tmpFile.write(submitTemplate + separatorLine + diff)
4f5cf76a 440 tmpFile.close()
25df95cc
SH
441 defaultEditor = "vi"
442 if platform.system() == "Windows":
443 defaultEditor = "notepad"
444 editor = os.environ.get("EDITOR", defaultEditor);
4f5cf76a 445 system(editor + " " + fileName)
25df95cc 446 tmpFile = open(fileName, "rb")
53150250 447 message = tmpFile.read()
4f5cf76a
SH
448 tmpFile.close()
449 os.remove(fileName)
53150250 450 submitTemplate = message[:message.index(separatorLine)]
f7baba8b
MSO
451 if self.isWindows:
452 submitTemplate = submitTemplate.replace("\r\n", "\n")
4f5cf76a
SH
453
454 if response == "y" or response == "yes":
455 if self.dryRun:
456 print submitTemplate
457 raw_input("Press return to continue...")
458 else:
7944f142
SH
459 if self.directSubmit:
460 print "Submitting to git first"
461 os.chdir(self.oldWorkingDirectory)
b016d397 462 write_pipe("git commit -a -F -", submitTemplate)
7944f142
SH
463 os.chdir(self.clientPath)
464
b016d397 465 write_pipe("p4 submit -i", submitTemplate)
d336c158
SH
466 elif response == "s":
467 for f in editedFiles:
468 system("p4 revert \"%s\"" % f);
469 for f in filesToAdd:
470 system("p4 revert \"%s\"" % f);
471 system("rm %s" %f)
472 for f in filesToDelete:
473 system("p4 delete \"%s\"" % f);
474 return
4f5cf76a
SH
475 else:
476 print "Not submitting!"
477 self.interactive = False
478 else:
479 fileName = "submit.txt"
480 file = open(fileName, "w+")
481 file.write(self.prepareLogMessage(template, logMessage))
482 file.close()
cebdf5af
HWN
483 print ("Perforce submit template written as %s. "
484 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
485 % (fileName, fileName))
4f5cf76a
SH
486
487 def run(self, args):
c9b50e63
SH
488 if len(args) == 0:
489 self.master = currentGitBranch()
4280e533 490 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
c9b50e63
SH
491 die("Detecting current git branch failed!")
492 elif len(args) == 1:
493 self.master = args[0]
494 else:
495 return False
496
9512497b 497 depotPath = ""
a3fdd579
SH
498 parent = 0
499 while parent < 65535:
500 commit = "HEAD~%s" % parent
501 log = extractLogMessageFromGitCommit(commit)
502 settings = extractSettingsGitLog(log)
503 if not settings.has_key("depot-paths"):
504 parent = parent + 1
505 continue
506
507 depotPath = settings['depot-paths'][0]
508
509 if len(self.origin) == 0:
510 names = read_pipe_lines("git name-rev '--refs=refs/remotes/p4/*' '%s'" % commit)
511 if len(names) > 0:
512 # strip away the beginning of 'HEAD~42 refs/remotes/p4/foo'
513 self.origin = names[0].strip()[len(commit) + 1:]
514
515 break
516
517 if self.verbose:
518 print "Origin branch is " + self.origin
9512497b
SH
519
520 if len(depotPath) == 0:
521 print "Internal error: cannot locate perforce depot path from existing branches"
522 sys.exit(128)
523
51a2640a 524 self.clientPath = p4Where(depotPath)
9512497b 525
51a2640a 526 if len(self.clientPath) == 0:
9512497b
SH
527 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
528 sys.exit(128)
529
51a2640a 530 print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
7944f142 531 self.oldWorkingDirectory = os.getcwd()
c1b296b9
SH
532
533 if self.directSubmit:
b016d397 534 self.diffStatus = read_pipe_lines("git diff -r --name-status HEAD")
cbf5efa6
SH
535 if len(self.diffStatus) == 0:
536 print "No changes in working directory to submit."
537 return True
b016d397 538 patch = read_pipe("git diff -p --binary --diff-filter=ACMRTUXB HEAD")
b86f7378 539 self.diffFile = self.gitdir + "/p4-git-diff"
c1b296b9
SH
540 f = open(self.diffFile, "wb")
541 f.write(patch)
542 f.close();
543
51a2640a
SH
544 os.chdir(self.clientPath)
545 response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
9512497b
SH
546 if response == "y" or response == "yes":
547 system("p4 sync ...")
548
4f5cf76a
SH
549 if self.reset:
550 self.firstTime = True
551
552 if len(self.substFile) > 0:
553 for line in open(self.substFile, "r").readlines():
b25b2065 554 tokens = line.strip().split("=")
4f5cf76a
SH
555 self.logSubstitutions[tokens[0]] = tokens[1]
556
4f5cf76a 557 self.check()
b86f7378 558 self.configFile = self.gitdir + "/p4-git-sync.cfg"
4f5cf76a
SH
559 self.config = shelve.open(self.configFile, writeback=True)
560
561 if self.firstTime:
562 self.start()
563
564 commits = self.config.get("commits", [])
565
566 while len(commits) > 0:
567 self.firstTime = False
568 commit = commits[0]
569 commits = commits[1:]
570 self.config["commits"] = commits
7cb5cbef 571 self.applyCommit(commit)
4f5cf76a
SH
572 if not self.interactive:
573 break
574
575 self.config.close()
576
c1b296b9
SH
577 if self.directSubmit:
578 os.remove(self.diffFile)
579
4f5cf76a
SH
580 if len(commits) == 0:
581 if self.firstTime:
582 print "No changes found to apply between %s and current HEAD" % self.origin
583 else:
584 print "All changes applied!"
7944f142
SH
585 os.chdir(self.oldWorkingDirectory)
586 response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
80b5910f 587 if response == "y" or response == "yes":
80b5910f
SH
588 rebase = P4Rebase()
589 rebase.run([])
4f5cf76a
SH
590 os.remove(self.configFile)
591
b984733c
SH
592 return True
593
711544b0 594class P4Sync(Command):
b984733c
SH
595 def __init__(self):
596 Command.__init__(self)
597 self.options = [
598 optparse.make_option("--branch", dest="branch"),
599 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
600 optparse.make_option("--changesfile", dest="changesFile"),
601 optparse.make_option("--silent", dest="silent", action="store_true"),
ef48f909 602 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
a028a98e 603 optparse.make_option("--verbose", dest="verbose", action="store_true"),
d2c6dd30
HWN
604 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
605 help="Import into refs/heads/ , not refs/remotes"),
8b41a97f 606 optparse.make_option("--max-changes", dest="maxChanges"),
86dff6b6
HWN
607 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
608 help="Keep entire BRANCH/DIR/SUBDIR prefix during import")
b984733c
SH
609 ]
610 self.description = """Imports from Perforce into a git repository.\n
611 example:
612 //depot/my/project/ -- to import the current head
613 //depot/my/project/@all -- to import everything
614 //depot/my/project/@1,6 -- to import only from revision 1 to 6
615
616 (a ... is not needed in the path p4 specification, it's added implicitly)"""
617
618 self.usage += " //depot/path[@revRange]"
b984733c 619 self.silent = False
b984733c
SH
620 self.createdBranches = Set()
621 self.committedChanges = Set()
569d1bd4 622 self.branch = ""
b984733c 623 self.detectBranches = False
cb53e1f8 624 self.detectLabels = False
b984733c 625 self.changesFile = ""
01265103 626 self.syncWithOrigin = True
4b97ffb1 627 self.verbose = False
a028a98e 628 self.importIntoRemotes = True
01a9c9c5 629 self.maxChanges = ""
c1f9197f 630 self.isWindows = (platform.system() == "Windows")
8b41a97f 631 self.keepRepoPath = False
6326aa58 632 self.depotPaths = None
b984733c 633
01265103
SH
634 if gitConfig("git-p4.syncFromOrigin") == "false":
635 self.syncWithOrigin = False
636
b984733c
SH
637 def extractFilesFromCommit(self, commit):
638 files = []
639 fnum = 0
640 while commit.has_key("depotFile%s" % fnum):
641 path = commit["depotFile%s" % fnum]
6326aa58
HWN
642
643 found = [p for p in self.depotPaths
644 if path.startswith (p)]
645 if not found:
b984733c
SH
646 fnum = fnum + 1
647 continue
648
649 file = {}
650 file["path"] = path
651 file["rev"] = commit["rev%s" % fnum]
652 file["action"] = commit["action%s" % fnum]
653 file["type"] = commit["type%s" % fnum]
654 files.append(file)
655 fnum = fnum + 1
656 return files
657
6326aa58 658 def stripRepoPath(self, path, prefixes):
8b41a97f 659 if self.keepRepoPath:
6326aa58
HWN
660 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
661
662 for p in prefixes:
663 if path.startswith(p):
664 path = path[len(p):]
8b41a97f 665
6326aa58 666 return path
6754a299 667
71b112d4 668 def splitFilesIntoBranches(self, commit):
d5904674 669 branches = {}
71b112d4
SH
670 fnum = 0
671 while commit.has_key("depotFile%s" % fnum):
672 path = commit["depotFile%s" % fnum]
6326aa58
HWN
673 found = [p for p in self.depotPaths
674 if path.startswith (p)]
675 if not found:
71b112d4
SH
676 fnum = fnum + 1
677 continue
678
679 file = {}
680 file["path"] = path
681 file["rev"] = commit["rev%s" % fnum]
682 file["action"] = commit["action%s" % fnum]
683 file["type"] = commit["type%s" % fnum]
684 fnum = fnum + 1
685
6326aa58 686 relPath = self.stripRepoPath(path, self.depotPaths)
b984733c 687
4b97ffb1 688 for branch in self.knownBranches.keys():
6754a299
HWN
689
690 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
691 if relPath.startswith(branch + "/"):
d5904674
SH
692 if branch not in branches:
693 branches[branch] = []
71b112d4 694 branches[branch].append(file)
b984733c
SH
695
696 return branches
697
6a49f8e2
HWN
698 ## Should move this out, doesn't use SELF.
699 def readP4Files(self, files):
b1ce9447 700 files = [f for f in files
982bb8a3 701 if f['action'] != 'delete']
6a49f8e2 702
b1ce9447 703 if not files:
f2eda79f
HWN
704 return
705
b1ce9447
HWN
706 filedata = p4CmdList('print %s' % ' '.join(['"%s#%s"' % (f['path'],
707 f['rev'])
708 for f in files]))
6a49f8e2 709
d2c6dd30
HWN
710 j = 0;
711 contents = {}
b1ce9447 712 while j < len(filedata):
d2c6dd30 713 stat = filedata[j]
b1ce9447
HWN
714 j += 1
715 text = ''
7530a40c
HWN
716 while j < len(filedata) and filedata[j]['code'] in ('text',
717 'binary'):
b1ce9447
HWN
718 text += filedata[j]['data']
719 j += 1
6a49f8e2 720
1b9a4684
HWN
721
722 if not stat.has_key('depotFile'):
723 sys.stderr.write("p4 print fails with: %s\n" % repr(stat))
724 continue
725
b1ce9447 726 contents[stat['depotFile']] = text
6a49f8e2 727
d2c6dd30
HWN
728 for f in files:
729 assert not f.has_key('data')
730 f['data'] = contents[f['path']]
6a49f8e2 731
6326aa58 732 def commit(self, details, files, branch, branchPrefixes, parent = ""):
b984733c
SH
733 epoch = details["time"]
734 author = details["user"]
735
4b97ffb1
SH
736 if self.verbose:
737 print "commit into %s" % branch
738
96e07dd2
HWN
739 # start with reading files; if that fails, we should not
740 # create a commit.
741 new_files = []
742 for f in files:
743 if [p for p in branchPrefixes if f['path'].startswith(p)]:
744 new_files.append (f)
745 else:
746 sys.stderr.write("Ignoring file outside of prefix: %s\n" % path)
747 files = new_files
748 self.readP4Files(files)
749
750
751
752
b984733c 753 self.gitStream.write("commit %s\n" % branch)
6a49f8e2 754# gitStream.write("mark :%s\n" % details["change"])
b984733c
SH
755 self.committedChanges.add(int(details["change"]))
756 committer = ""
b607e71e
SH
757 if author not in self.users:
758 self.getUserMapFromPerforceServer()
b984733c 759 if author in self.users:
0828ab14 760 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
b984733c 761 else:
0828ab14 762 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
b984733c
SH
763
764 self.gitStream.write("committer %s\n" % committer)
765
766 self.gitStream.write("data <<EOT\n")
767 self.gitStream.write(details["desc"])
6581de09
SH
768 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
769 % (','.join (branchPrefixes), details["change"]))
770 if len(details['options']) > 0:
771 self.gitStream.write(": options = %s" % details['options'])
772 self.gitStream.write("]\nEOT\n\n")
b984733c
SH
773
774 if len(parent) > 0:
4b97ffb1
SH
775 if self.verbose:
776 print "parent %s" % parent
b984733c
SH
777 self.gitStream.write("from %s\n" % parent)
778
6a49f8e2 779 for file in files:
b984733c 780 if file["type"] == "apple":
6a49f8e2 781 print "\nfile %s is a strange apple file that forks. Ignoring!" % file['path']
b984733c
SH
782 continue
783
6a49f8e2
HWN
784 relPath = self.stripRepoPath(file['path'], branchPrefixes)
785 if file["action"] == "delete":
b984733c
SH
786 self.gitStream.write("D %s\n" % relPath)
787 else:
788 mode = 644
789 if file["type"].startswith("x"):
790 mode = 755
791
6a49f8e2 792 data = file['data']
b984733c 793
c1f9197f
MSO
794 if self.isWindows and file["type"].endswith("text"):
795 data = data.replace("\r\n", "\n")
796
7530a40c 797 self.gitStream.write("M %d inline %s\n" % (mode, relPath))
b984733c
SH
798 self.gitStream.write("data %s\n" % len(data))
799 self.gitStream.write(data)
800 self.gitStream.write("\n")
801
802 self.gitStream.write("\n")
803
1f4ba1cb
SH
804 change = int(details["change"])
805
9bda3a85 806 if self.labels.has_key(change):
1f4ba1cb
SH
807 label = self.labels[change]
808 labelDetails = label[0]
809 labelRevisions = label[1]
71b112d4
SH
810 if self.verbose:
811 print "Change %s is labelled %s" % (change, labelDetails)
1f4ba1cb 812
6326aa58
HWN
813 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
814 for p in branchPrefixes]))
1f4ba1cb
SH
815
816 if len(files) == len(labelRevisions):
817
818 cleanedFiles = {}
819 for info in files:
820 if info["action"] == "delete":
821 continue
822 cleanedFiles[info["depotFile"]] = info["rev"]
823
824 if cleanedFiles == labelRevisions:
825 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
826 self.gitStream.write("from %s\n" % branch)
827
828 owner = labelDetails["Owner"]
829 tagger = ""
830 if author in self.users:
831 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
832 else:
833 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
834 self.gitStream.write("tagger %s\n" % tagger)
835 self.gitStream.write("data <<EOT\n")
836 self.gitStream.write(labelDetails["Description"])
837 self.gitStream.write("EOT\n\n")
838
839 else:
a46668fa 840 if not self.silent:
cebdf5af
HWN
841 print ("Tag %s does not match with change %s: files do not match."
842 % (labelDetails["label"], change))
1f4ba1cb
SH
843
844 else:
a46668fa 845 if not self.silent:
cebdf5af
HWN
846 print ("Tag %s does not match with change %s: file count is different."
847 % (labelDetails["label"], change))
b984733c 848
183b8ef8 849 def getUserCacheFilename(self):
a3287be5 850 return os.environ["HOME"] + "/.gitp4-usercache.txt"
183b8ef8 851
b607e71e 852 def getUserMapFromPerforceServer(self):
ebd81168
SH
853 if self.userMapFromPerforceServer:
854 return
b984733c
SH
855 self.users = {}
856
857 for output in p4CmdList("users"):
858 if not output.has_key("User"):
859 continue
860 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
861
183b8ef8
HWN
862
863 s = ''
864 for (key, val) in self.users.items():
865 s += "%s\t%s\n" % (key, val)
866
867 open(self.getUserCacheFilename(), "wb").write(s)
ebd81168 868 self.userMapFromPerforceServer = True
b607e71e
SH
869
870 def loadUserMapFromCache(self):
871 self.users = {}
ebd81168 872 self.userMapFromPerforceServer = False
b607e71e 873 try:
183b8ef8 874 cache = open(self.getUserCacheFilename(), "rb")
b607e71e
SH
875 lines = cache.readlines()
876 cache.close()
877 for line in lines:
b25b2065 878 entry = line.strip().split("\t")
b607e71e
SH
879 self.users[entry[0]] = entry[1]
880 except IOError:
881 self.getUserMapFromPerforceServer()
882
1f4ba1cb
SH
883 def getLabels(self):
884 self.labels = {}
885
6326aa58 886 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
10c3211b 887 if len(l) > 0 and not self.silent:
6326aa58 888 print "Finding files belonging to labels in %s" % `self.depotPath`
01ce1fe9
SH
889
890 for output in l:
1f4ba1cb
SH
891 label = output["label"]
892 revisions = {}
893 newestChange = 0
71b112d4
SH
894 if self.verbose:
895 print "Querying files for label %s" % label
6326aa58
HWN
896 for file in p4CmdList("files "
897 + ' '.join (["%s...@%s" % (p, label)
898 for p in self.depotPaths])):
1f4ba1cb
SH
899 revisions[file["depotFile"]] = file["rev"]
900 change = int(file["change"])
901 if change > newestChange:
902 newestChange = change
903
9bda3a85
SH
904 self.labels[newestChange] = [output, revisions]
905
906 if self.verbose:
907 print "Label changes: %s" % self.labels.keys()
1f4ba1cb 908
86dff6b6
HWN
909 def guessProjectName(self):
910 for p in self.depotPaths:
6e5295c4
SH
911 if p.endswith("/"):
912 p = p[:-1]
913 p = p[p.strip().rfind("/") + 1:]
914 if not p.endswith("/"):
915 p += "/"
916 return p
86dff6b6 917
4b97ffb1 918 def getBranchMapping(self):
4b97ffb1
SH
919 for info in p4CmdList("branches"):
920 details = p4Cmd("branch -o %s" % info["branch"])
921 viewIdx = 0
922 while details.has_key("View%s" % viewIdx):
923 paths = details["View%s" % viewIdx].split(" ")
924 viewIdx = viewIdx + 1
925 # require standard //depot/foo/... //depot/bar/... mapping
926 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
927 continue
928 source = paths[0]
929 destination = paths[1]
6509e19c
SH
930 ## HACK
931 if source.startswith(self.depotPaths[0]) and destination.startswith(self.depotPaths[0]):
932 source = source[len(self.depotPaths[0]):-4]
933 destination = destination[len(self.depotPaths[0]):-4]
29bdbac1
SH
934 if destination not in self.knownBranches:
935 self.knownBranches[destination] = source
936 if source not in self.knownBranches:
937 self.knownBranches[source] = source
938
939 def listExistingP4GitBranches(self):
940 self.p4BranchesInGit = []
941
a028a98e
SH
942 cmdline = "git rev-parse --symbolic "
943 if self.importIntoRemotes:
944 cmdline += " --remotes"
945 else:
946 cmdline += " --branches"
947
b016d397 948 for line in read_pipe_lines(cmdline):
cfeb59be 949 line = line.strip()
b25b2065 950
86dff6b6 951 ## only import to p4/
c4b33253 952 if not line.startswith('p4/') or line == "p4/HEAD":
86dff6b6
HWN
953 continue
954 branch = line
5265bfcb
HWN
955
956 # strip off p4
957 branch = re.sub ("^p4/", "", line)
b76f0565 958
57284050 959 self.p4BranchesInGit.append(branch)
b76f0565 960 self.initialParents[self.refPrefix + branch] = parseRevision(line)
4b97ffb1 961
abcd790f 962 def createOrUpdateBranchesFromOrigin(self):
d1874ed3 963 if not self.silent:
86dff6b6
HWN
964 print ("Creating/updating branch(es) in %s based on origin branch(es)"
965 % self.refPrefix)
d1874ed3 966
cae7b732
SH
967 originPrefix = "origin/p4/"
968
4addad22
HWN
969 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
970 line = line.strip()
cae7b732 971 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
d1874ed3 972 continue
65c5f3e3 973
cae7b732 974 headName = line[len(originPrefix):]
d1874ed3 975 remoteHead = self.refPrefix + headName
cae7b732 976 originHead = line
abcd790f 977
bb6e09b2
HWN
978 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
979 if (not original.has_key('depot-paths')
980 or not original.has_key('change')):
65c5f3e3
SH
981 continue
982
abcd790f 983 update = False
4280e533 984 if not gitBranchExists(remoteHead):
d1874ed3
SH
985 if self.verbose:
986 print "creating %s" % remoteHead
abcd790f
SH
987 update = True
988 else:
a3fdd579 989 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
bb6e09b2
HWN
990 if settings.has_key('change') > 0:
991 if settings['depot-paths'] == original['depot-paths']:
992 originP4Change = int(original['change'])
993 p4Change = int(settings['change'])
abcd790f 994 if originP4Change > p4Change:
bb6e09b2
HWN
995 print ("%s (%s) is newer than %s (%s). "
996 "Updating p4 branch from origin."
997 % (originHead, originP4Change,
998 remoteHead, p4Change))
abcd790f
SH
999 update = True
1000 else:
bb6e09b2
HWN
1001 print ("Ignoring: %s was imported from %s while "
1002 "%s was imported from %s"
1003 % (originHead, ','.join(original['depot-paths']),
1004 remoteHead, ','.join(settings['depot-paths'])))
abcd790f
SH
1005
1006 if update:
1007 system("git update-ref %s %s" % (remoteHead, originHead))
d1874ed3 1008
bb6e09b2
HWN
1009 def updateOptionDict(self, d):
1010 option_keys = {}
1011 if self.keepRepoPath:
1012 option_keys['keepRepoPath'] = 1
1013
1014 d["options"] = ' '.join(sorted(option_keys.keys()))
1015
1016 def readOptions(self, d):
1017 self.keepRepoPath = (d.has_key('options')
1018 and ('keepRepoPath' in d['options']))
6326aa58 1019
b984733c 1020 def run(self, args):
6326aa58 1021 self.depotPaths = []
179caebf
SH
1022 self.changeRange = ""
1023 self.initialParent = ""
6326aa58 1024 self.previousDepotPaths = []
ce6f33c8 1025
29bdbac1
SH
1026 # map from branch depot path to parent branch
1027 self.knownBranches = {}
1028 self.initialParents = {}
cae7b732 1029 self.hasOrigin = gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
a43ff00c
SH
1030 if not self.syncWithOrigin:
1031 self.hasOrigin = False
29bdbac1 1032
a028a98e
SH
1033 if self.importIntoRemotes:
1034 self.refPrefix = "refs/remotes/p4/"
1035 else:
db775559 1036 self.refPrefix = "refs/heads/p4/"
a028a98e 1037
cebdf5af
HWN
1038 if self.syncWithOrigin and self.hasOrigin:
1039 if not self.silent:
1040 print "Syncing with origin first by calling git fetch origin"
1041 system("git fetch origin")
10f880f8 1042
569d1bd4 1043 if len(self.branch) == 0:
db775559 1044 self.branch = self.refPrefix + "master"
a028a98e 1045 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
48df6fd8 1046 system("git update-ref %s refs/heads/p4" % self.branch)
48df6fd8 1047 system("git branch -D p4");
faf1bd20 1048 # create it /after/ importing, when master exists
a028a98e 1049 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
a3c55c09 1050 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
967f72e2 1051
6a49f8e2
HWN
1052 # TODO: should always look at previous commits,
1053 # merge with previous imports, if possible.
1054 if args == []:
d414c74a
SH
1055 if self.hasOrigin:
1056 self.createOrUpdateBranchesFromOrigin()
abcd790f
SH
1057 self.listExistingP4GitBranches()
1058
1059 if len(self.p4BranchesInGit) > 1:
1060 if not self.silent:
1061 print "Importing from/into multiple branches"
1062 self.detectBranches = True
967f72e2 1063
29bdbac1
SH
1064 if self.verbose:
1065 print "branches: %s" % self.p4BranchesInGit
1066
1067 p4Change = 0
1068 for branch in self.p4BranchesInGit:
cebdf5af 1069 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
bb6e09b2
HWN
1070
1071 settings = extractSettingsGitLog(logMsg)
29bdbac1 1072
bb6e09b2
HWN
1073 self.readOptions(settings)
1074 if (settings.has_key('depot-paths')
1075 and settings.has_key ('change')):
1076 change = int(settings['change']) + 1
29bdbac1
SH
1077 p4Change = max(p4Change, change)
1078
bb6e09b2
HWN
1079 depotPaths = sorted(settings['depot-paths'])
1080 if self.previousDepotPaths == []:
6326aa58 1081 self.previousDepotPaths = depotPaths
29bdbac1 1082 else:
6326aa58
HWN
1083 paths = []
1084 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
583e1707 1085 for i in range(0, min(len(cur), len(prev))):
6326aa58 1086 if cur[i] <> prev[i]:
583e1707 1087 i = i - 1
6326aa58
HWN
1088 break
1089
583e1707 1090 paths.append (cur[:i + 1])
6326aa58
HWN
1091
1092 self.previousDepotPaths = paths
29bdbac1
SH
1093
1094 if p4Change > 0:
bb6e09b2 1095 self.depotPaths = sorted(self.previousDepotPaths)
d5904674 1096 self.changeRange = "@%s,#head" % p4Change
330f53b8
SH
1097 if not self.detectBranches:
1098 self.initialParent = parseRevision(self.branch)
341dc1c1 1099 if not self.silent and not self.detectBranches:
967f72e2 1100 print "Performing incremental import into %s git branch" % self.branch
569d1bd4 1101
f9162f6a
SH
1102 if not self.branch.startswith("refs/"):
1103 self.branch = "refs/heads/" + self.branch
179caebf 1104
6326aa58 1105 if len(args) == 0 and self.depotPaths:
b984733c 1106 if not self.silent:
6326aa58 1107 print "Depot paths: %s" % ' '.join(self.depotPaths)
b984733c 1108 else:
6326aa58 1109 if self.depotPaths and self.depotPaths != args:
cebdf5af 1110 print ("previous import used depot path %s and now %s was specified. "
6326aa58
HWN
1111 "This doesn't work!" % (' '.join (self.depotPaths),
1112 ' '.join (args)))
b984733c 1113 sys.exit(1)
6326aa58 1114
bb6e09b2 1115 self.depotPaths = sorted(args)
b984733c 1116
b984733c
SH
1117 self.revision = ""
1118 self.users = {}
b984733c 1119
6326aa58
HWN
1120 newPaths = []
1121 for p in self.depotPaths:
1122 if p.find("@") != -1:
1123 atIdx = p.index("@")
1124 self.changeRange = p[atIdx:]
1125 if self.changeRange == "@all":
1126 self.changeRange = ""
6a49f8e2 1127 elif ',' not in self.changeRange:
6326aa58
HWN
1128 self.revision = self.changeRange
1129 self.changeRange = ""
1130 p = p[0:atIdx]
1131 elif p.find("#") != -1:
1132 hashIdx = p.index("#")
1133 self.revision = p[hashIdx:]
1134 p = p[0:hashIdx]
1135 elif self.previousDepotPaths == []:
1136 self.revision = "#head"
1137
1138 p = re.sub ("\.\.\.$", "", p)
1139 if not p.endswith("/"):
1140 p += "/"
1141
1142 newPaths.append(p)
1143
1144 self.depotPaths = newPaths
1145
b984733c 1146
b607e71e 1147 self.loadUserMapFromCache()
cb53e1f8
SH
1148 self.labels = {}
1149 if self.detectLabels:
1150 self.getLabels();
b984733c 1151
4b97ffb1 1152 if self.detectBranches:
df450923
SH
1153 ## FIXME - what's a P4 projectName ?
1154 self.projectName = self.guessProjectName()
1155
1156 if not self.hasOrigin:
1157 self.getBranchMapping();
29bdbac1
SH
1158 if self.verbose:
1159 print "p4-git branches: %s" % self.p4BranchesInGit
1160 print "initial parents: %s" % self.initialParents
1161 for b in self.p4BranchesInGit:
1162 if b != "master":
6326aa58
HWN
1163
1164 ## FIXME
29bdbac1
SH
1165 b = b[len(self.projectName):]
1166 self.createdBranches.add(b)
4b97ffb1 1167
f291b4e3 1168 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
b984733c 1169
cebdf5af 1170 importProcess = subprocess.Popen(["git", "fast-import"],
6326aa58
HWN
1171 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1172 stderr=subprocess.PIPE);
08483580
SH
1173 self.gitOutput = importProcess.stdout
1174 self.gitStream = importProcess.stdin
1175 self.gitError = importProcess.stderr
b984733c 1176
86dff6b6 1177 if self.revision:
6326aa58 1178 print "Doing initial import of %s from revision %s" % (' '.join(self.depotPaths), self.revision)
b984733c
SH
1179
1180 details = { "user" : "git perforce import user", "time" : int(time.time()) }
cebdf5af 1181 details["desc"] = ("Initial import of %s from the state at revision %s"
6326aa58 1182 % (' '.join(self.depotPaths), self.revision))
b984733c
SH
1183 details["change"] = self.revision
1184 newestRevision = 0
1185
1186 fileCnt = 0
6326aa58
HWN
1187 for info in p4CmdList("files "
1188 + ' '.join(["%s...%s"
1189 % (p, self.revision)
1190 for p in self.depotPaths])):
96e07dd2 1191
d2c6dd30
HWN
1192 if info['code'] == 'error':
1193 sys.stderr.write("p4 returned an error: %s\n"
1194 % info['data'])
1195 sys.exit(1)
1196
1197
b984733c
SH
1198 change = int(info["change"])
1199 if change > newestRevision:
1200 newestRevision = change
1201
1202 if info["action"] == "delete":
c45b1cfe
SH
1203 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1204 #fileCnt = fileCnt + 1
b984733c
SH
1205 continue
1206
96e07dd2 1207 for prop in ["depotFile", "rev", "action", "type" ]:
b984733c
SH
1208 details["%s%s" % (prop, fileCnt)] = info[prop]
1209
1210 fileCnt = fileCnt + 1
1211
1212 details["change"] = newestRevision
bb6e09b2 1213 self.updateOptionDict(details)
b984733c 1214 try:
6326aa58 1215 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
c715706b 1216 except IOError:
fd4ca86a 1217 print "IO error with git fast-import. Is your git version recent enough?"
b984733c
SH
1218 print self.gitError.read()
1219
1220 else:
1221 changes = []
1222
0828ab14 1223 if len(self.changesFile) > 0:
b984733c
SH
1224 output = open(self.changesFile).readlines()
1225 changeSet = Set()
1226 for line in output:
1227 changeSet.add(int(line))
1228
1229 for change in changeSet:
1230 changes.append(change)
1231
1232 changes.sort()
1233 else:
29bdbac1 1234 if self.verbose:
86dff6b6 1235 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
6326aa58
HWN
1236 self.changeRange)
1237 assert self.depotPaths
1238 output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, self.changeRange)
1239 for p in self.depotPaths]))
b984733c
SH
1240
1241 for line in output:
1242 changeNum = line.split(" ")[1]
1243 changes.append(changeNum)
1244
1245 changes.reverse()
1246
01a9c9c5
SH
1247 if len(self.maxChanges) > 0:
1248 changes = changes[0:min(int(self.maxChanges), len(changes))]
1249
b984733c 1250 if len(changes) == 0:
0828ab14 1251 if not self.silent:
341dc1c1 1252 print "No changes to import!"
1f52af6c 1253 return True
b984733c 1254
341dc1c1
SH
1255 self.updatedBranches = set()
1256
b984733c
SH
1257 cnt = 1
1258 for change in changes:
1259 description = p4Cmd("describe %s" % change)
bb6e09b2 1260 self.updateOptionDict(description)
b984733c 1261
0828ab14 1262 if not self.silent:
341dc1c1 1263 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
b984733c
SH
1264 sys.stdout.flush()
1265 cnt = cnt + 1
1266
1267 try:
b984733c 1268 if self.detectBranches:
71b112d4 1269 branches = self.splitFilesIntoBranches(description)
d5904674 1270 for branch in branches.keys():
6326aa58
HWN
1271 ## HACK --hwn
1272 branchPrefix = self.depotPaths[0] + branch + "/"
b984733c 1273
b984733c 1274 parent = ""
4b97ffb1 1275
d5904674 1276 filesForCommit = branches[branch]
4b97ffb1 1277
29bdbac1
SH
1278 if self.verbose:
1279 print "branch is %s" % branch
1280
341dc1c1
SH
1281 self.updatedBranches.add(branch)
1282
8f9b2e08 1283 if branch not in self.createdBranches:
b984733c 1284 self.createdBranches.add(branch)
4b97ffb1 1285 parent = self.knownBranches[branch]
b984733c
SH
1286 if parent == branch:
1287 parent = ""
29bdbac1
SH
1288 elif self.verbose:
1289 print "parent determined through known branches: %s" % parent
b984733c 1290
8f9b2e08
SH
1291 # main branch? use master
1292 if branch == "main":
1293 branch = "master"
1294 else:
6326aa58
HWN
1295
1296 ## FIXME
29bdbac1 1297 branch = self.projectName + branch
8f9b2e08
SH
1298
1299 if parent == "main":
1300 parent = "master"
1301 elif len(parent) > 0:
6326aa58 1302 ## FIXME
29bdbac1 1303 parent = self.projectName + parent
8f9b2e08 1304
a028a98e 1305 branch = self.refPrefix + branch
b984733c 1306 if len(parent) > 0:
a028a98e 1307 parent = self.refPrefix + parent
29bdbac1
SH
1308
1309 if self.verbose:
1310 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1311
1312 if len(parent) == 0 and branch in self.initialParents:
1313 parent = self.initialParents[branch]
1314 del self.initialParents[branch]
1315
86fda6a3 1316 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
b984733c 1317 else:
71b112d4 1318 files = self.extractFilesFromCommit(description)
6326aa58
HWN
1319 self.commit(description, files, self.branch, self.depotPaths,
1320 self.initialParent)
b984733c
SH
1321 self.initialParent = ""
1322 except IOError:
1323 print self.gitError.read()
1324 sys.exit(1)
1325
341dc1c1
SH
1326 if not self.silent:
1327 print ""
1328 if len(self.updatedBranches) > 0:
1329 sys.stdout.write("Updated branches: ")
1330 for b in self.updatedBranches:
1331 sys.stdout.write("%s " % b)
1332 sys.stdout.write("\n")
b984733c 1333
b984733c
SH
1334
1335 self.gitStream.close()
29bdbac1
SH
1336 if importProcess.wait() != 0:
1337 die("fast-import failed: %s" % self.gitError.read())
b984733c
SH
1338 self.gitOutput.close()
1339 self.gitError.close()
1340
b984733c
SH
1341 return True
1342
01ce1fe9
SH
1343class P4Rebase(Command):
1344 def __init__(self):
1345 Command.__init__(self)
01265103 1346 self.options = [ ]
cebdf5af
HWN
1347 self.description = ("Fetches the latest revision from perforce and "
1348 + "rebases the current work (branch) against it")
68c42153 1349 self.verbose = False
01ce1fe9
SH
1350
1351 def run(self, args):
1352 sync = P4Sync()
1353 sync.run([])
1354 print "Rebasing the current branch"
b25b2065 1355 oldHead = read_pipe("git rev-parse HEAD").strip()
01ce1fe9 1356 system("git rebase p4")
1f52af6c 1357 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
01ce1fe9
SH
1358 return True
1359
f9a3a4f7
SH
1360class P4Clone(P4Sync):
1361 def __init__(self):
1362 P4Sync.__init__(self)
1363 self.description = "Creates a new git repository and imports from Perforce into it"
bb6e09b2
HWN
1364 self.usage = "usage: %prog [options] //depot/path[@revRange]"
1365 self.options.append(
1366 optparse.make_option("--destination", dest="cloneDestination",
1367 action='store', default=None,
1368 help="where to leave result of the clone"))
1369 self.cloneDestination = None
f9a3a4f7 1370 self.needsGit = False
f9a3a4f7 1371
6a49f8e2
HWN
1372 def defaultDestination(self, args):
1373 ## TODO: use common prefix of args?
1374 depotPath = args[0]
1375 depotDir = re.sub("(@[^@]*)$", "", depotPath)
1376 depotDir = re.sub("(#[^#]*)$", "", depotDir)
1377 depotDir = re.sub(r"\.\.\.$,", "", depotDir)
1378 depotDir = re.sub(r"/$", "", depotDir)
1379 return os.path.split(depotDir)[1]
1380
f9a3a4f7
SH
1381 def run(self, args):
1382 if len(args) < 1:
1383 return False
bb6e09b2
HWN
1384
1385 if self.keepRepoPath and not self.cloneDestination:
1386 sys.stderr.write("Must specify destination for --keep-path\n")
1387 sys.exit(1)
f9a3a4f7 1388
6326aa58 1389 depotPaths = args
5e100b5c
SH
1390
1391 if not self.cloneDestination and len(depotPaths) > 1:
1392 self.cloneDestination = depotPaths[-1]
1393 depotPaths = depotPaths[:-1]
1394
6326aa58
HWN
1395 for p in depotPaths:
1396 if not p.startswith("//"):
1397 return False
f9a3a4f7 1398
bb6e09b2 1399 if not self.cloneDestination:
98ad4faf 1400 self.cloneDestination = self.defaultDestination(args)
f9a3a4f7 1401
86dff6b6 1402 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
bb6e09b2
HWN
1403 os.makedirs(self.cloneDestination)
1404 os.chdir(self.cloneDestination)
f9a3a4f7 1405 system("git init")
b86f7378 1406 self.gitdir = os.getcwd() + "/.git"
6326aa58 1407 if not P4Sync.run(self, depotPaths):
f9a3a4f7 1408 return False
f9a3a4f7 1409 if self.branch != "master":
8f9b2e08
SH
1410 if gitBranchExists("refs/remotes/p4/master"):
1411 system("git branch master refs/remotes/p4/master")
1412 system("git checkout -f")
1413 else:
1414 print "Could not detect main branch. No checkout/master branch created."
86dff6b6 1415
f9a3a4f7
SH
1416 return True
1417
b984733c
SH
1418class HelpFormatter(optparse.IndentedHelpFormatter):
1419 def __init__(self):
1420 optparse.IndentedHelpFormatter.__init__(self)
1421
1422 def format_description(self, description):
1423 if description:
1424 return description + "\n"
1425 else:
1426 return ""
4f5cf76a 1427
86949eef
SH
1428def printUsage(commands):
1429 print "usage: %s <command> [options]" % sys.argv[0]
1430 print ""
1431 print "valid commands: %s" % ", ".join(commands)
1432 print ""
1433 print "Try %s <command> --help for command specific help." % sys.argv[0]
1434 print ""
1435
1436commands = {
b86f7378
HWN
1437 "debug" : P4Debug,
1438 "submit" : P4Submit,
1439 "sync" : P4Sync,
1440 "rebase" : P4Rebase,
1441 "clone" : P4Clone,
1442 "rollback" : P4RollBack
86949eef
SH
1443}
1444
86949eef 1445
bb6e09b2
HWN
1446def main():
1447 if len(sys.argv[1:]) == 0:
1448 printUsage(commands.keys())
1449 sys.exit(2)
4f5cf76a 1450
bb6e09b2
HWN
1451 cmd = ""
1452 cmdName = sys.argv[1]
1453 try:
b86f7378
HWN
1454 klass = commands[cmdName]
1455 cmd = klass()
bb6e09b2
HWN
1456 except KeyError:
1457 print "unknown command %s" % cmdName
1458 print ""
1459 printUsage(commands.keys())
1460 sys.exit(2)
1461
1462 options = cmd.options
b86f7378 1463 cmd.gitdir = os.environ.get("GIT_DIR", None)
bb6e09b2
HWN
1464
1465 args = sys.argv[2:]
1466
1467 if len(options) > 0:
1468 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1469
1470 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1471 options,
1472 description = cmd.description,
1473 formatter = HelpFormatter())
1474
1475 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1476 global verbose
1477 verbose = cmd.verbose
1478 if cmd.needsGit:
b86f7378
HWN
1479 if cmd.gitdir == None:
1480 cmd.gitdir = os.path.abspath(".git")
1481 if not isValidGitDir(cmd.gitdir):
1482 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
1483 if os.path.exists(cmd.gitdir):
bb6e09b2
HWN
1484 cdup = read_pipe("git rev-parse --show-cdup").strip()
1485 if len(cdup) > 0:
1486 os.chdir(cdup);
e20a9e53 1487
b86f7378
HWN
1488 if not isValidGitDir(cmd.gitdir):
1489 if isValidGitDir(cmd.gitdir + "/.git"):
1490 cmd.gitdir += "/.git"
bb6e09b2 1491 else:
b86f7378 1492 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
e20a9e53 1493
b86f7378 1494 os.environ["GIT_DIR"] = cmd.gitdir
86949eef 1495
bb6e09b2
HWN
1496 if not cmd.run(args):
1497 parser.print_help()
4f5cf76a 1498
4f5cf76a 1499
bb6e09b2
HWN
1500if __name__ == '__main__':
1501 main()