Fix the branch mapping detection to be independent from the order of the "p4 branches...
[fast-export.git] / contrib / fast-import / git-p4
blob3b6d8a09d1fabcf877b5f9967eaadf50c0b8df2e
1 #!/usr/bin/env python
3 # git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
5 # Author: Simon Hausmann <simon@lst.de>
6 # Copyright: 2007 Simon Hausmann <simon@lst.de>
7 # 2007 Trolltech ASA
8 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
11 import optparse, sys, os, marshal, popen2, subprocess, shelve
12 import tempfile, getopt, sha, os.path, time, platform
13 import re
15 from sets import Set;
17 verbose = False
19 def die(msg):
20 if verbose:
21 raise Exception(msg)
22 else:
23 sys.stderr.write(msg + "\n")
24 sys.exit(1)
26 def write_pipe(c, str):
27 if verbose:
28 sys.stderr.write('Writing pipe: %s\n' % c)
30 pipe = os.popen(c, 'w')
31 val = pipe.write(str)
32 if pipe.close():
33 die('Command failed: %s' % c)
35 return val
37 def read_pipe(c, ignore_error=False):
38 if verbose:
39 sys.stderr.write('Reading pipe: %s\n' % c)
41 pipe = os.popen(c, 'rb')
42 val = pipe.read()
43 if pipe.close() and not ignore_error:
44 die('Command failed: %s' % c)
46 return val
49 def read_pipe_lines(c):
50 if verbose:
51 sys.stderr.write('Reading pipe: %s\n' % c)
52 ## todo: check return status
53 pipe = os.popen(c, 'rb')
54 val = pipe.readlines()
55 if pipe.close():
56 die('Command failed: %s' % c)
58 return val
60 def system(cmd):
61 if verbose:
62 sys.stderr.write("executing %s\n" % cmd)
63 if os.system(cmd) != 0:
64 die("command failed: %s" % cmd)
66 def p4CmdList(cmd):
67 cmd = "p4 -G %s" % cmd
68 if verbose:
69 sys.stderr.write("Opening pipe: %s\n" % cmd)
70 pipe = os.popen(cmd, "rb")
72 result = []
73 try:
74 while True:
75 entry = marshal.load(pipe)
76 result.append(entry)
77 except EOFError:
78 pass
79 exitCode = pipe.close()
80 if exitCode != None:
81 entry = {}
82 entry["p4ExitCode"] = exitCode
83 result.append(entry)
85 return result
87 def p4Cmd(cmd):
88 list = p4CmdList(cmd)
89 result = {}
90 for entry in list:
91 result.update(entry)
92 return result;
94 def p4Where(depotPath):
95 if not depotPath.endswith("/"):
96 depotPath += "/"
97 output = p4Cmd("where %s..." % depotPath)
98 if output["code"] == "error":
99 return ""
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:]
108 if clientPath.endswith("..."):
109 clientPath = clientPath[:-3]
110 return clientPath
112 def currentGitBranch():
113 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
115 def isValidGitDir(path):
116 if (os.path.exists(path + "/HEAD")
117 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
118 return True;
119 return False
121 def parseRevision(ref):
122 return read_pipe("git rev-parse %s" % ref).strip()
124 def extractLogMessageFromGitCommit(commit):
125 logMessage = ""
127 ## fixme: title is first line of commit, not 1st paragraph.
128 foundTitle = False
129 for log in read_pipe_lines("git cat-file commit %s" % commit):
130 if not foundTitle:
131 if len(log) == 1:
132 foundTitle = True
133 continue
135 logMessage += log
136 return logMessage
138 def extractSettingsGitLog(log):
139 values = {}
140 for line in log.split("\n"):
141 line = line.strip()
142 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
143 if not m:
144 continue
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]
154 values[key] = val
156 paths = values.get("depot-paths")
157 if not paths:
158 paths = values.get("depot-path")
159 if paths:
160 values['depot-paths'] = paths.split(',')
161 return values
163 def gitBranchExists(branch):
164 proc = subprocess.Popen(["git", "rev-parse", branch],
165 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
166 return proc.wait() == 0;
168 def gitConfig(key):
169 return read_pipe("git config %s" % key, ignore_error=True).strip()
171 def findUpstreamBranchPoint():
172 settings = None
173 branchPoint = ""
174 parent = 0
175 while parent < 65535:
176 commit = "HEAD~%s" % parent
177 log = extractLogMessageFromGitCommit(commit)
178 settings = extractSettingsGitLog(log)
179 if not settings.has_key("depot-paths"):
180 parent = parent + 1
181 continue
183 names = read_pipe_lines("git name-rev \"--refs=refs/remotes/p4/*\" \"%s\"" % commit)
184 if len(names) <= 0:
185 continue
187 # strip away the beginning of 'HEAD~42 refs/remotes/p4/foo'
188 branchPoint = names[0].strip()[len(commit) + 1:]
189 break
191 return [branchPoint, settings]
193 class Command:
194 def __init__(self):
195 self.usage = "usage: %prog [options]"
196 self.needsGit = True
198 class P4Debug(Command):
199 def __init__(self):
200 Command.__init__(self)
201 self.options = [
202 optparse.make_option("--verbose", dest="verbose", action="store_true",
203 default=False),
205 self.description = "A tool to debug the output of p4 -G."
206 self.needsGit = False
207 self.verbose = False
209 def run(self, args):
210 j = 0
211 for output in p4CmdList(" ".join(args)):
212 print 'Element: %d' % j
213 j += 1
214 print output
215 return True
217 class P4RollBack(Command):
218 def __init__(self):
219 Command.__init__(self)
220 self.options = [
221 optparse.make_option("--verbose", dest="verbose", action="store_true"),
222 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
224 self.description = "A tool to debug the multi-branch import. Don't use :)"
225 self.verbose = False
226 self.rollbackLocalBranches = False
228 def run(self, args):
229 if len(args) != 1:
230 return False
231 maxChange = int(args[0])
233 if "p4ExitCode" in p4Cmd("changes -m 1"):
234 die("Problems executing p4");
236 if self.rollbackLocalBranches:
237 refPrefix = "refs/heads/"
238 lines = read_pipe_lines("git rev-parse --symbolic --branches")
239 else:
240 refPrefix = "refs/remotes/"
241 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
243 for line in lines:
244 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
245 line = line.strip()
246 ref = refPrefix + line
247 log = extractLogMessageFromGitCommit(ref)
248 settings = extractSettingsGitLog(log)
250 depotPaths = settings['depot-paths']
251 change = settings['change']
253 changed = False
255 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
256 for p in depotPaths]))) == 0:
257 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
258 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
259 continue
261 while change and int(change) > maxChange:
262 changed = True
263 if self.verbose:
264 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
265 system("git update-ref %s \"%s^\"" % (ref, ref))
266 log = extractLogMessageFromGitCommit(ref)
267 settings = extractSettingsGitLog(log)
270 depotPaths = settings['depot-paths']
271 change = settings['change']
273 if changed:
274 print "%s rewound to %s" % (ref, change)
276 return True
278 class P4Submit(Command):
279 def __init__(self):
280 Command.__init__(self)
281 self.options = [
282 optparse.make_option("--continue", action="store_false", dest="firstTime"),
283 optparse.make_option("--verbose", dest="verbose", action="store_true"),
284 optparse.make_option("--origin", dest="origin"),
285 optparse.make_option("--reset", action="store_true", dest="reset"),
286 optparse.make_option("--log-substitutions", dest="substFile"),
287 optparse.make_option("--dry-run", action="store_true"),
288 optparse.make_option("--direct", dest="directSubmit", action="store_true"),
289 optparse.make_option("--trust-me-like-a-fool", dest="trustMeLikeAFool", action="store_true"),
291 self.description = "Submit changes from git to the perforce depot."
292 self.usage += " [name of git branch to submit into perforce depot]"
293 self.firstTime = True
294 self.reset = False
295 self.interactive = True
296 self.dryRun = False
297 self.substFile = ""
298 self.firstTime = True
299 self.origin = ""
300 self.directSubmit = False
301 self.trustMeLikeAFool = False
302 self.verbose = False
303 self.isWindows = (platform.system() == "Windows")
305 self.logSubstitutions = {}
306 self.logSubstitutions["<enter description here>"] = "%log%"
307 self.logSubstitutions["\tDetails:"] = "\tDetails: %log%"
309 def check(self):
310 if len(p4CmdList("opened ...")) > 0:
311 die("You have files opened with perforce! Close them before starting the sync.")
313 def start(self):
314 if len(self.config) > 0 and not self.reset:
315 die("Cannot start sync. Previous sync config found at %s\n"
316 "If you want to start submitting again from scratch "
317 "maybe you want to call git-p4 submit --reset" % self.configFile)
319 commits = []
320 if self.directSubmit:
321 commits.append("0")
322 else:
323 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
324 commits.append(line.strip())
325 commits.reverse()
327 self.config["commits"] = commits
329 def prepareLogMessage(self, template, message):
330 result = ""
332 for line in template.split("\n"):
333 if line.startswith("#"):
334 result += line + "\n"
335 continue
337 substituted = False
338 for key in self.logSubstitutions.keys():
339 if line.find(key) != -1:
340 value = self.logSubstitutions[key]
341 value = value.replace("%log%", message)
342 if value != "@remove@":
343 result += line.replace(key, value) + "\n"
344 substituted = True
345 break
347 if not substituted:
348 result += line + "\n"
350 return result
352 def applyCommit(self, id):
353 if self.directSubmit:
354 print "Applying local change in working directory/index"
355 diff = self.diffStatus
356 else:
357 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
358 diff = read_pipe_lines("git diff-tree -r --name-status \"%s^\" \"%s\"" % (id, id))
359 filesToAdd = set()
360 filesToDelete = set()
361 editedFiles = set()
362 for line in diff:
363 modifier = line[0]
364 path = line[1:].strip()
365 if modifier == "M":
366 system("p4 edit \"%s\"" % path)
367 editedFiles.add(path)
368 elif modifier == "A":
369 filesToAdd.add(path)
370 if path in filesToDelete:
371 filesToDelete.remove(path)
372 elif modifier == "D":
373 filesToDelete.add(path)
374 if path in filesToAdd:
375 filesToAdd.remove(path)
376 else:
377 die("unknown modifier %s for %s" % (modifier, path))
379 if self.directSubmit:
380 diffcmd = "cat \"%s\"" % self.diffFile
381 else:
382 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
383 patchcmd = diffcmd + " | git apply "
384 tryPatchCmd = patchcmd + "--check -"
385 applyPatchCmd = patchcmd + "--check --apply -"
387 if os.system(tryPatchCmd) != 0:
388 print "Unfortunately applying the change failed!"
389 print "What do you want to do?"
390 response = "x"
391 while response != "s" and response != "a" and response != "w":
392 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
393 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
394 if response == "s":
395 print "Skipping! Good luck with the next patches..."
396 return
397 elif response == "a":
398 os.system(applyPatchCmd)
399 if len(filesToAdd) > 0:
400 print "You may also want to call p4 add on the following files:"
401 print " ".join(filesToAdd)
402 if len(filesToDelete):
403 print "The following files should be scheduled for deletion with p4 delete:"
404 print " ".join(filesToDelete)
405 die("Please resolve and submit the conflict manually and "
406 + "continue afterwards with git-p4 submit --continue")
407 elif response == "w":
408 system(diffcmd + " > patch.txt")
409 print "Patch saved to patch.txt in %s !" % self.clientPath
410 die("Please resolve and submit the conflict manually and "
411 "continue afterwards with git-p4 submit --continue")
413 system(applyPatchCmd)
415 for f in filesToAdd:
416 system("p4 add \"%s\"" % f)
417 for f in filesToDelete:
418 system("p4 revert \"%s\"" % f)
419 system("p4 delete \"%s\"" % f)
421 logMessage = ""
422 if not self.directSubmit:
423 logMessage = extractLogMessageFromGitCommit(id)
424 logMessage = logMessage.replace("\n", "\n\t")
425 if self.isWindows:
426 logMessage = logMessage.replace("\n", "\r\n")
427 logMessage = logMessage.strip()
429 template = read_pipe("p4 change -o")
431 if self.interactive:
432 submitTemplate = self.prepareLogMessage(template, logMessage)
433 diff = read_pipe("p4 diff -du ...")
435 for newFile in filesToAdd:
436 diff += "==== new file ====\n"
437 diff += "--- /dev/null\n"
438 diff += "+++ %s\n" % newFile
439 f = open(newFile, "r")
440 for line in f.readlines():
441 diff += "+" + line
442 f.close()
444 separatorLine = "######## everything below this line is just the diff #######"
445 if platform.system() == "Windows":
446 separatorLine += "\r"
447 separatorLine += "\n"
449 response = "e"
450 if self.trustMeLikeAFool:
451 response = "y"
453 firstIteration = True
454 while response == "e":
455 if not firstIteration:
456 response = raw_input("Do you want to submit this change? [y]es/[e]dit/[n]o/[s]kip ")
457 firstIteration = False
458 if response == "e":
459 [handle, fileName] = tempfile.mkstemp()
460 tmpFile = os.fdopen(handle, "w+")
461 tmpFile.write(submitTemplate + separatorLine + diff)
462 tmpFile.close()
463 defaultEditor = "vi"
464 if platform.system() == "Windows":
465 defaultEditor = "notepad"
466 editor = os.environ.get("EDITOR", defaultEditor);
467 system(editor + " " + fileName)
468 tmpFile = open(fileName, "rb")
469 message = tmpFile.read()
470 tmpFile.close()
471 os.remove(fileName)
472 submitTemplate = message[:message.index(separatorLine)]
473 if self.isWindows:
474 submitTemplate = submitTemplate.replace("\r\n", "\n")
476 if response == "y" or response == "yes":
477 if self.dryRun:
478 print submitTemplate
479 raw_input("Press return to continue...")
480 else:
481 if self.directSubmit:
482 print "Submitting to git first"
483 os.chdir(self.oldWorkingDirectory)
484 write_pipe("git commit -a -F -", submitTemplate)
485 os.chdir(self.clientPath)
487 write_pipe("p4 submit -i", submitTemplate)
488 elif response == "s":
489 for f in editedFiles:
490 system("p4 revert \"%s\"" % f);
491 for f in filesToAdd:
492 system("p4 revert \"%s\"" % f);
493 system("rm %s" %f)
494 for f in filesToDelete:
495 system("p4 delete \"%s\"" % f);
496 return
497 else:
498 print "Not submitting!"
499 self.interactive = False
500 else:
501 fileName = "submit.txt"
502 file = open(fileName, "w+")
503 file.write(self.prepareLogMessage(template, logMessage))
504 file.close()
505 print ("Perforce submit template written as %s. "
506 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
507 % (fileName, fileName))
509 def run(self, args):
510 if len(args) == 0:
511 self.master = currentGitBranch()
512 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
513 die("Detecting current git branch failed!")
514 elif len(args) == 1:
515 self.master = args[0]
516 else:
517 return False
519 [upstream, settings] = findUpstreamBranchPoint()
520 depotPath = settings['depot-paths'][0]
521 if len(self.origin) == 0:
522 self.origin = upstream
524 if self.verbose:
525 print "Origin branch is " + self.origin
527 if len(depotPath) == 0:
528 print "Internal error: cannot locate perforce depot path from existing branches"
529 sys.exit(128)
531 self.clientPath = p4Where(depotPath)
533 if len(self.clientPath) == 0:
534 print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
535 sys.exit(128)
537 print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
538 self.oldWorkingDirectory = os.getcwd()
540 if self.directSubmit:
541 self.diffStatus = read_pipe_lines("git diff -r --name-status HEAD")
542 if len(self.diffStatus) == 0:
543 print "No changes in working directory to submit."
544 return True
545 patch = read_pipe("git diff -p --binary --diff-filter=ACMRTUXB HEAD")
546 self.diffFile = self.gitdir + "/p4-git-diff"
547 f = open(self.diffFile, "wb")
548 f.write(patch)
549 f.close();
551 os.chdir(self.clientPath)
552 response = raw_input("Do you want to sync %s with p4 sync? [y]es/[n]o " % self.clientPath)
553 if response == "y" or response == "yes":
554 system("p4 sync ...")
556 if self.reset:
557 self.firstTime = True
559 if len(self.substFile) > 0:
560 for line in open(self.substFile, "r").readlines():
561 tokens = line.strip().split("=")
562 self.logSubstitutions[tokens[0]] = tokens[1]
564 self.check()
565 self.configFile = self.gitdir + "/p4-git-sync.cfg"
566 self.config = shelve.open(self.configFile, writeback=True)
568 if self.firstTime:
569 self.start()
571 commits = self.config.get("commits", [])
573 while len(commits) > 0:
574 self.firstTime = False
575 commit = commits[0]
576 commits = commits[1:]
577 self.config["commits"] = commits
578 self.applyCommit(commit)
579 if not self.interactive:
580 break
582 self.config.close()
584 if self.directSubmit:
585 os.remove(self.diffFile)
587 if len(commits) == 0:
588 if self.firstTime:
589 print "No changes found to apply between %s and current HEAD" % self.origin
590 else:
591 print "All changes applied!"
592 os.chdir(self.oldWorkingDirectory)
593 response = raw_input("Do you want to sync from Perforce now using git-p4 rebase? [y]es/[n]o ")
594 if response == "y" or response == "yes":
595 rebase = P4Rebase()
596 rebase.run([])
597 os.remove(self.configFile)
599 return True
601 class P4Sync(Command):
602 def __init__(self):
603 Command.__init__(self)
604 self.options = [
605 optparse.make_option("--branch", dest="branch"),
606 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
607 optparse.make_option("--changesfile", dest="changesFile"),
608 optparse.make_option("--silent", dest="silent", action="store_true"),
609 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
610 optparse.make_option("--verbose", dest="verbose", action="store_true"),
611 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
612 help="Import into refs/heads/ , not refs/remotes"),
613 optparse.make_option("--max-changes", dest="maxChanges"),
614 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
615 help="Keep entire BRANCH/DIR/SUBDIR prefix during import")
617 self.description = """Imports from Perforce into a git repository.\n
618 example:
619 //depot/my/project/ -- to import the current head
620 //depot/my/project/@all -- to import everything
621 //depot/my/project/@1,6 -- to import only from revision 1 to 6
623 (a ... is not needed in the path p4 specification, it's added implicitly)"""
625 self.usage += " //depot/path[@revRange]"
626 self.silent = False
627 self.createdBranches = Set()
628 self.committedChanges = Set()
629 self.branch = ""
630 self.detectBranches = False
631 self.detectLabels = False
632 self.changesFile = ""
633 self.syncWithOrigin = True
634 self.verbose = False
635 self.importIntoRemotes = True
636 self.maxChanges = ""
637 self.isWindows = (platform.system() == "Windows")
638 self.keepRepoPath = False
639 self.depotPaths = None
640 self.p4BranchesInGit = []
642 if gitConfig("git-p4.syncFromOrigin") == "false":
643 self.syncWithOrigin = False
645 def extractFilesFromCommit(self, commit):
646 files = []
647 fnum = 0
648 while commit.has_key("depotFile%s" % fnum):
649 path = commit["depotFile%s" % fnum]
651 found = [p for p in self.depotPaths
652 if path.startswith (p)]
653 if not found:
654 fnum = fnum + 1
655 continue
657 file = {}
658 file["path"] = path
659 file["rev"] = commit["rev%s" % fnum]
660 file["action"] = commit["action%s" % fnum]
661 file["type"] = commit["type%s" % fnum]
662 files.append(file)
663 fnum = fnum + 1
664 return files
666 def stripRepoPath(self, path, prefixes):
667 if self.keepRepoPath:
668 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
670 for p in prefixes:
671 if path.startswith(p):
672 path = path[len(p):]
674 return path
676 def splitFilesIntoBranches(self, commit):
677 branches = {}
678 fnum = 0
679 while commit.has_key("depotFile%s" % fnum):
680 path = commit["depotFile%s" % fnum]
681 found = [p for p in self.depotPaths
682 if path.startswith (p)]
683 if not found:
684 fnum = fnum + 1
685 continue
687 file = {}
688 file["path"] = path
689 file["rev"] = commit["rev%s" % fnum]
690 file["action"] = commit["action%s" % fnum]
691 file["type"] = commit["type%s" % fnum]
692 fnum = fnum + 1
694 relPath = self.stripRepoPath(path, self.depotPaths)
696 for branch in self.knownBranches.keys():
698 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
699 if relPath.startswith(branch + "/"):
700 if branch not in branches:
701 branches[branch] = []
702 branches[branch].append(file)
703 break
705 return branches
707 ## Should move this out, doesn't use SELF.
708 def readP4Files(self, files):
709 files = [f for f in files
710 if f['action'] != 'delete']
712 if not files:
713 return
715 # We cannot put all the files on the command line
716 # OS have limitations on the max lenght of arguments
717 # POSIX says it's 4096 bytes, default for Linux seems to be 130 K.
718 # and all OS from the table below seems to be higher than POSIX.
719 # See http://www.in-ulm.de/~mascheck/various/argmax/
720 argmax = min(4000, os.sysconf('SC_ARG_MAX'))
721 chunk = ''
722 filedata = []
723 for i in xrange(len(files)):
724 f = files[i]
725 chunk += '"%s#%s" ' % (f['path'], f['rev'])
726 if len(chunk) > argmax or i == len(files)-1:
727 data = p4CmdList('print %s' % chunk)
728 if "p4ExitCode" in data[0]:
729 die("Problems executing p4. Error: [%d]." % (data[0]['p4ExitCode']));
730 filedata.extend(data)
731 chunk = ''
733 j = 0;
734 contents = {}
735 while j < len(filedata):
736 stat = filedata[j]
737 j += 1
738 text = ''
739 while j < len(filedata) and filedata[j]['code'] in ('text',
740 'binary'):
741 text += filedata[j]['data']
742 j += 1
745 if not stat.has_key('depotFile'):
746 sys.stderr.write("p4 print fails with: %s\n" % repr(stat))
747 continue
749 contents[stat['depotFile']] = text
751 for f in files:
752 assert not f.has_key('data')
753 f['data'] = contents[f['path']]
755 def commit(self, details, files, branch, branchPrefixes, parent = ""):
756 epoch = details["time"]
757 author = details["user"]
759 if self.verbose:
760 print "commit into %s" % branch
762 # start with reading files; if that fails, we should not
763 # create a commit.
764 new_files = []
765 for f in files:
766 if [p for p in branchPrefixes if f['path'].startswith(p)]:
767 new_files.append (f)
768 else:
769 sys.stderr.write("Ignoring file outside of prefix: %s\n" % path)
770 files = new_files
771 self.readP4Files(files)
776 self.gitStream.write("commit %s\n" % branch)
777 # gitStream.write("mark :%s\n" % details["change"])
778 self.committedChanges.add(int(details["change"]))
779 committer = ""
780 if author not in self.users:
781 self.getUserMapFromPerforceServer()
782 if author in self.users:
783 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
784 else:
785 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
787 self.gitStream.write("committer %s\n" % committer)
789 self.gitStream.write("data <<EOT\n")
790 self.gitStream.write(details["desc"])
791 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
792 % (','.join (branchPrefixes), details["change"]))
793 if len(details['options']) > 0:
794 self.gitStream.write(": options = %s" % details['options'])
795 self.gitStream.write("]\nEOT\n\n")
797 if len(parent) > 0:
798 if self.verbose:
799 print "parent %s" % parent
800 self.gitStream.write("from %s\n" % parent)
802 for file in files:
803 if file["type"] == "apple":
804 print "\nfile %s is a strange apple file that forks. Ignoring!" % file['path']
805 continue
807 relPath = self.stripRepoPath(file['path'], branchPrefixes)
808 if file["action"] == "delete":
809 self.gitStream.write("D %s\n" % relPath)
810 else:
811 mode = 644
812 if file["type"].startswith("x"):
813 mode = 755
815 data = file['data']
817 if self.isWindows and file["type"].endswith("text"):
818 data = data.replace("\r\n", "\n")
820 self.gitStream.write("M %d inline %s\n" % (mode, relPath))
821 self.gitStream.write("data %s\n" % len(data))
822 self.gitStream.write(data)
823 self.gitStream.write("\n")
825 self.gitStream.write("\n")
827 change = int(details["change"])
829 if self.labels.has_key(change):
830 label = self.labels[change]
831 labelDetails = label[0]
832 labelRevisions = label[1]
833 if self.verbose:
834 print "Change %s is labelled %s" % (change, labelDetails)
836 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
837 for p in branchPrefixes]))
839 if len(files) == len(labelRevisions):
841 cleanedFiles = {}
842 for info in files:
843 if info["action"] == "delete":
844 continue
845 cleanedFiles[info["depotFile"]] = info["rev"]
847 if cleanedFiles == labelRevisions:
848 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
849 self.gitStream.write("from %s\n" % branch)
851 owner = labelDetails["Owner"]
852 tagger = ""
853 if author in self.users:
854 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
855 else:
856 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
857 self.gitStream.write("tagger %s\n" % tagger)
858 self.gitStream.write("data <<EOT\n")
859 self.gitStream.write(labelDetails["Description"])
860 self.gitStream.write("EOT\n\n")
862 else:
863 if not self.silent:
864 print ("Tag %s does not match with change %s: files do not match."
865 % (labelDetails["label"], change))
867 else:
868 if not self.silent:
869 print ("Tag %s does not match with change %s: file count is different."
870 % (labelDetails["label"], change))
872 def getUserCacheFilename(self):
873 return os.environ["HOME"] + "/.gitp4-usercache.txt"
875 def getUserMapFromPerforceServer(self):
876 if self.userMapFromPerforceServer:
877 return
878 self.users = {}
880 for output in p4CmdList("users"):
881 if not output.has_key("User"):
882 continue
883 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
886 s = ''
887 for (key, val) in self.users.items():
888 s += "%s\t%s\n" % (key, val)
890 open(self.getUserCacheFilename(), "wb").write(s)
891 self.userMapFromPerforceServer = True
893 def loadUserMapFromCache(self):
894 self.users = {}
895 self.userMapFromPerforceServer = False
896 try:
897 cache = open(self.getUserCacheFilename(), "rb")
898 lines = cache.readlines()
899 cache.close()
900 for line in lines:
901 entry = line.strip().split("\t")
902 self.users[entry[0]] = entry[1]
903 except IOError:
904 self.getUserMapFromPerforceServer()
906 def getLabels(self):
907 self.labels = {}
909 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
910 if len(l) > 0 and not self.silent:
911 print "Finding files belonging to labels in %s" % `self.depotPath`
913 for output in l:
914 label = output["label"]
915 revisions = {}
916 newestChange = 0
917 if self.verbose:
918 print "Querying files for label %s" % label
919 for file in p4CmdList("files "
920 + ' '.join (["%s...@%s" % (p, label)
921 for p in self.depotPaths])):
922 revisions[file["depotFile"]] = file["rev"]
923 change = int(file["change"])
924 if change > newestChange:
925 newestChange = change
927 self.labels[newestChange] = [output, revisions]
929 if self.verbose:
930 print "Label changes: %s" % self.labels.keys()
932 def guessProjectName(self):
933 for p in self.depotPaths:
934 if p.endswith("/"):
935 p = p[:-1]
936 p = p[p.strip().rfind("/") + 1:]
937 if not p.endswith("/"):
938 p += "/"
939 return p
941 def getBranchMapping(self):
942 lostAndFoundBranches = set()
944 for info in p4CmdList("branches"):
945 details = p4Cmd("branch -o %s" % info["branch"])
946 viewIdx = 0
947 while details.has_key("View%s" % viewIdx):
948 paths = details["View%s" % viewIdx].split(" ")
949 viewIdx = viewIdx + 1
950 # require standard //depot/foo/... //depot/bar/... mapping
951 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
952 continue
953 source = paths[0]
954 destination = paths[1]
955 ## HACK
956 if source.startswith(self.depotPaths[0]) and destination.startswith(self.depotPaths[0]):
957 source = source[len(self.depotPaths[0]):-4]
958 destination = destination[len(self.depotPaths[0]):-4]
960 self.knownBranches[destination] = source
962 lostAndFoundBranches.discard(destination)
964 if source not in self.knownBranches:
965 lostAndFoundBranches.add(source)
968 for branch in lostAndFoundBranches:
969 self.knownBranches[branch] = branch
971 def listExistingP4GitBranches(self):
972 self.p4BranchesInGit = []
974 cmdline = "git rev-parse --symbolic "
975 if self.importIntoRemotes:
976 cmdline += " --remotes"
977 else:
978 cmdline += " --branches"
980 for line in read_pipe_lines(cmdline):
981 line = line.strip()
983 ## only import to p4/
984 if not line.startswith('p4/') or line == "p4/HEAD":
985 continue
986 branch = line
988 # strip off p4
989 branch = re.sub ("^p4/", "", line)
991 self.p4BranchesInGit.append(branch)
992 self.initialParents[self.refPrefix + branch] = parseRevision(line)
994 def createOrUpdateBranchesFromOrigin(self):
995 if not self.silent:
996 print ("Creating/updating branch(es) in %s based on origin branch(es)"
997 % self.refPrefix)
999 originPrefix = "origin/p4/"
1001 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
1002 line = line.strip()
1003 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
1004 continue
1006 headName = line[len(originPrefix):]
1007 remoteHead = self.refPrefix + headName
1008 originHead = line
1010 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
1011 if (not original.has_key('depot-paths')
1012 or not original.has_key('change')):
1013 continue
1015 update = False
1016 if not gitBranchExists(remoteHead):
1017 if self.verbose:
1018 print "creating %s" % remoteHead
1019 update = True
1020 else:
1021 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
1022 if settings.has_key('change') > 0:
1023 if settings['depot-paths'] == original['depot-paths']:
1024 originP4Change = int(original['change'])
1025 p4Change = int(settings['change'])
1026 if originP4Change > p4Change:
1027 print ("%s (%s) is newer than %s (%s). "
1028 "Updating p4 branch from origin."
1029 % (originHead, originP4Change,
1030 remoteHead, p4Change))
1031 update = True
1032 else:
1033 print ("Ignoring: %s was imported from %s while "
1034 "%s was imported from %s"
1035 % (originHead, ','.join(original['depot-paths']),
1036 remoteHead, ','.join(settings['depot-paths'])))
1038 if update:
1039 system("git update-ref %s %s" % (remoteHead, originHead))
1041 def updateOptionDict(self, d):
1042 option_keys = {}
1043 if self.keepRepoPath:
1044 option_keys['keepRepoPath'] = 1
1046 d["options"] = ' '.join(sorted(option_keys.keys()))
1048 def readOptions(self, d):
1049 self.keepRepoPath = (d.has_key('options')
1050 and ('keepRepoPath' in d['options']))
1052 def run(self, args):
1053 self.depotPaths = []
1054 self.changeRange = ""
1055 self.initialParent = ""
1056 self.previousDepotPaths = []
1058 # map from branch depot path to parent branch
1059 self.knownBranches = {}
1060 self.initialParents = {}
1061 self.hasOrigin = gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
1062 if not self.syncWithOrigin:
1063 self.hasOrigin = False
1065 if self.importIntoRemotes:
1066 self.refPrefix = "refs/remotes/p4/"
1067 else:
1068 self.refPrefix = "refs/heads/p4/"
1070 if self.syncWithOrigin and self.hasOrigin:
1071 if not self.silent:
1072 print "Syncing with origin first by calling git fetch origin"
1073 system("git fetch origin")
1075 if len(self.branch) == 0:
1076 self.branch = self.refPrefix + "master"
1077 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
1078 system("git update-ref %s refs/heads/p4" % self.branch)
1079 system("git branch -D p4");
1080 # create it /after/ importing, when master exists
1081 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
1082 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1084 # TODO: should always look at previous commits,
1085 # merge with previous imports, if possible.
1086 if args == []:
1087 if self.hasOrigin:
1088 self.createOrUpdateBranchesFromOrigin()
1089 self.listExistingP4GitBranches()
1091 if len(self.p4BranchesInGit) > 1:
1092 if not self.silent:
1093 print "Importing from/into multiple branches"
1094 self.detectBranches = True
1096 if self.verbose:
1097 print "branches: %s" % self.p4BranchesInGit
1099 p4Change = 0
1100 for branch in self.p4BranchesInGit:
1101 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
1103 settings = extractSettingsGitLog(logMsg)
1105 self.readOptions(settings)
1106 if (settings.has_key('depot-paths')
1107 and settings.has_key ('change')):
1108 change = int(settings['change']) + 1
1109 p4Change = max(p4Change, change)
1111 depotPaths = sorted(settings['depot-paths'])
1112 if self.previousDepotPaths == []:
1113 self.previousDepotPaths = depotPaths
1114 else:
1115 paths = []
1116 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
1117 for i in range(0, min(len(cur), len(prev))):
1118 if cur[i] <> prev[i]:
1119 i = i - 1
1120 break
1122 paths.append (cur[:i + 1])
1124 self.previousDepotPaths = paths
1126 if p4Change > 0:
1127 self.depotPaths = sorted(self.previousDepotPaths)
1128 self.changeRange = "@%s,#head" % p4Change
1129 if not self.detectBranches:
1130 self.initialParent = parseRevision(self.branch)
1131 if not self.silent and not self.detectBranches:
1132 print "Performing incremental import into %s git branch" % self.branch
1134 if not self.branch.startswith("refs/"):
1135 self.branch = "refs/heads/" + self.branch
1137 if len(args) == 0 and self.depotPaths:
1138 if not self.silent:
1139 print "Depot paths: %s" % ' '.join(self.depotPaths)
1140 else:
1141 if self.depotPaths and self.depotPaths != args:
1142 print ("previous import used depot path %s and now %s was specified. "
1143 "This doesn't work!" % (' '.join (self.depotPaths),
1144 ' '.join (args)))
1145 sys.exit(1)
1147 self.depotPaths = sorted(args)
1149 self.revision = ""
1150 self.users = {}
1152 newPaths = []
1153 for p in self.depotPaths:
1154 if p.find("@") != -1:
1155 atIdx = p.index("@")
1156 self.changeRange = p[atIdx:]
1157 if self.changeRange == "@all":
1158 self.changeRange = ""
1159 elif ',' not in self.changeRange:
1160 self.revision = self.changeRange
1161 self.changeRange = ""
1162 p = p[0:atIdx]
1163 elif p.find("#") != -1:
1164 hashIdx = p.index("#")
1165 self.revision = p[hashIdx:]
1166 p = p[0:hashIdx]
1167 elif self.previousDepotPaths == []:
1168 self.revision = "#head"
1170 p = re.sub ("\.\.\.$", "", p)
1171 if not p.endswith("/"):
1172 p += "/"
1174 newPaths.append(p)
1176 self.depotPaths = newPaths
1179 self.loadUserMapFromCache()
1180 self.labels = {}
1181 if self.detectLabels:
1182 self.getLabels();
1184 if self.detectBranches:
1185 ## FIXME - what's a P4 projectName ?
1186 self.projectName = self.guessProjectName()
1188 if not self.hasOrigin:
1189 self.getBranchMapping();
1190 if self.verbose:
1191 print "p4-git branches: %s" % self.p4BranchesInGit
1192 print "initial parents: %s" % self.initialParents
1193 for b in self.p4BranchesInGit:
1194 if b != "master":
1196 ## FIXME
1197 b = b[len(self.projectName):]
1198 self.createdBranches.add(b)
1200 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
1202 importProcess = subprocess.Popen(["git", "fast-import"],
1203 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1204 stderr=subprocess.PIPE);
1205 self.gitOutput = importProcess.stdout
1206 self.gitStream = importProcess.stdin
1207 self.gitError = importProcess.stderr
1209 if self.revision:
1210 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), self.revision, self.branch)
1212 details = { "user" : "git perforce import user", "time" : int(time.time()) }
1213 details["desc"] = ("Initial import of %s from the state at revision %s"
1214 % (' '.join(self.depotPaths), self.revision))
1215 details["change"] = self.revision
1216 newestRevision = 0
1218 fileCnt = 0
1219 for info in p4CmdList("files "
1220 + ' '.join(["%s...%s"
1221 % (p, self.revision)
1222 for p in self.depotPaths])):
1224 if info['code'] == 'error':
1225 sys.stderr.write("p4 returned an error: %s\n"
1226 % info['data'])
1227 sys.exit(1)
1230 change = int(info["change"])
1231 if change > newestRevision:
1232 newestRevision = change
1234 if info["action"] == "delete":
1235 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1236 #fileCnt = fileCnt + 1
1237 continue
1239 for prop in ["depotFile", "rev", "action", "type" ]:
1240 details["%s%s" % (prop, fileCnt)] = info[prop]
1242 fileCnt = fileCnt + 1
1244 details["change"] = newestRevision
1245 self.updateOptionDict(details)
1246 try:
1247 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1248 except IOError:
1249 print "IO error with git fast-import. Is your git version recent enough?"
1250 print self.gitError.read()
1252 else:
1253 changes = []
1255 if len(self.changesFile) > 0:
1256 output = open(self.changesFile).readlines()
1257 changeSet = Set()
1258 for line in output:
1259 changeSet.add(int(line))
1261 for change in changeSet:
1262 changes.append(change)
1264 changes.sort()
1265 else:
1266 if self.verbose:
1267 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
1268 self.changeRange)
1269 assert self.depotPaths
1270 output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, self.changeRange)
1271 for p in self.depotPaths]))
1273 for line in output:
1274 changeNum = line.split(" ")[1]
1275 changes.append(changeNum)
1277 changes.reverse()
1279 if len(self.maxChanges) > 0:
1280 changes = changes[0:min(int(self.maxChanges), len(changes))]
1282 if len(changes) == 0:
1283 if not self.silent:
1284 print "No changes to import!"
1285 return True
1287 if not self.silent and not self.detectBranches:
1288 print "Import destination: %s" % self.branch
1290 self.updatedBranches = set()
1292 cnt = 1
1293 for change in changes:
1294 description = p4Cmd("describe %s" % change)
1295 self.updateOptionDict(description)
1297 if not self.silent:
1298 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1299 sys.stdout.flush()
1300 cnt = cnt + 1
1302 try:
1303 if self.detectBranches:
1304 branches = self.splitFilesIntoBranches(description)
1305 for branch in branches.keys():
1306 ## HACK --hwn
1307 branchPrefix = self.depotPaths[0] + branch + "/"
1309 parent = ""
1311 filesForCommit = branches[branch]
1313 if self.verbose:
1314 print "branch is %s" % branch
1316 self.updatedBranches.add(branch)
1318 if branch not in self.createdBranches:
1319 self.createdBranches.add(branch)
1320 parent = self.knownBranches[branch]
1321 if parent == branch:
1322 parent = ""
1323 elif self.verbose:
1324 print "parent determined through known branches: %s" % parent
1326 # main branch? use master
1327 if branch == "main":
1328 branch = "master"
1329 else:
1331 ## FIXME
1332 branch = self.projectName + branch
1334 if parent == "main":
1335 parent = "master"
1336 elif len(parent) > 0:
1337 ## FIXME
1338 parent = self.projectName + parent
1340 branch = self.refPrefix + branch
1341 if len(parent) > 0:
1342 parent = self.refPrefix + parent
1344 if self.verbose:
1345 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1347 if len(parent) == 0 and branch in self.initialParents:
1348 parent = self.initialParents[branch]
1349 del self.initialParents[branch]
1351 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1352 else:
1353 files = self.extractFilesFromCommit(description)
1354 self.commit(description, files, self.branch, self.depotPaths,
1355 self.initialParent)
1356 self.initialParent = ""
1357 except IOError:
1358 print self.gitError.read()
1359 sys.exit(1)
1361 if not self.silent:
1362 print ""
1363 if len(self.updatedBranches) > 0:
1364 sys.stdout.write("Updated branches: ")
1365 for b in self.updatedBranches:
1366 sys.stdout.write("%s " % b)
1367 sys.stdout.write("\n")
1370 self.gitStream.close()
1371 if importProcess.wait() != 0:
1372 die("fast-import failed: %s" % self.gitError.read())
1373 self.gitOutput.close()
1374 self.gitError.close()
1376 return True
1378 class P4Rebase(Command):
1379 def __init__(self):
1380 Command.__init__(self)
1381 self.options = [ ]
1382 self.description = ("Fetches the latest revision from perforce and "
1383 + "rebases the current work (branch) against it")
1384 self.verbose = False
1386 def run(self, args):
1387 sync = P4Sync()
1388 sync.run([])
1390 [upstream, settings] = findUpstreamBranchPoint()
1391 if len(upstream) == 0:
1392 die("Cannot find upstream branchpoint for rebase")
1394 # the branchpoint may be p4/foo~3, so strip off the parent
1395 upstream = re.sub("~[0-9]+$", "", upstream)
1397 print "Rebasing the current branch onto %s" % upstream
1398 oldHead = read_pipe("git rev-parse HEAD").strip()
1399 system("git rebase %s" % upstream)
1400 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
1401 return True
1403 class P4Clone(P4Sync):
1404 def __init__(self):
1405 P4Sync.__init__(self)
1406 self.description = "Creates a new git repository and imports from Perforce into it"
1407 self.usage = "usage: %prog [options] //depot/path[@revRange]"
1408 self.options.append(
1409 optparse.make_option("--destination", dest="cloneDestination",
1410 action='store', default=None,
1411 help="where to leave result of the clone"))
1412 self.cloneDestination = None
1413 self.needsGit = False
1415 def defaultDestination(self, args):
1416 ## TODO: use common prefix of args?
1417 depotPath = args[0]
1418 depotDir = re.sub("(@[^@]*)$", "", depotPath)
1419 depotDir = re.sub("(#[^#]*)$", "", depotDir)
1420 depotDir = re.sub(r"\.\.\.$,", "", depotDir)
1421 depotDir = re.sub(r"/$", "", depotDir)
1422 return os.path.split(depotDir)[1]
1424 def run(self, args):
1425 if len(args) < 1:
1426 return False
1428 if self.keepRepoPath and not self.cloneDestination:
1429 sys.stderr.write("Must specify destination for --keep-path\n")
1430 sys.exit(1)
1432 depotPaths = args
1434 if not self.cloneDestination and len(depotPaths) > 1:
1435 self.cloneDestination = depotPaths[-1]
1436 depotPaths = depotPaths[:-1]
1438 for p in depotPaths:
1439 if not p.startswith("//"):
1440 return False
1442 if not self.cloneDestination:
1443 self.cloneDestination = self.defaultDestination(args)
1445 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
1446 if not os.path.exists(self.cloneDestination):
1447 os.makedirs(self.cloneDestination)
1448 os.chdir(self.cloneDestination)
1449 system("git init")
1450 self.gitdir = os.getcwd() + "/.git"
1451 if not P4Sync.run(self, depotPaths):
1452 return False
1453 if self.branch != "master":
1454 if gitBranchExists("refs/remotes/p4/master"):
1455 system("git branch master refs/remotes/p4/master")
1456 system("git checkout -f")
1457 else:
1458 print "Could not detect main branch. No checkout/master branch created."
1460 return True
1462 class HelpFormatter(optparse.IndentedHelpFormatter):
1463 def __init__(self):
1464 optparse.IndentedHelpFormatter.__init__(self)
1466 def format_description(self, description):
1467 if description:
1468 return description + "\n"
1469 else:
1470 return ""
1472 def printUsage(commands):
1473 print "usage: %s <command> [options]" % sys.argv[0]
1474 print ""
1475 print "valid commands: %s" % ", ".join(commands)
1476 print ""
1477 print "Try %s <command> --help for command specific help." % sys.argv[0]
1478 print ""
1480 commands = {
1481 "debug" : P4Debug,
1482 "submit" : P4Submit,
1483 "sync" : P4Sync,
1484 "rebase" : P4Rebase,
1485 "clone" : P4Clone,
1486 "rollback" : P4RollBack
1490 def main():
1491 if len(sys.argv[1:]) == 0:
1492 printUsage(commands.keys())
1493 sys.exit(2)
1495 cmd = ""
1496 cmdName = sys.argv[1]
1497 try:
1498 klass = commands[cmdName]
1499 cmd = klass()
1500 except KeyError:
1501 print "unknown command %s" % cmdName
1502 print ""
1503 printUsage(commands.keys())
1504 sys.exit(2)
1506 options = cmd.options
1507 cmd.gitdir = os.environ.get("GIT_DIR", None)
1509 args = sys.argv[2:]
1511 if len(options) > 0:
1512 options.append(optparse.make_option("--git-dir", dest="gitdir"))
1514 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1515 options,
1516 description = cmd.description,
1517 formatter = HelpFormatter())
1519 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1520 global verbose
1521 verbose = cmd.verbose
1522 if cmd.needsGit:
1523 if cmd.gitdir == None:
1524 cmd.gitdir = os.path.abspath(".git")
1525 if not isValidGitDir(cmd.gitdir):
1526 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
1527 if os.path.exists(cmd.gitdir):
1528 cdup = read_pipe("git rev-parse --show-cdup").strip()
1529 if len(cdup) > 0:
1530 os.chdir(cdup);
1532 if not isValidGitDir(cmd.gitdir):
1533 if isValidGitDir(cmd.gitdir + "/.git"):
1534 cmd.gitdir += "/.git"
1535 else:
1536 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
1538 os.environ["GIT_DIR"] = cmd.gitdir
1540 if not cmd.run(args):
1541 parser.print_help()
1544 if __name__ == '__main__':
1545 main()