]> git.ipfire.org Git - thirdparty/git.git/blame - contrib/fast-import/git-p4
git-p4: handle utf16 filetype properly
[thirdparty/git.git] / contrib / fast-import / git-p4
CommitLineData
86949eef
SH
1#!/usr/bin/env python
2#
3# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
4#
c8cbbee9
SH
5# Author: Simon Hausmann <simon@lst.de>
6# Copyright: 2007 Simon Hausmann <simon@lst.de>
83dce55a 7# 2007 Trolltech ASA
86949eef
SH
8# License: MIT <http://www.opensource.org/licenses/mit-license.php>
9#
10
1d7367dc
RG
11import optparse, sys, os, marshal, subprocess, shelve
12import tempfile, getopt, os.path, time, platform
ce6f33c8 13import re
8b41a97f 14
4addad22 15verbose = False
86949eef 16
21a50753
AK
17
18def p4_build_cmd(cmd):
19 """Build a suitable p4 command line.
20
21 This consolidates building and returning a p4 command line into one
22 location. It means that hooking into the environment, or other configuration
23 can be done more easily.
24 """
abcaf073
AK
25 real_cmd = "%s " % "p4"
26
27 user = gitConfig("git-p4.user")
28 if len(user) > 0:
29 real_cmd += "-u %s " % user
30
31 password = gitConfig("git-p4.password")
32 if len(password) > 0:
33 real_cmd += "-P %s " % password
34
35 port = gitConfig("git-p4.port")
36 if len(port) > 0:
37 real_cmd += "-p %s " % port
38
39 host = gitConfig("git-p4.host")
40 if len(host) > 0:
41 real_cmd += "-h %s " % host
42
43 client = gitConfig("git-p4.client")
44 if len(client) > 0:
45 real_cmd += "-c %s " % client
46
47 real_cmd += "%s" % (cmd)
ee06427a
AK
48 if verbose:
49 print real_cmd
21a50753
AK
50 return real_cmd
51
053fd0c1
RB
52def chdir(dir):
53 if os.name == 'nt':
54 os.environ['PWD']=dir
55 os.chdir(dir)
56
86dff6b6
HWN
57def die(msg):
58 if verbose:
59 raise Exception(msg)
60 else:
61 sys.stderr.write(msg + "\n")
62 sys.exit(1)
63
bce4c5fc 64def write_pipe(c, str):
4addad22 65 if verbose:
86dff6b6 66 sys.stderr.write('Writing pipe: %s\n' % c)
b016d397 67
bce4c5fc 68 pipe = os.popen(c, 'w')
b016d397 69 val = pipe.write(str)
bce4c5fc 70 if pipe.close():
86dff6b6 71 die('Command failed: %s' % c)
b016d397
HWN
72
73 return val
74
d9429194
AK
75def p4_write_pipe(c, str):
76 real_cmd = p4_build_cmd(c)
893d340f 77 return write_pipe(real_cmd, str)
d9429194 78
4addad22
HWN
79def read_pipe(c, ignore_error=False):
80 if verbose:
86dff6b6 81 sys.stderr.write('Reading pipe: %s\n' % c)
8b41a97f 82
bce4c5fc 83 pipe = os.popen(c, 'rb')
b016d397 84 val = pipe.read()
4addad22 85 if pipe.close() and not ignore_error:
86dff6b6 86 die('Command failed: %s' % c)
b016d397
HWN
87
88 return val
89
d9429194
AK
90def p4_read_pipe(c, ignore_error=False):
91 real_cmd = p4_build_cmd(c)
92 return read_pipe(real_cmd, ignore_error)
b016d397 93
bce4c5fc 94def read_pipe_lines(c):
4addad22 95 if verbose:
86dff6b6 96 sys.stderr.write('Reading pipe: %s\n' % c)
b016d397 97 ## todo: check return status
bce4c5fc 98 pipe = os.popen(c, 'rb')
b016d397 99 val = pipe.readlines()
bce4c5fc 100 if pipe.close():
86dff6b6 101 die('Command failed: %s' % c)
b016d397
HWN
102
103 return val
caace111 104
2318121b
AK
105def p4_read_pipe_lines(c):
106 """Specifically invoke p4 on the command supplied. """
155af834 107 real_cmd = p4_build_cmd(c)
2318121b
AK
108 return read_pipe_lines(real_cmd)
109
6754a299 110def system(cmd):
4addad22 111 if verbose:
bb6e09b2 112 sys.stderr.write("executing %s\n" % cmd)
6754a299
HWN
113 if os.system(cmd) != 0:
114 die("command failed: %s" % cmd)
115
bf9320f1
AK
116def p4_system(cmd):
117 """Specifically invoke p4 as the system command. """
155af834 118 real_cmd = p4_build_cmd(cmd)
bf9320f1
AK
119 return system(real_cmd)
120
b9fc6ea9
DB
121def isP4Exec(kind):
122 """Determine if a Perforce 'kind' should have execute permission
123
124 'p4 help filetypes' gives a list of the types. If it starts with 'x',
125 or x follows one of a few letters. Otherwise, if there is an 'x' after
126 a plus sign, it is also executable"""
127 return (re.search(r"(^[cku]?x)|\+.*x", kind) != None)
128
c65b670e
CP
129def setP4ExecBit(file, mode):
130 # Reopens an already open file and changes the execute bit to match
131 # the execute bit setting in the passed in mode.
132
133 p4Type = "+x"
134
135 if not isModeExec(mode):
136 p4Type = getP4OpenedType(file)
137 p4Type = re.sub('^([cku]?)x(.*)', '\\1\\2', p4Type)
138 p4Type = re.sub('(.*?\+.*?)x(.*?)', '\\1\\2', p4Type)
139 if p4Type[-1] == "+":
140 p4Type = p4Type[0:-1]
141
87b611d5 142 p4_system("reopen -t %s %s" % (p4Type, file))
c65b670e
CP
143
144def getP4OpenedType(file):
145 # Returns the perforce file type for the given file.
146
a7d3ef9d 147 result = p4_read_pipe("opened %s" % file)
f3e5ae4f 148 match = re.match(".*\((.+)\)\r?$", result)
c65b670e
CP
149 if match:
150 return match.group(1)
151 else:
f3e5ae4f 152 die("Could not determine file type for %s (result: '%s')" % (file, result))
c65b670e 153
b43b0a3c
CP
154def diffTreePattern():
155 # This is a simple generator for the diff tree regex pattern. This could be
156 # a class variable if this and parseDiffTreeEntry were a part of a class.
157 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)')
158 while True:
159 yield pattern
160
161def parseDiffTreeEntry(entry):
162 """Parses a single diff tree entry into its component elements.
163
164 See git-diff-tree(1) manpage for details about the format of the diff
165 output. This method returns a dictionary with the following elements:
166
167 src_mode - The mode of the source file
168 dst_mode - The mode of the destination file
169 src_sha1 - The sha1 for the source file
170 dst_sha1 - The sha1 fr the destination file
171 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc)
172 status_score - The score for the status (applicable for 'C' and 'R'
173 statuses). This is None if there is no score.
174 src - The path for the source file.
175 dst - The path for the destination file. This is only present for
176 copy or renames. If it is not present, this is None.
177
178 If the pattern is not matched, None is returned."""
179
180 match = diffTreePattern().next().match(entry)
181 if match:
182 return {
183 'src_mode': match.group(1),
184 'dst_mode': match.group(2),
185 'src_sha1': match.group(3),
186 'dst_sha1': match.group(4),
187 'status': match.group(5),
188 'status_score': match.group(6),
189 'src': match.group(7),
190 'dst': match.group(10)
191 }
192 return None
193
c65b670e
CP
194def isModeExec(mode):
195 # Returns True if the given git mode represents an executable file,
196 # otherwise False.
197 return mode[-3:] == "755"
198
199def isModeExecChanged(src_mode, dst_mode):
200 return isModeExec(src_mode) != isModeExec(dst_mode)
201
b932705b 202def p4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None):
155af834 203 cmd = p4_build_cmd("-G %s" % (cmd))
6a49f8e2
HWN
204 if verbose:
205 sys.stderr.write("Opening pipe: %s\n" % cmd)
9f90c733
SL
206
207 # Use a temporary file to avoid deadlocks without
208 # subprocess.communicate(), which would put another copy
209 # of stdout into memory.
210 stdin_file = None
211 if stdin is not None:
212 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode)
213 stdin_file.write(stdin)
214 stdin_file.flush()
215 stdin_file.seek(0)
216
217 p4 = subprocess.Popen(cmd, shell=True,
218 stdin=stdin_file,
219 stdout=subprocess.PIPE)
86949eef
SH
220
221 result = []
222 try:
223 while True:
9f90c733 224 entry = marshal.load(p4.stdout)
c3f6163b
AG
225 if cb is not None:
226 cb(entry)
227 else:
228 result.append(entry)
86949eef
SH
229 except EOFError:
230 pass
9f90c733
SL
231 exitCode = p4.wait()
232 if exitCode != 0:
ac3e0d79
SH
233 entry = {}
234 entry["p4ExitCode"] = exitCode
235 result.append(entry)
86949eef
SH
236
237 return result
238
239def p4Cmd(cmd):
240 list = p4CmdList(cmd)
241 result = {}
242 for entry in list:
243 result.update(entry)
244 return result;
245
cb2c9db5
SH
246def p4Where(depotPath):
247 if not depotPath.endswith("/"):
248 depotPath += "/"
7f705dc3
TAL
249 depotPath = depotPath + "..."
250 outputList = p4CmdList("where %s" % depotPath)
251 output = None
252 for entry in outputList:
75bc9573
TAL
253 if "depotFile" in entry:
254 if entry["depotFile"] == depotPath:
255 output = entry
256 break
257 elif "data" in entry:
258 data = entry.get("data")
259 space = data.find(" ")
260 if data[:space] == depotPath:
261 output = entry
262 break
7f705dc3
TAL
263 if output == None:
264 return ""
dc524036
SH
265 if output["code"] == "error":
266 return ""
cb2c9db5
SH
267 clientPath = ""
268 if "path" in output:
269 clientPath = output.get("path")
270 elif "data" in output:
271 data = output.get("data")
272 lastSpace = data.rfind(" ")
273 clientPath = data[lastSpace + 1:]
274
275 if clientPath.endswith("..."):
276 clientPath = clientPath[:-3]
277 return clientPath
278
86949eef 279def currentGitBranch():
b25b2065 280 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
86949eef 281
4f5cf76a 282def isValidGitDir(path):
bb6e09b2
HWN
283 if (os.path.exists(path + "/HEAD")
284 and os.path.exists(path + "/refs") and os.path.exists(path + "/objects")):
4f5cf76a
SH
285 return True;
286 return False
287
463e8af6 288def parseRevision(ref):
b25b2065 289 return read_pipe("git rev-parse %s" % ref).strip()
463e8af6 290
6ae8de88
SH
291def extractLogMessageFromGitCommit(commit):
292 logMessage = ""
b016d397
HWN
293
294 ## fixme: title is first line of commit, not 1st paragraph.
6ae8de88 295 foundTitle = False
b016d397 296 for log in read_pipe_lines("git cat-file commit %s" % commit):
6ae8de88
SH
297 if not foundTitle:
298 if len(log) == 1:
1c094184 299 foundTitle = True
6ae8de88
SH
300 continue
301
302 logMessage += log
303 return logMessage
304
bb6e09b2 305def extractSettingsGitLog(log):
6ae8de88
SH
306 values = {}
307 for line in log.split("\n"):
308 line = line.strip()
6326aa58
HWN
309 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
310 if not m:
311 continue
312
313 assignments = m.group(1).split (':')
314 for a in assignments:
315 vals = a.split ('=')
316 key = vals[0].strip()
317 val = ('='.join (vals[1:])).strip()
318 if val.endswith ('\"') and val.startswith('"'):
319 val = val[1:-1]
320
321 values[key] = val
322
845b42cb
SH
323 paths = values.get("depot-paths")
324 if not paths:
325 paths = values.get("depot-path")
a3fdd579
SH
326 if paths:
327 values['depot-paths'] = paths.split(',')
bb6e09b2 328 return values
6ae8de88 329
8136a639 330def gitBranchExists(branch):
bb6e09b2
HWN
331 proc = subprocess.Popen(["git", "rev-parse", branch],
332 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
caace111 333 return proc.wait() == 0;
8136a639 334
36bd8446 335_gitConfig = {}
99f790f2 336def gitConfig(key, args = None): # set args to "--bool", for instance
36bd8446 337 if not _gitConfig.has_key(key):
99f790f2
TAL
338 argsFilter = ""
339 if args != None:
340 argsFilter = "%s " % args
341 cmd = "git config %s%s" % (argsFilter, key)
342 _gitConfig[key] = read_pipe(cmd, ignore_error=True).strip()
36bd8446 343 return _gitConfig[key]
01265103 344
7199cf13
VA
345def gitConfigList(key):
346 if not _gitConfig.has_key(key):
347 _gitConfig[key] = read_pipe("git config --get-all %s" % key, ignore_error=True).strip().split(os.linesep)
348 return _gitConfig[key]
349
062410bb
SH
350def p4BranchesInGit(branchesAreInRemotes = True):
351 branches = {}
352
353 cmdline = "git rev-parse --symbolic "
354 if branchesAreInRemotes:
355 cmdline += " --remotes"
356 else:
357 cmdline += " --branches"
358
359 for line in read_pipe_lines(cmdline):
360 line = line.strip()
361
362 ## only import to p4/
363 if not line.startswith('p4/') or line == "p4/HEAD":
364 continue
365 branch = line
366
367 # strip off p4
368 branch = re.sub ("^p4/", "", line)
369
370 branches[branch] = parseRevision(line)
371 return branches
372
9ceab363 373def findUpstreamBranchPoint(head = "HEAD"):
86506fe5
SH
374 branches = p4BranchesInGit()
375 # map from depot-path to branch name
376 branchByDepotPath = {}
377 for branch in branches.keys():
378 tip = branches[branch]
379 log = extractLogMessageFromGitCommit(tip)
380 settings = extractSettingsGitLog(log)
381 if settings.has_key("depot-paths"):
382 paths = ",".join(settings["depot-paths"])
383 branchByDepotPath[paths] = "remotes/p4/" + branch
384
27d2d811 385 settings = None
27d2d811
SH
386 parent = 0
387 while parent < 65535:
9ceab363 388 commit = head + "~%s" % parent
27d2d811
SH
389 log = extractLogMessageFromGitCommit(commit)
390 settings = extractSettingsGitLog(log)
86506fe5
SH
391 if settings.has_key("depot-paths"):
392 paths = ",".join(settings["depot-paths"])
393 if branchByDepotPath.has_key(paths):
394 return [branchByDepotPath[paths], settings]
27d2d811 395
86506fe5 396 parent = parent + 1
27d2d811 397
86506fe5 398 return ["", settings]
27d2d811 399
5ca44617
SH
400def createOrUpdateBranchesFromOrigin(localRefPrefix = "refs/remotes/p4/", silent=True):
401 if not silent:
402 print ("Creating/updating branch(es) in %s based on origin branch(es)"
403 % localRefPrefix)
404
405 originPrefix = "origin/p4/"
406
407 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
408 line = line.strip()
409 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
410 continue
411
412 headName = line[len(originPrefix):]
413 remoteHead = localRefPrefix + headName
414 originHead = line
415
416 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
417 if (not original.has_key('depot-paths')
418 or not original.has_key('change')):
419 continue
420
421 update = False
422 if not gitBranchExists(remoteHead):
423 if verbose:
424 print "creating %s" % remoteHead
425 update = True
426 else:
427 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
428 if settings.has_key('change') > 0:
429 if settings['depot-paths'] == original['depot-paths']:
430 originP4Change = int(original['change'])
431 p4Change = int(settings['change'])
432 if originP4Change > p4Change:
433 print ("%s (%s) is newer than %s (%s). "
434 "Updating p4 branch from origin."
435 % (originHead, originP4Change,
436 remoteHead, p4Change))
437 update = True
438 else:
439 print ("Ignoring: %s was imported from %s while "
440 "%s was imported from %s"
441 % (originHead, ','.join(original['depot-paths']),
442 remoteHead, ','.join(settings['depot-paths'])))
443
444 if update:
445 system("git update-ref %s %s" % (remoteHead, originHead))
446
447def originP4BranchesExist():
448 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
449
4f6432d8
SH
450def p4ChangesForPaths(depotPaths, changeRange):
451 assert depotPaths
b340fa43 452 output = p4_read_pipe_lines("changes " + ' '.join (["%s...%s" % (p, changeRange)
4f6432d8
SH
453 for p in depotPaths]))
454
b4b0ba06 455 changes = {}
4f6432d8 456 for line in output:
c3f6163b
AG
457 changeNum = int(line.split(" ")[1])
458 changes[changeNum] = True
4f6432d8 459
b4b0ba06
PW
460 changelist = changes.keys()
461 changelist.sort()
462 return changelist
4f6432d8 463
d53de8b9
TAL
464def p4PathStartsWith(path, prefix):
465 # This method tries to remedy a potential mixed-case issue:
466 #
467 # If UserA adds //depot/DirA/file1
468 # and UserB adds //depot/dira/file2
469 #
470 # we may or may not have a problem. If you have core.ignorecase=true,
471 # we treat DirA and dira as the same directory
472 ignorecase = gitConfig("core.ignorecase", "--bool") == "true"
473 if ignorecase:
474 return path.lower().startswith(prefix.lower())
475 return path.startswith(prefix)
476
b984733c
SH
477class Command:
478 def __init__(self):
479 self.usage = "usage: %prog [options]"
8910ac0e 480 self.needsGit = True
b984733c 481
3ea2cfd4
LD
482class P4UserMap:
483 def __init__(self):
484 self.userMapFromPerforceServer = False
485
486 def getUserCacheFilename(self):
487 home = os.environ.get("HOME", os.environ.get("USERPROFILE"))
488 return home + "/.gitp4-usercache.txt"
489
490 def getUserMapFromPerforceServer(self):
491 if self.userMapFromPerforceServer:
492 return
493 self.users = {}
494 self.emails = {}
495
496 for output in p4CmdList("users"):
497 if not output.has_key("User"):
498 continue
499 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
500 self.emails[output["Email"]] = output["User"]
501
502
503 s = ''
504 for (key, val) in self.users.items():
505 s += "%s\t%s\n" % (key.expandtabs(1), val.expandtabs(1))
506
507 open(self.getUserCacheFilename(), "wb").write(s)
508 self.userMapFromPerforceServer = True
509
510 def loadUserMapFromCache(self):
511 self.users = {}
512 self.userMapFromPerforceServer = False
513 try:
514 cache = open(self.getUserCacheFilename(), "rb")
515 lines = cache.readlines()
516 cache.close()
517 for line in lines:
518 entry = line.strip().split("\t")
519 self.users[entry[0]] = entry[1]
520 except IOError:
521 self.getUserMapFromPerforceServer()
522
b984733c 523class P4Debug(Command):
86949eef 524 def __init__(self):
6ae8de88 525 Command.__init__(self)
86949eef 526 self.options = [
b1ce9447
HWN
527 optparse.make_option("--verbose", dest="verbose", action="store_true",
528 default=False),
4addad22 529 ]
c8c39116 530 self.description = "A tool to debug the output of p4 -G."
8910ac0e 531 self.needsGit = False
b1ce9447 532 self.verbose = False
86949eef
SH
533
534 def run(self, args):
b1ce9447 535 j = 0
86949eef 536 for output in p4CmdList(" ".join(args)):
b1ce9447
HWN
537 print 'Element: %d' % j
538 j += 1
86949eef 539 print output
b984733c 540 return True
86949eef 541
5834684d
SH
542class P4RollBack(Command):
543 def __init__(self):
544 Command.__init__(self)
545 self.options = [
0c66a783
SH
546 optparse.make_option("--verbose", dest="verbose", action="store_true"),
547 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
5834684d
SH
548 ]
549 self.description = "A tool to debug the multi-branch import. Don't use :)"
52102d47 550 self.verbose = False
0c66a783 551 self.rollbackLocalBranches = False
5834684d
SH
552
553 def run(self, args):
554 if len(args) != 1:
555 return False
556 maxChange = int(args[0])
0c66a783 557
ad192f28 558 if "p4ExitCode" in p4Cmd("changes -m 1"):
66a2f523
SH
559 die("Problems executing p4");
560
0c66a783
SH
561 if self.rollbackLocalBranches:
562 refPrefix = "refs/heads/"
b016d397 563 lines = read_pipe_lines("git rev-parse --symbolic --branches")
0c66a783
SH
564 else:
565 refPrefix = "refs/remotes/"
b016d397 566 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
0c66a783
SH
567
568 for line in lines:
569 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
b25b2065
HWN
570 line = line.strip()
571 ref = refPrefix + line
5834684d 572 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
573 settings = extractSettingsGitLog(log)
574
575 depotPaths = settings['depot-paths']
576 change = settings['change']
577
5834684d 578 changed = False
52102d47 579
6326aa58
HWN
580 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
581 for p in depotPaths]))) == 0:
52102d47
SH
582 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
583 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
584 continue
585
bb6e09b2 586 while change and int(change) > maxChange:
5834684d 587 changed = True
52102d47
SH
588 if self.verbose:
589 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
5834684d
SH
590 system("git update-ref %s \"%s^\"" % (ref, ref))
591 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
592 settings = extractSettingsGitLog(log)
593
594
595 depotPaths = settings['depot-paths']
596 change = settings['change']
5834684d
SH
597
598 if changed:
52102d47 599 print "%s rewound to %s" % (ref, change)
5834684d
SH
600
601 return True
602
3ea2cfd4 603class P4Submit(Command, P4UserMap):
4f5cf76a 604 def __init__(self):
b984733c 605 Command.__init__(self)
3ea2cfd4 606 P4UserMap.__init__(self)
4f5cf76a 607 self.options = [
4addad22 608 optparse.make_option("--verbose", dest="verbose", action="store_true"),
4f5cf76a 609 optparse.make_option("--origin", dest="origin"),
ae901090 610 optparse.make_option("-M", dest="detectRenames", action="store_true"),
3ea2cfd4
LD
611 # preserve the user, requires relevant p4 permissions
612 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"),
4f5cf76a
SH
613 ]
614 self.description = "Submit changes from git to the perforce depot."
c9b50e63 615 self.usage += " [name of git branch to submit into perforce depot]"
4f5cf76a 616 self.interactive = True
9512497b 617 self.origin = ""
ae901090 618 self.detectRenames = False
b0d10df7 619 self.verbose = False
3ea2cfd4 620 self.preserveUser = gitConfig("git-p4.preserveUser").lower() == "true"
f7baba8b 621 self.isWindows = (platform.system() == "Windows")
848de9c3 622 self.myP4UserId = None
4f5cf76a 623
4f5cf76a
SH
624 def check(self):
625 if len(p4CmdList("opened ...")) > 0:
626 die("You have files opened with perforce! Close them before starting the sync.")
627
edae1e2f
SH
628 # replaces everything between 'Description:' and the next P4 submit template field with the
629 # commit message
4f5cf76a
SH
630 def prepareLogMessage(self, template, message):
631 result = ""
632
edae1e2f
SH
633 inDescriptionSection = False
634
4f5cf76a
SH
635 for line in template.split("\n"):
636 if line.startswith("#"):
637 result += line + "\n"
638 continue
639
edae1e2f 640 if inDescriptionSection:
c9dbab04 641 if line.startswith("Files:") or line.startswith("Jobs:"):
edae1e2f
SH
642 inDescriptionSection = False
643 else:
644 continue
645 else:
646 if line.startswith("Description:"):
647 inDescriptionSection = True
648 line += "\n"
649 for messageLine in message.split("\n"):
650 line += "\t" + messageLine + "\n"
651
652 result += line + "\n"
4f5cf76a
SH
653
654 return result
655
3ea2cfd4
LD
656 def p4UserForCommit(self,id):
657 # Return the tuple (perforce user,git email) for a given git commit id
658 self.getUserMapFromPerforceServer()
659 gitEmail = read_pipe("git log --max-count=1 --format='%%ae' %s" % id)
660 gitEmail = gitEmail.strip()
661 if not self.emails.has_key(gitEmail):
662 return (None,gitEmail)
663 else:
664 return (self.emails[gitEmail],gitEmail)
665
666 def checkValidP4Users(self,commits):
667 # check if any git authors cannot be mapped to p4 users
668 for id in commits:
669 (user,email) = self.p4UserForCommit(id)
670 if not user:
671 msg = "Cannot find p4 user for email %s in commit %s." % (email, id)
672 if gitConfig('git-p4.allowMissingP4Users').lower() == "true":
673 print "%s" % msg
674 else:
675 die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg)
676
677 def lastP4Changelist(self):
678 # Get back the last changelist number submitted in this client spec. This
679 # then gets used to patch up the username in the change. If the same
680 # client spec is being used by multiple processes then this might go
681 # wrong.
682 results = p4CmdList("client -o") # find the current client
683 client = None
684 for r in results:
685 if r.has_key('Client'):
686 client = r['Client']
687 break
688 if not client:
689 die("could not get client spec")
690 results = p4CmdList("changes -c %s -m 1" % client)
691 for r in results:
692 if r.has_key('change'):
693 return r['change']
694 die("Could not get changelist number for last submit - cannot patch up user details")
695
696 def modifyChangelistUser(self, changelist, newUser):
697 # fixup the user field of a changelist after it has been submitted.
698 changes = p4CmdList("change -o %s" % changelist)
ecdba36d
LD
699 if len(changes) != 1:
700 die("Bad output from p4 change modifying %s to user %s" %
701 (changelist, newUser))
702
703 c = changes[0]
704 if c['User'] == newUser: return # nothing to do
705 c['User'] = newUser
706 input = marshal.dumps(c)
707
3ea2cfd4
LD
708 result = p4CmdList("change -f -i", stdin=input)
709 for r in result:
710 if r.has_key('code'):
711 if r['code'] == 'error':
712 die("Could not modify user field of changelist %s to %s:%s" % (changelist, newUser, r['data']))
713 if r.has_key('data'):
714 print("Updated user field for changelist %s to %s" % (changelist, newUser))
715 return
716 die("Could not modify user field of changelist %s to %s" % (changelist, newUser))
717
718 def canChangeChangelists(self):
719 # check to see if we have p4 admin or super-user permissions, either of
720 # which are required to modify changelists.
ecdba36d 721 results = p4CmdList("protects %s" % self.depotPath)
3ea2cfd4
LD
722 for r in results:
723 if r.has_key('perm'):
724 if r['perm'] == 'admin':
725 return 1
726 if r['perm'] == 'super':
727 return 1
728 return 0
729
848de9c3
LD
730 def p4UserId(self):
731 if self.myP4UserId:
732 return self.myP4UserId
733
734 results = p4CmdList("user -o")
735 for r in results:
736 if r.has_key('User'):
737 self.myP4UserId = r['User']
738 return r['User']
739 die("Could not find your p4 user id")
740
741 def p4UserIsMe(self, p4User):
742 # return True if the given p4 user is actually me
743 me = self.p4UserId()
744 if not p4User or p4User != me:
745 return False
746 else:
747 return True
748
ea99c3ae
SH
749 def prepareSubmitTemplate(self):
750 # remove lines in the Files section that show changes to files outside the depot path we're committing into
751 template = ""
752 inFilesSection = False
b340fa43 753 for line in p4_read_pipe_lines("change -o"):
f3e5ae4f
MSO
754 if line.endswith("\r\n"):
755 line = line[:-2] + "\n"
ea99c3ae
SH
756 if inFilesSection:
757 if line.startswith("\t"):
758 # path starts and ends with a tab
759 path = line[1:]
760 lastTab = path.rfind("\t")
761 if lastTab != -1:
762 path = path[:lastTab]
d53de8b9 763 if not p4PathStartsWith(path, self.depotPath):
ea99c3ae
SH
764 continue
765 else:
766 inFilesSection = False
767 else:
768 if line.startswith("Files:"):
769 inFilesSection = True
770
771 template += line
772
773 return template
774
7cb5cbef 775 def applyCommit(self, id):
0e36f2d7 776 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
ae901090 777
848de9c3 778 (p4User, gitEmail) = self.p4UserForCommit(id)
3ea2cfd4 779
ae901090
VA
780 if not self.detectRenames:
781 # If not explicitly set check the config variable
0a9feffc 782 self.detectRenames = gitConfig("git-p4.detectRenames")
ae901090 783
0a9feffc
VA
784 if self.detectRenames.lower() == "false" or self.detectRenames == "":
785 diffOpts = ""
786 elif self.detectRenames.lower() == "true":
ae901090
VA
787 diffOpts = "-M"
788 else:
0a9feffc 789 diffOpts = "-M%s" % self.detectRenames
ae901090 790
0a9feffc
VA
791 detectCopies = gitConfig("git-p4.detectCopies")
792 if detectCopies.lower() == "true":
4fddb41b 793 diffOpts += " -C"
0a9feffc
VA
794 elif detectCopies != "" and detectCopies.lower() != "false":
795 diffOpts += " -C%s" % detectCopies
4fddb41b 796
68cbcf1b 797 if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true":
4fddb41b
VA
798 diffOpts += " --find-copies-harder"
799
0e36f2d7 800 diff = read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (diffOpts, id, id))
4f5cf76a
SH
801 filesToAdd = set()
802 filesToDelete = set()
d336c158 803 editedFiles = set()
c65b670e 804 filesToChangeExecBit = {}
4f5cf76a 805 for line in diff:
b43b0a3c
CP
806 diff = parseDiffTreeEntry(line)
807 modifier = diff['status']
808 path = diff['src']
4f5cf76a 809 if modifier == "M":
87b611d5 810 p4_system("edit \"%s\"" % path)
c65b670e
CP
811 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
812 filesToChangeExecBit[path] = diff['dst_mode']
d336c158 813 editedFiles.add(path)
4f5cf76a
SH
814 elif modifier == "A":
815 filesToAdd.add(path)
c65b670e 816 filesToChangeExecBit[path] = diff['dst_mode']
4f5cf76a
SH
817 if path in filesToDelete:
818 filesToDelete.remove(path)
819 elif modifier == "D":
820 filesToDelete.add(path)
821 if path in filesToAdd:
822 filesToAdd.remove(path)
4fddb41b
VA
823 elif modifier == "C":
824 src, dest = diff['src'], diff['dst']
825 p4_system("integrate -Dt \"%s\" \"%s\"" % (src, dest))
826 if diff['src_sha1'] != diff['dst_sha1']:
827 p4_system("edit \"%s\"" % (dest))
828 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
829 p4_system("edit \"%s\"" % (dest))
830 filesToChangeExecBit[dest] = diff['dst_mode']
831 os.unlink(dest)
832 editedFiles.add(dest)
d9a5f25b 833 elif modifier == "R":
b43b0a3c 834 src, dest = diff['src'], diff['dst']
87b611d5 835 p4_system("integrate -Dt \"%s\" \"%s\"" % (src, dest))
ae901090
VA
836 if diff['src_sha1'] != diff['dst_sha1']:
837 p4_system("edit \"%s\"" % (dest))
c65b670e 838 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
ae901090 839 p4_system("edit \"%s\"" % (dest))
c65b670e 840 filesToChangeExecBit[dest] = diff['dst_mode']
d9a5f25b
CP
841 os.unlink(dest)
842 editedFiles.add(dest)
843 filesToDelete.add(src)
4f5cf76a
SH
844 else:
845 die("unknown modifier %s for %s" % (modifier, path))
846
0e36f2d7 847 diffcmd = "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
47a130b7 848 patchcmd = diffcmd + " | git apply "
c1b296b9
SH
849 tryPatchCmd = patchcmd + "--check -"
850 applyPatchCmd = patchcmd + "--check --apply -"
51a2640a 851
47a130b7 852 if os.system(tryPatchCmd) != 0:
51a2640a
SH
853 print "Unfortunately applying the change failed!"
854 print "What do you want to do?"
855 response = "x"
856 while response != "s" and response != "a" and response != "w":
cebdf5af
HWN
857 response = raw_input("[s]kip this patch / [a]pply the patch forcibly "
858 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
51a2640a
SH
859 if response == "s":
860 print "Skipping! Good luck with the next patches..."
20947149 861 for f in editedFiles:
87b611d5 862 p4_system("revert \"%s\"" % f);
20947149
SH
863 for f in filesToAdd:
864 system("rm %s" %f)
51a2640a
SH
865 return
866 elif response == "a":
47a130b7 867 os.system(applyPatchCmd)
51a2640a
SH
868 if len(filesToAdd) > 0:
869 print "You may also want to call p4 add on the following files:"
870 print " ".join(filesToAdd)
871 if len(filesToDelete):
872 print "The following files should be scheduled for deletion with p4 delete:"
873 print " ".join(filesToDelete)
cebdf5af
HWN
874 die("Please resolve and submit the conflict manually and "
875 + "continue afterwards with git-p4 submit --continue")
51a2640a
SH
876 elif response == "w":
877 system(diffcmd + " > patch.txt")
878 print "Patch saved to patch.txt in %s !" % self.clientPath
cebdf5af
HWN
879 die("Please resolve and submit the conflict manually and "
880 "continue afterwards with git-p4 submit --continue")
51a2640a 881
47a130b7 882 system(applyPatchCmd)
4f5cf76a
SH
883
884 for f in filesToAdd:
87b611d5 885 p4_system("add \"%s\"" % f)
4f5cf76a 886 for f in filesToDelete:
87b611d5
AK
887 p4_system("revert \"%s\"" % f)
888 p4_system("delete \"%s\"" % f)
4f5cf76a 889
c65b670e
CP
890 # Set/clear executable bits
891 for f in filesToChangeExecBit.keys():
892 mode = filesToChangeExecBit[f]
893 setP4ExecBit(f, mode)
894
0e36f2d7 895 logMessage = extractLogMessageFromGitCommit(id)
0e36f2d7 896 logMessage = logMessage.strip()
4f5cf76a 897
ea99c3ae 898 template = self.prepareSubmitTemplate()
4f5cf76a
SH
899
900 if self.interactive:
901 submitTemplate = self.prepareLogMessage(template, logMessage)
ecdba36d
LD
902
903 if self.preserveUser:
904 submitTemplate = submitTemplate + ("\n######## Actual user %s, modified after commit\n" % p4User)
905
67abd417
SB
906 if os.environ.has_key("P4DIFF"):
907 del(os.environ["P4DIFF"])
8b130262
AW
908 diff = ""
909 for editedFile in editedFiles:
910 diff += p4_read_pipe("diff -du %r" % editedFile)
4f5cf76a 911
f3e5ae4f 912 newdiff = ""
4f5cf76a 913 for newFile in filesToAdd:
f3e5ae4f
MSO
914 newdiff += "==== new file ====\n"
915 newdiff += "--- /dev/null\n"
916 newdiff += "+++ %s\n" % newFile
4f5cf76a
SH
917 f = open(newFile, "r")
918 for line in f.readlines():
f3e5ae4f 919 newdiff += "+" + line
4f5cf76a
SH
920 f.close()
921
848de9c3
LD
922 if self.checkAuthorship and not self.p4UserIsMe(p4User):
923 submitTemplate += "######## git author %s does not match your p4 account.\n" % gitEmail
924 submitTemplate += "######## Use git-p4 option --preserve-user to modify authorship\n"
925 submitTemplate += "######## Use git-p4 config git-p4.skipUserNameCheck hides this message.\n"
926
f3e5ae4f 927 separatorLine = "######## everything below this line is just the diff #######\n"
4f5cf76a 928
e96e400f
SH
929 [handle, fileName] = tempfile.mkstemp()
930 tmpFile = os.fdopen(handle, "w+")
f3e5ae4f
MSO
931 if self.isWindows:
932 submitTemplate = submitTemplate.replace("\n", "\r\n")
933 separatorLine = separatorLine.replace("\n", "\r\n")
934 newdiff = newdiff.replace("\n", "\r\n")
935 tmpFile.write(submitTemplate + separatorLine + diff + newdiff)
e96e400f 936 tmpFile.close()
cdc7e388 937 mtime = os.stat(fileName).st_mtime
82cea9ff
SB
938 if os.environ.has_key("P4EDITOR"):
939 editor = os.environ.get("P4EDITOR")
940 else:
8b187e6b 941 editor = read_pipe("git var GIT_EDITOR").strip()
e96e400f 942 system(editor + " " + fileName)
e96e400f 943
3ea2cfd4
LD
944 if gitConfig("git-p4.skipSubmitEditCheck") == "true":
945 checkModTime = False
946 else:
947 checkModTime = True
948
cdc7e388 949 response = "y"
3ea2cfd4 950 if checkModTime and (os.stat(fileName).st_mtime <= mtime):
cdc7e388
SH
951 response = "x"
952 while response != "y" and response != "n":
953 response = raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")
954
955 if response == "y":
956 tmpFile = open(fileName, "rb")
957 message = tmpFile.read()
958 tmpFile.close()
959 submitTemplate = message[:message.index(separatorLine)]
960 if self.isWindows:
961 submitTemplate = submitTemplate.replace("\r\n", "\n")
962 p4_write_pipe("submit -i", submitTemplate)
3ea2cfd4
LD
963
964 if self.preserveUser:
965 if p4User:
966 # Get last changelist number. Cannot easily get it from
967 # the submit command output as the output is unmarshalled.
968 changelist = self.lastP4Changelist()
969 self.modifyChangelistUser(changelist, p4User)
970
cdc7e388
SH
971 else:
972 for f in editedFiles:
973 p4_system("revert \"%s\"" % f);
974 for f in filesToAdd:
975 p4_system("revert \"%s\"" % f);
976 system("rm %s" %f)
977
978 os.remove(fileName)
4f5cf76a
SH
979 else:
980 fileName = "submit.txt"
981 file = open(fileName, "w+")
982 file.write(self.prepareLogMessage(template, logMessage))
983 file.close()
cebdf5af
HWN
984 print ("Perforce submit template written as %s. "
985 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
986 % (fileName, fileName))
4f5cf76a
SH
987
988 def run(self, args):
c9b50e63
SH
989 if len(args) == 0:
990 self.master = currentGitBranch()
4280e533 991 if len(self.master) == 0 or not gitBranchExists("refs/heads/%s" % self.master):
c9b50e63
SH
992 die("Detecting current git branch failed!")
993 elif len(args) == 1:
994 self.master = args[0]
995 else:
996 return False
997
4c2d5d72
JX
998 allowSubmit = gitConfig("git-p4.allowSubmit")
999 if len(allowSubmit) > 0 and not self.master in allowSubmit.split(","):
1000 die("%s is not in git-p4.allowSubmit" % self.master)
1001
27d2d811 1002 [upstream, settings] = findUpstreamBranchPoint()
ea99c3ae 1003 self.depotPath = settings['depot-paths'][0]
27d2d811
SH
1004 if len(self.origin) == 0:
1005 self.origin = upstream
a3fdd579 1006
3ea2cfd4
LD
1007 if self.preserveUser:
1008 if not self.canChangeChangelists():
1009 die("Cannot preserve user names without p4 super-user or admin permissions")
1010
a3fdd579
SH
1011 if self.verbose:
1012 print "Origin branch is " + self.origin
9512497b 1013
ea99c3ae 1014 if len(self.depotPath) == 0:
9512497b
SH
1015 print "Internal error: cannot locate perforce depot path from existing branches"
1016 sys.exit(128)
1017
ea99c3ae 1018 self.clientPath = p4Where(self.depotPath)
9512497b 1019
51a2640a 1020 if len(self.clientPath) == 0:
ea99c3ae 1021 print "Error: Cannot locate perforce checkout of %s in client view" % self.depotPath
9512497b
SH
1022 sys.exit(128)
1023
ea99c3ae 1024 print "Perforce checkout for depot path %s located at %s" % (self.depotPath, self.clientPath)
7944f142 1025 self.oldWorkingDirectory = os.getcwd()
c1b296b9 1026
053fd0c1 1027 chdir(self.clientPath)
6a01298a 1028 print "Synchronizing p4 checkout..."
87b611d5 1029 p4_system("sync ...")
9512497b 1030
4f5cf76a 1031 self.check()
4f5cf76a 1032
4c750c0d
SH
1033 commits = []
1034 for line in read_pipe_lines("git rev-list --no-merges %s..%s" % (self.origin, self.master)):
1035 commits.append(line.strip())
1036 commits.reverse()
4f5cf76a 1037
848de9c3
LD
1038 if self.preserveUser or (gitConfig("git-p4.skipUserNameCheck") == "true"):
1039 self.checkAuthorship = False
1040 else:
1041 self.checkAuthorship = True
1042
3ea2cfd4
LD
1043 if self.preserveUser:
1044 self.checkValidP4Users(commits)
1045
4f5cf76a 1046 while len(commits) > 0:
4f5cf76a
SH
1047 commit = commits[0]
1048 commits = commits[1:]
7cb5cbef 1049 self.applyCommit(commit)
4f5cf76a
SH
1050 if not self.interactive:
1051 break
1052
4f5cf76a 1053 if len(commits) == 0:
4c750c0d 1054 print "All changes applied!"
053fd0c1 1055 chdir(self.oldWorkingDirectory)
14594f4b 1056
4c750c0d
SH
1057 sync = P4Sync()
1058 sync.run([])
14594f4b 1059
4c750c0d
SH
1060 rebase = P4Rebase()
1061 rebase.rebase()
4f5cf76a 1062
b984733c
SH
1063 return True
1064
3ea2cfd4 1065class P4Sync(Command, P4UserMap):
56c09345
PW
1066 delete_actions = ( "delete", "move/delete", "purge" )
1067
b984733c
SH
1068 def __init__(self):
1069 Command.__init__(self)
3ea2cfd4 1070 P4UserMap.__init__(self)
b984733c
SH
1071 self.options = [
1072 optparse.make_option("--branch", dest="branch"),
1073 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
1074 optparse.make_option("--changesfile", dest="changesFile"),
1075 optparse.make_option("--silent", dest="silent", action="store_true"),
ef48f909 1076 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
a028a98e 1077 optparse.make_option("--verbose", dest="verbose", action="store_true"),
d2c6dd30
HWN
1078 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
1079 help="Import into refs/heads/ , not refs/remotes"),
8b41a97f 1080 optparse.make_option("--max-changes", dest="maxChanges"),
86dff6b6 1081 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
3a70cdfa
TAL
1082 help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),
1083 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',
1084 help="Only sync files that are included in the Perforce Client Spec")
b984733c
SH
1085 ]
1086 self.description = """Imports from Perforce into a git repository.\n
1087 example:
1088 //depot/my/project/ -- to import the current head
1089 //depot/my/project/@all -- to import everything
1090 //depot/my/project/@1,6 -- to import only from revision 1 to 6
1091
1092 (a ... is not needed in the path p4 specification, it's added implicitly)"""
1093
1094 self.usage += " //depot/path[@revRange]"
b984733c 1095 self.silent = False
1d7367dc
RG
1096 self.createdBranches = set()
1097 self.committedChanges = set()
569d1bd4 1098 self.branch = ""
b984733c 1099 self.detectBranches = False
cb53e1f8 1100 self.detectLabels = False
b984733c 1101 self.changesFile = ""
01265103 1102 self.syncWithOrigin = True
4b97ffb1 1103 self.verbose = False
a028a98e 1104 self.importIntoRemotes = True
01a9c9c5 1105 self.maxChanges = ""
c1f9197f 1106 self.isWindows = (platform.system() == "Windows")
8b41a97f 1107 self.keepRepoPath = False
6326aa58 1108 self.depotPaths = None
3c699645 1109 self.p4BranchesInGit = []
354081d5 1110 self.cloneExclude = []
3a70cdfa
TAL
1111 self.useClientSpec = False
1112 self.clientSpecDirs = []
b984733c 1113
01265103
SH
1114 if gitConfig("git-p4.syncFromOrigin") == "false":
1115 self.syncWithOrigin = False
1116
084f6306
PW
1117 #
1118 # P4 wildcards are not allowed in filenames. P4 complains
1119 # if you simply add them, but you can force it with "-f", in
1120 # which case it translates them into %xx encoding internally.
1121 # Search for and fix just these four characters. Do % last so
1122 # that fixing it does not inadvertently create new %-escapes.
1123 #
1124 def wildcard_decode(self, path):
1125 # Cannot have * in a filename in windows; untested as to
1126 # what p4 would do in such a case.
1127 if not self.isWindows:
1128 path = path.replace("%2A", "*")
1129 path = path.replace("%23", "#") \
1130 .replace("%40", "@") \
1131 .replace("%25", "%")
1132 return path
1133
b984733c 1134 def extractFilesFromCommit(self, commit):
354081d5
TT
1135 self.cloneExclude = [re.sub(r"\.\.\.$", "", path)
1136 for path in self.cloneExclude]
b984733c
SH
1137 files = []
1138 fnum = 0
1139 while commit.has_key("depotFile%s" % fnum):
1140 path = commit["depotFile%s" % fnum]
6326aa58 1141
354081d5 1142 if [p for p in self.cloneExclude
d53de8b9 1143 if p4PathStartsWith(path, p)]:
354081d5
TT
1144 found = False
1145 else:
1146 found = [p for p in self.depotPaths
d53de8b9 1147 if p4PathStartsWith(path, p)]
6326aa58 1148 if not found:
b984733c
SH
1149 fnum = fnum + 1
1150 continue
1151
1152 file = {}
1153 file["path"] = path
1154 file["rev"] = commit["rev%s" % fnum]
1155 file["action"] = commit["action%s" % fnum]
1156 file["type"] = commit["type%s" % fnum]
1157 files.append(file)
1158 fnum = fnum + 1
1159 return files
1160
6326aa58 1161 def stripRepoPath(self, path, prefixes):
3952710b
IW
1162 if self.useClientSpec:
1163
1164 # if using the client spec, we use the output directory
1165 # specified in the client. For example, a view
1166 # //depot/foo/branch/... //client/branch/foo/...
1167 # will end up putting all foo/branch files into
1168 # branch/foo/
1169 for val in self.clientSpecDirs:
1170 if path.startswith(val[0]):
1171 # replace the depot path with the client path
1172 path = path.replace(val[0], val[1][1])
1173 # now strip out the client (//client/...)
1174 path = re.sub("^(//[^/]+/)", '', path)
1175 # the rest is all path
1176 return path
1177
8b41a97f 1178 if self.keepRepoPath:
6326aa58
HWN
1179 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]
1180
1181 for p in prefixes:
d53de8b9 1182 if p4PathStartsWith(path, p):
6326aa58 1183 path = path[len(p):]
8b41a97f 1184
6326aa58 1185 return path
6754a299 1186
71b112d4 1187 def splitFilesIntoBranches(self, commit):
d5904674 1188 branches = {}
71b112d4
SH
1189 fnum = 0
1190 while commit.has_key("depotFile%s" % fnum):
1191 path = commit["depotFile%s" % fnum]
6326aa58 1192 found = [p for p in self.depotPaths
d53de8b9 1193 if p4PathStartsWith(path, p)]
6326aa58 1194 if not found:
71b112d4
SH
1195 fnum = fnum + 1
1196 continue
1197
1198 file = {}
1199 file["path"] = path
1200 file["rev"] = commit["rev%s" % fnum]
1201 file["action"] = commit["action%s" % fnum]
1202 file["type"] = commit["type%s" % fnum]
1203 fnum = fnum + 1
1204
6326aa58 1205 relPath = self.stripRepoPath(path, self.depotPaths)
b984733c 1206
4b97ffb1 1207 for branch in self.knownBranches.keys():
6754a299
HWN
1208
1209 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
1210 if relPath.startswith(branch + "/"):
d5904674
SH
1211 if branch not in branches:
1212 branches[branch] = []
71b112d4 1213 branches[branch].append(file)
6555b2cc 1214 break
b984733c
SH
1215
1216 return branches
1217
b932705b
LD
1218 # output one file from the P4 stream
1219 # - helper for streamP4Files
1220
1221 def streamOneP4File(self, file, contents):
c3f6163b
AG
1222 if file["type"] == "apple":
1223 print "\nfile %s is a strange apple file that forks. Ignoring" % \
1224 file['depotFile']
1225 return
b932705b
LD
1226
1227 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)
084f6306 1228 relPath = self.wildcard_decode(relPath)
b932705b
LD
1229 if verbose:
1230 sys.stderr.write("%s\n" % relPath)
1231
1232 mode = "644"
1233 if isP4Exec(file["type"]):
1234 mode = "755"
1235 elif file["type"] == "symlink":
1236 mode = "120000"
1237 # p4 print on a symlink contains "target\n", so strip it off
b39c3612
EP
1238 data = ''.join(contents)
1239 contents = [data[:-1]]
b932705b 1240
55aa5714
PW
1241 if file['type'].startswith("utf16"):
1242 # p4 delivers different text in the python output to -G
1243 # than it does when using "print -o", or normal p4 client
1244 # operations. utf16 is converted to ascii or utf8, perhaps.
1245 # But ascii text saved as -t utf16 is completely mangled.
1246 # Invoke print -o to get the real contents.
1247 text = p4_read_pipe('print -q -o - "%s"' % file['depotFile'])
1248 contents = [ text ]
1249
b932705b
LD
1250 if self.isWindows and file["type"].endswith("text"):
1251 mangled = []
1252 for data in contents:
1253 data = data.replace("\r\n", "\n")
1254 mangled.append(data)
1255 contents = mangled
1256
55aa5714
PW
1257 # Note that we do not try to de-mangle keywords on utf16 files,
1258 # even though in theory somebody may want that.
b932705b
LD
1259 if file['type'] in ('text+ko', 'unicode+ko', 'binary+ko'):
1260 contents = map(lambda text: re.sub(r'(?i)\$(Id|Header):[^$]*\$',r'$\1$', text), contents)
1261 elif file['type'] in ('text+k', 'ktext', 'kxtext', 'unicode+k', 'binary+k'):
1262 contents = map(lambda text: re.sub(r'\$(Id|Header|Author|Date|DateTime|Change|File|Revision):[^$\n]*\$',r'$\1$', text), contents)
1263
1264 self.gitStream.write("M %s inline %s\n" % (mode, relPath))
1265
1266 # total length...
1267 length = 0
1268 for d in contents:
1269 length = length + len(d)
1270
1271 self.gitStream.write("data %d\n" % length)
1272 for d in contents:
1273 self.gitStream.write(d)
1274 self.gitStream.write("\n")
1275
1276 def streamOneP4Deletion(self, file):
1277 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)
1278 if verbose:
1279 sys.stderr.write("delete %s\n" % relPath)
1280 self.gitStream.write("D %s\n" % relPath)
1281
1282 # handle another chunk of streaming data
1283 def streamP4FilesCb(self, marshalled):
1284
c3f6163b
AG
1285 if marshalled.has_key('depotFile') and self.stream_have_file_info:
1286 # start of a new file - output the old one first
1287 self.streamOneP4File(self.stream_file, self.stream_contents)
1288 self.stream_file = {}
1289 self.stream_contents = []
1290 self.stream_have_file_info = False
b932705b 1291
c3f6163b
AG
1292 # pick up the new file information... for the
1293 # 'data' field we need to append to our array
1294 for k in marshalled.keys():
1295 if k == 'data':
1296 self.stream_contents.append(marshalled['data'])
1297 else:
1298 self.stream_file[k] = marshalled[k]
b932705b 1299
c3f6163b 1300 self.stream_have_file_info = True
b932705b
LD
1301
1302 # Stream directly from "p4 files" into "git fast-import"
1303 def streamP4Files(self, files):
30b5940b
SH
1304 filesForCommit = []
1305 filesToRead = []
b932705b 1306 filesToDelete = []
30b5940b 1307
3a70cdfa 1308 for f in files:
30b5940b 1309 includeFile = True
3a70cdfa
TAL
1310 for val in self.clientSpecDirs:
1311 if f['path'].startswith(val[0]):
3952710b 1312 if val[1][0] <= 0:
30b5940b 1313 includeFile = False
3a70cdfa
TAL
1314 break
1315
30b5940b
SH
1316 if includeFile:
1317 filesForCommit.append(f)
56c09345 1318 if f['action'] in self.delete_actions:
b932705b 1319 filesToDelete.append(f)
56c09345
PW
1320 else:
1321 filesToRead.append(f)
6a49f8e2 1322
b932705b
LD
1323 # deleted files...
1324 for f in filesToDelete:
1325 self.streamOneP4Deletion(f)
1b9a4684 1326
b932705b
LD
1327 if len(filesToRead) > 0:
1328 self.stream_file = {}
1329 self.stream_contents = []
1330 self.stream_have_file_info = False
8ff45f2a 1331
c3f6163b
AG
1332 # curry self argument
1333 def streamP4FilesCbSelf(entry):
1334 self.streamP4FilesCb(entry)
6a49f8e2 1335
c3f6163b
AG
1336 p4CmdList("-x - print",
1337 '\n'.join(['%s#%s' % (f['path'], f['rev'])
b932705b 1338 for f in filesToRead]),
c3f6163b 1339 cb=streamP4FilesCbSelf)
30b5940b 1340
b932705b
LD
1341 # do the last chunk
1342 if self.stream_file.has_key('depotFile'):
1343 self.streamOneP4File(self.stream_file, self.stream_contents)
6a49f8e2 1344
6326aa58 1345 def commit(self, details, files, branch, branchPrefixes, parent = ""):
b984733c
SH
1346 epoch = details["time"]
1347 author = details["user"]
c3f6163b 1348 self.branchPrefixes = branchPrefixes
b984733c 1349
4b97ffb1
SH
1350 if self.verbose:
1351 print "commit into %s" % branch
1352
96e07dd2
HWN
1353 # start with reading files; if that fails, we should not
1354 # create a commit.
1355 new_files = []
1356 for f in files:
d53de8b9 1357 if [p for p in branchPrefixes if p4PathStartsWith(f['path'], p)]:
96e07dd2
HWN
1358 new_files.append (f)
1359 else:
afa1dd9a 1360 sys.stderr.write("Ignoring file outside of prefix: %s\n" % f['path'])
96e07dd2 1361
b984733c 1362 self.gitStream.write("commit %s\n" % branch)
6a49f8e2 1363# gitStream.write("mark :%s\n" % details["change"])
b984733c
SH
1364 self.committedChanges.add(int(details["change"]))
1365 committer = ""
b607e71e
SH
1366 if author not in self.users:
1367 self.getUserMapFromPerforceServer()
b984733c 1368 if author in self.users:
0828ab14 1369 committer = "%s %s %s" % (self.users[author], epoch, self.tz)
b984733c 1370 else:
0828ab14 1371 committer = "%s <a@b> %s %s" % (author, epoch, self.tz)
b984733c
SH
1372
1373 self.gitStream.write("committer %s\n" % committer)
1374
1375 self.gitStream.write("data <<EOT\n")
1376 self.gitStream.write(details["desc"])
6581de09
SH
1377 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s"
1378 % (','.join (branchPrefixes), details["change"]))
1379 if len(details['options']) > 0:
1380 self.gitStream.write(": options = %s" % details['options'])
1381 self.gitStream.write("]\nEOT\n\n")
b984733c
SH
1382
1383 if len(parent) > 0:
4b97ffb1
SH
1384 if self.verbose:
1385 print "parent %s" % parent
b984733c
SH
1386 self.gitStream.write("from %s\n" % parent)
1387
b932705b 1388 self.streamP4Files(new_files)
b984733c
SH
1389 self.gitStream.write("\n")
1390
1f4ba1cb
SH
1391 change = int(details["change"])
1392
9bda3a85 1393 if self.labels.has_key(change):
1f4ba1cb
SH
1394 label = self.labels[change]
1395 labelDetails = label[0]
1396 labelRevisions = label[1]
71b112d4
SH
1397 if self.verbose:
1398 print "Change %s is labelled %s" % (change, labelDetails)
1f4ba1cb 1399
6326aa58
HWN
1400 files = p4CmdList("files " + ' '.join (["%s...@%s" % (p, change)
1401 for p in branchPrefixes]))
1f4ba1cb
SH
1402
1403 if len(files) == len(labelRevisions):
1404
1405 cleanedFiles = {}
1406 for info in files:
56c09345 1407 if info["action"] in self.delete_actions:
1f4ba1cb
SH
1408 continue
1409 cleanedFiles[info["depotFile"]] = info["rev"]
1410
1411 if cleanedFiles == labelRevisions:
1412 self.gitStream.write("tag tag_%s\n" % labelDetails["label"])
1413 self.gitStream.write("from %s\n" % branch)
1414
1415 owner = labelDetails["Owner"]
1416 tagger = ""
1417 if author in self.users:
1418 tagger = "%s %s %s" % (self.users[owner], epoch, self.tz)
1419 else:
1420 tagger = "%s <a@b> %s %s" % (owner, epoch, self.tz)
1421 self.gitStream.write("tagger %s\n" % tagger)
1422 self.gitStream.write("data <<EOT\n")
1423 self.gitStream.write(labelDetails["Description"])
1424 self.gitStream.write("EOT\n\n")
1425
1426 else:
a46668fa 1427 if not self.silent:
cebdf5af
HWN
1428 print ("Tag %s does not match with change %s: files do not match."
1429 % (labelDetails["label"], change))
1f4ba1cb
SH
1430
1431 else:
a46668fa 1432 if not self.silent:
cebdf5af
HWN
1433 print ("Tag %s does not match with change %s: file count is different."
1434 % (labelDetails["label"], change))
b984733c 1435
1f4ba1cb
SH
1436 def getLabels(self):
1437 self.labels = {}
1438
6326aa58 1439 l = p4CmdList("labels %s..." % ' '.join (self.depotPaths))
10c3211b 1440 if len(l) > 0 and not self.silent:
183f8436 1441 print "Finding files belonging to labels in %s" % `self.depotPaths`
01ce1fe9
SH
1442
1443 for output in l:
1f4ba1cb
SH
1444 label = output["label"]
1445 revisions = {}
1446 newestChange = 0
71b112d4
SH
1447 if self.verbose:
1448 print "Querying files for label %s" % label
6326aa58
HWN
1449 for file in p4CmdList("files "
1450 + ' '.join (["%s...@%s" % (p, label)
1451 for p in self.depotPaths])):
1f4ba1cb
SH
1452 revisions[file["depotFile"]] = file["rev"]
1453 change = int(file["change"])
1454 if change > newestChange:
1455 newestChange = change
1456
9bda3a85
SH
1457 self.labels[newestChange] = [output, revisions]
1458
1459 if self.verbose:
1460 print "Label changes: %s" % self.labels.keys()
1f4ba1cb 1461
86dff6b6
HWN
1462 def guessProjectName(self):
1463 for p in self.depotPaths:
6e5295c4
SH
1464 if p.endswith("/"):
1465 p = p[:-1]
1466 p = p[p.strip().rfind("/") + 1:]
1467 if not p.endswith("/"):
1468 p += "/"
1469 return p
86dff6b6 1470
4b97ffb1 1471 def getBranchMapping(self):
6555b2cc
SH
1472 lostAndFoundBranches = set()
1473
8ace74c0
VA
1474 user = gitConfig("git-p4.branchUser")
1475 if len(user) > 0:
1476 command = "branches -u %s" % user
1477 else:
1478 command = "branches"
1479
1480 for info in p4CmdList(command):
4b97ffb1
SH
1481 details = p4Cmd("branch -o %s" % info["branch"])
1482 viewIdx = 0
1483 while details.has_key("View%s" % viewIdx):
1484 paths = details["View%s" % viewIdx].split(" ")
1485 viewIdx = viewIdx + 1
1486 # require standard //depot/foo/... //depot/bar/... mapping
1487 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
1488 continue
1489 source = paths[0]
1490 destination = paths[1]
6509e19c 1491 ## HACK
d53de8b9 1492 if p4PathStartsWith(source, self.depotPaths[0]) and p4PathStartsWith(destination, self.depotPaths[0]):
6509e19c
SH
1493 source = source[len(self.depotPaths[0]):-4]
1494 destination = destination[len(self.depotPaths[0]):-4]
6555b2cc 1495
1a2edf4e
SH
1496 if destination in self.knownBranches:
1497 if not self.silent:
1498 print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination)
1499 print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination)
1500 continue
1501
6555b2cc
SH
1502 self.knownBranches[destination] = source
1503
1504 lostAndFoundBranches.discard(destination)
1505
29bdbac1 1506 if source not in self.knownBranches:
6555b2cc
SH
1507 lostAndFoundBranches.add(source)
1508
7199cf13
VA
1509 # Perforce does not strictly require branches to be defined, so we also
1510 # check git config for a branch list.
1511 #
1512 # Example of branch definition in git config file:
1513 # [git-p4]
1514 # branchList=main:branchA
1515 # branchList=main:branchB
1516 # branchList=branchA:branchC
1517 configBranches = gitConfigList("git-p4.branchList")
1518 for branch in configBranches:
1519 if branch:
1520 (source, destination) = branch.split(":")
1521 self.knownBranches[destination] = source
1522
1523 lostAndFoundBranches.discard(destination)
1524
1525 if source not in self.knownBranches:
1526 lostAndFoundBranches.add(source)
1527
6555b2cc
SH
1528
1529 for branch in lostAndFoundBranches:
1530 self.knownBranches[branch] = branch
29bdbac1 1531
38f9f5ec
SH
1532 def getBranchMappingFromGitBranches(self):
1533 branches = p4BranchesInGit(self.importIntoRemotes)
1534 for branch in branches.keys():
1535 if branch == "master":
1536 branch = "main"
1537 else:
1538 branch = branch[len(self.projectName):]
1539 self.knownBranches[branch] = branch
1540
29bdbac1 1541 def listExistingP4GitBranches(self):
144ff46b
SH
1542 # branches holds mapping from name to commit
1543 branches = p4BranchesInGit(self.importIntoRemotes)
1544 self.p4BranchesInGit = branches.keys()
1545 for branch in branches.keys():
1546 self.initialParents[self.refPrefix + branch] = branches[branch]
4b97ffb1 1547
bb6e09b2
HWN
1548 def updateOptionDict(self, d):
1549 option_keys = {}
1550 if self.keepRepoPath:
1551 option_keys['keepRepoPath'] = 1
1552
1553 d["options"] = ' '.join(sorted(option_keys.keys()))
1554
1555 def readOptions(self, d):
1556 self.keepRepoPath = (d.has_key('options')
1557 and ('keepRepoPath' in d['options']))
6326aa58 1558
8134f69c
SH
1559 def gitRefForBranch(self, branch):
1560 if branch == "main":
1561 return self.refPrefix + "master"
1562
1563 if len(branch) <= 0:
1564 return branch
1565
1566 return self.refPrefix + self.projectName + branch
1567
1ca3d710
SH
1568 def gitCommitByP4Change(self, ref, change):
1569 if self.verbose:
1570 print "looking in ref " + ref + " for change %s using bisect..." % change
1571
1572 earliestCommit = ""
1573 latestCommit = parseRevision(ref)
1574
1575 while True:
1576 if self.verbose:
1577 print "trying: earliest %s latest %s" % (earliestCommit, latestCommit)
1578 next = read_pipe("git rev-list --bisect %s %s" % (latestCommit, earliestCommit)).strip()
1579 if len(next) == 0:
1580 if self.verbose:
1581 print "argh"
1582 return ""
1583 log = extractLogMessageFromGitCommit(next)
1584 settings = extractSettingsGitLog(log)
1585 currentChange = int(settings['change'])
1586 if self.verbose:
1587 print "current change %s" % currentChange
1588
1589 if currentChange == change:
1590 if self.verbose:
1591 print "found %s" % next
1592 return next
1593
1594 if currentChange < change:
1595 earliestCommit = "^%s" % next
1596 else:
1597 latestCommit = "%s" % next
1598
1599 return ""
1600
1601 def importNewBranch(self, branch, maxChange):
1602 # make fast-import flush all changes to disk and update the refs using the checkpoint
1603 # command so that we can try to find the branch parent in the git history
1604 self.gitStream.write("checkpoint\n\n");
1605 self.gitStream.flush();
1606 branchPrefix = self.depotPaths[0] + branch + "/"
1607 range = "@1,%s" % maxChange
1608 #print "prefix" + branchPrefix
1609 changes = p4ChangesForPaths([branchPrefix], range)
1610 if len(changes) <= 0:
1611 return False
1612 firstChange = changes[0]
1613 #print "first change in branch: %s" % firstChange
1614 sourceBranch = self.knownBranches[branch]
1615 sourceDepotPath = self.depotPaths[0] + sourceBranch
1616 sourceRef = self.gitRefForBranch(sourceBranch)
1617 #print "source " + sourceBranch
1618
1619 branchParentChange = int(p4Cmd("changes -m 1 %s...@1,%s" % (sourceDepotPath, firstChange))["change"])
1620 #print "branch parent: %s" % branchParentChange
1621 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)
1622 if len(gitParent) > 0:
1623 self.initialParents[self.gitRefForBranch(branch)] = gitParent
1624 #print "parent git commit: %s" % gitParent
1625
1626 self.importChanges(changes)
1627 return True
1628
e87f37ae
SH
1629 def importChanges(self, changes):
1630 cnt = 1
1631 for change in changes:
1632 description = p4Cmd("describe %s" % change)
1633 self.updateOptionDict(description)
1634
1635 if not self.silent:
1636 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
1637 sys.stdout.flush()
1638 cnt = cnt + 1
1639
1640 try:
1641 if self.detectBranches:
1642 branches = self.splitFilesIntoBranches(description)
1643 for branch in branches.keys():
1644 ## HACK --hwn
1645 branchPrefix = self.depotPaths[0] + branch + "/"
1646
1647 parent = ""
1648
1649 filesForCommit = branches[branch]
1650
1651 if self.verbose:
1652 print "branch is %s" % branch
1653
1654 self.updatedBranches.add(branch)
1655
1656 if branch not in self.createdBranches:
1657 self.createdBranches.add(branch)
1658 parent = self.knownBranches[branch]
1659 if parent == branch:
1660 parent = ""
1ca3d710
SH
1661 else:
1662 fullBranch = self.projectName + branch
1663 if fullBranch not in self.p4BranchesInGit:
1664 if not self.silent:
1665 print("\n Importing new branch %s" % fullBranch);
1666 if self.importNewBranch(branch, change - 1):
1667 parent = ""
1668 self.p4BranchesInGit.append(fullBranch)
1669 if not self.silent:
1670 print("\n Resuming with change %s" % change);
1671
1672 if self.verbose:
1673 print "parent determined through known branches: %s" % parent
e87f37ae 1674
8134f69c
SH
1675 branch = self.gitRefForBranch(branch)
1676 parent = self.gitRefForBranch(parent)
e87f37ae
SH
1677
1678 if self.verbose:
1679 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
1680
1681 if len(parent) == 0 and branch in self.initialParents:
1682 parent = self.initialParents[branch]
1683 del self.initialParents[branch]
1684
1685 self.commit(description, filesForCommit, branch, [branchPrefix], parent)
1686 else:
1687 files = self.extractFilesFromCommit(description)
1688 self.commit(description, files, self.branch, self.depotPaths,
1689 self.initialParent)
1690 self.initialParent = ""
1691 except IOError:
1692 print self.gitError.read()
1693 sys.exit(1)
1694
c208a243
SH
1695 def importHeadRevision(self, revision):
1696 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), revision, self.branch)
1697
4e2e6ce4
PW
1698 details = {}
1699 details["user"] = "git perforce import user"
1494fcbb 1700 details["desc"] = ("Initial import of %s from the state at revision %s\n"
c208a243
SH
1701 % (' '.join(self.depotPaths), revision))
1702 details["change"] = revision
1703 newestRevision = 0
1704
1705 fileCnt = 0
1706 for info in p4CmdList("files "
1707 + ' '.join(["%s...%s"
1708 % (p, revision)
1709 for p in self.depotPaths])):
1710
68b28593 1711 if 'code' in info and info['code'] == 'error':
c208a243
SH
1712 sys.stderr.write("p4 returned an error: %s\n"
1713 % info['data'])
d88e707f
PW
1714 if info['data'].find("must refer to client") >= 0:
1715 sys.stderr.write("This particular p4 error is misleading.\n")
1716 sys.stderr.write("Perhaps the depot path was misspelled.\n");
1717 sys.stderr.write("Depot path: %s\n" % " ".join(self.depotPaths))
c208a243 1718 sys.exit(1)
68b28593
PW
1719 if 'p4ExitCode' in info:
1720 sys.stderr.write("p4 exitcode: %s\n" % info['p4ExitCode'])
c208a243
SH
1721 sys.exit(1)
1722
1723
1724 change = int(info["change"])
1725 if change > newestRevision:
1726 newestRevision = change
1727
56c09345 1728 if info["action"] in self.delete_actions:
c208a243
SH
1729 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
1730 #fileCnt = fileCnt + 1
1731 continue
1732
1733 for prop in ["depotFile", "rev", "action", "type" ]:
1734 details["%s%s" % (prop, fileCnt)] = info[prop]
1735
1736 fileCnt = fileCnt + 1
1737
1738 details["change"] = newestRevision
4e2e6ce4
PW
1739
1740 # Use time from top-most change so that all git-p4 clones of
1741 # the same p4 repo have the same commit SHA1s.
1742 res = p4CmdList("describe -s %d" % newestRevision)
1743 newestTime = None
1744 for r in res:
1745 if r.has_key('time'):
1746 newestTime = int(r['time'])
1747 if newestTime is None:
1748 die("\"describe -s\" on newest change %d did not give a time")
1749 details["time"] = newestTime
1750
c208a243
SH
1751 self.updateOptionDict(details)
1752 try:
1753 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)
1754 except IOError:
1755 print "IO error with git fast-import. Is your git version recent enough?"
1756 print self.gitError.read()
1757
1758
3a70cdfa
TAL
1759 def getClientSpec(self):
1760 specList = p4CmdList( "client -o" )
1761 temp = {}
1762 for entry in specList:
1763 for k,v in entry.iteritems():
1764 if k.startswith("View"):
3952710b
IW
1765
1766 # p4 has these %%1 to %%9 arguments in specs to
1767 # reorder paths; which we can't handle (yet :)
1768 if re.match('%%\d', v) != None:
1769 print "Sorry, can't handle %%n arguments in client specs"
1770 sys.exit(1)
1771
3a70cdfa
TAL
1772 if v.startswith('"'):
1773 start = 1
1774 else:
1775 start = 0
1776 index = v.find("...")
3952710b
IW
1777
1778 # save the "client view"; i.e the RHS of the view
1779 # line that tells the client where to put the
1780 # files for this view.
1781 cv = v[index+3:].strip() # +3 to remove previous '...'
1782
1783 # if the client view doesn't end with a
1784 # ... wildcard, then we're going to mess up the
1785 # output directory, so fail gracefully.
1786 if not cv.endswith('...'):
1787 print 'Sorry, client view in "%s" needs to end with wildcard' % (k)
1788 sys.exit(1)
1789 cv=cv[:-3]
1790
1791 # now save the view; +index means included, -index
1792 # means it should be filtered out.
3a70cdfa
TAL
1793 v = v[start:index]
1794 if v.startswith("-"):
1795 v = v[1:]
3952710b 1796 include = -len(v)
3a70cdfa 1797 else:
3952710b
IW
1798 include = len(v)
1799
1800 temp[v] = (include, cv)
1801
3a70cdfa 1802 self.clientSpecDirs = temp.items()
3952710b 1803 self.clientSpecDirs.sort( lambda x, y: abs( y[1][0] ) - abs( x[1][0] ) )
3a70cdfa 1804
b984733c 1805 def run(self, args):
6326aa58 1806 self.depotPaths = []
179caebf
SH
1807 self.changeRange = ""
1808 self.initialParent = ""
6326aa58 1809 self.previousDepotPaths = []
ce6f33c8 1810
29bdbac1
SH
1811 # map from branch depot path to parent branch
1812 self.knownBranches = {}
1813 self.initialParents = {}
5ca44617 1814 self.hasOrigin = originP4BranchesExist()
a43ff00c
SH
1815 if not self.syncWithOrigin:
1816 self.hasOrigin = False
29bdbac1 1817
a028a98e
SH
1818 if self.importIntoRemotes:
1819 self.refPrefix = "refs/remotes/p4/"
1820 else:
db775559 1821 self.refPrefix = "refs/heads/p4/"
a028a98e 1822
cebdf5af
HWN
1823 if self.syncWithOrigin and self.hasOrigin:
1824 if not self.silent:
1825 print "Syncing with origin first by calling git fetch origin"
1826 system("git fetch origin")
10f880f8 1827
569d1bd4 1828 if len(self.branch) == 0:
db775559 1829 self.branch = self.refPrefix + "master"
a028a98e 1830 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
48df6fd8 1831 system("git update-ref %s refs/heads/p4" % self.branch)
48df6fd8 1832 system("git branch -D p4");
faf1bd20 1833 # create it /after/ importing, when master exists
0058a33a 1834 if not gitBranchExists(self.refPrefix + "HEAD") and self.importIntoRemotes and gitBranchExists(self.branch):
a3c55c09 1835 system("git symbolic-ref %sHEAD %s" % (self.refPrefix, self.branch))
967f72e2 1836
3cafb7d8 1837 if self.useClientSpec or gitConfig("git-p4.useclientspec") == "true":
3a70cdfa
TAL
1838 self.getClientSpec()
1839
6a49f8e2
HWN
1840 # TODO: should always look at previous commits,
1841 # merge with previous imports, if possible.
1842 if args == []:
d414c74a 1843 if self.hasOrigin:
5ca44617 1844 createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)
abcd790f
SH
1845 self.listExistingP4GitBranches()
1846
1847 if len(self.p4BranchesInGit) > 1:
1848 if not self.silent:
1849 print "Importing from/into multiple branches"
1850 self.detectBranches = True
967f72e2 1851
29bdbac1
SH
1852 if self.verbose:
1853 print "branches: %s" % self.p4BranchesInGit
1854
1855 p4Change = 0
1856 for branch in self.p4BranchesInGit:
cebdf5af 1857 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
bb6e09b2
HWN
1858
1859 settings = extractSettingsGitLog(logMsg)
29bdbac1 1860
bb6e09b2
HWN
1861 self.readOptions(settings)
1862 if (settings.has_key('depot-paths')
1863 and settings.has_key ('change')):
1864 change = int(settings['change']) + 1
29bdbac1
SH
1865 p4Change = max(p4Change, change)
1866
bb6e09b2
HWN
1867 depotPaths = sorted(settings['depot-paths'])
1868 if self.previousDepotPaths == []:
6326aa58 1869 self.previousDepotPaths = depotPaths
29bdbac1 1870 else:
6326aa58
HWN
1871 paths = []
1872 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
04d277b3
VA
1873 prev_list = prev.split("/")
1874 cur_list = cur.split("/")
1875 for i in range(0, min(len(cur_list), len(prev_list))):
1876 if cur_list[i] <> prev_list[i]:
583e1707 1877 i = i - 1
6326aa58
HWN
1878 break
1879
04d277b3 1880 paths.append ("/".join(cur_list[:i + 1]))
6326aa58
HWN
1881
1882 self.previousDepotPaths = paths
29bdbac1
SH
1883
1884 if p4Change > 0:
bb6e09b2 1885 self.depotPaths = sorted(self.previousDepotPaths)
d5904674 1886 self.changeRange = "@%s,#head" % p4Change
330f53b8
SH
1887 if not self.detectBranches:
1888 self.initialParent = parseRevision(self.branch)
341dc1c1 1889 if not self.silent and not self.detectBranches:
967f72e2 1890 print "Performing incremental import into %s git branch" % self.branch
569d1bd4 1891
f9162f6a
SH
1892 if not self.branch.startswith("refs/"):
1893 self.branch = "refs/heads/" + self.branch
179caebf 1894
6326aa58 1895 if len(args) == 0 and self.depotPaths:
b984733c 1896 if not self.silent:
6326aa58 1897 print "Depot paths: %s" % ' '.join(self.depotPaths)
b984733c 1898 else:
6326aa58 1899 if self.depotPaths and self.depotPaths != args:
cebdf5af 1900 print ("previous import used depot path %s and now %s was specified. "
6326aa58
HWN
1901 "This doesn't work!" % (' '.join (self.depotPaths),
1902 ' '.join (args)))
b984733c 1903 sys.exit(1)
6326aa58 1904
bb6e09b2 1905 self.depotPaths = sorted(args)
b984733c 1906
1c49fc19 1907 revision = ""
b984733c 1908 self.users = {}
b984733c 1909
6326aa58
HWN
1910 newPaths = []
1911 for p in self.depotPaths:
1912 if p.find("@") != -1:
1913 atIdx = p.index("@")
1914 self.changeRange = p[atIdx:]
1915 if self.changeRange == "@all":
1916 self.changeRange = ""
6a49f8e2 1917 elif ',' not in self.changeRange:
1c49fc19 1918 revision = self.changeRange
6326aa58 1919 self.changeRange = ""
7fcff9de 1920 p = p[:atIdx]
6326aa58
HWN
1921 elif p.find("#") != -1:
1922 hashIdx = p.index("#")
1c49fc19 1923 revision = p[hashIdx:]
7fcff9de 1924 p = p[:hashIdx]
6326aa58 1925 elif self.previousDepotPaths == []:
1c49fc19 1926 revision = "#head"
6326aa58
HWN
1927
1928 p = re.sub ("\.\.\.$", "", p)
1929 if not p.endswith("/"):
1930 p += "/"
1931
1932 newPaths.append(p)
1933
1934 self.depotPaths = newPaths
1935
b984733c 1936
b607e71e 1937 self.loadUserMapFromCache()
cb53e1f8
SH
1938 self.labels = {}
1939 if self.detectLabels:
1940 self.getLabels();
b984733c 1941
4b97ffb1 1942 if self.detectBranches:
df450923
SH
1943 ## FIXME - what's a P4 projectName ?
1944 self.projectName = self.guessProjectName()
1945
38f9f5ec
SH
1946 if self.hasOrigin:
1947 self.getBranchMappingFromGitBranches()
1948 else:
1949 self.getBranchMapping()
29bdbac1
SH
1950 if self.verbose:
1951 print "p4-git branches: %s" % self.p4BranchesInGit
1952 print "initial parents: %s" % self.initialParents
1953 for b in self.p4BranchesInGit:
1954 if b != "master":
6326aa58
HWN
1955
1956 ## FIXME
29bdbac1
SH
1957 b = b[len(self.projectName):]
1958 self.createdBranches.add(b)
4b97ffb1 1959
f291b4e3 1960 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
b984733c 1961
cebdf5af 1962 importProcess = subprocess.Popen(["git", "fast-import"],
6326aa58
HWN
1963 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
1964 stderr=subprocess.PIPE);
08483580
SH
1965 self.gitOutput = importProcess.stdout
1966 self.gitStream = importProcess.stdin
1967 self.gitError = importProcess.stderr
b984733c 1968
1c49fc19 1969 if revision:
c208a243 1970 self.importHeadRevision(revision)
b984733c
SH
1971 else:
1972 changes = []
1973
0828ab14 1974 if len(self.changesFile) > 0:
b984733c 1975 output = open(self.changesFile).readlines()
1d7367dc 1976 changeSet = set()
b984733c
SH
1977 for line in output:
1978 changeSet.add(int(line))
1979
1980 for change in changeSet:
1981 changes.append(change)
1982
1983 changes.sort()
1984 else:
accad8e0
PW
1985 # catch "git-p4 sync" with no new branches, in a repo that
1986 # does not have any existing git-p4 branches
1987 if len(args) == 0 and not self.p4BranchesInGit:
e32e00dc 1988 die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.");
29bdbac1 1989 if self.verbose:
86dff6b6 1990 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
6326aa58 1991 self.changeRange)
4f6432d8 1992 changes = p4ChangesForPaths(self.depotPaths, self.changeRange)
b984733c 1993
01a9c9c5 1994 if len(self.maxChanges) > 0:
7fcff9de 1995 changes = changes[:min(int(self.maxChanges), len(changes))]
01a9c9c5 1996
b984733c 1997 if len(changes) == 0:
0828ab14 1998 if not self.silent:
341dc1c1 1999 print "No changes to import!"
1f52af6c 2000 return True
b984733c 2001
a9d1a27a
SH
2002 if not self.silent and not self.detectBranches:
2003 print "Import destination: %s" % self.branch
2004
341dc1c1
SH
2005 self.updatedBranches = set()
2006
e87f37ae 2007 self.importChanges(changes)
b984733c 2008
341dc1c1
SH
2009 if not self.silent:
2010 print ""
2011 if len(self.updatedBranches) > 0:
2012 sys.stdout.write("Updated branches: ")
2013 for b in self.updatedBranches:
2014 sys.stdout.write("%s " % b)
2015 sys.stdout.write("\n")
b984733c 2016
b984733c 2017 self.gitStream.close()
29bdbac1
SH
2018 if importProcess.wait() != 0:
2019 die("fast-import failed: %s" % self.gitError.read())
b984733c
SH
2020 self.gitOutput.close()
2021 self.gitError.close()
2022
b984733c
SH
2023 return True
2024
01ce1fe9
SH
2025class P4Rebase(Command):
2026 def __init__(self):
2027 Command.__init__(self)
01265103 2028 self.options = [ ]
cebdf5af
HWN
2029 self.description = ("Fetches the latest revision from perforce and "
2030 + "rebases the current work (branch) against it")
68c42153 2031 self.verbose = False
01ce1fe9
SH
2032
2033 def run(self, args):
2034 sync = P4Sync()
2035 sync.run([])
d7e3868c 2036
14594f4b
SH
2037 return self.rebase()
2038
2039 def rebase(self):
36ee4ee4
SH
2040 if os.system("git update-index --refresh") != 0:
2041 die("Some files in your working directory are modified and different than what is in your index. You can use git update-index <filename> to bring the index up-to-date or stash away all your changes with git stash.");
2042 if len(read_pipe("git diff-index HEAD --")) > 0:
2043 die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");
2044
d7e3868c
SH
2045 [upstream, settings] = findUpstreamBranchPoint()
2046 if len(upstream) == 0:
2047 die("Cannot find upstream branchpoint for rebase")
2048
2049 # the branchpoint may be p4/foo~3, so strip off the parent
2050 upstream = re.sub("~[0-9]+$", "", upstream)
2051
2052 print "Rebasing the current branch onto %s" % upstream
b25b2065 2053 oldHead = read_pipe("git rev-parse HEAD").strip()
d7e3868c 2054 system("git rebase %s" % upstream)
1f52af6c 2055 system("git diff-tree --stat --summary -M %s HEAD" % oldHead)
01ce1fe9
SH
2056 return True
2057
f9a3a4f7
SH
2058class P4Clone(P4Sync):
2059 def __init__(self):
2060 P4Sync.__init__(self)
2061 self.description = "Creates a new git repository and imports from Perforce into it"
bb6e09b2 2062 self.usage = "usage: %prog [options] //depot/path[@revRange]"
354081d5 2063 self.options += [
bb6e09b2
HWN
2064 optparse.make_option("--destination", dest="cloneDestination",
2065 action='store', default=None,
354081d5
TT
2066 help="where to leave result of the clone"),
2067 optparse.make_option("-/", dest="cloneExclude",
2068 action="append", type="string",
38200076
PW
2069 help="exclude depot path"),
2070 optparse.make_option("--bare", dest="cloneBare",
2071 action="store_true", default=False),
354081d5 2072 ]
bb6e09b2 2073 self.cloneDestination = None
f9a3a4f7 2074 self.needsGit = False
38200076 2075 self.cloneBare = False
f9a3a4f7 2076
354081d5
TT
2077 # This is required for the "append" cloneExclude action
2078 def ensure_value(self, attr, value):
2079 if not hasattr(self, attr) or getattr(self, attr) is None:
2080 setattr(self, attr, value)
2081 return getattr(self, attr)
2082
6a49f8e2
HWN
2083 def defaultDestination(self, args):
2084 ## TODO: use common prefix of args?
2085 depotPath = args[0]
2086 depotDir = re.sub("(@[^@]*)$", "", depotPath)
2087 depotDir = re.sub("(#[^#]*)$", "", depotDir)
053d9e43 2088 depotDir = re.sub(r"\.\.\.$", "", depotDir)
6a49f8e2
HWN
2089 depotDir = re.sub(r"/$", "", depotDir)
2090 return os.path.split(depotDir)[1]
2091
f9a3a4f7
SH
2092 def run(self, args):
2093 if len(args) < 1:
2094 return False
bb6e09b2
HWN
2095
2096 if self.keepRepoPath and not self.cloneDestination:
2097 sys.stderr.write("Must specify destination for --keep-path\n")
2098 sys.exit(1)
f9a3a4f7 2099
6326aa58 2100 depotPaths = args
5e100b5c
SH
2101
2102 if not self.cloneDestination and len(depotPaths) > 1:
2103 self.cloneDestination = depotPaths[-1]
2104 depotPaths = depotPaths[:-1]
2105
354081d5 2106 self.cloneExclude = ["/"+p for p in self.cloneExclude]
6326aa58
HWN
2107 for p in depotPaths:
2108 if not p.startswith("//"):
2109 return False
f9a3a4f7 2110
bb6e09b2 2111 if not self.cloneDestination:
98ad4faf 2112 self.cloneDestination = self.defaultDestination(args)
f9a3a4f7 2113
86dff6b6 2114 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
38200076 2115
c3bf3f13
KG
2116 if not os.path.exists(self.cloneDestination):
2117 os.makedirs(self.cloneDestination)
053fd0c1 2118 chdir(self.cloneDestination)
38200076
PW
2119
2120 init_cmd = [ "git", "init" ]
2121 if self.cloneBare:
2122 init_cmd.append("--bare")
2123 subprocess.check_call(init_cmd)
2124
6326aa58 2125 if not P4Sync.run(self, depotPaths):
f9a3a4f7 2126 return False
f9a3a4f7 2127 if self.branch != "master":
e9905013
TAL
2128 if self.importIntoRemotes:
2129 masterbranch = "refs/remotes/p4/master"
2130 else:
2131 masterbranch = "refs/heads/p4/master"
2132 if gitBranchExists(masterbranch):
2133 system("git branch master %s" % masterbranch)
38200076
PW
2134 if not self.cloneBare:
2135 system("git checkout -f")
8f9b2e08
SH
2136 else:
2137 print "Could not detect main branch. No checkout/master branch created."
86dff6b6 2138
f9a3a4f7
SH
2139 return True
2140
09d89de2
SH
2141class P4Branches(Command):
2142 def __init__(self):
2143 Command.__init__(self)
2144 self.options = [ ]
2145 self.description = ("Shows the git branches that hold imports and their "
2146 + "corresponding perforce depot paths")
2147 self.verbose = False
2148
2149 def run(self, args):
5ca44617
SH
2150 if originP4BranchesExist():
2151 createOrUpdateBranchesFromOrigin()
2152
09d89de2
SH
2153 cmdline = "git rev-parse --symbolic "
2154 cmdline += " --remotes"
2155
2156 for line in read_pipe_lines(cmdline):
2157 line = line.strip()
2158
2159 if not line.startswith('p4/') or line == "p4/HEAD":
2160 continue
2161 branch = line
2162
2163 log = extractLogMessageFromGitCommit("refs/remotes/%s" % branch)
2164 settings = extractSettingsGitLog(log)
2165
2166 print "%s <= %s (%s)" % (branch, ",".join(settings["depot-paths"]), settings["change"])
2167 return True
2168
b984733c
SH
2169class HelpFormatter(optparse.IndentedHelpFormatter):
2170 def __init__(self):
2171 optparse.IndentedHelpFormatter.__init__(self)
2172
2173 def format_description(self, description):
2174 if description:
2175 return description + "\n"
2176 else:
2177 return ""
4f5cf76a 2178
86949eef
SH
2179def printUsage(commands):
2180 print "usage: %s <command> [options]" % sys.argv[0]
2181 print ""
2182 print "valid commands: %s" % ", ".join(commands)
2183 print ""
2184 print "Try %s <command> --help for command specific help." % sys.argv[0]
2185 print ""
2186
2187commands = {
b86f7378
HWN
2188 "debug" : P4Debug,
2189 "submit" : P4Submit,
a9834f58 2190 "commit" : P4Submit,
b86f7378
HWN
2191 "sync" : P4Sync,
2192 "rebase" : P4Rebase,
2193 "clone" : P4Clone,
09d89de2
SH
2194 "rollback" : P4RollBack,
2195 "branches" : P4Branches
86949eef
SH
2196}
2197
86949eef 2198
bb6e09b2
HWN
2199def main():
2200 if len(sys.argv[1:]) == 0:
2201 printUsage(commands.keys())
2202 sys.exit(2)
4f5cf76a 2203
bb6e09b2
HWN
2204 cmd = ""
2205 cmdName = sys.argv[1]
2206 try:
b86f7378
HWN
2207 klass = commands[cmdName]
2208 cmd = klass()
bb6e09b2
HWN
2209 except KeyError:
2210 print "unknown command %s" % cmdName
2211 print ""
2212 printUsage(commands.keys())
2213 sys.exit(2)
2214
2215 options = cmd.options
b86f7378 2216 cmd.gitdir = os.environ.get("GIT_DIR", None)
bb6e09b2
HWN
2217
2218 args = sys.argv[2:]
2219
2220 if len(options) > 0:
2221 options.append(optparse.make_option("--git-dir", dest="gitdir"))
2222
2223 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
2224 options,
2225 description = cmd.description,
2226 formatter = HelpFormatter())
2227
2228 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
2229 global verbose
2230 verbose = cmd.verbose
2231 if cmd.needsGit:
b86f7378
HWN
2232 if cmd.gitdir == None:
2233 cmd.gitdir = os.path.abspath(".git")
2234 if not isValidGitDir(cmd.gitdir):
2235 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
2236 if os.path.exists(cmd.gitdir):
bb6e09b2
HWN
2237 cdup = read_pipe("git rev-parse --show-cdup").strip()
2238 if len(cdup) > 0:
053fd0c1 2239 chdir(cdup);
e20a9e53 2240
b86f7378
HWN
2241 if not isValidGitDir(cmd.gitdir):
2242 if isValidGitDir(cmd.gitdir + "/.git"):
2243 cmd.gitdir += "/.git"
bb6e09b2 2244 else:
b86f7378 2245 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
e20a9e53 2246
b86f7378 2247 os.environ["GIT_DIR"] = cmd.gitdir
86949eef 2248
bb6e09b2
HWN
2249 if not cmd.run(args):
2250 parser.print_help()
4f5cf76a 2251
4f5cf76a 2252
bb6e09b2
HWN
2253if __name__ == '__main__':
2254 main()