changed the default branch to master
[fast-export/barak.git] / p4-fast-export.py
blob1f19cbc5605ea9ae71b1555431271848d2326e64
1 #!/usr/bin/python
3 # p4-fast-export.py
5 # Author: Simon Hausmann <hausmann@kde.org>
6 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
8 # TODO:
9 # - support integrations (at least p4i)
10 # - support p4 submit (hah!)
12 import os, string, sys, time
13 import marshal, popen2, getopt
15 branch = "refs/heads/master"
16 prefix = previousDepotPath = os.popen("git-repo-config --get p4.depotpath").read()
17 if len(prefix) != 0:
18 prefix = prefix[:-1]
20 try:
21 opts, args = getopt.getopt(sys.argv[1:], "", [ "branch=" ])
22 except getopt.GetoptError:
23 print "fixme, syntax error"
24 sys.exit(1)
26 for o, a in opts:
27 if o == "--branch":
28 branch = "refs/heads/" + a
30 if len(args) == 0 and len(prefix) != 0:
31 print "[using previously specified depot path %s]" % prefix
32 elif len(args) != 1:
33 print "usage: %s //depot/path[@revRange]" % sys.argv[0]
34 print "\n example:"
35 print " %s //depot/my/project/ -- to import the current head"
36 print " %s //depot/my/project/@all -- to import everything"
37 print " %s //depot/my/project/@1,6 -- to import only from revision 1 to 6"
38 print ""
39 print " (a ... is not needed in the path p4 specification, it's added implicitly)"
40 print ""
41 sys.exit(1)
42 else:
43 if len(prefix) != 0 and prefix != args[0]:
44 print "previous import used depot path %s and now %s was specified. this doesn't work!" % (prefix, args[0])
45 sys.exit(1)
46 prefix = args[0]
48 changeRange = ""
49 revision = ""
50 users = {}
51 initialParent = ""
52 lastChange = ""
53 lastCommitter = ""
54 initialTag = ""
56 if prefix.find("@") != -1:
57 atIdx = prefix.index("@")
58 changeRange = prefix[atIdx:]
59 if changeRange == "@all":
60 changeRange = ""
61 elif changeRange.find(",") == -1:
62 revision = changeRange
63 changeRange = ""
64 prefix = prefix[0:atIdx]
65 elif prefix.find("#") != -1:
66 hashIdx = prefix.index("#")
67 revision = prefix[hashIdx:]
68 prefix = prefix[0:hashIdx]
69 elif len(previousDepotPath) == 0:
70 revision = "#head"
72 if prefix.endswith("..."):
73 prefix = prefix[:-3]
75 if not prefix.endswith("/"):
76 prefix += "/"
78 def p4CmdList(cmd):
79 pipe = os.popen("p4 -G %s" % cmd, "rb")
80 result = []
81 try:
82 while True:
83 entry = marshal.load(pipe)
84 result.append(entry)
85 except EOFError:
86 pass
87 pipe.close()
88 return result
90 def p4Cmd(cmd):
91 list = p4CmdList(cmd)
92 result = {}
93 for entry in list:
94 result.update(entry)
95 return result;
97 def commit(details):
98 global initialParent
99 global users
100 global lastChange
101 global lastCommitter
103 epoch = details["time"]
104 author = details["user"]
106 gitStream.write("commit %s\n" % branch)
107 committer = ""
108 if author in users:
109 committer = "%s %s %s" % (users[author], epoch, tz)
110 else:
111 committer = "%s <a@b> %s %s" % (author, epoch, tz)
113 gitStream.write("committer %s\n" % committer)
115 gitStream.write("data <<EOT\n")
116 gitStream.write(details["desc"])
117 gitStream.write("\n[ imported from %s; change %s ]\n" % (prefix, details["change"]))
118 gitStream.write("EOT\n\n")
120 if len(initialParent) > 0:
121 gitStream.write("from %s\n" % initialParent)
122 initialParent = ""
124 fnum = 0
125 while details.has_key("depotFile%s" % fnum):
126 path = details["depotFile%s" % fnum]
127 if not path.startswith(prefix):
128 print "\nchanged files: ignoring path %s outside of %s in change %s" % (path, prefix, change)
129 fnum = fnum + 1
130 continue
132 rev = details["rev%s" % fnum]
133 depotPath = path + "#" + rev
134 relPath = path[len(prefix):]
135 action = details["action%s" % fnum]
137 if action == "delete":
138 gitStream.write("D %s\n" % relPath)
139 else:
140 mode = 644
141 if details["type%s" % fnum].startswith("x"):
142 mode = 755
144 data = os.popen("p4 print -q \"%s\"" % depotPath, "rb").read()
146 gitStream.write("M %s inline %s\n" % (mode, relPath))
147 gitStream.write("data %s\n" % len(data))
148 gitStream.write(data)
149 gitStream.write("\n")
151 fnum = fnum + 1
153 gitStream.write("\n")
155 lastChange = details["change"]
156 lastCommitter = committer
158 def getUserMap():
159 users = {}
161 for output in p4CmdList("users"):
162 if not output.has_key("User"):
163 continue
164 users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
165 return users
167 users = getUserMap()
169 if len(changeRange) == 0:
170 try:
171 sout, sin, serr = popen2.popen3("git-name-rev --tags `git-rev-parse %s`" % branch)
172 output = sout.read()
173 tagIdx = output.index(" tags/p4/")
174 caretIdx = output.index("^")
175 rev = int(output[tagIdx + 9 : caretIdx]) + 1
176 changeRange = "@%s,#head" % rev
177 initialParent = os.popen("git-rev-parse %s" % branch).read()[:-1]
178 initialTag = "p4/%s" % (int(rev) - 1)
179 except:
180 pass
182 sys.stderr.write("\n")
184 tz = - time.timezone / 36
185 tzsign = ("%s" % tz)[0]
186 if tzsign != '+' and tzsign != '-':
187 tz = "+" + ("%s" % tz)
189 gitOutput, gitStream, gitError = popen2.popen3("git-fast-import")
191 if len(revision) > 0:
192 print "Doing initial import of %s from revision %s" % (prefix, revision)
194 details = { "user" : "git perforce import user", "time" : int(time.time()) }
195 details["desc"] = "Initial import of %s from the state at revision %s" % (prefix, revision)
196 details["change"] = revision
197 newestRevision = 0
199 fileCnt = 0
200 for info in p4CmdList("files %s...%s" % (prefix, revision)):
201 change = int(info["change"])
202 if change > newestRevision:
203 newestRevision = change
205 if info["action"] == "delete":
206 continue
208 for prop in [ "depotFile", "rev", "action", "type" ]:
209 details["%s%s" % (prop, fileCnt)] = info[prop]
211 fileCnt = fileCnt + 1
213 details["change"] = newestRevision
215 try:
216 commit(details)
217 except:
218 print gitError.read()
220 else:
221 output = os.popen("p4 changes %s...%s" % (prefix, changeRange)).readlines()
223 changes = []
224 for line in output:
225 changeNum = line.split(" ")[1]
226 changes.append(changeNum)
228 changes.reverse()
230 if len(changes) == 0:
231 print "no changes to import!"
232 sys.exit(1)
234 cnt = 1
235 for change in changes:
236 description = p4Cmd("describe %s" % change)
238 sys.stdout.write("\rimporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
239 sys.stdout.flush()
240 cnt = cnt + 1
242 try:
243 commit(description)
244 except:
245 print gitError.read()
246 sys.exit(1)
248 print ""
250 gitStream.write("tag p4/%s\n" % lastChange)
251 gitStream.write("from %s\n" % branch);
252 gitStream.write("tagger %s\n" % lastCommitter);
253 gitStream.write("data 0\n\n")
255 gitStream.close()
256 gitOutput.close()
257 gitError.close()
259 os.popen("git-repo-config p4.depotpath %s" % prefix).read()
260 if len(initialTag) > 0:
261 os.popen("git tag -d %s" % initialTag).read()
263 sys.exit(0)