5 # Author: Simon Hausmann <hausmann@kde.org>
6 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
9 # - support integrations (at least p4i)
10 # - support incremental imports
12 # - instead of reading all files into a variable try to pipe from
13 # - support p4 submit (hah!)
14 # - don't hardcode the import to master
16 import os
, string
, sys
, time
17 import marshal
, popen2
19 if len(sys
.argv
) != 2:
20 print "usage: %s //depot/path[@revRange]" % sys
.argv
[0]
22 print " %s //depot/my/project/ -- to import everything"
23 print " %s //depot/my/project/@1,6 -- to import only from revision 1 to 6"
25 print " (a ... is not needed in the path p4 specification, it's added implicitly)"
32 atIdx
= prefix
.index("@")
33 changeRange
= prefix
[atIdx
:]
34 prefix
= prefix
[0:atIdx
]
38 if prefix
.endswith("..."):
41 if not prefix
.endswith("/"):
45 pipe
= os
.popen("p4 -G %s" % cmd
, "rb")
49 entry
= marshal
.load(pipe
)
66 for output
in p4CmdList("users"):
67 if not output
.has_key("User"):
69 users
[output
["User"]] = output
["FullName"] + " <" + output
["Email"] + ">"
74 output
= os
.popen("p4 changes %s...%s" % (prefix
, changeRange
)).readlines()
78 changeNum
= line
.split(" ")[1]
79 changes
.append(changeNum
)
83 sys
.stderr
.write("\n")
85 tz
= - time
.timezone
/ 36
87 gitOutput
, gitStream
, gitError
= popen2
.popen3("git-fast-import")
90 for change
in changes
:
91 description
= p4Cmd("describe %s" % change
)
93 sys
.stdout
.write("\rimporting revision %s (%s%%)" % (change
, cnt
* 100 / len(changes
)))
97 epoch
= description
["time"]
98 author
= description
["user"]
100 gitStream
.write("commit refs/heads/master\n")
103 committer
= "%s %s %s" % (users
[author
], epoch
, tz
)
105 committer
= "%s <a@b> %s %s" % (author
, epoch
, tz
)
107 gitStream
.write("committer %s\n" % committer
)
109 gitStream
.write("data <<EOT\n")
110 gitStream
.write(description
["desc"])
111 gitStream
.write("\n[ imported from %s; change %s ]\n" % (prefix
, change
))
112 gitStream
.write("EOT\n\n")
115 while description
.has_key("depotFile%s" % fnum
):
116 path
= description
["depotFile%s" % fnum
]
117 if not path
.startswith(prefix
):
118 print "\nchanged files: ignoring path %s outside of %s in change %s" % (path
, prefix
, change
)
122 rev
= description
["rev%s" % fnum
]
123 depotPath
= path
+ "#" + rev
124 relPath
= path
[len(prefix
):]
125 action
= description
["action%s" % fnum
]
127 if action
== "delete":
128 gitStream
.write("D %s\n" % relPath
)
131 if description
["type%s" % fnum
].startswith("x"):
134 data
= os
.popen("p4 print -q \"%s\"" % depotPath
, "rb").read()
136 gitStream
.write("M %s inline %s\n" % (mode
, relPath
))
137 gitStream
.write("data %s\n" % len(data
))
138 gitStream
.write(data
)
139 gitStream
.write("\n")
143 gitStream
.write("\n")
145 gitStream
.write("tag p4/%s\n" % change
)
146 gitStream
.write("from refs/heads/master\n");
147 gitStream
.write("tagger %s\n" % committer
);
148 gitStream
.write("data 0\n\n")