contrib / fast-import / git-p4on commit Moved the code from git-p4 submit to figure out the upstream branch point (27d2d81)
   1#!/usr/bin/env python
   2#
   3# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
   4#
   5# Author: Simon Hausmann <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>
   9#
  10
  11import optparse, sys, os, marshal, popen2, subprocess, shelve
  12import tempfile, getopt, sha, os.path, time, platform
  13import re
  14
  15from sets import Set;
  16
  17verbose = False
  18
  19def die(msg):
  20    if verbose:
  21        raise Exception(msg)
  22    else:
  23        sys.stderr.write(msg + "\n")
  24        sys.exit(1)
  25
  26def write_pipe(c, str):
  27    if verbose:
  28        sys.stderr.write('Writing pipe: %s\n' % c)
  29
  30    pipe = os.popen(c, 'w')
  31    val = pipe.write(str)
  32    if pipe.close():
  33        die('Command failed: %s' % c)
  34
  35    return val
  36
  37def read_pipe(c, ignore_error=False):
  38    if verbose:
  39        sys.stderr.write('Reading pipe: %s\n' % c)
  40
  41    pipe = os.popen(c, 'rb')
  42    val = pipe.read()
  43    if pipe.close() and not ignore_error:
  44        die('Command failed: %s' % c)
  45
  46    return val
  47
  48
  49def 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)
  57
  58    return val
  59
  60def 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)
  65
  66def 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")
  71
  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)
  84
  85    return result
  86
  87def p4Cmd(cmd):
  88    list = p4CmdList(cmd)
  89    result = {}
  90    for entry in list:
  91        result.update(entry)
  92    return result;
  93
  94def 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:]
 107
 108    if clientPath.endswith("..."):
 109        clientPath = clientPath[:-3]
 110    return clientPath
 111
 112def currentGitBranch():
 113    return read_pipe("git name-rev HEAD").split(" ")[1].strip()
 114
 115def 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
 120
 121def parseRevision(ref):
 122    return read_pipe("git rev-parse %s" % ref).strip()
 123
 124def extractLogMessageFromGitCommit(commit):
 125    logMessage = ""
 126
 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
 134
 135       logMessage += log
 136    return logMessage
 137
 138def 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
 145
 146        assignments = m.group(1).split (':')
 147        for a in assignments:
 148            vals = a.split ('=')
 149            key = vals[0].strip()
 150            val = ('='.join (vals[1:])).strip()
 151            if val.endswith ('\"') and val.startswith('"'):
 152                val = val[1:-1]
 153
 154            values[key] = val
 155
 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
 162
 163def gitBranchExists(branch):
 164    proc = subprocess.Popen(["git", "rev-parse", branch],
 165                            stderr=subprocess.PIPE, stdout=subprocess.PIPE);
 166    return proc.wait() == 0;
 167
 168def gitConfig(key):
 169    return read_pipe("git config %s" % key, ignore_error=True).strip()
 170
 171def 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
 182
 183        names = read_pipe_lines("git name-rev '--refs=refs/remotes/p4/*' '%s'" % commit)
 184        if len(names) <= 0:
 185            continue
 186
 187        # strip away the beginning of 'HEAD~42 refs/remotes/p4/foo'
 188        branchPoint = names[0].strip()[len(commit) + 1:]
 189        break
 190
 191    return [branchPoint, settings]
 192
 193class Command:
 194    def __init__(self):
 195        self.usage = "usage: %prog [options]"
 196        self.needsGit = True
 197
 198class 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),
 204            ]
 205        self.description = "A tool to debug the output of p4 -G."
 206        self.needsGit = False
 207        self.verbose = False
 208
 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
 216
 217class 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")
 223        ]
 224        self.description = "A tool to debug the multi-branch import. Don't use :)"
 225        self.verbose = False
 226        self.rollbackLocalBranches = False
 227
 228    def run(self, args):
 229        if len(args) != 1:
 230            return False
 231        maxChange = int(args[0])
 232
 233        if "p4ExitCode" in p4Cmd("changes -m 1"):
 234            die("Problems executing p4");
 235
 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")
 242
 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)
 249
 250                depotPaths = settings['depot-paths']
 251                change = settings['change']
 252
 253                changed = False
 254
 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
 260
 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)
 268
 269
 270                    depotPaths = settings['depot-paths']
 271                    change = settings['change']
 272
 273                if changed:
 274                    print "%s rewound to %s" % (ref, change)
 275
 276        return True
 277
 278class 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"),
 290        ]
 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")
 304
 305        self.logSubstitutions = {}
 306        self.logSubstitutions["<enter description here>"] = "%log%"
 307        self.logSubstitutions["\tDetails:"] = "\tDetails:  %log%"
 308
 309    def check(self):
 310        if len(p4CmdList("opened ...")) > 0:
 311            die("You have files opened with perforce! Close them before starting the sync.")
 312
 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)
 318
 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()
 326
 327        self.config["commits"] = commits
 328
 329    def prepareLogMessage(self, template, message):
 330        result = ""
 331
 332        for line in template.split("\n"):
 333            if line.startswith("#"):
 334                result += line + "\n"
 335                continue
 336
 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
 346
 347            if not substituted:
 348                result += line + "\n"
 349
 350        return result
 351
 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))
 378
 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 -"
 386
 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")
 412
 413        system(applyPatchCmd)
 414
 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)
 420
 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()
 428
 429        template = read_pipe("p4 change -o")
 430
 431        if self.interactive:
 432            submitTemplate = self.prepareLogMessage(template, logMessage)
 433            diff = read_pipe("p4 diff -du ...")
 434
 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()
 443
 444            separatorLine = "######## everything below this line is just the diff #######"
 445            if platform.system() == "Windows":
 446                separatorLine += "\r"
 447            separatorLine += "\n"
 448
 449            response = "e"
 450            if self.trustMeLikeAFool:
 451                response = "y"
 452
 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")
 475
 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)
 486
 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))
 508
 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
 518
 519        [upstream, settings] = findUpstreamBranchPoint()
 520        depotPath = settings['depot-paths'][0]
 521        if len(self.origin) == 0:
 522            self.origin = upstream
 523
 524        if self.verbose:
 525            print "Origin branch is " + self.origin
 526
 527        if len(depotPath) == 0:
 528            print "Internal error: cannot locate perforce depot path from existing branches"
 529            sys.exit(128)
 530
 531        self.clientPath = p4Where(depotPath)
 532
 533        if len(self.clientPath) == 0:
 534            print "Error: Cannot locate perforce checkout of %s in client view" % depotPath
 535            sys.exit(128)
 536
 537        print "Perforce checkout for depot path %s located at %s" % (depotPath, self.clientPath)
 538        self.oldWorkingDirectory = os.getcwd()
 539
 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();
 550
 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 ...")
 555
 556        if self.reset:
 557            self.firstTime = True
 558
 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]
 563
 564        self.check()
 565        self.configFile = self.gitdir + "/p4-git-sync.cfg"
 566        self.config = shelve.open(self.configFile, writeback=True)
 567
 568        if self.firstTime:
 569            self.start()
 570
 571        commits = self.config.get("commits", [])
 572
 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
 581
 582        self.config.close()
 583
 584        if self.directSubmit:
 585            os.remove(self.diffFile)
 586
 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)
 598
 599        return True
 600
 601class 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")
 616        ]
 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
 622
 623    (a ... is not needed in the path p4 specification, it's added implicitly)"""
 624
 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
 641        if gitConfig("git-p4.syncFromOrigin") == "false":
 642            self.syncWithOrigin = False
 643
 644    def extractFilesFromCommit(self, commit):
 645        files = []
 646        fnum = 0
 647        while commit.has_key("depotFile%s" % fnum):
 648            path =  commit["depotFile%s" % fnum]
 649
 650            found = [p for p in self.depotPaths
 651                     if path.startswith (p)]
 652            if not found:
 653                fnum = fnum + 1
 654                continue
 655
 656            file = {}
 657            file["path"] = path
 658            file["rev"] = commit["rev%s" % fnum]
 659            file["action"] = commit["action%s" % fnum]
 660            file["type"] = commit["type%s" % fnum]
 661            files.append(file)
 662            fnum = fnum + 1
 663        return files
 664
 665    def stripRepoPath(self, path, prefixes):
 666        if self.keepRepoPath:
 667            prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
 668
 669        for p in prefixes:
 670            if path.startswith(p):
 671                path = path[len(p):]
 672
 673        return path
 674
 675    def splitFilesIntoBranches(self, commit):
 676        branches = {}
 677        fnum = 0
 678        while commit.has_key("depotFile%s" % fnum):
 679            path =  commit["depotFile%s" % fnum]
 680            found = [p for p in self.depotPaths
 681                     if path.startswith (p)]
 682            if not found:
 683                fnum = fnum + 1
 684                continue
 685
 686            file = {}
 687            file["path"] = path
 688            file["rev"] = commit["rev%s" % fnum]
 689            file["action"] = commit["action%s" % fnum]
 690            file["type"] = commit["type%s" % fnum]
 691            fnum = fnum + 1
 692
 693            relPath = self.stripRepoPath(path, self.depotPaths)
 694
 695            for branch in self.knownBranches.keys():
 696
 697                # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
 698                if relPath.startswith(branch + "/"):
 699                    if branch not in branches:
 700                        branches[branch] = []
 701                    branches[branch].append(file)
 702
 703        return branches
 704
 705    ## Should move this out, doesn't use SELF.
 706    def readP4Files(self, files):
 707        files = [f for f in files
 708                 if f['action'] != 'delete']
 709
 710        if not files:
 711            return
 712
 713        filedata = p4CmdList('print %s' % ' '.join(['"%s#%s"' % (f['path'],
 714                                                                 f['rev'])
 715                                                    for f in files]))
 716
 717        j = 0;
 718        contents = {}
 719        while j < len(filedata):
 720            stat = filedata[j]
 721            j += 1
 722            text = ''
 723            while j < len(filedata) and filedata[j]['code'] in ('text',
 724                                                                'binary'):
 725                text += filedata[j]['data']
 726                j += 1
 727
 728
 729            if not stat.has_key('depotFile'):
 730                sys.stderr.write("p4 print fails with: %s\n" % repr(stat))
 731                continue
 732
 733            contents[stat['depotFile']] = text
 734
 735        for f in files:
 736            assert not f.has_key('data')
 737            f['data'] = contents[f['path']]
 738
 739    def commit(self, details, files, branch, branchPrefixes, parent = ""):
 740        epoch = details["time"]
 741        author = details["user"]
 742
 743        if self.verbose:
 744            print "commit into %s" % branch
 745
 746        # start with reading files; if that fails, we should not
 747        # create a commit.
 748        new_files = []
 749        for f in files:
 750            if [p for p in branchPrefixes if f['path'].startswith(p)]:
 751                new_files.append (f)
 752            else:
 753                sys.stderr.write("Ignoring file outside of prefix: %s\n" % path)
 754        files = new_files
 755        self.readP4Files(files)
 756
 757
 758
 759
 760        self.gitStream.write("commit %s\n" % branch)
 761#        gitStream.write("mark :%s\n" % details["change"])
 762        self.committedChanges.add(int(details["change"]))
 763        committer = ""
 764        if author not in self.users:
 765            self.getUserMapFromPerforceServer()
 766        if author in self.users:
 767            committer = "%s %s %s" % (self.users[author], epoch, self.tz)
 768        else:
 769            committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
 770
 771        self.gitStream.write("committer %s\n" % committer)
 772
 773        self.gitStream.write("data <<EOT\n")
 774        self.gitStream.write(details["desc"])
 775        self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
 776                             % (','.join (branchPrefixes), details["change"]))
 777        if len(details['options']) > 0:
 778            self.gitStream.write(": options = %s" % details['options'])
 779        self.gitStream.write("]\nEOT\n\n")
 780
 781        if len(parent) > 0:
 782            if self.verbose:
 783                print "parent %s" % parent
 784            self.gitStream.write("from %s\n" % parent)
 785
 786        for file in files:
 787            if file["type"] == "apple":
 788                print "\nfile %s is a strange apple file that forks. Ignoring!" % file['path']
 789                continue
 790
 791            relPath = self.stripRepoPath(file['path'], branchPrefixes)
 792            if file["action"] == "delete":
 793                self.gitStream.write("D %s\n" % relPath)
 794            else:
 795                mode = 644
 796                if file["type"].startswith("x"):
 797                    mode = 755
 798
 799                data = file['data']
 800
 801                if self.isWindows and file["type"].endswith("text"):
 802                    data = data.replace("\r\n", "\n")
 803
 804                self.gitStream.write("M %d inline %s\n" % (mode, relPath))
 805                self.gitStream.write("data %s\n" % len(data))
 806                self.gitStream.write(data)
 807                self.gitStream.write("\n")
 808
 809        self.gitStream.write("\n")
 810
 811        change = int(details["change"])
 812
 813        if self.labels.has_key(change):
 814            label = self.labels[change]
 815            labelDetails = label[0]
 816            labelRevisions = label[1]
 817            if self.verbose:
 818                print "Change %s is labelled %s" % (change, labelDetails)
 819
 820            files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
 821                                                    for p in branchPrefixes]))
 822
 823            if len(files) == len(labelRevisions):
 824
 825                cleanedFiles = {}
 826                for info in files:
 827                    if info["action"] == "delete":
 828                        continue
 829                    cleanedFiles[info["depotFile"]] = info["rev"]
 830
 831                if cleanedFiles == labelRevisions:
 832                    self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
 833                    self.gitStream.write("from %s\n" % branch)
 834
 835                    owner = labelDetails["Owner"]
 836                    tagger = ""
 837                    if author in self.users:
 838                        tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
 839                    else:
 840                        tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
 841                    self.gitStream.write("tagger %s\n" % tagger)
 842                    self.gitStream.write("data <<EOT\n")
 843                    self.gitStream.write(labelDetails["Description"])
 844                    self.gitStream.write("EOT\n\n")
 845
 846                else:
 847                    if not self.silent:
 848                        print ("Tag %s does not match with change %s: files do not match."
 849                               % (labelDetails["label"], change))
 850
 851            else:
 852                if not self.silent:
 853                    print ("Tag %s does not match with change %s: file count is different."
 854                           % (labelDetails["label"], change))
 855
 856    def getUserCacheFilename(self):
 857        return os.environ["HOME"] + "/.gitp4-usercache.txt"
 858
 859    def getUserMapFromPerforceServer(self):
 860        if self.userMapFromPerforceServer:
 861            return
 862        self.users = {}
 863
 864        for output in p4CmdList("users"):
 865            if not output.has_key("User"):
 866                continue
 867            self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
 868
 869
 870        s = ''
 871        for (key, val) in self.users.items():
 872            s += "%s\t%s\n" % (key, val)
 873
 874        open(self.getUserCacheFilename(), "wb").write(s)
 875        self.userMapFromPerforceServer = True
 876
 877    def loadUserMapFromCache(self):
 878        self.users = {}
 879        self.userMapFromPerforceServer = False
 880        try:
 881            cache = open(self.getUserCacheFilename(), "rb")
 882            lines = cache.readlines()
 883            cache.close()
 884            for line in lines:
 885                entry = line.strip().split("\t")
 886                self.users[entry[0]] = entry[1]
 887        except IOError:
 888            self.getUserMapFromPerforceServer()
 889
 890    def getLabels(self):
 891        self.labels = {}
 892
 893        l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
 894        if len(l) > 0 and not self.silent:
 895            print "Finding files belonging to labels in %s" % `self.depotPath`
 896
 897        for output in l:
 898            label = output["label"]
 899            revisions = {}
 900            newestChange = 0
 901            if self.verbose:
 902                print "Querying files for label %s" % label
 903            for file in p4CmdList("files "
 904                                  +  ' '.join (["%s...@%s" % (p, label)
 905                                                for p in self.depotPaths])):
 906                revisions[file["depotFile"]] = file["rev"]
 907                change = int(file["change"])
 908                if change > newestChange:
 909                    newestChange = change
 910
 911            self.labels[newestChange] = [output, revisions]
 912
 913        if self.verbose:
 914            print "Label changes: %s" % self.labels.keys()
 915
 916    def guessProjectName(self):
 917        for p in self.depotPaths:
 918            if p.endswith("/"):
 919                p = p[:-1]
 920            p = p[p.strip().rfind("/") + 1:]
 921            if not p.endswith("/"):
 922               p += "/"
 923            return p
 924
 925    def getBranchMapping(self):
 926        for info in p4CmdList("branches"):
 927            details = p4Cmd("branch -o %s" % info["branch"])
 928            viewIdx = 0
 929            while details.has_key("View%s" % viewIdx):
 930                paths = details["View%s" % viewIdx].split(" ")
 931                viewIdx = viewIdx + 1
 932                # require standard //depot/foo/... //depot/bar/... mapping
 933                if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
 934                    continue
 935                source = paths[0]
 936                destination = paths[1]
 937                ## HACK
 938                if source.startswith(self.depotPaths[0]) and destination.startswith(self.depotPaths[0]):
 939                    source = source[len(self.depotPaths[0]):-4]
 940                    destination = destination[len(self.depotPaths[0]):-4]
 941                    if destination not in self.knownBranches:
 942                        self.knownBranches[destination] = source
 943                    if source not in self.knownBranches:
 944                        self.knownBranches[source] = source
 945
 946    def listExistingP4GitBranches(self):
 947        self.p4BranchesInGit = []
 948
 949        cmdline = "git rev-parse --symbolic "
 950        if self.importIntoRemotes:
 951            cmdline += " --remotes"
 952        else:
 953            cmdline += " --branches"
 954
 955        for line in read_pipe_lines(cmdline):
 956            line = line.strip()
 957
 958            ## only import to p4/
 959            if not line.startswith('p4/') or line == "p4/HEAD":
 960                continue
 961            branch = line
 962
 963            # strip off p4
 964            branch = re.sub ("^p4/", "", line)
 965
 966            self.p4BranchesInGit.append(branch)
 967            self.initialParents[self.refPrefix + branch] = parseRevision(line)
 968
 969    def createOrUpdateBranchesFromOrigin(self):
 970        if not self.silent:
 971            print ("Creating/updating branch(es) in %s based on origin branch(es)"
 972                   % self.refPrefix)
 973
 974        originPrefix = "origin/p4/"
 975
 976        for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
 977            line = line.strip()
 978            if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
 979                continue
 980
 981            headName = line[len(originPrefix):]
 982            remoteHead = self.refPrefix + headName
 983            originHead = line
 984
 985            original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
 986            if (not original.has_key('depot-paths')
 987                or not original.has_key('change')):
 988                continue
 989
 990            update = False
 991            if not gitBranchExists(remoteHead):
 992                if self.verbose:
 993                    print "creating %s" % remoteHead
 994                update = True
 995            else:
 996                settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
 997                if settings.has_key('change') > 0:
 998                    if settings['depot-paths'] == original['depot-paths']:
 999                        originP4Change = int(original['change'])
