0a3e5c993448e6094d18ac8639ff1ed7c3853a59
   1#!/usr/bin/python
   2#
   3# p4-fast-export.py
   4#
   5# Author: Simon Hausmann <hausmann@kde.org>
   6# License: MIT <http://www.opensource.org/licenses/mit-license.php>
   7#
   8# TODO:
   9#       - support integrations (at least p4i)
  10#       - support p4 submit (hah!)
  11#
  12import os, string, sys, time
  13import marshal, popen2, getopt
  14
  15knownBranches = set()
  16branch = "refs/heads/master"
  17globalPrefix = previousDepotPath = os.popen("git-repo-config --get p4.depotpath").read()
  18detectBranches = False
  19if len(globalPrefix) != 0:
  20    globalPrefix = globalPrefix[:-1]
  21
  22try:
  23    opts, args = getopt.getopt(sys.argv[1:], "", [ "branch=", "detect-branches" ])
  24except getopt.GetoptError:
  25    print "fixme, syntax error"
  26    sys.exit(1)
  27
  28for o, a in opts:
  29    if o == "--branch":
  30        branch = "refs/heads/" + a
  31    elif o == "--detect-branches":
  32        detectBranches = True
  33
  34if len(args) == 0 and len(globalPrefix) != 0:
  35    print "[using previously specified depot path %s]" % globalPrefix
  36elif len(args) != 1:
  37    print "usage: %s //depot/path[@revRange]" % sys.argv[0]
  38    print "\n    example:"
  39    print "    %s //depot/my/project/ -- to import the current head"
  40    print "    %s //depot/my/project/@all -- to import everything"
  41    print "    %s //depot/my/project/@1,6 -- to import only from revision 1 to 6"
  42    print ""
  43    print "    (a ... is not needed in the path p4 specification, it's added implicitly)"
  44    print ""
  45    sys.exit(1)
  46else:
  47    if len(globalPrefix) != 0 and globalPrefix != args[0]:
  48        print "previous import used depot path %s and now %s was specified. this doesn't work!" % (globalPrefix, args[0])
  49        sys.exit(1)
  50    globalPrefix = args[0]
  51
  52changeRange = ""
  53revision = ""
  54users = {}
  55initialParent = ""
  56lastChange = ""
  57initialTag = ""
  58
  59if globalPrefix.find("@") != -1:
  60    atIdx = globalPrefix.index("@")
  61    changeRange = globalPrefix[atIdx:]
  62    if changeRange == "@all":
  63        changeRange = ""
  64    elif changeRange.find(",") == -1:
  65        revision = changeRange
  66        changeRange = ""
  67    globalPrefix = globalPrefix[0:atIdx]
  68elif globalPrefix.find("#") != -1:
  69    hashIdx = globalPrefix.index("#")
  70    revision = globalPrefix[hashIdx:]
  71    globalPrefix = globalPrefix[0:hashIdx]
  72elif len(previousDepotPath) == 0:
  73    revision = "#head"
  74
  75if globalPrefix.endswith("..."):
  76    globalPrefix = globalPrefix[:-3]
  77
  78if not globalPrefix.endswith("/"):
  79    globalPrefix += "/"
  80
  81def p4CmdList(cmd):
  82    pipe = os.popen("p4 -G %s" % cmd, "rb")
  83    result = []
  84    try:
  85        while True:
  86            entry = marshal.load(pipe)
  87            result.append(entry)
  88    except EOFError:
  89        pass
  90    pipe.close()
  91    return result
  92
  93def p4Cmd(cmd):
  94    list = p4CmdList(cmd)
  95    result = {}
  96    for entry in list:
  97        result.update(entry)
  98    return result;
  99
 100def extractFilesFromCommit(commit):
 101    files = []
 102    fnum = 0
 103    while commit.has_key("depotFile%s" % fnum):
 104        path =  commit["depotFile%s" % fnum]
 105        if not path.startswith(globalPrefix):
 106            print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, globalPrefix, change)
 107            continue
 108
 109        file = {}
 110        file["path"] = path
 111        file["rev"] = commit["rev%s" % fnum]
 112        file["action"] = commit["action%s" % fnum]
 113        file["type"] = commit["type%s" % fnum]
 114        files.append(file)
 115        fnum = fnum + 1
 116    return files
 117
 118def branchesForCommit(files):
 119    branches = set()
 120
 121    for file in files:
 122        relativePath = file["path"][len(globalPrefix):]
 123        # strip off the filename
 124        relativePath = relativePath[0:relativePath.rfind("/")]
 125
 126        if len(branches) == 0:
 127            branches.add(relativePath)
 128            continue
 129
 130        ###### this needs more testing :)
 131        knownBranch = False
 132        for branch in branches:
 133            if relativePath == branch:
 134                knownBranch = True
 135                break
 136            if relativePath.startswith(branch):
 137                knownBranch = True
 138                break
 139            if branch.startswith(relativePath):
 140                branches.remove(branch)
 141                break
 142
 143        if not knownBranch:
 144            branches.add(relativePath)
 145
 146    return branches
 147
 148def commit(details, files, branch, branchPrefix):
 149    global initialParent
 150    global users
 151    global lastChange
 152
 153    epoch = details["time"]
 154    author = details["user"]
 155
 156    gitStream.write("commit %s\n" % branch)
 157    gitStream.write("mark :%s\n" % details["change"])
 158    committer = ""
 159    if author in users:
 160        committer = "%s %s %s" % (users[author], epoch, tz)
 161    else:
 162        committer = "%s <a@b> %s %s" % (author, epoch, tz)
 163
 164    gitStream.write("committer %s\n" % committer)
 165
 166    gitStream.write("data <<EOT\n")
 167    gitStream.write(details["desc"])
 168    gitStream.write("\n[ imported from %s; change %s ]\n" % (branchPrefix, details["change"]))
 169    gitStream.write("EOT\n\n")
 170
 171    if len(initialParent) > 0:
 172        gitStream.write("from %s\n" % initialParent)
 173        initialParent = ""
 174
 175    #mergedBranches = set()
 176    merge = 0
 177
 178    for file in files:
 179        path = file["path"]
 180        if not path.startswith(branchPrefix):
 181            continue
 182        action = file["action"]
 183        if action != "integrate" and action != "branch":
 184            continue
 185        rev = file["rev"]
 186        depotPath = path + "#" + rev
 187
 188        log = p4CmdList("filelog \"%s\"" % depotPath)
 189        if len(log) != 1:
 190            print "eek! I got confused by the filelog of %s" % depotPath
 191            sys.exit(1);
 192
 193        log = log[0]
 194        if log["action0"] != action:
 195            print "eek! wrong action in filelog for %s : found %s, expected %s" % (depotPath, log["action0"], action)
 196            sys.exit(1);
 197
 198        if not log["how0,0"].endswith(" from"):
 199            print "eek! file %s was not branched but instead: %s" % (depotPath, log["how0,0"])
 200            sys.exit(1);
 201
 202        source = log["file0,0"]
 203        if source.startswith(branchPrefix):
 204            continue
 205
 206        lastSourceRev = log["erev0,0"]
 207
 208        sourceLog = p4CmdList("filelog -m 1 \"%s%s\"" % (source, lastSourceRev))
 209        if len(sourceLog) != 1:
 210            print "eek! I got confused by the source filelog of %s%s" % (source, lastSourceRev)
 211            sys.exit(1);
 212        sourceLog = sourceLog[0]
 213
 214        change = int(sourceLog["change0"])
 215        if change > merge:
 216            merge = change
 217
 218#        relPath = source[len(globalPrefix):]
 219#
 220#        for branch in knownBranches:
 221#            if relPath.startswith(branch) and branch not in mergedBranches:
 222#                gitStream.write("merge refs/heads/%s\n" % branch)
 223#                mergedBranches.add(branch)
 224#                break
 225
 226    if merge != 0:
 227        gitStream.write("merge :%s\n" % merge)
 228
 229    for file in files:
 230        path = file["path"]
 231        if not path.startswith(branchPrefix):
 232            print "\nchanged files: ignoring path %s outside of branch prefix %s in change %s" % (path, branchPrefix, change)
 233            continue
 234        rev = file["rev"]
 235        depotPath = path + "#" + rev
 236        relPath = path[len(branchPrefix):]
 237        action = file["action"]
 238
 239        if action == "delete":
 240            gitStream.write("D %s\n" % relPath)
 241        else:
 242            mode = 644
 243            if file["type"].startswith("x"):
 244                mode = 755
 245
 246            data = os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
 247
 248            gitStream.write("M %s inline %s\n" % (mode, relPath))
 249            gitStream.write("data %s\n" % len(data))
 250            gitStream.write(data)
 251            gitStream.write("\n")
 252
 253    gitStream.write("\n")
 254
 255    lastChange = details["change"]
 256
 257def getUserMap():
 258    users = {}
 259
 260    for output in p4CmdList("users"):
 261        if not output.has_key("User"):
 262            continue
 263        users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
 264    return users
 265
 266users = getUserMap()
 267
 268if len(changeRange) == 0:
 269    try:
 270        sout, sin, serr = popen2.popen3("git-name-rev --tags `git-rev-parse %s`" % branch)
 271        output = sout.read()
 272        if output.endswith("\n"):
 273            output = output[:-1]
 274        tagIdx = output.index(" tags/p4/")
 275        caretIdx = output.find("^")
 276        endPos = len(output)
 277        if caretIdx != -1:
 278            endPos = caretIdx
 279        rev = int(output[tagIdx + 9 : endPos]) + 1
 280        changeRange = "@%s,#head" % rev
 281        initialParent = os.popen("git-rev-parse %s" % branch).read()[:-1]
 282        initialTag = "p4/%s" % (int(rev) - 1)
 283    except:
 284        pass
 285
 286sys.stderr.write("\n")
 287
 288tz = - time.timezone / 36
 289tzsign = ("%s" % tz)[0]
 290if tzsign != '+' and tzsign != '-':
 291    tz = "+" + ("%s" % tz)
 292
 293gitOutput, gitStream, gitError = popen2.popen3("git-fast-import")
 294
 295if len(revision) > 0:
 296    print "Doing initial import of %s from revision %s" % (globalPrefix, revision)
 297
 298    details = { "user" : "git perforce import user", "time" : int(time.time()) }
 299    details["desc"] = "Initial import of %s from the state at revision %s" % (globalPrefix, revision)
 300    details["change"] = revision
 301    newestRevision = 0
 302
 303    fileCnt = 0
 304    for info in p4CmdList("files %s...%s" % (globalPrefix, revision)):
 305        change = int(info["change"])
 306        if change > newestRevision:
 307            newestRevision = change
 308
 309        if info["action"] == "delete":
 310            continue
 311
 312        for prop in [ "depotFile", "rev", "action", "type" ]:
 313            details["%s%s" % (prop, fileCnt)] = info[prop]
 314
 315        fileCnt = fileCnt + 1
 316
 317    details["change"] = newestRevision
 318
 319    try:
 320        commit(details, extractFilesFromCommit(details), branch, globalPrefix)
 321    except:
 322        print gitError.read()
 323
 324else:
 325    output = os.popen("p4 changes %s...%s" % (globalPrefix, changeRange)).readlines()
 326
 327    changes = []
 328    for line in output:
 329        changeNum = line.split(" ")[1]
 330        changes.append(changeNum)
 331
 332    changes.reverse()
 333
 334    if len(changes) == 0:
 335        print "no changes to import!"
 336        sys.exit(1)
 337
 338    cnt = 1
 339    for change in changes:
 340        description = p4Cmd("describe %s" % change)
 341
 342        sys.stdout.write("\rimporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
 343        sys.stdout.flush()
 344        cnt = cnt + 1
 345
 346        try:
 347            files = extractFilesFromCommit(description)
 348            if detectBranches:
 349                for branch in branchesForCommit(files):
 350                    knownBranches.add(branch)
 351                    branchPrefix = globalPrefix + branch + "/"
 352                    branch = "refs/heads/" + branch
 353                    commit(description, files, branch, branchPrefix)
 354            else:
 355                commit(description, files, branch, globalPrefix)
 356        except:
 357            print gitError.read()
 358            sys.exit(1)
 359
 360print ""
 361
 362gitStream.write("reset refs/tags/p4/%s\n" % lastChange)
 363gitStream.write("from %s\n\n" % branch);
 364
 365
 366gitStream.close()
 367gitOutput.close()
 368gitError.close()
 369
 370os.popen("git-repo-config p4.depotpath %s" % globalPrefix).read()
 371if len(initialTag) > 0:
 372    os.popen("git tag -d %s" % initialTag).read()
 373
 374sys.exit(0)