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