1000                        p4Change = int(settings['change'])
1001                        if originP4Change > p4Change:
1002                            print ("%s (%s) is newer than %s (%s). "
1003                                   "Updating p4 branch from origin."
1004                                   % (originHead, originP4Change,
1005                                      remoteHead, p4Change))
1006                            update = True
1007                    else:
1008                        print ("Ignoring: %s was imported from %s while "
1009                               "%s was imported from %s"
1010                               % (originHead, ','.join(original['depot-paths']),
1011                                  remoteHead, ','.join(settings['depot-paths'])))
1012
1013            if update:
1014                system("git update-ref %s %s" % (remoteHead, originHead))
1015
1016    def updateOptionDict(self, d):
1017        option_keys = {}
1018        if self.keepRepoPath:
1019            option_keys['keepRepoPath'] = 1
1020
1021        d["options"] = ' '.join(sorted(option_keys.keys()))
1022
1023    def readOptions(self, d):
1024        self.keepRepoPath = (d.has_key('options')
1025                             and ('keepRepoPath' in d['options']))
1026
1027    def run(self, args):
1028        self.depotPaths = []
1029        self.changeRange = ""
1030        self.initialParent = ""
1031        self.previousDepotPaths = []
1032
1033        # map from branch depot path to parent branch
1034        self.knownBranches = {}
1035        self.initialParents = {}
1036        self.hasOrigin = gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
1037        if not self.syncWithOrigin:
1038            self.hasOrigin = False
1039
1040        if self.importIntoRemotes:
1041            self.refPrefix = "refs/remotes/p4/"
1042        else:
1043            self.refPrefix = "refs/heads/p4/"
1044
1045        if self.syncWithOrigin and self.hasOrigin:
1046            if not self.silent:
1047                print "Syncing with origin first by calling git fetch origin"
1048            system("git fetch origin")
1049
1050        if len(self.branch) == 0:
1051            self.branch = self.refPrefix + "master"
1052            if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
1053                system("git update-ref %s refs/heads/p4" % self.branch)
1054                system("git branch -D p4");
1055            # create it /after/ importing, when master exists
1056            if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes:
1057                system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
1058
1059        # TODO: should always look at previous commits,
1060        # merge with previous imports, if possible.
1061        if args == []:
1062            if self.hasOrigin:
1063                self.createOrUpdateBranchesFromOrigin()
1064            self.listExistingP4GitBranches()
1065
1066            if len(self.p4BranchesInGit) > 1:
1067                if not self.silent:
1068                    print "Importing from/into multiple branches"
1069                self.detectBranches = True
1070
1071            if self.verbose:
1072                print "branches: %s" % self.p4BranchesInGit
1073
1074            p4Change = 0
1075            for branch in self.p4BranchesInGit:
1076                logMsg =  extractLogMessageFromGitCommit(self.refPrefix + branch)
1077
1078                settings = extractSettingsGitLog(logMsg)
1079
1080                self.readOptions(settings)
1081                if (settings.has_key('depot-paths')
1082                    and settings.has_key ('change')):
1083                    change = int(settings['change']) + 1
1084                    p4Change = max(p4Change, change)
1085
1086                    depotPaths = sorted(settings['depot-paths'])
1087                    if self.previousDepotPaths == []:
1088                        self.previousDepotPaths = depotPaths
1089                    else:
1090                        paths = []
1091                        for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
1092                            for i in range(0, min(len(cur), len(prev))):
1093                                if cur[i] <> prev[i]:
1094                                    i = i - 1
1095                                    break
1096
1097                            paths.append (cur[:i + 1])
1098
1099                        self.previousDepotPaths = paths
1100
1101            if p4Change > 0:
1102                self.depotPaths = sorted(self.previousDepotPaths)
1103                self.changeRange = "@%s,#head" % p4Change
1104                if not self.detectBranches:
1105                    self.initialParent = parseRevision(self.branch)
1106                if not self.silent and not self.detectBranches:
1107                    print "Performing incremental import into %s git branch" % self.branch
1108
1109        if not self.branch.startswith("refs/"):
1110            self.branch = "refs/heads/" + self.branch
1111
1112        if len(args) == 0 and self.depotPaths:
1113            if not self.silent:
1114                print "Depot paths: %s" % ' '.join(self.depotPaths)
1115        else:
1116            if self.depotPaths and self.depotPaths != args:
1117                print ("previous import used depot path %s and now %s was specified. "
1118                       "This doesn't work!" % (' '.join (self.depotPaths),
1119                                               ' '.join (args)))
1120                sys.exit(1)
1121
1122            self.depotPaths = sorted(args)
1123
1124        self.revision = ""
1125        self.users = {}
1126
1127        newPaths = []
1128        for p in self.depotPaths:
1129            if p.find("@") != -1:
1130                atIdx = p.index("@")
1131                self.changeRange = p[atIdx:]
1132                if self.changeRange == "@all":
1133                    self.changeRange = ""
1134                elif ',' not in self.changeRange:
1135                    self.revision = self.changeRange
1136                    self.changeRange = ""
1137                p = p[0:atIdx]
1138            elif p.find("#") != -1:
1139                hashIdx = p.index("#")
1140                self.revision = p[hashIdx:]
1141                p = p[0:hashIdx]
1142            elif self.previousDepotPaths == []:
1143                self.revision = "#head"
1144
1145            p = re.sub ("\.\.\.$", "", p)
1146            if not p.endswith("/"):
1147                p += "/"
1148
1149            newPaths.append(p)
1150
1151        self.depotPaths = newPaths
1152
1153
1154        self.loadUserMapFromCache()
1155        self.labels = {}
1156        if self.detectLabels:
1157            self.getLabels();
1158
1159        if self.detectBranches:
1160            ## FIXME - what's a P4 projectName ?
1161            self.projectName = self.guessProjectName()
1162
1163            if not self.hasOrigin:
1164                self.getBranchMapping();
1165            if self.verbose:
1166                print "p4-git branches: %s" % self.p4BranchesInGit
1167                print "initial parents: %s" % self.initialParents
1168            for b in self.p4BranchesInGit:
1169                if b != "master":
1170
1171                    ## FIXME
1172                    b = b[len(self.projectName):]
1173                self.createdBranches.add(b)
1174
1175        self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
1176
1177        importProcess = subprocess.Popen(["git", "fast-import"],
1178                                         stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1179                                         stderr=subprocess.PIPE);
1180        self.gitOutput = importProcess.stdout
1181        self.gitStream = importProcess.stdin
1182        self.gitError = importProcess.stderr
1183
1184        if self.revision:
1185            print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), self.revision, self.branch)
1186
1187            details = { "user" : "git perforce import user", "time" : int(time.time()) }
1188            details["desc"] = ("Initial import of %s from the state at revision %s"
1189                               % (' '.join(self.depotPaths), self.revision))
1190            details["change"] = self.revision
1191            newestRevision = 0
1192
1193            fileCnt = 0
1194            for info in p4CmdList("files "
1195                                  +  ' '.join(["%s...%s"
1196                                               % (p, self.revision)
1197                                               for p in self.depotPaths])):
1198
1199                if info['code'] == 'error':
1200                    sys.stderr.write("p4 returned an error: %s\n"
1201                                     % info['data'])
1202                    sys.exit(1)
1203
1204
1205                change = int(info["change"])
1206                if change > newestRevision:
1207                    newestRevision = change
1208
1209                if info["action"] == "delete":
1210                    # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1211                    #fileCnt = fileCnt + 1
1212                    continue
1213
1214                for prop in ["depotFile", "rev", "action", "type" ]:
1215                    details["%s%s" % (prop, fileCnt)] = info[prop]
1216
1217                fileCnt = fileCnt + 1
1218
1219            details["change"] = newestRevision
1220            self.updateOptionDict(details)
1221            try:
1222                self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1223            except IOError:
1224                print "IO error with git fast-import. Is your git version recent enough?"
1225                print self.gitError.read()
1226
1227        else:
1228            changes = []
1229
1230            if len(self.changesFile) > 0:
1231                output = open(self.changesFile).readlines()
1232                changeSet = Set()
1233                for line in output:
1234                    changeSet.add(int(line))
1235
1236                for change in changeSet:
1237                    changes.append(change)
1238
1239                changes.sort()
1240            else:
1241                if self.verbose:
1242                    print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
1243                                                              self.changeRange)
1244                assert self.depotPaths
1245                output = read_pipe_lines("p4 changes " + ' '.join (["%s...%s" % (p, self.changeRange)
1246                                                                    for p in self.depotPaths]))
1247
1248                for line in output:
1249                    changeNum = line.split(" ")[1]
1250                    changes.append(changeNum)
1251
1252                changes.reverse()
1253
1254                if len(self.maxChanges) > 0:
1255                    changes = changes[0:min(int(self.maxChanges), len(changes))]
1256
1257            if len(changes) == 0:
1258                if not self.silent:
1259                    print "No changes to import!"
1260                return True
1261
1262            if not self.silent and not self.detectBranches:
1263                print "Import destination: %s" % self.branch
1264
1265            self.updatedBranches = set()
1266
1267            cnt = 1
1268            for change in changes:
1269                description = p4Cmd("describe %s" % change)
1270                self.updateOptionDict(description)
1271
1272                if not self.silent:
1273                    sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1274                    sys.stdout.flush()
1275                cnt = cnt + 1
1276
1277                try:
1278                    if self.detectBranches:
1279                        branches = self.splitFilesIntoBranches(description)
1280                        for branch in branches.keys():
1281                            ## HACK  --hwn
1282                            branchPrefix = self.depotPaths[0] + branch + "/"
1283
1284                            parent = ""
1285
1286                            filesForCommit = branches[branch]
1287
1288                            if self.verbose:
1289                                print "branch is %s" % branch
1290
1291                            self.updatedBranches.add(branch)
1292
1293                            if branch not in self.createdBranches:
1294                                self.createdBranches.add(branch)
1295                                parent = self.knownBranches[branch]
1296                                if parent == branch:
1297                                    parent = ""
1298                                elif self.verbose:
1299                                    print "parent determined through known branches: %s" % parent
1300
1301                            # main branch? use master
1302                            if branch == "main":
1303                                branch = "master"
1304                            else:
1305
1306                                ## FIXME
1307                                branch = self.projectName + branch
1308
1309                            if parent == "main":
1310                                parent = "master"
1311                            elif len(parent) > 0:
1312                                ## FIXME
1313                                parent = self.projectName + parent
1314
1315                            branch = self.refPrefix + branch
1316                            if len(parent) > 0:
1317                                parent = self.refPrefix + parent
1318
1319                            if self.verbose:
1320                                print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1321
1322                            if len(parent) == 0 and branch in self.initialParents:
1323                                parent = self.initialParents[branch]
1324                                del self.initialParents[branch]
1325
1326                            self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1327                    else:
1328                        files = self.extractFilesFromCommit(description)
1329                        self.commit(description, files, self.branch, self.depotPaths,
1330                                    self.initialParent)
1331                        self.initialParent = ""
1332                except IOError:
1333                    print self.gitError.read()
1334                    sys.exit(1)
1335
1336            if not self.silent:
1337                print ""
1338                if len(self.updatedBranches) > 0:
1339                    sys.stdout.write("Updated branches: ")
1340                    for b in self.updatedBranches:
1341                        sys.stdout.write("%s " % b)
1342                    sys.stdout.write("\n")
1343
1344
1345        self.gitStream.close()
1346        if importProcess.wait() != 0:
1347            die("fast-import failed: %s" % self.gitError.read())
1348        self.gitOutput.close()
1349        self.gitError.close()
1350
1351        return True
1352
1353class P4Rebase(Command):
1354    def __init__(self):
1355        Command.__init__(self)
1356        self.options = [ ]
1357        self.description = ("Fetches the latest revision from perforce and "
1358                            + "rebases the current work (branch) against it")
1359        self.verbose = False
1360
1361    def run(self, args):
1362        sync = P4Sync()
1363        sync.run([])
1364        print "Rebasing the current branch"
1365        oldHead = read_pipe("git rev-parse HEAD").strip()
1366        system("git rebase p4")
1367        system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
1368        return True
1369
1370class P4Clone(P4Sync):
1371    def __init__(self):
1372        P4Sync.__init__(self)
1373        self.description = "Creates a new git repository and imports from Perforce into it"
1374        self.usage = "usage: %prog [options] //depot/path[@revRange]"
1375        self.options.append(
1376            optparse.make_option("--destination", dest="cloneDestination",
1377                                 action='store', default=None,
1378                                 help="where to leave result of the clone"))
1379        self.cloneDestination = None
1380        self.needsGit = False
1381
1382    def defaultDestination(self, args):
1383        ## TODO: use common prefix of args?
1384        depotPath = args[0]
1385        depotDir = re.sub("(@[^@]*)$", "", depotPath)
1386        depotDir = re.sub("(#[^#]*)$", "", depotDir)
1387        depotDir = re.sub(r"\.\.\.$,", "", depotDir)
1388        depotDir = re.sub(r"/$", "", depotDir)
1389        return os.path.split(depotDir)[1]
1390
1391    def run(self, args):
1392        if len(args) < 1:
1393            return False
1394
1395        if self.keepRepoPath and not self.cloneDestination:
1396            sys.stderr.write("Must specify destination for --keep-path\n")
1397            sys.exit(1)
1398
1399        depotPaths = args
1400
1401        if not self.cloneDestination and len(depotPaths) > 1:
1402            self.cloneDestination = depotPaths[-1]
1403            depotPaths = depotPaths[:-1]
1404
1405        for p in depotPaths:
1406            if not p.startswith("//"):
1407                return False
1408
1409        if not self.cloneDestination:
1410            self.cloneDestination = self.defaultDestination(args)
1411
1412        print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
1413        if not os.path.exists(self.cloneDestination):
1414            os.makedirs(self.cloneDestination)
1415        os.chdir(self.cloneDestination)
1416        system("git init")
1417        self.gitdir = os.getcwd() + "/.git"
1418        if not P4Sync.run(self, depotPaths):
1419            return False
1420        if self.branch != "master":
1421            if gitBranchExists("refs/remotes/p4/master"):
1422                system("git branch master refs/remotes/p4/master")
1423                system("git checkout -f")
1424            else:
1425                print "Could not detect main branch. No checkout/master branch created."
1426
1427        return True
1428
1429class HelpFormatter(optparse.IndentedHelpFormatter):
1430    def __init__(self):
1431        optparse.IndentedHelpFormatter.__init__(self)
1432
1433    def format_description(self, description):
1434        if description:
1435            return description + "\n"
1436        else:
1437            return ""
1438
1439def printUsage(commands):
1440    print "usage: %s <command> [options]" % sys.argv[0]
1441    print ""
1442    print "valid commands: %s" % ", ".join(commands)
1443    print ""
1444    print "Try %s <command> --help for command specific help." % sys.argv[0]
1445    print ""
1446
1447commands = {
1448    "debug" : P4Debug,
1449    "submit" : P4Submit,
1450    "sync" : P4Sync,
1451    "rebase" : P4Rebase,
1452    "clone" : P4Clone,
1453    "rollback" : P4RollBack
1454}
1455
1456
1457def main():
1458    if len(sys.argv[1:]) == 0:
1459        printUsage(commands.keys())
1460        sys.exit(2)
1461
1462    cmd = ""
1463    cmdName = sys.argv[1]
1464    try:
1465        klass = commands[cmdName]
1466        cmd = klass()
1467    except KeyError:
1468        print "unknown command %s" % cmdName
1469        print ""
1470        printUsage(commands.keys())
1471        sys.exit(2)
1472
1473    options = cmd.options
1474    cmd.gitdir = os.environ.get("GIT_DIR", None)
1475
1476    args = sys.argv[2:]
1477
1478    if len(options) > 0:
1479        options.append(optparse.make_option("--git-dir", dest="gitdir"))
1480
1481        parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
1482                                       options,
1483                                       description = cmd.description,
1484                                       formatter = HelpFormatter())
1485
1486        (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
1487    global verbose
1488    verbose = cmd.verbose
1489    if cmd.needsGit:
1490        if cmd.gitdir == None:
1491            cmd.gitdir = os.path.abspath(".git")
1492            if not isValidGitDir(cmd.gitdir):
1493                cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
1494                if os.path.exists(cmd.gitdir):
1495                    cdup = read_pipe("git rev-parse --show-cdup").strip()
1496                    if len(cdup) > 0:
1497                        os.chdir(cdup);
1498
1499        if not isValidGitDir(cmd.gitdir):
1500            if isValidGitDir(cmd.gitdir + "/.git"):
1501                cmd.gitdir += "/.git"
1502            else:
1503                die("fatal: cannot locate git repository at %s" % cmd.gitdir)
1504
1505        os.environ["GIT_DIR"] = cmd.gitdir
1506
1507    if not cmd.run(args):
1508        parser.print_help()
1509
1510
1511if __name__ == '__main__':
1512    main()