]> git.ipfire.org Git - thirdparty/git.git/blame - git-p4.py
l10n: sv.po: Update Swedish translation (3608t0f0u)
[thirdparty/git.git] / git-p4.py
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#
a33faf28
ER
10import sys
11if sys.hexversion < 0x02040000:
12 # The limiter is the subprocess module
13 sys.stderr.write("git-p4: requires Python 2.4 or later.\n")
14 sys.exit(1)
f629fa59
PW
15import os
16import optparse
17import marshal
18import subprocess
19import tempfile
20import time
21import platform
22import re
23import shutil
d20f0f8e 24import stat
a5db4b12
LS
25import zipfile
26import zlib
4b07cd23 27import ctypes
df8a9e86 28import errno
8b41a97f 29
a235e85c
BC
30try:
31 from subprocess import CalledProcessError
32except ImportError:
33 # from python2.7:subprocess.py
34 # Exception classes used by this module.
35 class CalledProcessError(Exception):
36 """This exception is raised when a process run by check_call() returns
37 a non-zero exit status. The exit status will be stored in the
38 returncode attribute."""
39 def __init__(self, returncode, cmd):
40 self.returncode = returncode
41 self.cmd = cmd
42 def __str__(self):
43 return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
44
4addad22 45verbose = False
86949eef 46
06804c76 47# Only labels/tags matching this will be imported/exported
c8942a22 48defaultLabelRegexp = r'[a-zA-Z0-9_\-.]+$'
21a50753 49
1051ef00
LD
50# Grab changes in blocks of this many revisions, unless otherwise requested
51defaultBlockSize = 512
52
21a50753
AK
53def p4_build_cmd(cmd):
54 """Build a suitable p4 command line.
55
56 This consolidates building and returning a p4 command line into one
57 location. It means that hooking into the environment, or other configuration
58 can be done more easily.
59 """
6de040df 60 real_cmd = ["p4"]
abcaf073
AK
61
62 user = gitConfig("git-p4.user")
63 if len(user) > 0:
6de040df 64 real_cmd += ["-u",user]
abcaf073
AK
65
66 password = gitConfig("git-p4.password")
67 if len(password) > 0:
6de040df 68 real_cmd += ["-P", password]
abcaf073
AK
69
70 port = gitConfig("git-p4.port")
71 if len(port) > 0:
6de040df 72 real_cmd += ["-p", port]
abcaf073
AK
73
74 host = gitConfig("git-p4.host")
75 if len(host) > 0:
41799aa2 76 real_cmd += ["-H", host]
abcaf073
AK
77
78 client = gitConfig("git-p4.client")
79 if len(client) > 0:
6de040df 80 real_cmd += ["-c", client]
abcaf073 81
89a6ecc5
LS
82 retries = gitConfigInt("git-p4.retries")
83 if retries is None:
84 # Perform 3 retries by default
85 retries = 3
bc233524
IK
86 if retries > 0:
87 # Provide a way to not pass this option by setting git-p4.retries to 0
88 real_cmd += ["-r", str(retries)]
6de040df
LD
89
90 if isinstance(cmd,basestring):
91 real_cmd = ' '.join(real_cmd) + ' ' + cmd
92 else:
93 real_cmd += cmd
21a50753
AK
94 return real_cmd
95
378f7be1
LD
96def git_dir(path):
97 """ Return TRUE if the given path is a git directory (/path/to/dir/.git).
98 This won't automatically add ".git" to a directory.
99 """
100 d = read_pipe(["git", "--git-dir", path, "rev-parse", "--git-dir"], True).strip()
101 if not d or len(d) == 0:
102 return None
103 else:
104 return d
105
bbd84863
MF
106def chdir(path, is_client_path=False):
107 """Do chdir to the given path, and set the PWD environment
108 variable for use by P4. It does not look at getcwd() output.
109 Since we're not using the shell, it is necessary to set the
110 PWD environment variable explicitly.
111
112 Normally, expand the path to force it to be absolute. This
113 addresses the use of relative path names inside P4 settings,
114 e.g. P4CONFIG=.p4config. P4 does not simply open the filename
115 as given; it looks for .p4config using PWD.
116
117 If is_client_path, the path was handed to us directly by p4,
118 and may be a symbolic link. Do not call os.getcwd() in this
119 case, because it will cause p4 to think that PWD is not inside
120 the client path.
121 """
122
123 os.chdir(path)
124 if not is_client_path:
125 path = os.getcwd()
126 os.environ['PWD'] = path
053fd0c1 127
4d25dc44
LS
128def calcDiskFree():
129 """Return free space in bytes on the disk of the given dirname."""
130 if platform.system() == 'Windows':
131 free_bytes = ctypes.c_ulonglong(0)
132 ctypes.windll.kernel32.GetDiskFreeSpaceExW(ctypes.c_wchar_p(os.getcwd()), None, None, ctypes.pointer(free_bytes))
133 return free_bytes.value
134 else:
135 st = os.statvfs(os.getcwd())
136 return st.f_bavail * st.f_frsize
137
86dff6b6
HWN
138def die(msg):
139 if verbose:
140 raise Exception(msg)
141 else:
142 sys.stderr.write(msg + "\n")
143 sys.exit(1)
144
6de040df 145def write_pipe(c, stdin):
4addad22 146 if verbose:
6de040df 147 sys.stderr.write('Writing pipe: %s\n' % str(c))
b016d397 148
6de040df
LD
149 expand = isinstance(c,basestring)
150 p = subprocess.Popen(c, stdin=subprocess.PIPE, shell=expand)
151 pipe = p.stdin
152 val = pipe.write(stdin)
153 pipe.close()
154 if p.wait():
155 die('Command failed: %s' % str(c))
b016d397
HWN
156
157 return val
158
6de040df 159def p4_write_pipe(c, stdin):
d9429194 160 real_cmd = p4_build_cmd(c)
6de040df 161 return write_pipe(real_cmd, stdin)
d9429194 162
78871bf4
LD
163def read_pipe_full(c):
164 """ Read output from command. Returns a tuple
165 of the return status, stdout text and stderr
166 text.
167 """
4addad22 168 if verbose:
6de040df 169 sys.stderr.write('Reading pipe: %s\n' % str(c))
8b41a97f 170
6de040df 171 expand = isinstance(c,basestring)
1f5f3907
LS
172 p = subprocess.Popen(c, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=expand)
173 (out, err) = p.communicate()
78871bf4
LD
174 return (p.returncode, out, err)
175
176def read_pipe(c, ignore_error=False):
177 """ Read output from command. Returns the output text on
178 success. On failure, terminates execution, unless
179 ignore_error is True, when it returns an empty string.
180 """
181 (retcode, out, err) = read_pipe_full(c)
182 if retcode != 0:
183 if ignore_error:
184 out = ""
185 else:
186 die('Command failed: %s\nError: %s' % (str(c), err))
1f5f3907 187 return out
b016d397 188
78871bf4
LD
189def read_pipe_text(c):
190 """ Read output from a command with trailing whitespace stripped.
191 On error, returns None.
192 """
193 (retcode, out, err) = read_pipe_full(c)
194 if retcode != 0:
195 return None
196 else:
197 return out.rstrip()
198
d9429194
AK
199def p4_read_pipe(c, ignore_error=False):
200 real_cmd = p4_build_cmd(c)
201 return read_pipe(real_cmd, ignore_error)
b016d397 202
bce4c5fc 203def read_pipe_lines(c):
4addad22 204 if verbose:
6de040df
LD
205 sys.stderr.write('Reading pipe: %s\n' % str(c))
206
207 expand = isinstance(c, basestring)
208 p = subprocess.Popen(c, stdout=subprocess.PIPE, shell=expand)
209 pipe = p.stdout
b016d397 210 val = pipe.readlines()
6de040df
LD
211 if pipe.close() or p.wait():
212 die('Command failed: %s' % str(c))
b016d397
HWN
213
214 return val
caace111 215
2318121b
AK
216def p4_read_pipe_lines(c):
217 """Specifically invoke p4 on the command supplied. """
155af834 218 real_cmd = p4_build_cmd(c)
2318121b
AK
219 return read_pipe_lines(real_cmd)
220
8e9497c2
GG
221def p4_has_command(cmd):
222 """Ask p4 for help on this command. If it returns an error, the
223 command does not exist in this version of p4."""
224 real_cmd = p4_build_cmd(["help", cmd])
225 p = subprocess.Popen(real_cmd, stdout=subprocess.PIPE,
226 stderr=subprocess.PIPE)
227 p.communicate()
228 return p.returncode == 0
229
249da4c0
PW
230def p4_has_move_command():
231 """See if the move command exists, that it supports -k, and that
232 it has not been administratively disabled. The arguments
233 must be correct, but the filenames do not have to exist. Use
234 ones with wildcards so even if they exist, it will fail."""
235
236 if not p4_has_command("move"):
237 return False
238 cmd = p4_build_cmd(["move", "-k", "@from", "@to"])
239 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
240 (out, err) = p.communicate()
241 # return code will be 1 in either case
242 if err.find("Invalid option") >= 0:
243 return False
244 if err.find("disabled") >= 0:
245 return False
246 # assume it failed because @... was invalid changelist
247 return True
248
cbff4b25 249def system(cmd, ignore_error=False):
6de040df 250 expand = isinstance(cmd,basestring)
4addad22 251 if verbose:
6de040df 252 sys.stderr.write("executing %s\n" % str(cmd))
a235e85c 253 retcode = subprocess.call(cmd, shell=expand)
cbff4b25 254 if retcode and not ignore_error:
a235e85c 255 raise CalledProcessError(retcode, cmd)
6754a299 256
cbff4b25
LD
257 return retcode
258
bf9320f1
AK
259def p4_system(cmd):
260 """Specifically invoke p4 as the system command. """
155af834 261 real_cmd = p4_build_cmd(cmd)
6de040df 262 expand = isinstance(real_cmd, basestring)
a235e85c
BC
263 retcode = subprocess.call(real_cmd, shell=expand)
264 if retcode:
265 raise CalledProcessError(retcode, real_cmd)
6de040df 266
7f0e5962
PW
267_p4_version_string = None
268def p4_version_string():
269 """Read the version string, showing just the last line, which
270 hopefully is the interesting version bit.
271
272 $ p4 -V
273 Perforce - The Fast Software Configuration Management System.
274 Copyright 1995-2011 Perforce Software. All rights reserved.
275 Rev. P4/NTX86/2011.1/393975 (2011/12/16).
276 """
277 global _p4_version_string
278 if not _p4_version_string:
279 a = p4_read_pipe_lines(["-V"])
280 _p4_version_string = a[-1].rstrip()
281 return _p4_version_string
282
6de040df 283def p4_integrate(src, dest):
9d7d446a 284 p4_system(["integrate", "-Dt", wildcard_encode(src), wildcard_encode(dest)])
6de040df 285
8d7ec362 286def p4_sync(f, *options):
9d7d446a 287 p4_system(["sync"] + list(options) + [wildcard_encode(f)])
6de040df
LD
288
289def p4_add(f):
9d7d446a
PW
290 # forcibly add file names with wildcards
291 if wildcard_present(f):
292 p4_system(["add", "-f", f])
293 else:
294 p4_system(["add", f])
6de040df
LD
295
296def p4_delete(f):
9d7d446a 297 p4_system(["delete", wildcard_encode(f)])
6de040df 298
a02b8bc4
RP
299def p4_edit(f, *options):
300 p4_system(["edit"] + list(options) + [wildcard_encode(f)])
6de040df
LD
301
302def p4_revert(f):
9d7d446a 303 p4_system(["revert", wildcard_encode(f)])
6de040df 304
9d7d446a
PW
305def p4_reopen(type, f):
306 p4_system(["reopen", "-t", type, wildcard_encode(f)])
bf9320f1 307
46c609e9
LD
308def p4_reopen_in_change(changelist, files):
309 cmd = ["reopen", "-c", str(changelist)] + files
310 p4_system(cmd)
311
8e9497c2
GG
312def p4_move(src, dest):
313 p4_system(["move", "-k", wildcard_encode(src), wildcard_encode(dest)])
314
1051ef00 315def p4_last_change():
1997e91f 316 results = p4CmdList(["changes", "-m", "1"], skip_info=True)
1051ef00
LD
317 return int(results[0]['change'])
318
123f6317 319def p4_describe(change, shelved=False):
18fa13d0
PW
320 """Make sure it returns a valid result by checking for
321 the presence of field "time". Return a dict of the
322 results."""
323
123f6317
LD
324 cmd = ["describe", "-s"]
325 if shelved:
326 cmd += ["-S"]
327 cmd += [str(change)]
328
329 ds = p4CmdList(cmd, skip_info=True)
18fa13d0
PW
330 if len(ds) != 1:
331 die("p4 describe -s %d did not return 1 result: %s" % (change, str(ds)))
332
333 d = ds[0]
334
335 if "p4ExitCode" in d:
336 die("p4 describe -s %d exited with %d: %s" % (change, d["p4ExitCode"],
337 str(d)))
338 if "code" in d:
339 if d["code"] == "error":
340 die("p4 describe -s %d returned error code: %s" % (change, str(d)))
341
342 if "time" not in d:
343 die("p4 describe -s %d returned no \"time\": %s" % (change, str(d)))
344
345 return d
346
9cffb8c8
PW
347#
348# Canonicalize the p4 type and return a tuple of the
349# base type, plus any modifiers. See "p4 help filetypes"
350# for a list and explanation.
351#
352def split_p4_type(p4type):
353
354 p4_filetypes_historical = {
355 "ctempobj": "binary+Sw",
356 "ctext": "text+C",
357 "cxtext": "text+Cx",
358 "ktext": "text+k",
359 "kxtext": "text+kx",
360 "ltext": "text+F",
361 "tempobj": "binary+FSw",
362 "ubinary": "binary+F",
363 "uresource": "resource+F",
364 "uxbinary": "binary+Fx",
365 "xbinary": "binary+x",
366 "xltext": "text+Fx",
367 "xtempobj": "binary+Swx",
368 "xtext": "text+x",
369 "xunicode": "unicode+x",
370 "xutf16": "utf16+x",
371 }
372 if p4type in p4_filetypes_historical:
373 p4type = p4_filetypes_historical[p4type]
374 mods = ""
375 s = p4type.split("+")
376 base = s[0]
377 mods = ""
378 if len(s) > 1:
379 mods = s[1]
380 return (base, mods)
b9fc6ea9 381
60df071c
LD
382#
383# return the raw p4 type of a file (text, text+ko, etc)
384#
79467e61
PW
385def p4_type(f):
386 results = p4CmdList(["fstat", "-T", "headType", wildcard_encode(f)])
60df071c
LD
387 return results[0]['headType']
388
389#
390# Given a type base and modifier, return a regexp matching
391# the keywords that can be expanded in the file
392#
393def p4_keywords_regexp_for_type(base, type_mods):
394 if base in ("text", "unicode", "binary"):
395 kwords = None
396 if "ko" in type_mods:
397 kwords = 'Id|Header'
398 elif "k" in type_mods:
399 kwords = 'Id|Header|Author|Date|DateTime|Change|File|Revision'
400 else:
401 return None
402 pattern = r"""
403 \$ # Starts with a dollar, followed by...
404 (%s) # one of the keywords, followed by...
6b2bf41e 405 (:[^$\n]+)? # possibly an old expansion, followed by...
60df071c
LD
406 \$ # another dollar
407 """ % kwords
408 return pattern
409 else:
410 return None
411
412#
413# Given a file, return a regexp matching the possible
414# RCS keywords that will be expanded, or None for files
415# with kw expansion turned off.
416#
417def p4_keywords_regexp_for_file(file):
418 if not os.path.exists(file):
419 return None
420 else:
421 (type_base, type_mods) = split_p4_type(p4_type(file))
422 return p4_keywords_regexp_for_type(type_base, type_mods)
b9fc6ea9 423
c65b670e
CP
424def setP4ExecBit(file, mode):
425 # Reopens an already open file and changes the execute bit to match
426 # the execute bit setting in the passed in mode.
427
428 p4Type = "+x"
429
430 if not isModeExec(mode):
431 p4Type = getP4OpenedType(file)
432 p4Type = re.sub('^([cku]?)x(.*)', '\\1\\2', p4Type)
433 p4Type = re.sub('(.*?\+.*?)x(.*?)', '\\1\\2', p4Type)
434 if p4Type[-1] == "+":
435 p4Type = p4Type[0:-1]
436
6de040df 437 p4_reopen(p4Type, file)
c65b670e
CP
438
439def getP4OpenedType(file):
440 # Returns the perforce file type for the given file.
441
9d7d446a 442 result = p4_read_pipe(["opened", wildcard_encode(file)])
34a0dbfc 443 match = re.match(".*\((.+)\)( \*exclusive\*)?\r?$", result)
c65b670e
CP
444 if match:
445 return match.group(1)
446 else:
f3e5ae4f 447 die("Could not determine file type for %s (result: '%s')" % (file, result))
c65b670e 448
06804c76
LD
449# Return the set of all p4 labels
450def getP4Labels(depotPaths):
451 labels = set()
452 if isinstance(depotPaths,basestring):
453 depotPaths = [depotPaths]
454
455 for l in p4CmdList(["labels"] + ["%s..." % p for p in depotPaths]):
456 label = l['label']
457 labels.add(label)
458
459 return labels
460
461# Return the set of all git tags
462def getGitTags():
463 gitTags = set()
464 for line in read_pipe_lines(["git", "tag"]):
465 tag = line.strip()
466 gitTags.add(tag)
467 return gitTags
468
b43b0a3c
CP
469def diffTreePattern():
470 # This is a simple generator for the diff tree regex pattern. This could be
471 # a class variable if this and parseDiffTreeEntry were a part of a class.
472 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)')
473 while True:
474 yield pattern
475
476def parseDiffTreeEntry(entry):
477 """Parses a single diff tree entry into its component elements.
478
479 See git-diff-tree(1) manpage for details about the format of the diff
480 output. This method returns a dictionary with the following elements:
481
482 src_mode - The mode of the source file
483 dst_mode - The mode of the destination file
484 src_sha1 - The sha1 for the source file
485 dst_sha1 - The sha1 fr the destination file
486 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc)
487 status_score - The score for the status (applicable for 'C' and 'R'
488 statuses). This is None if there is no score.
489 src - The path for the source file.
490 dst - The path for the destination file. This is only present for
491 copy or renames. If it is not present, this is None.
492
493 If the pattern is not matched, None is returned."""
494
495 match = diffTreePattern().next().match(entry)
496 if match:
497 return {
498 'src_mode': match.group(1),
499 'dst_mode': match.group(2),
500 'src_sha1': match.group(3),
501 'dst_sha1': match.group(4),
502 'status': match.group(5),
503 'status_score': match.group(6),
504 'src': match.group(7),
505 'dst': match.group(10)
506 }
507 return None
508
c65b670e
CP
509def isModeExec(mode):
510 # Returns True if the given git mode represents an executable file,
511 # otherwise False.
512 return mode[-3:] == "755"
513
514def isModeExecChanged(src_mode, dst_mode):
515 return isModeExec(src_mode) != isModeExec(dst_mode)
516
1997e91f 517def p4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None, skip_info=False):
6de040df
LD
518
519 if isinstance(cmd,basestring):
520 cmd = "-G " + cmd
521 expand = True
522 else:
523 cmd = ["-G"] + cmd
524 expand = False
525
526 cmd = p4_build_cmd(cmd)
6a49f8e2 527 if verbose:
6de040df 528 sys.stderr.write("Opening pipe: %s\n" % str(cmd))
9f90c733
SL
529
530 # Use a temporary file to avoid deadlocks without
531 # subprocess.communicate(), which would put another copy
532 # of stdout into memory.
533 stdin_file = None
534 if stdin is not None:
535 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode)
6de040df
LD
536 if isinstance(stdin,basestring):
537 stdin_file.write(stdin)
538 else:
539 for i in stdin:
540 stdin_file.write(i + '\n')
9f90c733
SL
541 stdin_file.flush()
542 stdin_file.seek(0)
543
6de040df
LD
544 p4 = subprocess.Popen(cmd,
545 shell=expand,
9f90c733
SL
546 stdin=stdin_file,
547 stdout=subprocess.PIPE)
86949eef
SH
548
549 result = []
550 try:
551 while True:
9f90c733 552 entry = marshal.load(p4.stdout)
1997e91f
MT
553 if skip_info:
554 if 'code' in entry and entry['code'] == 'info':
555 continue
c3f6163b
AG
556 if cb is not None:
557 cb(entry)
558 else:
559 result.append(entry)
86949eef
SH
560 except EOFError:
561 pass
9f90c733
SL
562 exitCode = p4.wait()
563 if exitCode != 0:
ac3e0d79
SH
564 entry = {}
565 entry["p4ExitCode"] = exitCode
566 result.append(entry)
86949eef
SH
567
568 return result
569
570def p4Cmd(cmd):
571 list = p4CmdList(cmd)
572 result = {}
573 for entry in list:
574 result.update(entry)
575 return result;
576
cb2c9db5
SH
577def p4Where(depotPath):
578 if not depotPath.endswith("/"):
579 depotPath += "/"
cd884106
VA
580 depotPathLong = depotPath + "..."
581 outputList = p4CmdList(["where", depotPathLong])
7f705dc3
TAL
582 output = None
583 for entry in outputList:
75bc9573 584 if "depotFile" in entry:
cd884106
VA
585 # Search for the base client side depot path, as long as it starts with the branch's P4 path.
586 # The base path always ends with "/...".
587 if entry["depotFile"].find(depotPath) == 0 and entry["depotFile"][-4:] == "/...":
75bc9573
TAL
588 output = entry
589 break
590 elif "data" in entry:
591 data = entry.get("data")
592 space = data.find(" ")
593 if data[:space] == depotPath:
594 output = entry
595 break
7f705dc3
TAL
596 if output == None:
597 return ""
dc524036
SH
598 if output["code"] == "error":
599 return ""
cb2c9db5
SH
600 clientPath = ""
601 if "path" in output:
602 clientPath = output.get("path")
603 elif "data" in output:
604 data = output.get("data")
605 lastSpace = data.rfind(" ")
606 clientPath = data[lastSpace + 1:]
607
608 if clientPath.endswith("..."):
609 clientPath = clientPath[:-3]
610 return clientPath
611
86949eef 612def currentGitBranch():
eff45110 613 return read_pipe_text(["git", "symbolic-ref", "--short", "-q", "HEAD"])
86949eef 614
4f5cf76a 615def isValidGitDir(path):
378f7be1 616 return git_dir(path) != None
4f5cf76a 617
463e8af6 618def parseRevision(ref):
b25b2065 619 return read_pipe("git rev-parse %s" % ref).strip()
463e8af6 620
28755dba
PW
621def branchExists(ref):
622 rev = read_pipe(["git", "rev-parse", "-q", "--verify", ref],
623 ignore_error=True)
624 return len(rev) > 0
625
6ae8de88
SH
626def extractLogMessageFromGitCommit(commit):
627 logMessage = ""
b016d397
HWN
628
629 ## fixme: title is first line of commit, not 1st paragraph.
6ae8de88 630 foundTitle = False
b016d397 631 for log in read_pipe_lines("git cat-file commit %s" % commit):
6ae8de88
SH
632 if not foundTitle:
633 if len(log) == 1:
1c094184 634 foundTitle = True
6ae8de88
SH
635 continue
636
637 logMessage += log
638 return logMessage
639
bb6e09b2 640def extractSettingsGitLog(log):
6ae8de88
SH
641 values = {}
642 for line in log.split("\n"):
643 line = line.strip()
6326aa58
HWN
644 m = re.search (r"^ *\[git-p4: (.*)\]$", line)
645 if not m:
646 continue
647
648 assignments = m.group(1).split (':')
649 for a in assignments:
650 vals = a.split ('=')
651 key = vals[0].strip()
652 val = ('='.join (vals[1:])).strip()
653 if val.endswith ('\"') and val.startswith('"'):
654 val = val[1:-1]
655
656 values[key] = val
657
845b42cb
SH
658 paths = values.get("depot-paths")
659 if not paths:
660 paths = values.get("depot-path")
a3fdd579
SH
661 if paths:
662 values['depot-paths'] = paths.split(',')
bb6e09b2 663 return values
6ae8de88 664
8136a639 665def gitBranchExists(branch):
bb6e09b2
HWN
666 proc = subprocess.Popen(["git", "rev-parse", branch],
667 stderr=subprocess.PIPE, stdout=subprocess.PIPE);
caace111 668 return proc.wait() == 0;
8136a639 669
123f6317
LD
670def gitUpdateRef(ref, newvalue):
671 subprocess.check_call(["git", "update-ref", ref, newvalue])
672
673def gitDeleteRef(ref):
674 subprocess.check_call(["git", "update-ref", "-d", ref])
675
36bd8446 676_gitConfig = {}
b345d6c3 677
692e1796 678def gitConfig(key, typeSpecifier=None):
36bd8446 679 if not _gitConfig.has_key(key):
692e1796
LS
680 cmd = [ "git", "config" ]
681 if typeSpecifier:
682 cmd += [ typeSpecifier ]
683 cmd += [ key ]
b345d6c3
PW
684 s = read_pipe(cmd, ignore_error=True)
685 _gitConfig[key] = s.strip()
36bd8446 686 return _gitConfig[key]
01265103 687
0d609032
PW
688def gitConfigBool(key):
689 """Return a bool, using git config --bool. It is True only if the
690 variable is set to true, and False if set to false or not present
691 in the config."""
692
36bd8446 693 if not _gitConfig.has_key(key):
692e1796 694 _gitConfig[key] = gitConfig(key, '--bool') == "true"
36bd8446 695 return _gitConfig[key]
01265103 696
cb1dafdf
LS
697def gitConfigInt(key):
698 if not _gitConfig.has_key(key):
699 cmd = [ "git", "config", "--int", key ]
0d609032
PW
700 s = read_pipe(cmd, ignore_error=True)
701 v = s.strip()
cb1dafdf
LS
702 try:
703 _gitConfig[key] = int(gitConfig(key, '--int'))
704 except ValueError:
705 _gitConfig[key] = None
36bd8446 706 return _gitConfig[key]
01265103 707
7199cf13
VA
708def gitConfigList(key):
709 if not _gitConfig.has_key(key):
2abba301 710 s = read_pipe(["git", "config", "--get-all", key], ignore_error=True)
c3c2b057 711 _gitConfig[key] = s.strip().splitlines()
7960e707
LS
712 if _gitConfig[key] == ['']:
713 _gitConfig[key] = []
7199cf13
VA
714 return _gitConfig[key]
715
2c8037ed
PW
716def p4BranchesInGit(branchesAreInRemotes=True):
717 """Find all the branches whose names start with "p4/", looking
718 in remotes or heads as specified by the argument. Return
719 a dictionary of { branch: revision } for each one found.
720 The branch names are the short names, without any
721 "p4/" prefix."""
722
062410bb
SH
723 branches = {}
724
725 cmdline = "git rev-parse --symbolic "
726 if branchesAreInRemotes:
2c8037ed 727 cmdline += "--remotes"
062410bb 728 else:
2c8037ed 729 cmdline += "--branches"
062410bb
SH
730
731 for line in read_pipe_lines(cmdline):
732 line = line.strip()
733
2c8037ed
PW
734 # only import to p4/
735 if not line.startswith('p4/'):
736 continue
737 # special symbolic ref to p4/master
738 if line == "p4/HEAD":
062410bb 739 continue
062410bb 740
2c8037ed
PW
741 # strip off p4/ prefix
742 branch = line[len("p4/"):]
062410bb
SH
743
744 branches[branch] = parseRevision(line)
2c8037ed 745
062410bb
SH
746 return branches
747
5a8e84cd
PW
748def branch_exists(branch):
749 """Make sure that the given ref name really exists."""
750
751 cmd = [ "git", "rev-parse", "--symbolic", "--verify", branch ]
752 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
753 out, _ = p.communicate()
754 if p.returncode:
755 return False
756 # expect exactly one line of output: the branch name
757 return out.rstrip() == branch
758
9ceab363 759def findUpstreamBranchPoint(head = "HEAD"):
86506fe5
SH
760 branches = p4BranchesInGit()
761 # map from depot-path to branch name
762 branchByDepotPath = {}
763 for branch in branches.keys():
764 tip = branches[branch]
765 log = extractLogMessageFromGitCommit(tip)
766 settings = extractSettingsGitLog(log)
767 if settings.has_key("depot-paths"):
768 paths = ",".join(settings["depot-paths"])
769 branchByDepotPath[paths] = "remotes/p4/" + branch
770
27d2d811 771 settings = None
27d2d811
SH
772 parent = 0
773 while parent < 65535:
9ceab363 774 commit = head + "~%s" % parent
27d2d811
SH
775 log = extractLogMessageFromGitCommit(commit)
776 settings = extractSettingsGitLog(log)
86506fe5
SH
777 if settings.has_key("depot-paths"):
778 paths = ",".join(settings["depot-paths"])
779 if branchByDepotPath.has_key(paths):
780 return [branchByDepotPath[paths], settings]
27d2d811 781
86506fe5 782 parent = parent + 1
27d2d811 783
86506fe5 784 return ["", settings]
27d2d811 785
5ca44617
SH
786def createOrUpdateBranchesFromOrigin(localRefPrefix = "refs/remotes/p4/", silent=True):
787 if not silent:
788 print ("Creating/updating branch(es) in %s based on origin branch(es)"
789 % localRefPrefix)
790
791 originPrefix = "origin/p4/"
792
793 for line in read_pipe_lines("git rev-parse --symbolic --remotes"):
794 line = line.strip()
795 if (not line.startswith(originPrefix)) or line.endswith("HEAD"):
796 continue
797
798 headName = line[len(originPrefix):]
799 remoteHead = localRefPrefix + headName
800 originHead = line
801
802 original = extractSettingsGitLog(extractLogMessageFromGitCommit(originHead))
803 if (not original.has_key('depot-paths')
804 or not original.has_key('change')):
805 continue
806
807 update = False
808 if not gitBranchExists(remoteHead):
809 if verbose:
810 print "creating %s" % remoteHead
811 update = True
812 else:
813 settings = extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead))
814 if settings.has_key('change') > 0:
815 if settings['depot-paths'] == original['depot-paths']:
816 originP4Change = int(original['change'])
817 p4Change = int(settings['change'])
818 if originP4Change > p4Change:
819 print ("%s (%s) is newer than %s (%s). "
820 "Updating p4 branch from origin."
821 % (originHead, originP4Change,
822 remoteHead, p4Change))
823 update = True
824 else:
825 print ("Ignoring: %s was imported from %s while "
826 "%s was imported from %s"
827 % (originHead, ','.join(original['depot-paths']),
828 remoteHead, ','.join(settings['depot-paths'])))
829
830 if update:
831 system("git update-ref %s %s" % (remoteHead, originHead))
832
833def originP4BranchesExist():
834 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
835
1051ef00
LD
836
837def p4ParseNumericChangeRange(parts):
838 changeStart = int(parts[0][1:])
839 if parts[1] == '#head':
840 changeEnd = p4_last_change()
841 else:
842 changeEnd = int(parts[1])
843
844 return (changeStart, changeEnd)
845
846def chooseBlockSize(blockSize):
847 if blockSize:
848 return blockSize
849 else:
850 return defaultBlockSize
851
852def p4ChangesForPaths(depotPaths, changeRange, requestedBlockSize):
4f6432d8 853 assert depotPaths
96b2d54a 854
1051ef00
LD
855 # Parse the change range into start and end. Try to find integer
856 # revision ranges as these can be broken up into blocks to avoid
857 # hitting server-side limits (maxrows, maxscanresults). But if
858 # that doesn't work, fall back to using the raw revision specifier
859 # strings, without using block mode.
860
96b2d54a 861 if changeRange is None or changeRange == '':
1051ef00
LD
862 changeStart = 1
863 changeEnd = p4_last_change()
864 block_size = chooseBlockSize(requestedBlockSize)
96b2d54a
LS
865 else:
866 parts = changeRange.split(',')
867 assert len(parts) == 2
1051ef00
LD
868 try:
869 (changeStart, changeEnd) = p4ParseNumericChangeRange(parts)
870 block_size = chooseBlockSize(requestedBlockSize)
871 except:
872 changeStart = parts[0][1:]
873 changeEnd = parts[1]
874 if requestedBlockSize:
875 die("cannot use --changes-block-size with non-numeric revisions")
876 block_size = None
4f6432d8 877
9943e5b9 878 changes = set()
96b2d54a 879
1f90a648
SH
880 # Retrieve changes a block at a time, to prevent running
881 # into a MaxResults/MaxScanRows error from the server.
1051ef00 882
1f90a648
SH
883 while True:
884 cmd = ['changes']
1051ef00 885
1f90a648
SH
886 if block_size:
887 end = min(changeEnd, changeStart + block_size)
888 revisionRange = "%d,%d" % (changeStart, end)
889 else:
890 revisionRange = "%s,%s" % (changeStart, changeEnd)
1051ef00 891
1f90a648 892 for p in depotPaths:
1051ef00
LD
893 cmd += ["%s...@%s" % (p, revisionRange)]
894
1f90a648 895 # Insert changes in chronological order
b596b3b9
MT
896 for entry in reversed(p4CmdList(cmd)):
897 if entry.has_key('p4ExitCode'):
898 die('Error retrieving changes descriptions ({})'.format(entry['p4ExitCode']))
899 if not entry.has_key('change'):
900 continue
901 changes.add(int(entry['change']))
1051ef00 902
1f90a648
SH
903 if not block_size:
904 break
1051ef00 905
1f90a648
SH
906 if end >= changeEnd:
907 break
1051ef00 908
1f90a648 909 changeStart = end + 1
4f6432d8 910
1f90a648
SH
911 changes = sorted(changes)
912 return changes
4f6432d8 913
d53de8b9
TAL
914def p4PathStartsWith(path, prefix):
915 # This method tries to remedy a potential mixed-case issue:
916 #
917 # If UserA adds //depot/DirA/file1
918 # and UserB adds //depot/dira/file2
919 #
920 # we may or may not have a problem. If you have core.ignorecase=true,
921 # we treat DirA and dira as the same directory
0d609032 922 if gitConfigBool("core.ignorecase"):
d53de8b9
TAL
923 return path.lower().startswith(prefix.lower())
924 return path.startswith(prefix)
925
543987bd
PW
926def getClientSpec():
927 """Look at the p4 client spec, create a View() object that contains
928 all the mappings, and return it."""
929
930 specList = p4CmdList("client -o")
931 if len(specList) != 1:
932 die('Output from "client -o" is %d lines, expecting 1' %
933 len(specList))
934
935 # dictionary of all client parameters
936 entry = specList[0]
937
9d57c4a6
KS
938 # the //client/ name
939 client_name = entry["Client"]
940
543987bd
PW
941 # just the keys that start with "View"
942 view_keys = [ k for k in entry.keys() if k.startswith("View") ]
943
944 # hold this new View
9d57c4a6 945 view = View(client_name)
543987bd
PW
946
947 # append the lines, in order, to the view
948 for view_num in range(len(view_keys)):
949 k = "View%d" % view_num
950 if k not in view_keys:
951 die("Expected view key %s missing" % k)
952 view.append(entry[k])
953
954 return view
955
956def getClientRoot():
957 """Grab the client directory."""
958
959 output = p4CmdList("client -o")
960 if len(output) != 1:
961 die('Output from "client -o" is %d lines, expecting 1' % len(output))
962
963 entry = output[0]
964 if "Root" not in entry:
965 die('Client has no "Root"')
966
967 return entry["Root"]
968
9d7d446a
PW
969#
970# P4 wildcards are not allowed in filenames. P4 complains
971# if you simply add them, but you can force it with "-f", in
972# which case it translates them into %xx encoding internally.
973#
974def wildcard_decode(path):
975 # Search for and fix just these four characters. Do % last so
976 # that fixing it does not inadvertently create new %-escapes.
977 # Cannot have * in a filename in windows; untested as to
978 # what p4 would do in such a case.
979 if not platform.system() == "Windows":
980 path = path.replace("%2A", "*")
981 path = path.replace("%23", "#") \
982 .replace("%40", "@") \
983 .replace("%25", "%")
984 return path
985
986def wildcard_encode(path):
987 # do % first to avoid double-encoding the %s introduced here
988 path = path.replace("%", "%25") \
989 .replace("*", "%2A") \
990 .replace("#", "%23") \
991 .replace("@", "%40")
992 return path
993
994def wildcard_present(path):
598354c0
BC
995 m = re.search("[*#@%]", path)
996 return m is not None
9d7d446a 997
a5db4b12
LS
998class LargeFileSystem(object):
999 """Base class for large file system support."""
1000
1001 def __init__(self, writeToGitStream):
1002 self.largeFiles = set()
1003 self.writeToGitStream = writeToGitStream
1004
1005 def generatePointer(self, cloneDestination, contentFile):
1006 """Return the content of a pointer file that is stored in Git instead of
1007 the actual content."""
1008 assert False, "Method 'generatePointer' required in " + self.__class__.__name__
1009
1010 def pushFile(self, localLargeFile):
1011 """Push the actual content which is not stored in the Git repository to
1012 a server."""
1013 assert False, "Method 'pushFile' required in " + self.__class__.__name__
1014
1015 def hasLargeFileExtension(self, relPath):
1016 return reduce(
1017 lambda a, b: a or b,
1018 [relPath.endswith('.' + e) for e in gitConfigList('git-p4.largeFileExtensions')],
1019 False
1020 )
1021
1022 def generateTempFile(self, contents):
1023 contentFile = tempfile.NamedTemporaryFile(prefix='git-p4-large-file', delete=False)
1024 for d in contents:
1025 contentFile.write(d)
1026 contentFile.close()
1027 return contentFile.name
1028
1029 def exceedsLargeFileThreshold(self, relPath, contents):
1030 if gitConfigInt('git-p4.largeFileThreshold'):
1031 contentsSize = sum(len(d) for d in contents)
1032 if contentsSize > gitConfigInt('git-p4.largeFileThreshold'):
1033 return True
1034 if gitConfigInt('git-p4.largeFileCompressedThreshold'):
1035 contentsSize = sum(len(d) for d in contents)
1036 if contentsSize <= gitConfigInt('git-p4.largeFileCompressedThreshold'):
1037 return False
1038 contentTempFile = self.generateTempFile(contents)
1039 compressedContentFile = tempfile.NamedTemporaryFile(prefix='git-p4-large-file', delete=False)
1040 zf = zipfile.ZipFile(compressedContentFile.name, mode='w')
1041 zf.write(contentTempFile, compress_type=zipfile.ZIP_DEFLATED)
1042 zf.close()
1043 compressedContentsSize = zf.infolist()[0].compress_size
1044 os.remove(contentTempFile)
1045 os.remove(compressedContentFile.name)
1046 if compressedContentsSize > gitConfigInt('git-p4.largeFileCompressedThreshold'):
1047 return True
1048 return False
1049
1050 def addLargeFile(self, relPath):
1051 self.largeFiles.add(relPath)
1052
1053 def removeLargeFile(self, relPath):
1054 self.largeFiles.remove(relPath)
1055
1056 def isLargeFile(self, relPath):
1057 return relPath in self.largeFiles
1058
1059 def processContent(self, git_mode, relPath, contents):
1060 """Processes the content of git fast import. This method decides if a
1061 file is stored in the large file system and handles all necessary
1062 steps."""
1063 if self.exceedsLargeFileThreshold(relPath, contents) or self.hasLargeFileExtension(relPath):
1064 contentTempFile = self.generateTempFile(contents)
d5eb3cf5
LS
1065 (pointer_git_mode, contents, localLargeFile) = self.generatePointer(contentTempFile)
1066 if pointer_git_mode:
1067 git_mode = pointer_git_mode
1068 if localLargeFile:
1069 # Move temp file to final location in large file system
1070 largeFileDir = os.path.dirname(localLargeFile)
1071 if not os.path.isdir(largeFileDir):
1072 os.makedirs(largeFileDir)
1073 shutil.move(contentTempFile, localLargeFile)
1074 self.addLargeFile(relPath)
1075 if gitConfigBool('git-p4.largeFilePush'):
1076 self.pushFile(localLargeFile)
1077 if verbose:
1078 sys.stderr.write("%s moved to large file system (%s)\n" % (relPath, localLargeFile))
a5db4b12
LS
1079 return (git_mode, contents)
1080
1081class MockLFS(LargeFileSystem):
1082 """Mock large file system for testing."""
1083
1084 def generatePointer(self, contentFile):
1085 """The pointer content is the original content prefixed with "pointer-".
1086 The local filename of the large file storage is derived from the file content.
1087 """
1088 with open(contentFile, 'r') as f:
1089 content = next(f)
1090 gitMode = '100644'
1091 pointerContents = 'pointer-' + content
1092 localLargeFile = os.path.join(os.getcwd(), '.git', 'mock-storage', 'local', content[:-1])
1093 return (gitMode, pointerContents, localLargeFile)
1094
1095 def pushFile(self, localLargeFile):
1096 """The remote filename of the large file storage is the same as the local
1097 one but in a different directory.
1098 """
1099 remotePath = os.path.join(os.path.dirname(localLargeFile), '..', 'remote')
1100 if not os.path.exists(remotePath):
1101 os.makedirs(remotePath)
1102 shutil.copyfile(localLargeFile, os.path.join(remotePath, os.path.basename(localLargeFile)))
1103
b47d807d
LS
1104class GitLFS(LargeFileSystem):
1105 """Git LFS as backend for the git-p4 large file system.
1106 See https://git-lfs.github.com/ for details."""
1107
1108 def __init__(self, *args):
1109 LargeFileSystem.__init__(self, *args)
1110 self.baseGitAttributes = []
1111
1112 def generatePointer(self, contentFile):
1113 """Generate a Git LFS pointer for the content. Return LFS Pointer file
1114 mode and content which is stored in the Git repository instead of
1115 the actual content. Return also the new location of the actual
1116 content.
1117 """
d5eb3cf5
LS
1118 if os.path.getsize(contentFile) == 0:
1119 return (None, '', None)
1120
b47d807d
LS
1121 pointerProcess = subprocess.Popen(
1122 ['git', 'lfs', 'pointer', '--file=' + contentFile],
1123 stdout=subprocess.PIPE
1124 )
1125 pointerFile = pointerProcess.stdout.read()
1126 if pointerProcess.wait():
1127 os.remove(contentFile)
1128 die('git-lfs pointer command failed. Did you install the extension?')
82f2567e
LS
1129
1130 # Git LFS removed the preamble in the output of the 'pointer' command
1131 # starting from version 1.2.0. Check for the preamble here to support
1132 # earlier versions.
1133 # c.f. https://github.com/github/git-lfs/commit/da2935d9a739592bc775c98d8ef4df9c72ea3b43
1134 if pointerFile.startswith('Git LFS pointer for'):
1135 pointerFile = re.sub(r'Git LFS pointer for.*\n\n', '', pointerFile)
1136
1137 oid = re.search(r'^oid \w+:(\w+)', pointerFile, re.MULTILINE).group(1)
b47d807d
LS
1138 localLargeFile = os.path.join(
1139 os.getcwd(),
1140 '.git', 'lfs', 'objects', oid[:2], oid[2:4],
1141 oid,
1142 )
1143 # LFS Spec states that pointer files should not have the executable bit set.
1144 gitMode = '100644'
82f2567e 1145 return (gitMode, pointerFile, localLargeFile)
b47d807d
LS
1146
1147 def pushFile(self, localLargeFile):
1148 uploadProcess = subprocess.Popen(
1149 ['git', 'lfs', 'push', '--object-id', 'origin', os.path.basename(localLargeFile)]
1150 )
1151 if uploadProcess.wait():
1152 die('git-lfs push command failed. Did you define a remote?')
1153
1154 def generateGitAttributes(self):
1155 return (
1156 self.baseGitAttributes +
1157 [
1158 '\n',
1159 '#\n',
1160 '# Git LFS (see https://git-lfs.github.com/)\n',
1161 '#\n',
1162 ] +
862f9312 1163 ['*.' + f.replace(' ', '[[:space:]]') + ' filter=lfs diff=lfs merge=lfs -text\n'
b47d807d
LS
1164 for f in sorted(gitConfigList('git-p4.largeFileExtensions'))
1165 ] +
862f9312 1166 ['/' + f.replace(' ', '[[:space:]]') + ' filter=lfs diff=lfs merge=lfs -text\n'
b47d807d
LS
1167 for f in sorted(self.largeFiles) if not self.hasLargeFileExtension(f)
1168 ]
1169 )
1170
1171 def addLargeFile(self, relPath):
1172 LargeFileSystem.addLargeFile(self, relPath)
1173 self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes())
1174
1175 def removeLargeFile(self, relPath):
1176 LargeFileSystem.removeLargeFile(self, relPath)
1177 self.writeToGitStream('100644', '.gitattributes', self.generateGitAttributes())
1178
1179 def processContent(self, git_mode, relPath, contents):
1180 if relPath == '.gitattributes':
1181 self.baseGitAttributes = contents
1182 return (git_mode, self.generateGitAttributes())
1183 else:
1184 return LargeFileSystem.processContent(self, git_mode, relPath, contents)
1185
b984733c
SH
1186class Command:
1187 def __init__(self):
1188 self.usage = "usage: %prog [options]"
8910ac0e 1189 self.needsGit = True
6a10b6aa 1190 self.verbose = False
b984733c 1191
8cf422db
LD
1192 # This is required for the "append" cloneExclude action
1193 def ensure_value(self, attr, value):
1194 if not hasattr(self, attr) or getattr(self, attr) is None:
1195 setattr(self, attr, value)
1196 return getattr(self, attr)
1197
3ea2cfd4
LD
1198class P4UserMap:
1199 def __init__(self):
1200 self.userMapFromPerforceServer = False
affb474f
LD
1201 self.myP4UserId = None
1202
1203 def p4UserId(self):
1204 if self.myP4UserId:
1205 return self.myP4UserId
1206
1207 results = p4CmdList("user -o")
1208 for r in results:
1209 if r.has_key('User'):
1210 self.myP4UserId = r['User']
1211 return r['User']
1212 die("Could not find your p4 user id")
1213
1214 def p4UserIsMe(self, p4User):
1215 # return True if the given p4 user is actually me
1216 me = self.p4UserId()
1217 if not p4User or p4User != me:
1218 return False
1219 else:
1220 return True
3ea2cfd4
LD
1221
1222 def getUserCacheFilename(self):
1223 home = os.environ.get("HOME", os.environ.get("USERPROFILE"))
1224 return home + "/.gitp4-usercache.txt"
1225
1226 def getUserMapFromPerforceServer(self):
1227 if self.userMapFromPerforceServer:
1228 return
1229 self.users = {}
1230 self.emails = {}
1231
1232 for output in p4CmdList("users"):
1233 if not output.has_key("User"):
1234 continue
1235 self.users[output["User"]] = output["FullName"] + " <" + output["Email"] + ">"
1236 self.emails[output["Email"]] = output["User"]
1237
10d08a14
LS
1238 mapUserConfigRegex = re.compile(r"^\s*(\S+)\s*=\s*(.+)\s*<(\S+)>\s*$", re.VERBOSE)
1239 for mapUserConfig in gitConfigList("git-p4.mapUser"):
1240 mapUser = mapUserConfigRegex.findall(mapUserConfig)
1241 if mapUser and len(mapUser[0]) == 3:
1242 user = mapUser[0][0]
1243 fullname = mapUser[0][1]
1244 email = mapUser[0][2]
1245 self.users[user] = fullname + " <" + email + ">"
1246 self.emails[email] = user
3ea2cfd4
LD
1247
1248 s = ''
1249 for (key, val) in self.users.items():
1250 s += "%s\t%s\n" % (key.expandtabs(1), val.expandtabs(1))
1251
1252 open(self.getUserCacheFilename(), "wb").write(s)
1253 self.userMapFromPerforceServer = True
1254
1255 def loadUserMapFromCache(self):
1256 self.users = {}
1257 self.userMapFromPerforceServer = False
1258 try:
1259 cache = open(self.getUserCacheFilename(), "rb")
1260 lines = cache.readlines()
1261 cache.close()
1262 for line in lines:
1263 entry = line.strip().split("\t")
1264 self.users[entry[0]] = entry[1]
1265 except IOError:
1266 self.getUserMapFromPerforceServer()
1267
b984733c 1268class P4Debug(Command):
86949eef 1269 def __init__(self):
6ae8de88 1270 Command.__init__(self)
6a10b6aa 1271 self.options = []
c8c39116 1272 self.description = "A tool to debug the output of p4 -G."
8910ac0e 1273 self.needsGit = False
86949eef
SH
1274
1275 def run(self, args):
b1ce9447 1276 j = 0
6de040df 1277 for output in p4CmdList(args):
b1ce9447
HWN
1278 print 'Element: %d' % j
1279 j += 1
86949eef 1280 print output
b984733c 1281 return True
86949eef 1282
5834684d
SH
1283class P4RollBack(Command):
1284 def __init__(self):
1285 Command.__init__(self)
1286 self.options = [
0c66a783 1287 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true")
5834684d
SH
1288 ]
1289 self.description = "A tool to debug the multi-branch import. Don't use :)"
0c66a783 1290 self.rollbackLocalBranches = False
5834684d
SH
1291
1292 def run(self, args):
1293 if len(args) != 1:
1294 return False
1295 maxChange = int(args[0])
0c66a783 1296
ad192f28 1297 if "p4ExitCode" in p4Cmd("changes -m 1"):
66a2f523
SH
1298 die("Problems executing p4");
1299
0c66a783
SH
1300 if self.rollbackLocalBranches:
1301 refPrefix = "refs/heads/"
b016d397 1302 lines = read_pipe_lines("git rev-parse --symbolic --branches")
0c66a783
SH
1303 else:
1304 refPrefix = "refs/remotes/"
b016d397 1305 lines = read_pipe_lines("git rev-parse --symbolic --remotes")
0c66a783
SH
1306
1307 for line in lines:
1308 if self.rollbackLocalBranches or (line.startswith("p4/") and line != "p4/HEAD\n"):
b25b2065
HWN
1309 line = line.strip()
1310 ref = refPrefix + line
5834684d 1311 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
1312 settings = extractSettingsGitLog(log)
1313
1314 depotPaths = settings['depot-paths']
1315 change = settings['change']
1316
5834684d 1317 changed = False
52102d47 1318
6326aa58
HWN
1319 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p, maxChange)
1320 for p in depotPaths]))) == 0:
52102d47
SH
1321 print "Branch %s did not exist at change %s, deleting." % (ref, maxChange)
1322 system("git update-ref -d %s `git rev-parse %s`" % (ref, ref))
1323 continue
1324
bb6e09b2 1325 while change and int(change) > maxChange:
5834684d 1326 changed = True
52102d47
SH
1327 if self.verbose:
1328 print "%s is at %s ; rewinding towards %s" % (ref, change, maxChange)
5834684d
SH
1329 system("git update-ref %s \"%s^\"" % (ref, ref))
1330 log = extractLogMessageFromGitCommit(ref)
bb6e09b2
HWN
1331 settings = extractSettingsGitLog(log)
1332
1333
1334 depotPaths = settings['depot-paths']
1335 change = settings['change']
5834684d
SH
1336
1337 if changed:
52102d47 1338 print "%s rewound to %s" % (ref, change)
5834684d
SH
1339
1340 return True
1341
3ea2cfd4 1342class P4Submit(Command, P4UserMap):
6bbfd137
PW
1343
1344 conflict_behavior_choices = ("ask", "skip", "quit")
1345
4f5cf76a 1346 def __init__(self):
b984733c 1347 Command.__init__(self)
3ea2cfd4 1348 P4UserMap.__init__(self)
4f5cf76a 1349 self.options = [
4f5cf76a 1350 optparse.make_option("--origin", dest="origin"),
ae901090 1351 optparse.make_option("-M", dest="detectRenames", action="store_true"),
3ea2cfd4
LD
1352 # preserve the user, requires relevant p4 permissions
1353 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"),
06804c76 1354 optparse.make_option("--export-labels", dest="exportLabels", action="store_true"),
ef739f08 1355 optparse.make_option("--dry-run", "-n", dest="dry_run", action="store_true"),
728b7ad8 1356 optparse.make_option("--prepare-p4-only", dest="prepare_p4_only", action="store_true"),
6bbfd137 1357 optparse.make_option("--conflict", dest="conflict_behavior",
44e8d26c
PW
1358 choices=self.conflict_behavior_choices),
1359 optparse.make_option("--branch", dest="branch"),
b34fa577
VK
1360 optparse.make_option("--shelve", dest="shelve", action="store_true",
1361 help="Shelve instead of submit. Shelved files are reverted, "
1362 "restoring the workspace to the state before the shelve"),
8cf422db 1363 optparse.make_option("--update-shelve", dest="update_shelve", action="append", type="int",
46c609e9 1364 metavar="CHANGELIST",
8cf422db
LD
1365 help="update an existing shelved changelist, implies --shelve, "
1366 "repeat in-order for multiple shelved changelists")
4f5cf76a
SH
1367 ]
1368 self.description = "Submit changes from git to the perforce depot."
c9b50e63 1369 self.usage += " [name of git branch to submit into perforce depot]"
9512497b 1370 self.origin = ""
ae901090 1371 self.detectRenames = False
0d609032 1372 self.preserveUser = gitConfigBool("git-p4.preserveUser")
ef739f08 1373 self.dry_run = False
b34fa577 1374 self.shelve = False
8cf422db 1375 self.update_shelve = list()
728b7ad8 1376 self.prepare_p4_only = False
6bbfd137 1377 self.conflict_behavior = None
f7baba8b 1378 self.isWindows = (platform.system() == "Windows")
06804c76 1379 self.exportLabels = False
249da4c0 1380 self.p4HasMoveCommand = p4_has_move_command()
44e8d26c 1381 self.branch = None
4f5cf76a 1382
a5db4b12
LS
1383 if gitConfig('git-p4.largeFileSystem'):
1384 die("Large file system not supported for git-p4 submit command. Please remove it from config.")
1385
4f5cf76a
SH
1386 def check(self):
1387 if len(p4CmdList("opened ...")) > 0:
1388 die("You have files opened with perforce! Close them before starting the sync.")
1389
f19cb0a0
PW
1390 def separate_jobs_from_description(self, message):
1391 """Extract and return a possible Jobs field in the commit
1392 message. It goes into a separate section in the p4 change
1393 specification.
1394
1395 A jobs line starts with "Jobs:" and looks like a new field
1396 in a form. Values are white-space separated on the same
1397 line or on following lines that start with a tab.
1398
1399 This does not parse and extract the full git commit message
1400 like a p4 form. It just sees the Jobs: line as a marker
1401 to pass everything from then on directly into the p4 form,
1402 but outside the description section.
1403
1404 Return a tuple (stripped log message, jobs string)."""
1405
1406 m = re.search(r'^Jobs:', message, re.MULTILINE)
1407 if m is None:
1408 return (message, None)
1409
1410 jobtext = message[m.start():]
1411 stripped_message = message[:m.start()].rstrip()
1412 return (stripped_message, jobtext)
1413
1414 def prepareLogMessage(self, template, message, jobs):
1415 """Edits the template returned from "p4 change -o" to insert
1416 the message in the Description field, and the jobs text in
1417 the Jobs field."""
4f5cf76a
SH
1418 result = ""
1419
edae1e2f
SH
1420 inDescriptionSection = False
1421
4f5cf76a
SH
1422 for line in template.split("\n"):
1423 if line.startswith("#"):
1424 result += line + "\n"
1425 continue
1426
edae1e2f 1427 if inDescriptionSection:
c9dbab04 1428 if line.startswith("Files:") or line.startswith("Jobs:"):
edae1e2f 1429 inDescriptionSection = False
f19cb0a0
PW
1430 # insert Jobs section
1431 if jobs:
1432 result += jobs + "\n"
edae1e2f
SH
1433 else:
1434 continue
1435 else:
1436 if line.startswith("Description:"):
1437 inDescriptionSection = True
1438 line += "\n"
1439 for messageLine in message.split("\n"):
1440 line += "\t" + messageLine + "\n"
1441
1442 result += line + "\n"
4f5cf76a
SH
1443
1444 return result
1445
60df071c
LD
1446 def patchRCSKeywords(self, file, pattern):
1447 # Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern
1448 (handle, outFileName) = tempfile.mkstemp(dir='.')
1449 try:
1450 outFile = os.fdopen(handle, "w+")
1451 inFile = open(file, "r")
1452 regexp = re.compile(pattern, re.VERBOSE)
1453 for line in inFile.readlines():
1454 line = regexp.sub(r'$\1$', line)
1455 outFile.write(line)
1456 inFile.close()
1457 outFile.close()
1458 # Forcibly overwrite the original file
1459 os.unlink(file)
1460 shutil.move(outFileName, file)
1461 except:
1462 # cleanup our temporary file
1463 os.unlink(outFileName)
1464 print "Failed to strip RCS keywords in %s" % file
1465 raise
1466
1467 print "Patched up RCS keywords in %s" % file
1468
3ea2cfd4
LD
1469 def p4UserForCommit(self,id):
1470 # Return the tuple (perforce user,git email) for a given git commit id
1471 self.getUserMapFromPerforceServer()
9bf28855
PW
1472 gitEmail = read_pipe(["git", "log", "--max-count=1",
1473 "--format=%ae", id])
3ea2cfd4
LD
1474 gitEmail = gitEmail.strip()
1475 if not self.emails.has_key(gitEmail):
1476 return (None,gitEmail)
1477 else:
1478 return (self.emails[gitEmail],gitEmail)
1479
1480 def checkValidP4Users(self,commits):
1481 # check if any git authors cannot be mapped to p4 users
1482 for id in commits:
1483 (user,email) = self.p4UserForCommit(id)
1484 if not user:
1485 msg = "Cannot find p4 user for email %s in commit %s." % (email, id)
0d609032 1486 if gitConfigBool("git-p4.allowMissingP4Users"):
3ea2cfd4
LD
1487 print "%s" % msg
1488 else:
1489 die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg)
1490
1491 def lastP4Changelist(self):
1492 # Get back the last changelist number submitted in this client spec. This
1493 # then gets used to patch up the username in the change. If the same
1494 # client spec is being used by multiple processes then this might go
1495 # wrong.
1496 results = p4CmdList("client -o") # find the current client
1497 client = None
1498 for r in results:
1499 if r.has_key('Client'):
1500 client = r['Client']
1501 break
1502 if not client:
1503 die("could not get client spec")
6de040df 1504 results = p4CmdList(["changes", "-c", client, "-m", "1"])
3ea2cfd4
LD
1505 for r in results:
1506 if r.has_key('change'):
1507 return r['change']
1508 die("Could not get changelist number for last submit - cannot patch up user details")
1509
1510 def modifyChangelistUser(self, changelist, newUser):
1511 # fixup the user field of a changelist after it has been submitted.
1512 changes = p4CmdList("change -o %s" % changelist)
ecdba36d
LD
1513 if len(changes) != 1:
1514 die("Bad output from p4 change modifying %s to user %s" %
1515 (changelist, newUser))
1516
1517 c = changes[0]
1518 if c['User'] == newUser: return # nothing to do
1519 c['User'] = newUser
1520 input = marshal.dumps(c)
1521
3ea2cfd4
LD
1522 result = p4CmdList("change -f -i", stdin=input)
1523 for r in result:
1524 if r.has_key('code'):
1525 if r['code'] == 'error':
1526 die("Could not modify user field of changelist %s to %s:%s" % (changelist, newUser, r['data']))
1527 if r.has_key('data'):
1528 print("Updated user field for changelist %s to %s" % (changelist, newUser))
1529 return
1530 die("Could not modify user field of changelist %s to %s" % (changelist, newUser))
1531
1532 def canChangeChangelists(self):
1533 # check to see if we have p4 admin or super-user permissions, either of
1534 # which are required to modify changelists.
52a4880b 1535 results = p4CmdList(["protects", self.depotPath])
3ea2cfd4
LD
1536 for r in results:
1537 if r.has_key('perm'):
1538 if r['perm'] == 'admin':
1539 return 1
1540 if r['perm'] == 'super':
1541 return 1
1542 return 0
1543
46c609e9 1544 def prepareSubmitTemplate(self, changelist=None):
f19cb0a0
PW
1545 """Run "p4 change -o" to grab a change specification template.
1546 This does not use "p4 -G", as it is nice to keep the submission
1547 template in original order, since a human might edit it.
1548
1549 Remove lines in the Files section that show changes to files
1550 outside the depot path we're committing into."""
1551
cbc69242
SH
1552 [upstream, settings] = findUpstreamBranchPoint()
1553
b596b3b9
MT
1554 template = """\
1555# A Perforce Change Specification.
1556#
1557# Change: The change number. 'new' on a new changelist.
1558# Date: The date this specification was last modified.
1559# Client: The client on which the changelist was created. Read-only.
1560# User: The user who created the changelist.
1561# Status: Either 'pending' or 'submitted'. Read-only.
1562# Type: Either 'public' or 'restricted'. Default is 'public'.
1563# Description: Comments about the changelist. Required.
1564# Jobs: What opened jobs are to be closed by this changelist.
1565# You may delete jobs from this list. (New changelists only.)
1566# Files: What opened files from the default changelist are to be added
1567# to this changelist. You may delete files from this list.
1568# (New changelists only.)
1569"""
1570 files_list = []
ea99c3ae 1571 inFilesSection = False
b596b3b9 1572 change_entry = None
46c609e9
LD
1573 args = ['change', '-o']
1574 if changelist:
1575 args.append(str(changelist))
b596b3b9
MT
1576 for entry in p4CmdList(args):
1577 if not entry.has_key('code'):
1578 continue
1579 if entry['code'] == 'stat':
1580 change_entry = entry
1581 break
1582 if not change_entry:
1583 die('Failed to decode output of p4 change -o')
1584 for key, value in change_entry.iteritems():
1585 if key.startswith('File'):
1586 if settings.has_key('depot-paths'):
1587 if not [p for p in settings['depot-paths']
1588 if p4PathStartsWith(value, p)]:
1589 continue
ea99c3ae 1590 else:
b596b3b9
MT
1591 if not p4PathStartsWith(value, self.depotPath):
1592 continue
1593 files_list.append(value)
1594 continue
1595 # Output in the order expected by prepareLogMessage
1596 for key in ['Change', 'Client', 'User', 'Status', 'Description', 'Jobs']:
1597 if not change_entry.has_key(key):
1598 continue
1599 template += '\n'
1600 template += key + ':'
1601 if key == 'Description':
1602 template += '\n'
1603 for field_line in change_entry[key].splitlines():
1604 template += '\t'+field_line+'\n'
1605 if len(files_list) > 0:
1606 template += '\n'
1607 template += 'Files:\n'
1608 for path in files_list:
1609 template += '\t'+path+'\n'
ea99c3ae
SH
1610 return template
1611
7c766e57
PW
1612 def edit_template(self, template_file):
1613 """Invoke the editor to let the user change the submission
1614 message. Return true if okay to continue with the submit."""
1615
1616 # if configured to skip the editing part, just submit
0d609032 1617 if gitConfigBool("git-p4.skipSubmitEdit"):
7c766e57
PW
1618 return True
1619
1620 # look at the modification time, to check later if the user saved
1621 # the file
1622 mtime = os.stat(template_file).st_mtime
1623
1624 # invoke the editor
f95ceaf0 1625 if os.environ.has_key("P4EDITOR") and (os.environ.get("P4EDITOR") != ""):
7c766e57
PW
1626 editor = os.environ.get("P4EDITOR")
1627 else:
1628 editor = read_pipe("git var GIT_EDITOR").strip()
2dade7a7 1629 system(["sh", "-c", ('%s "$@"' % editor), editor, template_file])
7c766e57
PW
1630
1631 # If the file was not saved, prompt to see if this patch should
1632 # be skipped. But skip this verification step if configured so.
0d609032 1633 if gitConfigBool("git-p4.skipSubmitEditCheck"):
7c766e57
PW
1634 return True
1635
d1652049
PW
1636 # modification time updated means user saved the file
1637 if os.stat(template_file).st_mtime > mtime:
1638 return True
1639
1640 while True:
1641 response = raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")
1642 if response == 'y':
1643 return True
1644 if response == 'n':
1645 return False
7c766e57 1646
df8a9e86 1647 def get_diff_description(self, editedFiles, filesToAdd, symlinks):
b4073bb3
MC
1648 # diff
1649 if os.environ.has_key("P4DIFF"):
1650 del(os.environ["P4DIFF"])
1651 diff = ""
1652 for editedFile in editedFiles:
1653 diff += p4_read_pipe(['diff', '-du',
1654 wildcard_encode(editedFile)])
1655
1656 # new file diff
1657 newdiff = ""
1658 for newFile in filesToAdd:
1659 newdiff += "==== new file ====\n"
1660 newdiff += "--- /dev/null\n"
1661 newdiff += "+++ %s\n" % newFile
df8a9e86
LD
1662
1663 is_link = os.path.islink(newFile)
1664 expect_link = newFile in symlinks
1665
1666 if is_link and expect_link:
1667 newdiff += "+%s\n" % os.readlink(newFile)
1668 else:
1669 f = open(newFile, "r")
1670 for line in f.readlines():
1671 newdiff += "+" + line
1672 f.close()
b4073bb3 1673
e2a892ee 1674 return (diff + newdiff).replace('\r\n', '\n')
b4073bb3 1675
7cb5cbef 1676 def applyCommit(self, id):
67b0fe2e
PW
1677 """Apply one commit, return True if it succeeded."""
1678
1679 print "Applying", read_pipe(["git", "show", "-s",
1680 "--format=format:%h %s", id])
ae901090 1681
848de9c3 1682 (p4User, gitEmail) = self.p4UserForCommit(id)
3ea2cfd4 1683
84cb0003 1684 diff = read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (self.diffOpts, id, id))
4f5cf76a 1685 filesToAdd = set()
a02b8bc4 1686 filesToChangeType = set()
4f5cf76a 1687 filesToDelete = set()
d336c158 1688 editedFiles = set()
b6ad6dcc 1689 pureRenameCopy = set()
df8a9e86 1690 symlinks = set()
c65b670e 1691 filesToChangeExecBit = {}
46c609e9 1692 all_files = list()
60df071c 1693
4f5cf76a 1694 for line in diff:
b43b0a3c
CP
1695 diff = parseDiffTreeEntry(line)
1696 modifier = diff['status']
1697 path = diff['src']
46c609e9
LD
1698 all_files.append(path)
1699
4f5cf76a 1700 if modifier == "M":
6de040df 1701 p4_edit(path)
c65b670e
CP
1702 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
1703 filesToChangeExecBit[path] = diff['dst_mode']
d336c158 1704 editedFiles.add(path)
4f5cf76a
SH
1705 elif modifier == "A":
1706 filesToAdd.add(path)
c65b670e 1707 filesToChangeExecBit[path] = diff['dst_mode']
4f5cf76a
SH
1708 if path in filesToDelete:
1709 filesToDelete.remove(path)
df8a9e86
LD
1710
1711 dst_mode = int(diff['dst_mode'], 8)
1712 if dst_mode == 0120000:
1713 symlinks.add(path)
1714
4f5cf76a
SH
1715 elif modifier == "D":
1716 filesToDelete.add(path)
1717 if path in filesToAdd:
1718 filesToAdd.remove(path)
4fddb41b
VA
1719 elif modifier == "C":
1720 src, dest = diff['src'], diff['dst']
6de040df 1721 p4_integrate(src, dest)
b6ad6dcc 1722 pureRenameCopy.add(dest)
4fddb41b 1723 if diff['src_sha1'] != diff['dst_sha1']:
6de040df 1724 p4_edit(dest)
b6ad6dcc 1725 pureRenameCopy.discard(dest)
4fddb41b 1726 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
6de040df 1727 p4_edit(dest)
b6ad6dcc 1728 pureRenameCopy.discard(dest)
4fddb41b 1729 filesToChangeExecBit[dest] = diff['dst_mode']
d20f0f8e
PW
1730 if self.isWindows:
1731 # turn off read-only attribute
1732 os.chmod(dest, stat.S_IWRITE)
4fddb41b
VA
1733 os.unlink(dest)
1734 editedFiles.add(dest)
d9a5f25b 1735 elif modifier == "R":
b43b0a3c 1736 src, dest = diff['src'], diff['dst']
8e9497c2
GG
1737 if self.p4HasMoveCommand:
1738 p4_edit(src) # src must be open before move
1739 p4_move(src, dest) # opens for (move/delete, move/add)
b6ad6dcc 1740 else:
8e9497c2
GG
1741 p4_integrate(src, dest)
1742 if diff['src_sha1'] != diff['dst_sha1']:
1743 p4_edit(dest)
1744 else:
1745 pureRenameCopy.add(dest)
c65b670e 1746 if isModeExecChanged(diff['src_mode'], diff['dst_mode']):
8e9497c2
GG
1747 if not self.p4HasMoveCommand:
1748 p4_edit(dest) # with move: already open, writable
c65b670e 1749 filesToChangeExecBit[dest] = diff['dst_mode']
8e9497c2 1750 if not self.p4HasMoveCommand:
d20f0f8e
PW
1751 if self.isWindows:
1752 os.chmod(dest, stat.S_IWRITE)
8e9497c2
GG
1753 os.unlink(dest)
1754 filesToDelete.add(src)
d9a5f25b 1755 editedFiles.add(dest)
a02b8bc4
RP
1756 elif modifier == "T":
1757 filesToChangeType.add(path)
4f5cf76a
SH
1758 else:
1759 die("unknown modifier %s for %s" % (modifier, path))
1760
749b668c 1761 diffcmd = "git diff-tree --full-index -p \"%s\"" % (id)
47a130b7 1762 patchcmd = diffcmd + " | git apply "
c1b296b9
SH
1763 tryPatchCmd = patchcmd + "--check -"
1764 applyPatchCmd = patchcmd + "--check --apply -"
60df071c 1765 patch_succeeded = True
51a2640a 1766
47a130b7 1767 if os.system(tryPatchCmd) != 0:
60df071c
LD
1768 fixed_rcs_keywords = False
1769 patch_succeeded = False
51a2640a 1770 print "Unfortunately applying the change failed!"
60df071c
LD
1771
1772 # Patch failed, maybe it's just RCS keyword woes. Look through
1773 # the patch to see if that's possible.
0d609032 1774 if gitConfigBool("git-p4.attemptRCSCleanup"):
60df071c
LD
1775 file = None
1776 pattern = None
1777 kwfiles = {}
1778 for file in editedFiles | filesToDelete:
1779 # did this file's delta contain RCS keywords?
1780 pattern = p4_keywords_regexp_for_file(file)
1781
1782 if pattern:
1783 # this file is a possibility...look for RCS keywords.
1784 regexp = re.compile(pattern, re.VERBOSE)
1785 for line in read_pipe_lines(["git", "diff", "%s^..%s" % (id, id), file]):
1786 if regexp.search(line):
1787 if verbose:
1788 print "got keyword match on %s in %s in %s" % (pattern, line, file)
1789 kwfiles[file] = pattern
1790 break
1791
1792 for file in kwfiles:
1793 if verbose:
1794 print "zapping %s with %s" % (line,pattern)
d20f0f8e
PW
1795 # File is being deleted, so not open in p4. Must
1796 # disable the read-only bit on windows.
1797 if self.isWindows and file not in editedFiles:
1798 os.chmod(file, stat.S_IWRITE)
60df071c
LD
1799 self.patchRCSKeywords(file, kwfiles[file])
1800 fixed_rcs_keywords = True
1801
1802 if fixed_rcs_keywords:
1803 print "Retrying the patch with RCS keywords cleaned up"
1804 if os.system(tryPatchCmd) == 0:
1805 patch_succeeded = True
1806
1807 if not patch_succeeded:
7e5dd9f2
PW
1808 for f in editedFiles:
1809 p4_revert(f)
7e5dd9f2 1810 return False
51a2640a 1811
55ac2ed6
PW
1812 #
1813 # Apply the patch for real, and do add/delete/+x handling.
1814 #
47a130b7 1815 system(applyPatchCmd)
4f5cf76a 1816
a02b8bc4
RP
1817 for f in filesToChangeType:
1818 p4_edit(f, "-t", "auto")
4f5cf76a 1819 for f in filesToAdd:
6de040df 1820 p4_add(f)
4f5cf76a 1821 for f in filesToDelete:
6de040df
LD
1822 p4_revert(f)
1823 p4_delete(f)
4f5cf76a 1824
c65b670e
CP
1825 # Set/clear executable bits
1826 for f in filesToChangeExecBit.keys():
1827 mode = filesToChangeExecBit[f]
1828 setP4ExecBit(f, mode)
1829
8cf422db
LD
1830 update_shelve = 0
1831 if len(self.update_shelve) > 0:
1832 update_shelve = self.update_shelve.pop(0)
1833 p4_reopen_in_change(update_shelve, all_files)
46c609e9 1834
55ac2ed6
PW
1835 #
1836 # Build p4 change description, starting with the contents
1837 # of the git commit message.
1838 #
0e36f2d7 1839 logMessage = extractLogMessageFromGitCommit(id)
0e36f2d7 1840 logMessage = logMessage.strip()
f19cb0a0 1841 (logMessage, jobs) = self.separate_jobs_from_description(logMessage)
4f5cf76a 1842
8cf422db 1843 template = self.prepareSubmitTemplate(update_shelve)
f19cb0a0 1844 submitTemplate = self.prepareLogMessage(template, logMessage, jobs)
ecdba36d 1845
c47178d4 1846 if self.preserveUser:
55ac2ed6 1847 submitTemplate += "\n######## Actual user %s, modified after commit\n" % p4User
c47178d4 1848
55ac2ed6
PW
1849 if self.checkAuthorship and not self.p4UserIsMe(p4User):
1850 submitTemplate += "######## git author %s does not match your p4 account.\n" % gitEmail
1851 submitTemplate += "######## Use option --preserve-user to modify authorship.\n"
1852 submitTemplate += "######## Variable git-p4.skipUserNameCheck hides this message.\n"
c47178d4 1853
55ac2ed6 1854 separatorLine = "######## everything below this line is just the diff #######\n"
b4073bb3
MC
1855 if not self.prepare_p4_only:
1856 submitTemplate += separatorLine
df8a9e86 1857 submitTemplate += self.get_diff_description(editedFiles, filesToAdd, symlinks)
55ac2ed6 1858
c47178d4 1859 (handle, fileName) = tempfile.mkstemp()
e2a892ee 1860 tmpFile = os.fdopen(handle, "w+b")
c47178d4
PW
1861 if self.isWindows:
1862 submitTemplate = submitTemplate.replace("\n", "\r\n")
b4073bb3 1863 tmpFile.write(submitTemplate)
c47178d4
PW
1864 tmpFile.close()
1865
728b7ad8
PW
1866 if self.prepare_p4_only:
1867 #
1868 # Leave the p4 tree prepared, and the submit template around
1869 # and let the user decide what to do next
1870 #
1871 print
1872 print "P4 workspace prepared for submission."
1873 print "To submit or revert, go to client workspace"
1874 print " " + self.clientPath
1875 print
1876 print "To submit, use \"p4 submit\" to write a new description,"
10de86d0 1877 print "or \"p4 submit -i <%s\" to use the one prepared by" \
728b7ad8
PW
1878 " \"git p4\"." % fileName
1879 print "You can delete the file \"%s\" when finished." % fileName
1880
1881 if self.preserveUser and p4User and not self.p4UserIsMe(p4User):
1882 print "To preserve change ownership by user %s, you must\n" \
1883 "do \"p4 change -f <change>\" after submitting and\n" \
1884 "edit the User field."
1885 if pureRenameCopy:
1886 print "After submitting, renamed files must be re-synced."
1887 print "Invoke \"p4 sync -f\" on each of these files:"
1888 for f in pureRenameCopy:
1889 print " " + f
1890
1891 print
1892 print "To revert the changes, use \"p4 revert ...\", and delete"
1893 print "the submit template file \"%s\"" % fileName
1894 if filesToAdd:
1895 print "Since the commit adds new files, they must be deleted:"
1896 for f in filesToAdd:
1897 print " " + f
1898 print
1899 return True
1900
55ac2ed6
PW
1901 #
1902 # Let the user edit the change description, then submit it.
1903 #
b7638fed 1904 submitted = False
cdc7e388 1905
b7638fed
GE
1906 try:
1907 if self.edit_template(fileName):
1908 # read the edited message and submit
1909 tmpFile = open(fileName, "rb")
1910 message = tmpFile.read()
1911 tmpFile.close()
1912 if self.isWindows:
1913 message = message.replace("\r\n", "\n")
1914 submitTemplate = message[:message.index(separatorLine)]
46c609e9 1915
8cf422db 1916 if update_shelve:
46c609e9
LD
1917 p4_write_pipe(['shelve', '-r', '-i'], submitTemplate)
1918 elif self.shelve:
b34fa577
VK
1919 p4_write_pipe(['shelve', '-i'], submitTemplate)
1920 else:
1921 p4_write_pipe(['submit', '-i'], submitTemplate)
1922 # The rename/copy happened by applying a patch that created a
1923 # new file. This leaves it writable, which confuses p4.
1924 for f in pureRenameCopy:
1925 p4_sync(f, "-f")
b7638fed
GE
1926
1927 if self.preserveUser:
1928 if p4User:
1929 # Get last changelist number. Cannot easily get it from
1930 # the submit command output as the output is
1931 # unmarshalled.
1932 changelist = self.lastP4Changelist()
1933 self.modifyChangelistUser(changelist, p4User)
1934
b7638fed
GE
1935 submitted = True
1936
1937 finally:
c47178d4 1938 # skip this patch
b34fa577
VK
1939 if not submitted or self.shelve:
1940 if self.shelve:
1941 print ("Reverting shelved files.")
1942 else:
1943 print ("Submission cancelled, undoing p4 changes.")
1944 for f in editedFiles | filesToDelete:
b7638fed
GE
1945 p4_revert(f)
1946 for f in filesToAdd:
1947 p4_revert(f)
1948 os.remove(f)
c47178d4
PW
1949
1950 os.remove(fileName)
b7638fed 1951 return submitted
4f5cf76a 1952
06804c76
LD
1953 # Export git tags as p4 labels. Create a p4 label and then tag
1954 # with that.
1955 def exportGitTags(self, gitTags):
c8942a22
LD
1956 validLabelRegexp = gitConfig("git-p4.labelExportRegexp")
1957 if len(validLabelRegexp) == 0:
1958 validLabelRegexp = defaultLabelRegexp
1959 m = re.compile(validLabelRegexp)
06804c76
LD
1960
1961 for name in gitTags:
1962
1963 if not m.match(name):
1964 if verbose:
05a3cec5 1965 print "tag %s does not match regexp %s" % (name, validLabelRegexp)
06804c76
LD
1966 continue
1967
1968 # Get the p4 commit this corresponds to
c8942a22
LD
1969 logMessage = extractLogMessageFromGitCommit(name)
1970 values = extractSettingsGitLog(logMessage)
06804c76 1971
c8942a22 1972 if not values.has_key('change'):
06804c76
LD
1973 # a tag pointing to something not sent to p4; ignore
1974 if verbose:
1975 print "git tag %s does not give a p4 commit" % name
1976 continue
c8942a22
LD
1977 else:
1978 changelist = values['change']
06804c76
LD
1979
1980 # Get the tag details.
1981 inHeader = True
1982 isAnnotated = False
1983 body = []
1984 for l in read_pipe_lines(["git", "cat-file", "-p", name]):
1985 l = l.strip()
1986 if inHeader:
1987 if re.match(r'tag\s+', l):
1988 isAnnotated = True
1989 elif re.match(r'\s*$', l):
1990 inHeader = False
1991 continue
1992 else:
1993 body.append(l)
1994
1995 if not isAnnotated:
1996 body = ["lightweight tag imported by git p4\n"]
1997
1998 # Create the label - use the same view as the client spec we are using
1999 clientSpec = getClientSpec()
2000
2001 labelTemplate = "Label: %s\n" % name
2002 labelTemplate += "Description:\n"
2003 for b in body:
2004 labelTemplate += "\t" + b + "\n"
2005 labelTemplate += "View:\n"
9d57c4a6
KS
2006 for depot_side in clientSpec.mappings:
2007 labelTemplate += "\t%s\n" % depot_side
06804c76 2008
ef739f08
PW
2009 if self.dry_run:
2010 print "Would create p4 label %s for tag" % name
728b7ad8
PW
2011 elif self.prepare_p4_only:
2012 print "Not creating p4 label %s for tag due to option" \
2013 " --prepare-p4-only" % name
ef739f08
PW
2014 else:
2015 p4_write_pipe(["label", "-i"], labelTemplate)
06804c76 2016
ef739f08
PW
2017 # Use the label
2018 p4_system(["tag", "-l", name] +
9d57c4a6 2019 ["%s@%s" % (depot_side, changelist) for depot_side in clientSpec.mappings])
06804c76 2020
ef739f08
PW
2021 if verbose:
2022 print "created p4 label for tag %s" % name
06804c76 2023
4f5cf76a 2024 def run(self, args):
c9b50e63
SH
2025 if len(args) == 0:
2026 self.master = currentGitBranch()
c9b50e63
SH
2027 elif len(args) == 1:
2028 self.master = args[0]
28755dba
PW
2029 if not branchExists(self.master):
2030 die("Branch %s does not exist" % self.master)
c9b50e63
SH
2031 else:
2032 return False
2033
8cf422db
LD
2034 for i in self.update_shelve:
2035 if i <= 0:
2036 sys.exit("invalid changelist %d" % i)
2037
00ad6e31
LD
2038 if self.master:
2039 allowSubmit = gitConfig("git-p4.allowSubmit")
2040 if len(allowSubmit) > 0 and not self.master in allowSubmit.split(","):
2041 die("%s is not in git-p4.allowSubmit" % self.master)
4c2d5d72 2042
27d2d811 2043 [upstream, settings] = findUpstreamBranchPoint()
ea99c3ae 2044 self.depotPath = settings['depot-paths'][0]
27d2d811
SH
2045 if len(self.origin) == 0:
2046 self.origin = upstream
a3fdd579 2047
8cf422db 2048 if len(self.update_shelve) > 0:
46c609e9
LD
2049 self.shelve = True
2050
3ea2cfd4
LD
2051 if self.preserveUser:
2052 if not self.canChangeChangelists():
2053 die("Cannot preserve user names without p4 super-user or admin permissions")
2054
6bbfd137
PW
2055 # if not set from the command line, try the config file
2056 if self.conflict_behavior is None:
2057 val = gitConfig("git-p4.conflict")
2058 if val:
2059 if val not in self.conflict_behavior_choices:
2060 die("Invalid value '%s' for config git-p4.conflict" % val)
2061 else:
2062 val = "ask"
2063 self.conflict_behavior = val
2064
a3fdd579
SH
2065 if self.verbose:
2066 print "Origin branch is " + self.origin
9512497b 2067
ea99c3ae 2068 if len(self.depotPath) == 0:
9512497b
SH
2069 print "Internal error: cannot locate perforce depot path from existing branches"
2070 sys.exit(128)
2071
543987bd 2072 self.useClientSpec = False
0d609032 2073 if gitConfigBool("git-p4.useclientspec"):
543987bd
PW
2074 self.useClientSpec = True
2075 if self.useClientSpec:
2076 self.clientSpecDirs = getClientSpec()
9512497b 2077
2e3a16b2 2078 # Check for the existence of P4 branches
cd884106
VA
2079 branchesDetected = (len(p4BranchesInGit().keys()) > 1)
2080
2081 if self.useClientSpec and not branchesDetected:
543987bd
PW
2082 # all files are relative to the client spec
2083 self.clientPath = getClientRoot()
2084 else:
2085 self.clientPath = p4Where(self.depotPath)
9512497b 2086
543987bd
PW
2087 if self.clientPath == "":
2088 die("Error: Cannot locate perforce checkout of %s in client view" % self.depotPath)
9512497b 2089
ea99c3ae 2090 print "Perforce checkout for depot path %s located at %s" % (self.depotPath, self.clientPath)
7944f142 2091 self.oldWorkingDirectory = os.getcwd()
c1b296b9 2092
0591cfa8 2093 # ensure the clientPath exists
8d7ec362 2094 new_client_dir = False
0591cfa8 2095 if not os.path.exists(self.clientPath):
8d7ec362 2096 new_client_dir = True
0591cfa8
GG
2097 os.makedirs(self.clientPath)
2098
bbd84863 2099 chdir(self.clientPath, is_client_path=True)
ef739f08
PW
2100 if self.dry_run:
2101 print "Would synchronize p4 checkout in %s" % self.clientPath
8d7ec362 2102 else:
ef739f08
PW
2103 print "Synchronizing p4 checkout..."
2104 if new_client_dir:
2105 # old one was destroyed, and maybe nobody told p4
2106 p4_sync("...", "-f")
2107 else:
2108 p4_sync("...")
4f5cf76a 2109 self.check()
4f5cf76a 2110
4c750c0d 2111 commits = []
00ad6e31 2112 if self.master:
89f32a92 2113 committish = self.master
00ad6e31 2114 else:
89f32a92 2115 committish = 'HEAD'
00ad6e31 2116
89f32a92 2117 for line in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self.origin, committish)]):
4c750c0d
SH
2118 commits.append(line.strip())
2119 commits.reverse()
4f5cf76a 2120
0d609032 2121 if self.preserveUser or gitConfigBool("git-p4.skipUserNameCheck"):
848de9c3
LD
2122 self.checkAuthorship = False
2123 else:
2124 self.checkAuthorship = True
2125
3ea2cfd4
LD
2126 if self.preserveUser:
2127 self.checkValidP4Users(commits)
2128
84cb0003
GG
2129 #
2130 # Build up a set of options to be passed to diff when
2131 # submitting each commit to p4.
2132 #
2133 if self.detectRenames:
2134 # command-line -M arg
2135 self.diffOpts = "-M"
2136 else:
2137 # If not explicitly set check the config variable
2138 detectRenames = gitConfig("git-p4.detectRenames")
2139
2140 if detectRenames.lower() == "false" or detectRenames == "":
2141 self.diffOpts = ""
2142 elif detectRenames.lower() == "true":
2143 self.diffOpts = "-M"
2144 else:
2145 self.diffOpts = "-M%s" % detectRenames
2146
2147 # no command-line arg for -C or --find-copies-harder, just
2148 # config variables
2149 detectCopies = gitConfig("git-p4.detectCopies")
2150 if detectCopies.lower() == "false" or detectCopies == "":
2151 pass
2152 elif detectCopies.lower() == "true":
2153 self.diffOpts += " -C"
2154 else:
2155 self.diffOpts += " -C%s" % detectCopies
2156
0d609032 2157 if gitConfigBool("git-p4.detectCopiesHarder"):
84cb0003
GG
2158 self.diffOpts += " --find-copies-harder"
2159
8cf422db
LD
2160 num_shelves = len(self.update_shelve)
2161 if num_shelves > 0 and num_shelves != len(commits):
2162 sys.exit("number of commits (%d) must match number of shelved changelist (%d)" %
2163 (len(commits), num_shelves))
2164
7e5dd9f2
PW
2165 #
2166 # Apply the commits, one at a time. On failure, ask if should
2167 # continue to try the rest of the patches, or quit.
2168 #
ef739f08
PW
2169 if self.dry_run:
2170 print "Would apply"
67b0fe2e 2171 applied = []
7e5dd9f2
PW
2172 last = len(commits) - 1
2173 for i, commit in enumerate(commits):
ef739f08
PW
2174 if self.dry_run:
2175 print " ", read_pipe(["git", "show", "-s",
2176 "--format=format:%h %s", commit])
2177 ok = True
2178 else:
2179 ok = self.applyCommit(commit)
67b0fe2e
PW
2180 if ok:
2181 applied.append(commit)
7e5dd9f2 2182 else:
728b7ad8
PW
2183 if self.prepare_p4_only and i < last:
2184 print "Processing only the first commit due to option" \
2185 " --prepare-p4-only"
2186 break
7e5dd9f2
PW
2187 if i < last:
2188 quit = False
2189 while True:
6bbfd137
PW
2190 # prompt for what to do, or use the option/variable
2191 if self.conflict_behavior == "ask":
2192 print "What do you want to do?"
2193 response = raw_input("[s]kip this commit but apply"
2194 " the rest, or [q]uit? ")
2195 if not response:
2196 continue
2197 elif self.conflict_behavior == "skip":
2198 response = "s"
2199 elif self.conflict_behavior == "quit":
2200 response = "q"
2201 else:
2202 die("Unknown conflict_behavior '%s'" %
2203 self.conflict_behavior)
2204
7e5dd9f2
PW
2205 if response[0] == "s":
2206 print "Skipping this commit, but applying the rest"
2207 break
2208 if response[0] == "q":
2209 print "Quitting"
2210 quit = True
2211 break
2212 if quit:
2213 break
4f5cf76a 2214
67b0fe2e 2215 chdir(self.oldWorkingDirectory)
b34fa577 2216 shelved_applied = "shelved" if self.shelve else "applied"
ef739f08
PW
2217 if self.dry_run:
2218 pass
728b7ad8
PW
2219 elif self.prepare_p4_only:
2220 pass
ef739f08 2221 elif len(commits) == len(applied):
b34fa577 2222 print ("All commits {0}!".format(shelved_applied))
14594f4b 2223
4c750c0d 2224 sync = P4Sync()
44e8d26c
PW
2225 if self.branch:
2226 sync.branch = self.branch
4c750c0d 2227 sync.run([])
14594f4b 2228
4c750c0d
SH
2229 rebase = P4Rebase()
2230 rebase.rebase()
4f5cf76a 2231
67b0fe2e
PW
2232 else:
2233 if len(applied) == 0:
b34fa577 2234 print ("No commits {0}.".format(shelved_applied))
67b0fe2e 2235 else:
b34fa577 2236 print ("{0} only the commits marked with '*':".format(shelved_applied.capitalize()))
67b0fe2e
PW
2237 for c in commits:
2238 if c in applied:
2239 star = "*"
2240 else:
2241 star = " "
2242 print star, read_pipe(["git", "show", "-s",
2243 "--format=format:%h %s", c])
2244 print "You will have to do 'git p4 sync' and rebase."
2245
0d609032 2246 if gitConfigBool("git-p4.exportLabels"):
06dcd152 2247 self.exportLabels = True
06804c76
LD
2248
2249 if self.exportLabels:
2250 p4Labels = getP4Labels(self.depotPath)
2251 gitTags = getGitTags()
2252
2253 missingGitTags = gitTags - p4Labels
2254 self.exportGitTags(missingGitTags)
2255
98e023de 2256 # exit with error unless everything applied perfectly
67b0fe2e
PW
2257 if len(commits) != len(applied):
2258 sys.exit(1)
2259
b984733c
SH
2260 return True
2261
ecb7cf98
PW
2262class View(object):
2263 """Represent a p4 view ("p4 help views"), and map files in a
2264 repo according to the view."""
2265
9d57c4a6 2266 def __init__(self, client_name):
ecb7cf98 2267 self.mappings = []
9d57c4a6
KS
2268 self.client_prefix = "//%s/" % client_name
2269 # cache results of "p4 where" to lookup client file locations
2270 self.client_spec_path_cache = {}
ecb7cf98
PW
2271
2272 def append(self, view_line):
2273 """Parse a view line, splitting it into depot and client
9d57c4a6
KS
2274 sides. Append to self.mappings, preserving order. This
2275 is only needed for tag creation."""
ecb7cf98
PW
2276
2277 # Split the view line into exactly two words. P4 enforces
2278 # structure on these lines that simplifies this quite a bit.
2279 #
2280 # Either or both words may be double-quoted.
2281 # Single quotes do not matter.
2282 # Double-quote marks cannot occur inside the words.
2283 # A + or - prefix is also inside the quotes.
2284 # There are no quotes unless they contain a space.
2285 # The line is already white-space stripped.
2286 # The two words are separated by a single space.
2287 #
2288 if view_line[0] == '"':
2289 # First word is double quoted. Find its end.
2290 close_quote_index = view_line.find('"', 1)
2291 if close_quote_index <= 0:
2292 die("No first-word closing quote found: %s" % view_line)
2293 depot_side = view_line[1:close_quote_index]
2294 # skip closing quote and space
2295 rhs_index = close_quote_index + 1 + 1
2296 else:
2297 space_index = view_line.find(" ")
2298 if space_index <= 0:
2299 die("No word-splitting space found: %s" % view_line)
2300 depot_side = view_line[0:space_index]
2301 rhs_index = space_index + 1
2302
ecb7cf98 2303 # prefix + means overlay on previous mapping
ecb7cf98 2304 if depot_side.startswith("+"):
ecb7cf98
PW
2305 depot_side = depot_side[1:]
2306
9d57c4a6 2307 # prefix - means exclude this path, leave out of mappings
ecb7cf98
PW
2308 exclude = False
2309 if depot_side.startswith("-"):
2310 exclude = True
2311 depot_side = depot_side[1:]
2312
9d57c4a6
KS
2313 if not exclude:
2314 self.mappings.append(depot_side)
ecb7cf98 2315
9d57c4a6
KS
2316 def convert_client_path(self, clientFile):
2317 # chop off //client/ part to make it relative
2318 if not clientFile.startswith(self.client_prefix):
2319 die("No prefix '%s' on clientFile '%s'" %
2320 (self.client_prefix, clientFile))
2321 return clientFile[len(self.client_prefix):]
ecb7cf98 2322
9d57c4a6
KS
2323 def update_client_spec_path_cache(self, files):
2324 """ Caching file paths by "p4 where" batch query """
ecb7cf98 2325
9d57c4a6
KS
2326 # List depot file paths exclude that already cached
2327 fileArgs = [f['path'] for f in files if f['path'] not in self.client_spec_path_cache]
ecb7cf98 2328
9d57c4a6
KS
2329 if len(fileArgs) == 0:
2330 return # All files in cache
ecb7cf98 2331
9d57c4a6
KS
2332 where_result = p4CmdList(["-x", "-", "where"], stdin=fileArgs)
2333 for res in where_result:
2334 if "code" in res and res["code"] == "error":
2335 # assume error is "... file(s) not in client view"
2336 continue
2337 if "clientFile" not in res:
20005443 2338 die("No clientFile in 'p4 where' output")
9d57c4a6
KS
2339 if "unmap" in res:
2340 # it will list all of them, but only one not unmap-ped
2341 continue
a0a50d87
LS
2342 if gitConfigBool("core.ignorecase"):
2343 res['depotFile'] = res['depotFile'].lower()
9d57c4a6 2344 self.client_spec_path_cache[res['depotFile']] = self.convert_client_path(res["clientFile"])
ecb7cf98 2345
9d57c4a6
KS
2346 # not found files or unmap files set to ""
2347 for depotFile in fileArgs:
a0a50d87
LS
2348 if gitConfigBool("core.ignorecase"):
2349 depotFile = depotFile.lower()
9d57c4a6
KS
2350 if depotFile not in self.client_spec_path_cache:
2351 self.client_spec_path_cache[depotFile] = ""
ecb7cf98 2352
9d57c4a6
KS
2353 def map_in_client(self, depot_path):
2354 """Return the relative location in the client where this
2355 depot file should live. Returns "" if the file should
2356 not be mapped in the client."""
ecb7cf98 2357
a0a50d87
LS
2358 if gitConfigBool("core.ignorecase"):
2359 depot_path = depot_path.lower()
2360
9d57c4a6
KS
2361 if depot_path in self.client_spec_path_cache:
2362 return self.client_spec_path_cache[depot_path]
2363
2364 die( "Error: %s is not found in client spec path" % depot_path )
2365 return ""
ecb7cf98 2366
3ea2cfd4 2367class P4Sync(Command, P4UserMap):
56c09345
PW
2368 delete_actions = ( "delete", "move/delete", "purge" )
2369
b984733c
SH
2370 def __init__(self):
2371 Command.__init__(self)
3ea2cfd4 2372 P4UserMap.__init__(self)
b984733c
SH
2373 self.options = [
2374 optparse.make_option("--branch", dest="branch"),
2375 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),
2376 optparse.make_option("--changesfile", dest="changesFile"),
2377 optparse.make_option("--silent", dest="silent", action="store_true"),
ef48f909 2378 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),
06804c76 2379 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),
d2c6dd30
HWN
2380 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",
2381 help="Import into refs/heads/ , not refs/remotes"),
96b2d54a
LS
2382 optparse.make_option("--max-changes", dest="maxChanges",
2383 help="Maximum number of changes to import"),
2384 optparse.make_option("--changes-block-size", dest="changes_block_size", type="int",
2385 help="Internal block size to use when iteratively calling p4 changes"),
86dff6b6 2386 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',
3a70cdfa
TAL
2387 help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),
2388 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',
51334bb0
LD
2389 help="Only sync files that are included in the Perforce Client Spec"),
2390 optparse.make_option("-/", dest="cloneExclude",
2391 action="append", type="string",
2392 help="exclude depot path"),
b984733c
SH
2393 ]
2394 self.description = """Imports from Perforce into a git repository.\n
2395 example:
2396 //depot/my/project/ -- to import the current head
2397 //depot/my/project/@all -- to import everything
2398 //depot/my/project/@1,6 -- to import only from revision 1 to 6
2399
2400 (a ... is not needed in the path p4 specification, it's added implicitly)"""
2401
2402 self.usage += " //depot/path[@revRange]"
b984733c 2403 self.silent = False
1d7367dc
RG
2404 self.createdBranches = set()
2405 self.committedChanges = set()
569d1bd4 2406 self.branch = ""
b984733c 2407 self.detectBranches = False
cb53e1f8 2408 self.detectLabels = False
06804c76 2409 self.importLabels = False
b984733c 2410 self.changesFile = ""
01265103 2411 self.syncWithOrigin = True
a028a98e 2412 self.importIntoRemotes = True
01a9c9c5 2413 self.maxChanges = ""
1051ef00 2414 self.changes_block_size = None
8b41a97f 2415 self.keepRepoPath = False
6326aa58 2416 self.depotPaths = None
3c699645 2417 self.p4BranchesInGit = []
354081d5 2418 self.cloneExclude = []
3a70cdfa 2419 self.useClientSpec = False
a93d33ee 2420 self.useClientSpec_from_options = False
ecb7cf98 2421 self.clientSpecDirs = None
fed23693 2422 self.tempBranches = []
d604176d 2423 self.tempBranchLocation = "refs/git-p4-tmp"
a5db4b12 2424 self.largeFileSystem = None
123f6317 2425 self.suppress_meta_comment = False
a5db4b12
LS
2426
2427 if gitConfig('git-p4.largeFileSystem'):
2428 largeFileSystemConstructor = globals()[gitConfig('git-p4.largeFileSystem')]
2429 self.largeFileSystem = largeFileSystemConstructor(
2430 lambda git_mode, relPath, contents: self.writeToGitStream(git_mode, relPath, contents)
2431 )
b984733c 2432
01265103
SH
2433 if gitConfig("git-p4.syncFromOrigin") == "false":
2434 self.syncWithOrigin = False
2435
123f6317
LD
2436 self.depotPaths = []
2437 self.changeRange = ""
2438 self.previousDepotPaths = []
2439 self.hasOrigin = False
2440
2441 # map from branch depot path to parent branch
2442 self.knownBranches = {}
2443 self.initialParents = {}
2444
2445 self.tz = "%+03d%02d" % (- time.timezone / 3600, ((- time.timezone % 3600) / 60))
2446 self.labels = {}
2447
fed23693
VA
2448 # Force a checkpoint in fast-import and wait for it to finish
2449 def checkpoint(self):
2450 self.gitStream.write("checkpoint\n\n")
2451 self.gitStream.write("progress checkpoint\n\n")
2452 out = self.gitOutput.readline()
2453 if self.verbose:
2454 print "checkpoint finished: " + out
2455
123f6317
LD
2456 def cmp_shelved(self, path, filerev, revision):
2457 """ Determine if a path at revision #filerev is the same as the file
2458 at revision @revision for a shelved changelist. If they don't match,
2459 unshelving won't be safe (we will get other changes mixed in).
2460
2461 This is comparing the revision that the shelved changelist is *based* on, not
2462 the shelved changelist itself.
2463 """
2464 ret = p4Cmd(["diff2", "{0}#{1}".format(path, filerev), "{0}@{1}".format(path, revision)])
2465 if verbose:
2466 print("p4 diff2 path %s filerev %s revision %s => %s" % (path, filerev, revision, ret))
2467 return ret["status"] == "identical"
2468
2469 def extractFilesFromCommit(self, commit, shelved=False, shelved_cl = 0, origin_revision = 0):
354081d5
TT
2470 self.cloneExclude = [re.sub(r"\.\.\.$", "", path)
2471 for path in self.cloneExclude]
b984733c
SH
2472 files = []
2473 fnum = 0
2474 while commit.has_key("depotFile%s" % fnum):
2475 path = commit["depotFile%s" % fnum]
6326aa58 2476
354081d5 2477 if [p for p in self.cloneExclude
d53de8b9 2478 if p4PathStartsWith(path, p)]:
354081d5
TT
2479 found = False
2480 else:
2481 found = [p for p in self.depotPaths
d53de8b9 2482 if p4PathStartsWith(path, p)]
6326aa58 2483 if not found:
b984733c
SH
2484 fnum = fnum + 1
2485 continue
2486
2487 file = {}
2488 file["path"] = path
2489 file["rev"] = commit["rev%s" % fnum]
2490 file["action"] = commit["action%s" % fnum]
2491 file["type"] = commit["type%s" % fnum]
123f6317
LD
2492 if shelved:
2493 file["shelved_cl"] = int(shelved_cl)
2494
2495 # For shelved changelists, check that the revision of each file that the
2496 # shelve was based on matches the revision that we are using for the
2497 # starting point for git-fast-import (self.initialParent). Otherwise
2498 # the resulting diff will contain deltas from multiple commits.
2499
2500 if file["action"] != "add" and \
2501 not self.cmp_shelved(path, file["rev"], origin_revision):
2502 sys.exit("change {0} not based on {1} for {2}, cannot unshelve".format(
2503 commit["change"], self.initialParent, path))
2504
b984733c
SH
2505 files.append(file)
2506 fnum = fnum + 1
2507 return files
2508
26e6a27d
JD
2509 def extractJobsFromCommit(self, commit):
2510 jobs = []
2511 jnum = 0
2512 while commit.has_key("job%s" % jnum):
2513 job = commit["job%s" % jnum]
2514 jobs.append(job)
2515 jnum = jnum + 1
2516 return jobs
2517
6326aa58 2518 def stripRepoPath(self, path, prefixes):
21ef5df4
PW
2519 """When streaming files, this is called to map a p4 depot path
2520 to where it should go in git. The prefixes are either
2521 self.depotPaths, or self.branchPrefixes in the case of
2522 branch detection."""
2523
3952710b 2524 if self.useClientSpec:
21ef5df4
PW
2525 # branch detection moves files up a level (the branch name)
2526 # from what client spec interpretation gives
0d1696ef 2527 path = self.clientSpecDirs.map_in_client(path)
21ef5df4
PW
2528 if self.detectBranches:
2529 for b in self.knownBranches:
2530 if path.startswith(b + "/"):
2531 path = path[len(b)+1:]
2532
2533 elif self.keepRepoPath:
2534 # Preserve everything in relative path name except leading
2535 # //depot/; just look at first prefix as they all should
2536 # be in the same depot.
2537 depot = re.sub("^(//[^/]+/).*", r'\1', prefixes[0])
2538 if p4PathStartsWith(path, depot):
2539 path = path[len(depot):]
3952710b 2540
0d1696ef 2541 else:
0d1696ef
PW
2542 for p in prefixes:
2543 if p4PathStartsWith(path, p):
2544 path = path[len(p):]
21ef5df4 2545 break
8b41a97f 2546
0d1696ef 2547 path = wildcard_decode(path)
6326aa58 2548 return path
6754a299 2549
71b112d4 2550 def splitFilesIntoBranches(self, commit):
21ef5df4
PW
2551 """Look at each depotFile in the commit to figure out to what
2552 branch it belongs."""
2553
9d57c4a6
KS
2554 if self.clientSpecDirs:
2555 files = self.extractFilesFromCommit(commit)
2556 self.clientSpecDirs.update_client_spec_path_cache(files)
2557
d5904674 2558 branches = {}
71b112d4
SH
2559 fnum = 0
2560 while commit.has_key("depotFile%s" % fnum):
2561 path = commit["depotFile%s" % fnum]
6326aa58 2562 found = [p for p in self.depotPaths
d53de8b9 2563 if p4PathStartsWith(path, p)]
6326aa58 2564 if not found:
71b112d4
SH
2565 fnum = fnum + 1
2566 continue
2567
2568 file = {}
2569 file["path"] = path
2570 file["rev"] = commit["rev%s" % fnum]
2571 file["action"] = commit["action%s" % fnum]
2572 file["type"] = commit["type%s" % fnum]
2573 fnum = fnum + 1
2574
21ef5df4
PW
2575 # start with the full relative path where this file would
2576 # go in a p4 client
2577 if self.useClientSpec:
2578 relPath = self.clientSpecDirs.map_in_client(path)
2579 else:
2580 relPath = self.stripRepoPath(path, self.depotPaths)
b984733c 2581
4b97ffb1 2582 for branch in self.knownBranches.keys():
21ef5df4
PW
2583 # add a trailing slash so that a commit into qt/4.2foo
2584 # doesn't end up in qt/4.2, e.g.
6754a299 2585 if relPath.startswith(branch + "/"):
d5904674
SH
2586 if branch not in branches:
2587 branches[branch] = []
71b112d4 2588 branches[branch].append(file)
6555b2cc 2589 break
b984733c
SH
2590
2591 return branches
2592
a5db4b12
LS
2593 def writeToGitStream(self, gitMode, relPath, contents):
2594 self.gitStream.write('M %s inline %s\n' % (gitMode, relPath))
2595 self.gitStream.write('data %d\n' % sum(len(d) for d in contents))
2596 for d in contents:
2597 self.gitStream.write(d)
2598 self.gitStream.write('\n')
2599
a8b05162
LS
2600 def encodeWithUTF8(self, path):
2601 try:
2602 path.decode('ascii')
2603 except:
2604 encoding = 'utf8'
2605 if gitConfig('git-p4.pathEncoding'):
2606 encoding = gitConfig('git-p4.pathEncoding')
2607 path = path.decode(encoding, 'replace').encode('utf8', 'replace')
2608 if self.verbose:
2609 print 'Path with non-ASCII characters detected. Used %s to encode: %s ' % (encoding, path)
2610 return path
2611
b932705b
LD
2612 # output one file from the P4 stream
2613 # - helper for streamP4Files
2614
2615 def streamOneP4File(self, file, contents):
b932705b 2616 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)
a8b05162 2617 relPath = self.encodeWithUTF8(relPath)
b932705b 2618 if verbose:
d2176a50
LS
2619 size = int(self.stream_file['fileSize'])
2620 sys.stdout.write('\r%s --> %s (%i MB)\n' % (file['depotFile'], relPath, size/1024/1024))
2621 sys.stdout.flush()
b932705b 2622
9cffb8c8
PW
2623 (type_base, type_mods) = split_p4_type(file["type"])
2624
2625 git_mode = "100644"
2626 if "x" in type_mods:
2627 git_mode = "100755"
2628 if type_base == "symlink":
2629 git_mode = "120000"
1292df11
AJ
2630 # p4 print on a symlink sometimes contains "target\n";
2631 # if it does, remove the newline
b39c3612 2632 data = ''.join(contents)
40f846c3
PW
2633 if not data:
2634 # Some version of p4 allowed creating a symlink that pointed
2635 # to nothing. This causes p4 errors when checking out such
2636 # a change, and errors here too. Work around it by ignoring
2637 # the bad symlink; hopefully a future change fixes it.
2638 print "\nIgnoring empty symlink in %s" % file['depotFile']
2639 return
2640 elif data[-1] == '\n':
1292df11
AJ
2641 contents = [data[:-1]]
2642 else:
2643 contents = [data]
b932705b 2644
9cffb8c8 2645 if type_base == "utf16":
55aa5714
PW
2646 # p4 delivers different text in the python output to -G
2647 # than it does when using "print -o", or normal p4 client
2648 # operations. utf16 is converted to ascii or utf8, perhaps.
2649 # But ascii text saved as -t utf16 is completely mangled.
2650 # Invoke print -o to get the real contents.
7f0e5962
PW
2651 #
2652 # On windows, the newlines will always be mangled by print, so put
2653 # them back too. This is not needed to the cygwin windows version,
2654 # just the native "NT" type.
2655 #
1f5f3907
LS
2656 try:
2657 text = p4_read_pipe(['print', '-q', '-o', '-', '%s@%s' % (file['depotFile'], file['change'])])
2658 except Exception as e:
2659 if 'Translation of file content failed' in str(e):
2660 type_base = 'binary'
2661 else:
2662 raise e
2663 else:
2664 if p4_version_string().find('/NT') >= 0:
2665 text = text.replace('\r\n', '\n')
2666 contents = [ text ]
55aa5714 2667
9f7ef0ea
PW
2668 if type_base == "apple":
2669 # Apple filetype files will be streamed as a concatenation of
2670 # its appledouble header and the contents. This is useless
2671 # on both macs and non-macs. If using "print -q -o xx", it
2672 # will create "xx" with the data, and "%xx" with the header.
2673 # This is also not very useful.
2674 #
2675 # Ideally, someday, this script can learn how to generate
2676 # appledouble files directly and import those to git, but
2677 # non-mac machines can never find a use for apple filetype.
2678 print "\nIgnoring apple filetype file %s" % file['depotFile']
2679 return
2680
55aa5714
PW
2681 # Note that we do not try to de-mangle keywords on utf16 files,
2682 # even though in theory somebody may want that.
60df071c
LD
2683 pattern = p4_keywords_regexp_for_type(type_base, type_mods)
2684 if pattern:
2685 regexp = re.compile(pattern, re.VERBOSE)
2686 text = ''.join(contents)
2687 text = regexp.sub(r'$\1$', text)
2688 contents = [ text ]
b932705b 2689
a5db4b12
LS
2690 if self.largeFileSystem:
2691 (git_mode, contents) = self.largeFileSystem.processContent(git_mode, relPath, contents)
b932705b 2692
a5db4b12 2693 self.writeToGitStream(git_mode, relPath, contents)
b932705b
LD
2694
2695 def streamOneP4Deletion(self, file):
2696 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)
a8b05162 2697 relPath = self.encodeWithUTF8(relPath)
b932705b 2698 if verbose:
d2176a50
LS
2699 sys.stdout.write("delete %s\n" % relPath)
2700 sys.stdout.flush()
b932705b
LD
2701 self.gitStream.write("D %s\n" % relPath)
2702
a5db4b12
LS
2703 if self.largeFileSystem and self.largeFileSystem.isLargeFile(relPath):
2704 self.largeFileSystem.removeLargeFile(relPath)
2705
b932705b
LD
2706 # handle another chunk of streaming data
2707 def streamP4FilesCb(self, marshalled):
2708
78189bea
PW
2709 # catch p4 errors and complain
2710 err = None
2711 if "code" in marshalled:
2712 if marshalled["code"] == "error":
2713 if "data" in marshalled:
2714 err = marshalled["data"].rstrip()
4d25dc44
LS
2715
2716 if not err and 'fileSize' in self.stream_file:
2717 required_bytes = int((4 * int(self.stream_file["fileSize"])) - calcDiskFree())
2718 if required_bytes > 0:
2719 err = 'Not enough space left on %s! Free at least %i MB.' % (
2720 os.getcwd(), required_bytes/1024/1024
2721 )
2722
78189bea
PW
2723 if err:
2724 f = None
2725 if self.stream_have_file_info:
2726 if "depotFile" in self.stream_file:
2727 f = self.stream_file["depotFile"]
2728 # force a failure in fast-import, else an empty
2729 # commit will be made
2730 self.gitStream.write("\n")
2731 self.gitStream.write("die-now\n")
2732 self.gitStream.close()
2733 # ignore errors, but make sure it exits first
2734 self.importProcess.wait()
2735 if f:
2736 die("Error from p4 print for %s: %s" % (f, err))
2737 else:
2738 die("Error from p4 print: %s" % err)
2739
c3f6163b
AG
2740 if marshalled.has_key('depotFile') and self.stream_have_file_info:
2741 # start of a new file - output the old one first
2742 self.streamOneP4File(self.stream_file, self.stream_contents)
2743 self.stream_file = {}
2744 self.stream_contents = []
2745 self.stream_have_file_info = False
b932705b 2746
c3f6163b
AG
2747 # pick up the new file information... for the
2748 # 'data' field we need to append to our array
2749 for k in marshalled.keys():
2750 if k == 'data':
d2176a50
LS
2751 if 'streamContentSize' not in self.stream_file:
2752 self.stream_file['streamContentSize'] = 0
2753 self.stream_file['streamContentSize'] += len(marshalled['data'])
c3f6163b
AG
2754 self.stream_contents.append(marshalled['data'])
2755 else:
2756 self.stream_file[k] = marshalled[k]
b932705b 2757
d2176a50
LS
2758 if (verbose and
2759 'streamContentSize' in self.stream_file and
2760 'fileSize' in self.stream_file and
2761 'depotFile' in self.stream_file):
2762 size = int(self.stream_file["fileSize"])
2763 if size > 0:
2764 progress = 100*self.stream_file['streamContentSize']/size
2765 sys.stdout.write('\r%s %d%% (%i MB)' % (self.stream_file['depotFile'], progress, int(size/1024/1024)))
2766 sys.stdout.flush()
2767
c3f6163b 2768 self.stream_have_file_info = True
b932705b
LD
2769
2770 # Stream directly from "p4 files" into "git fast-import"
2771 def streamP4Files(self, files):
30b5940b
SH
2772 filesForCommit = []
2773 filesToRead = []
b932705b 2774 filesToDelete = []
30b5940b 2775
3a70cdfa 2776 for f in files:
ecb7cf98
PW
2777 filesForCommit.append(f)
2778 if f['action'] in self.delete_actions:
2779 filesToDelete.append(f)
2780 else:
2781 filesToRead.append(f)
6a49f8e2 2782
b932705b
LD
2783 # deleted files...
2784 for f in filesToDelete:
2785 self.streamOneP4Deletion(f)
1b9a4684 2786
b932705b
LD
2787 if len(filesToRead) > 0:
2788 self.stream_file = {}
2789 self.stream_contents = []
2790 self.stream_have_file_info = False
8ff45f2a 2791
c3f6163b
AG
2792 # curry self argument
2793 def streamP4FilesCbSelf(entry):
2794 self.streamP4FilesCb(entry)
6a49f8e2 2795
123f6317
LD
2796 fileArgs = []
2797 for f in filesToRead:
2798 if 'shelved_cl' in f:
2799 # Handle shelved CLs using the "p4 print file@=N" syntax to print
2800 # the contents
2801 fileArg = '%s@=%d' % (f['path'], f['shelved_cl'])
2802 else:
2803 fileArg = '%s#%s' % (f['path'], f['rev'])
2804
2805 fileArgs.append(fileArg)
6de040df
LD
2806
2807 p4CmdList(["-x", "-", "print"],
2808 stdin=fileArgs,
2809 cb=streamP4FilesCbSelf)
30b5940b 2810
b932705b
LD
2811 # do the last chunk
2812 if self.stream_file.has_key('depotFile'):
2813 self.streamOneP4File(self.stream_file, self.stream_contents)
6a49f8e2 2814
affb474f
LD
2815 def make_email(self, userid):
2816 if userid in self.users:
2817 return self.users[userid]
2818 else:
2819 return "%s <a@b>" % userid
2820
06804c76 2821 def streamTag(self, gitStream, labelName, labelDetails, commit, epoch):
b43702ac
LD
2822 """ Stream a p4 tag.
2823 commit is either a git commit, or a fast-import mark, ":<p4commit>"
2824 """
2825
06804c76
LD
2826 if verbose:
2827 print "writing tag %s for commit %s" % (labelName, commit)
2828 gitStream.write("tag %s\n" % labelName)
2829 gitStream.write("from %s\n" % commit)
2830
2831 if labelDetails.has_key('Owner'):
2832 owner = labelDetails["Owner"]
2833 else:
2834 owner = None
2835
2836 # Try to use the owner of the p4 label, or failing that,
2837 # the current p4 user id.
2838 if owner:
2839 email = self.make_email(owner)
2840 else:
2841 email = self.make_email(self.p4UserId())
2842 tagger = "%s %s %s" % (email, epoch, self.tz)
2843
2844 gitStream.write("tagger %s\n" % tagger)
2845
2846 print "labelDetails=",labelDetails
2847 if labelDetails.has_key('Description'):
2848 description = labelDetails['Description']
2849 else:
2850 description = 'Label from git p4'
2851
2852 gitStream.write("data %d\n" % len(description))
2853 gitStream.write(description)
2854 gitStream.write("\n")
2855
4ae048e6
LS
2856 def inClientSpec(self, path):
2857 if not self.clientSpecDirs:
2858 return True
2859 inClientSpec = self.clientSpecDirs.map_in_client(path)
2860 if not inClientSpec and self.verbose:
2861 print('Ignoring file outside of client spec: {0}'.format(path))
2862 return inClientSpec
2863
2864 def hasBranchPrefix(self, path):
2865 if not self.branchPrefixes:
2866 return True
2867 hasPrefix = [p for p in self.branchPrefixes
2868 if p4PathStartsWith(path, p)]
09667d01 2869 if not hasPrefix and self.verbose:
4ae048e6
LS
2870 print('Ignoring file outside of prefix: {0}'.format(path))
2871 return hasPrefix
2872
e63231e5 2873 def commit(self, details, files, branch, parent = ""):
b984733c
SH
2874 epoch = details["time"]
2875 author = details["user"]
26e6a27d 2876 jobs = self.extractJobsFromCommit(details)
b984733c 2877
4b97ffb1 2878 if self.verbose:
4ae048e6 2879 print('commit into {0}'.format(branch))
96e07dd2 2880
9d57c4a6
KS
2881 if self.clientSpecDirs:
2882 self.clientSpecDirs.update_client_spec_path_cache(files)
2883
4ae048e6
LS
2884 files = [f for f in files
2885 if self.inClientSpec(f['path']) and self.hasBranchPrefix(f['path'])]
2886
2887 if not files and not gitConfigBool('git-p4.keepEmptyCommits'):
2888 print('Ignoring revision {0} as it would produce an empty commit.'
2889 .format(details['change']))
2890 return
2891
b984733c 2892 self.gitStream.write("commit %s\n" % branch)
b43702ac 2893 self.gitStream.write("mark :%s\n" % details["change"])
b984733c
SH
2894 self.committedChanges.add(int(details["change"]))
2895 committer = ""
b607e71e
SH
2896 if author not in self.users:
2897 self.getUserMapFromPerforceServer()
affb474f 2898 committer = "%s %s %s" % (self.make_email(author), epoch, self.tz)
b984733c
SH
2899
2900 self.gitStream.write("committer %s\n" % committer)
2901
2902 self.gitStream.write("data <<EOT\n")
2903 self.gitStream.write(details["desc"])
26e6a27d
JD
2904 if len(jobs) > 0:
2905 self.gitStream.write("\nJobs: %s" % (' '.join(jobs)))
123f6317
LD
2906
2907 if not self.suppress_meta_comment:
2908 self.gitStream.write("\n[git-p4: depot-paths = \"%s\": change = %s" %
2909 (','.join(self.branchPrefixes), details["change"]))
2910 if len(details['options']) > 0:
2911 self.gitStream.write(": options = %s" % details['options'])
2912 self.gitStream.write("]\n")
2913
2914 self.gitStream.write("EOT\n\n")
b984733c
SH
2915
2916 if len(parent) > 0:
4b97ffb1
SH
2917 if self.verbose:
2918 print "parent %s" % parent
b984733c
SH
2919 self.gitStream.write("from %s\n" % parent)
2920
4ae048e6 2921 self.streamP4Files(files)
b984733c
SH
2922 self.gitStream.write("\n")
2923
1f4ba1cb
SH
2924 change = int(details["change"])
2925
9bda3a85 2926 if self.labels.has_key(change):
1f4ba1cb
SH
2927 label = self.labels[change]
2928 labelDetails = label[0]
2929 labelRevisions = label[1]
71b112d4
SH
2930 if self.verbose:
2931 print "Change %s is labelled %s" % (change, labelDetails)
1f4ba1cb 2932
6de040df 2933 files = p4CmdList(["files"] + ["%s...@%s" % (p, change)
e63231e5 2934 for p in self.branchPrefixes])
1f4ba1cb
SH
2935
2936 if len(files) == len(labelRevisions):
2937
2938 cleanedFiles = {}
2939 for info in files:
56c09345 2940 if info["action"] in self.delete_actions:
1f4ba1cb
SH
2941 continue
2942 cleanedFiles[info["depotFile"]] = info["rev"]
2943
2944 if cleanedFiles == labelRevisions:
06804c76 2945 self.streamTag(self.gitStream, 'tag_%s' % labelDetails['label'], labelDetails, branch, epoch)
1f4ba1cb
SH
2946
2947 else:
a46668fa 2948 if not self.silent:
cebdf5af
HWN
2949 print ("Tag %s does not match with change %s: files do not match."
2950 % (labelDetails["label"], change))
1f4ba1cb
SH
2951
2952 else:
a46668fa 2953 if not self.silent:
cebdf5af
HWN
2954 print ("Tag %s does not match with change %s: file count is different."
2955 % (labelDetails["label"], change))
b984733c 2956
06804c76 2957 # Build a dictionary of changelists and labels, for "detect-labels" option.
1f4ba1cb
SH
2958 def getLabels(self):
2959 self.labels = {}
2960
52a4880b 2961 l = p4CmdList(["labels"] + ["%s..." % p for p in self.depotPaths])
10c3211b 2962 if len(l) > 0 and not self.silent:
183f8436 2963 print "Finding files belonging to labels in %s" % `self.depotPaths`
01ce1fe9
SH
2964
2965 for output in l:
1f4ba1cb
SH
2966 label = output["label"]
2967 revisions = {}
2968 newestChange = 0
71b112d4
SH
2969 if self.verbose:
2970 print "Querying files for label %s" % label
6de040df
LD
2971 for file in p4CmdList(["files"] +
2972 ["%s...@%s" % (p, label)
2973 for p in self.depotPaths]):
1f4ba1cb
SH
2974 revisions[file["depotFile"]] = file["rev"]
2975 change = int(file["change"])
2976 if change > newestChange:
2977 newestChange = change
2978
9bda3a85
SH
2979 self.labels[newestChange] = [output, revisions]
2980
2981 if self.verbose:
2982 print "Label changes: %s" % self.labels.keys()
1f4ba1cb 2983
06804c76
LD
2984 # Import p4 labels as git tags. A direct mapping does not
2985 # exist, so assume that if all the files are at the same revision
2986 # then we can use that, or it's something more complicated we should
2987 # just ignore.
2988 def importP4Labels(self, stream, p4Labels):
2989 if verbose:
2990 print "import p4 labels: " + ' '.join(p4Labels)
2991
2992 ignoredP4Labels = gitConfigList("git-p4.ignoredP4Labels")
c8942a22 2993 validLabelRegexp = gitConfig("git-p4.labelImportRegexp")
06804c76
LD
2994 if len(validLabelRegexp) == 0:
2995 validLabelRegexp = defaultLabelRegexp
2996 m = re.compile(validLabelRegexp)
2997
2998 for name in p4Labels:
2999 commitFound = False
3000
3001 if not m.match(name):
3002 if verbose:
3003 print "label %s does not match regexp %s" % (name,validLabelRegexp)
3004 continue
3005
3006 if name in ignoredP4Labels:
3007 continue
3008
3009 labelDetails = p4CmdList(['label', "-o", name])[0]
3010
3011 # get the most recent changelist for each file in this label
3012 change = p4Cmd(["changes", "-m", "1"] + ["%s...@%s" % (p, name)
3013 for p in self.depotPaths])
3014
3015 if change.has_key('change'):
3016 # find the corresponding git commit; take the oldest commit
3017 changelist = int(change['change'])
b43702ac
LD
3018 if changelist in self.committedChanges:
3019 gitCommit = ":%d" % changelist # use a fast-import mark
06804c76 3020 commitFound = True
b43702ac
LD
3021 else:
3022 gitCommit = read_pipe(["git", "rev-list", "--max-count=1",
3023 "--reverse", ":/\[git-p4:.*change = %d\]" % changelist], ignore_error=True)
3024 if len(gitCommit) == 0:
3025 print "importing label %s: could not find git commit for changelist %d" % (name, changelist)
3026 else:
3027 commitFound = True
3028 gitCommit = gitCommit.strip()
3029
3030 if commitFound:
06804c76
LD
3031 # Convert from p4 time format
3032 try:
3033 tmwhen = time.strptime(labelDetails['Update'], "%Y/%m/%d %H:%M:%S")
3034 except ValueError:
a4e9054c 3035 print "Could not convert label time %s" % labelDetails['Update']
06804c76
LD
3036 tmwhen = 1
3037
3038 when = int(time.mktime(tmwhen))
3039 self.streamTag(stream, name, labelDetails, gitCommit, when)
3040 if verbose:
3041 print "p4 label %s mapped to git commit %s" % (name, gitCommit)
3042 else:
3043 if verbose:
3044 print "Label %s has no changelists - possibly deleted?" % name
3045
3046 if not commitFound:
3047 # We can't import this label; don't try again as it will get very
3048 # expensive repeatedly fetching all the files for labels that will
3049 # never be imported. If the label is moved in the future, the
3050 # ignore will need to be removed manually.
3051 system(["git", "config", "--add", "git-p4.ignoredP4Labels", name])
3052
86dff6b6
HWN
3053 def guessProjectName(self):
3054 for p in self.depotPaths:
6e5295c4
SH
3055 if p.endswith("/"):
3056 p = p[:-1]
3057 p = p[p.strip().rfind("/") + 1:]
3058 if not p.endswith("/"):
3059 p += "/"
3060 return p
86dff6b6 3061
4b97ffb1 3062 def getBranchMapping(self):
6555b2cc
SH
3063 lostAndFoundBranches = set()
3064
8ace74c0
VA
3065 user = gitConfig("git-p4.branchUser")
3066 if len(user) > 0:
3067 command = "branches -u %s" % user
3068 else:
3069 command = "branches"
3070
3071 for info in p4CmdList(command):
52a4880b 3072 details = p4Cmd(["branch", "-o", info["branch"]])
4b97ffb1
SH
3073 viewIdx = 0
3074 while details.has_key("View%s" % viewIdx):
3075 paths = details["View%s" % viewIdx].split(" ")
3076 viewIdx = viewIdx + 1
3077 # require standard //depot/foo/... //depot/bar/... mapping
3078 if len(paths) != 2 or not paths[0].endswith("/...") or not paths[1].endswith("/..."):
3079 continue
3080 source = paths[0]
3081 destination = paths[1]
6509e19c 3082 ## HACK
d53de8b9 3083 if p4PathStartsWith(source, self.depotPaths[0]) and p4PathStartsWith(destination, self.depotPaths[0]):
6509e19c
SH
3084 source = source[len(self.depotPaths[0]):-4]
3085 destination = destination[len(self.depotPaths[0]):-4]
6555b2cc 3086
1a2edf4e
SH
3087 if destination in self.knownBranches:
3088 if not self.silent:
3089 print "p4 branch %s defines a mapping from %s to %s" % (info["branch"], source, destination)
3090 print "but there exists another mapping from %s to %s already!" % (self.knownBranches[destination], destination)
3091 continue
3092
6555b2cc
SH
3093 self.knownBranches[destination] = source
3094
3095 lostAndFoundBranches.discard(destination)
3096
29bdbac1 3097 if source not in self.knownBranches:
6555b2cc
SH
3098 lostAndFoundBranches.add(source)
3099
7199cf13
VA
3100 # Perforce does not strictly require branches to be defined, so we also
3101 # check git config for a branch list.
3102 #
3103 # Example of branch definition in git config file:
3104 # [git-p4]
3105 # branchList=main:branchA
3106 # branchList=main:branchB
3107 # branchList=branchA:branchC
3108 configBranches = gitConfigList("git-p4.branchList")
3109 for branch in configBranches:
3110 if branch:
3111 (source, destination) = branch.split(":")
3112 self.knownBranches[destination] = source
3113
3114 lostAndFoundBranches.discard(destination)
3115
3116 if source not in self.knownBranches:
3117 lostAndFoundBranches.add(source)
3118
6555b2cc
SH
3119
3120 for branch in lostAndFoundBranches:
3121 self.knownBranches[branch] = branch
29bdbac1 3122
38f9f5ec
SH
3123 def getBranchMappingFromGitBranches(self):
3124 branches = p4BranchesInGit(self.importIntoRemotes)
3125 for branch in branches.keys():
3126 if branch == "master":
3127 branch = "main"
3128 else:
3129 branch = branch[len(self.projectName):]
3130 self.knownBranches[branch] = branch
3131
bb6e09b2
HWN
3132 def updateOptionDict(self, d):
3133 option_keys = {}
3134 if self.keepRepoPath:
3135 option_keys['keepRepoPath'] = 1
3136
3137 d["options"] = ' '.join(sorted(option_keys.keys()))
3138
3139 def readOptions(self, d):
3140 self.keepRepoPath = (d.has_key('options')
3141 and ('keepRepoPath' in d['options']))
6326aa58 3142
8134f69c
SH
3143 def gitRefForBranch(self, branch):
3144 if branch == "main":
3145 return self.refPrefix + "master"
3146
3147 if len(branch) <= 0:
3148 return branch
3149
3150 return self.refPrefix + self.projectName + branch
3151
1ca3d710
SH
3152 def gitCommitByP4Change(self, ref, change):
3153 if self.verbose:
3154 print "looking in ref " + ref + " for change %s using bisect..." % change
3155
3156 earliestCommit = ""
3157 latestCommit = parseRevision(ref)
3158
3159 while True:
3160 if self.verbose:
3161 print "trying: earliest %s latest %s" % (earliestCommit, latestCommit)
3162 next = read_pipe("git rev-list --bisect %s %s" % (latestCommit, earliestCommit)).strip()
3163 if len(next) == 0:
3164 if self.verbose:
3165 print "argh"
3166 return ""
3167 log = extractLogMessageFromGitCommit(next)
3168 settings = extractSettingsGitLog(log)
3169 currentChange = int(settings['change'])
3170 if self.verbose:
3171 print "current change %s" % currentChange
3172
3173 if currentChange == change:
3174 if self.verbose:
3175 print "found %s" % next
3176 return next
3177
3178 if currentChange < change:
3179 earliestCommit = "^%s" % next
3180 else:
3181 latestCommit = "%s" % next
3182
3183 return ""
3184
3185 def importNewBranch(self, branch, maxChange):
3186 # make fast-import flush all changes to disk and update the refs using the checkpoint
3187 # command so that we can try to find the branch parent in the git history
3188 self.gitStream.write("checkpoint\n\n");
3189 self.gitStream.flush();
3190 branchPrefix = self.depotPaths[0] + branch + "/"
3191 range = "@1,%s" % maxChange
3192 #print "prefix" + branchPrefix
96b2d54a 3193 changes = p4ChangesForPaths([branchPrefix], range, self.changes_block_size)
1ca3d710
SH
3194 if len(changes) <= 0:
3195 return False
3196 firstChange = changes[0]
3197 #print "first change in branch: %s" % firstChange
3198 sourceBranch = self.knownBranches[branch]
3199 sourceDepotPath = self.depotPaths[0] + sourceBranch
3200 sourceRef = self.gitRefForBranch(sourceBranch)
3201 #print "source " + sourceBranch
3202
52a4880b 3203 branchParentChange = int(p4Cmd(["changes", "-m", "1", "%s...@1,%s" % (sourceDepotPath, firstChange)])["change"])
1ca3d710
SH
3204 #print "branch parent: %s" % branchParentChange
3205 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)
3206 if len(gitParent) > 0:
3207 self.initialParents[self.gitRefForBranch(branch)] = gitParent
3208 #print "parent git commit: %s" % gitParent
3209
3210 self.importChanges(changes)
3211 return True
3212
fed23693
VA
3213 def searchParent(self, parent, branch, target):
3214 parentFound = False
c7d34884
PW
3215 for blob in read_pipe_lines(["git", "rev-list", "--reverse",
3216 "--no-merges", parent]):
fed23693
VA
3217 blob = blob.strip()
3218 if len(read_pipe(["git", "diff-tree", blob, target])) == 0:
3219 parentFound = True
3220 if self.verbose:
3221 print "Found parent of %s in commit %s" % (branch, blob)
3222 break
3223 if parentFound:
3224 return blob
3225 else:
3226 return None
3227
123f6317 3228 def importChanges(self, changes, shelved=False, origin_revision=0):
e87f37ae
SH
3229 cnt = 1
3230 for change in changes:
123f6317 3231 description = p4_describe(change, shelved)
e87f37ae
SH
3232 self.updateOptionDict(description)
3233
3234 if not self.silent:
3235 sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes)))
3236 sys.stdout.flush()
3237 cnt = cnt + 1
3238
3239 try:
3240 if self.detectBranches:
3241 branches = self.splitFilesIntoBranches(description)
3242 for branch in branches.keys():
3243 ## HACK --hwn
3244 branchPrefix = self.depotPaths[0] + branch + "/"
e63231e5 3245 self.branchPrefixes = [ branchPrefix ]
e87f37ae
SH
3246
3247 parent = ""
3248
3249 filesForCommit = branches[branch]
3250
3251 if self.verbose:
3252 print "branch is %s" % branch
3253
3254 self.updatedBranches.add(branch)
3255
3256 if branch not in self.createdBranches:
3257 self.createdBranches.add(branch)
3258 parent = self.knownBranches[branch]
3259 if parent == branch:
3260 parent = ""
1ca3d710
SH
3261 else:
3262 fullBranch = self.projectName + branch
3263 if fullBranch not in self.p4BranchesInGit:
3264 if not self.silent:
3265 print("\n Importing new branch %s" % fullBranch);
3266 if self.importNewBranch(branch, change - 1):
3267 parent = ""
3268 self.p4BranchesInGit.append(fullBranch)
3269 if not self.silent:
3270 print("\n Resuming with change %s" % change);
3271
3272 if self.verbose:
3273 print "parent determined through known branches: %s" % parent
e87f37ae 3274
8134f69c
SH
3275 branch = self.gitRefForBranch(branch)
3276 parent = self.gitRefForBranch(parent)
e87f37ae
SH
3277
3278 if self.verbose:
3279 print "looking for initial parent for %s; current parent is %s" % (branch, parent)
3280
3281 if len(parent) == 0 and branch in self.initialParents:
3282 parent = self.initialParents[branch]
3283 del self.initialParents[branch]
3284
fed23693
VA
3285 blob = None
3286 if len(parent) > 0:
4f9273d2 3287 tempBranch = "%s/%d" % (self.tempBranchLocation, change)
fed23693
VA
3288 if self.verbose:
3289 print "Creating temporary branch: " + tempBranch
e63231e5 3290 self.commit(description, filesForCommit, tempBranch)
fed23693
VA
3291 self.tempBranches.append(tempBranch)
3292 self.checkpoint()
3293 blob = self.searchParent(parent, branch, tempBranch)
3294 if blob:
e63231e5 3295 self.commit(description, filesForCommit, branch, blob)
fed23693
VA
3296 else:
3297 if self.verbose:
3298 print "Parent of %s not found. Committing into head of %s" % (branch, parent)
e63231e5 3299 self.commit(description, filesForCommit, branch, parent)
e87f37ae 3300 else:
123f6317 3301 files = self.extractFilesFromCommit(description, shelved, change, origin_revision)
e63231e5 3302 self.commit(description, files, self.branch,
e87f37ae 3303 self.initialParent)
47497844 3304 # only needed once, to connect to the previous commit
e87f37ae
SH
3305 self.initialParent = ""
3306 except IOError:
3307 print self.gitError.read()
3308 sys.exit(1)
3309
c208a243
SH
3310 def importHeadRevision(self, revision):
3311 print "Doing initial import of %s from revision %s into %s" % (' '.join(self.depotPaths), revision, self.branch)
3312
4e2e6ce4
PW
3313 details = {}
3314 details["user"] = "git perforce import user"
1494fcbb 3315 details["desc"] = ("Initial import of %s from the state at revision %s\n"
c208a243
SH
3316 % (' '.join(self.depotPaths), revision))
3317 details["change"] = revision
3318 newestRevision = 0
3319
3320 fileCnt = 0
6de040df
LD
3321 fileArgs = ["%s...%s" % (p,revision) for p in self.depotPaths]
3322
3323 for info in p4CmdList(["files"] + fileArgs):
c208a243 3324
68b28593 3325 if 'code' in info and info['code'] == 'error':
c208a243
SH
3326 sys.stderr.write("p4 returned an error: %s\n"
3327 % info['data'])
d88e707f
PW
3328 if info['data'].find("must refer to client") >= 0:
3329 sys.stderr.write("This particular p4 error is misleading.\n")
3330 sys.stderr.write("Perhaps the depot path was misspelled.\n");
3331 sys.stderr.write("Depot path: %s\n" % " ".join(self.depotPaths))
c208a243 3332 sys.exit(1)
68b28593
PW
3333 if 'p4ExitCode' in info:
3334 sys.stderr.write("p4 exitcode: %s\n" % info['p4ExitCode'])
c208a243
SH
3335 sys.exit(1)
3336
3337
3338 change = int(info["change"])
3339 if change > newestRevision:
3340 newestRevision = change
3341
56c09345 3342 if info["action"] in self.delete_actions:
c208a243
SH
3343 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
3344 #fileCnt = fileCnt + 1
3345 continue
3346
3347 for prop in ["depotFile", "rev", "action", "type" ]:
3348 details["%s%s" % (prop, fileCnt)] = info[prop]
3349
3350 fileCnt = fileCnt + 1
3351
3352 details["change"] = newestRevision
4e2e6ce4 3353
9dcb9f24 3354 # Use time from top-most change so that all git p4 clones of
4e2e6ce4 3355 # the same p4 repo have the same commit SHA1s.
18fa13d0
PW
3356 res = p4_describe(newestRevision)
3357 details["time"] = res["time"]
4e2e6ce4 3358
c208a243
SH
3359 self.updateOptionDict(details)
3360 try:
e63231e5 3361 self.commit(details, self.extractFilesFromCommit(details), self.branch)
c208a243
SH
3362 except IOError:
3363 print "IO error with git fast-import. Is your git version recent enough?"
3364 print self.gitError.read()
3365
123f6317
LD
3366 def openStreams(self):
3367 self.importProcess = subprocess.Popen(["git", "fast-import"],
3368 stdin=subprocess.PIPE,
3369 stdout=subprocess.PIPE,
3370 stderr=subprocess.PIPE);
3371 self.gitOutput = self.importProcess.stdout
3372 self.gitStream = self.importProcess.stdin
3373 self.gitError = self.importProcess.stderr
c208a243 3374
123f6317
LD
3375 def closeStreams(self):
3376 self.gitStream.close()
3377 if self.importProcess.wait() != 0:
3378 die("fast-import failed: %s" % self.gitError.read())
3379 self.gitOutput.close()
3380 self.gitError.close()
29bdbac1 3381
123f6317 3382 def run(self, args):
a028a98e
SH
3383 if self.importIntoRemotes:
3384 self.refPrefix = "refs/remotes/p4/"
3385 else:
db775559 3386 self.refPrefix = "refs/heads/p4/"
a028a98e 3387
991a2de4
PW
3388 if self.syncWithOrigin:
3389 self.hasOrigin = originP4BranchesExist()
3390 if self.hasOrigin:
3391 if not self.silent:
3392 print 'Syncing with origin first, using "git fetch origin"'
3393 system("git fetch origin")
10f880f8 3394
5a8e84cd 3395 branch_arg_given = bool(self.branch)
569d1bd4 3396 if len(self.branch) == 0:
db775559 3397 self.branch = self.refPrefix + "master"
a028a98e 3398 if gitBranchExists("refs/heads/p4") and self.importIntoRemotes:
48df6fd8 3399 system("git update-ref %s refs/heads/p4" % self.branch)
55d12437 3400 system("git branch -D p4")
967f72e2 3401
a93d33ee
PW
3402 # accept either the command-line option, or the configuration variable
3403 if self.useClientSpec:
3404 # will use this after clone to set the variable
3405 self.useClientSpec_from_options = True
3406 else:
0d609032 3407 if gitConfigBool("git-p4.useclientspec"):
09fca77b
PW
3408 self.useClientSpec = True
3409 if self.useClientSpec:
543987bd 3410 self.clientSpecDirs = getClientSpec()
3a70cdfa 3411
6a49f8e2
HWN
3412 # TODO: should always look at previous commits,
3413 # merge with previous imports, if possible.
3414 if args == []:
d414c74a 3415 if self.hasOrigin:
5ca44617 3416 createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)
3b650fc9
PW
3417
3418 # branches holds mapping from branch name to sha1
3419 branches = p4BranchesInGit(self.importIntoRemotes)
8c9e8b6e
PW
3420
3421 # restrict to just this one, disabling detect-branches
3422 if branch_arg_given:
3423 short = self.branch.split("/")[-1]
3424 if short in branches:
3425 self.p4BranchesInGit = [ short ]
3426 else:
3427 self.p4BranchesInGit = branches.keys()
abcd790f
SH
3428
3429 if len(self.p4BranchesInGit) > 1:
3430 if not self.silent:
3431 print "Importing from/into multiple branches"
3432 self.detectBranches = True
8c9e8b6e
PW
3433 for branch in branches.keys():
3434 self.initialParents[self.refPrefix + branch] = \
3435 branches[branch]
967f72e2 3436
29bdbac1
SH
3437 if self.verbose:
3438 print "branches: %s" % self.p4BranchesInGit
3439
3440 p4Change = 0
3441 for branch in self.p4BranchesInGit:
cebdf5af 3442 logMsg = extractLogMessageFromGitCommit(self.refPrefix + branch)
bb6e09b2
HWN
3443
3444 settings = extractSettingsGitLog(logMsg)
29bdbac1 3445
bb6e09b2
HWN
3446 self.readOptions(settings)
3447 if (settings.has_key('depot-paths')
3448 and settings.has_key ('change')):
3449 change = int(settings['change']) + 1
29bdbac1
SH
3450 p4Change = max(p4Change, change)
3451
bb6e09b2
HWN
3452 depotPaths = sorted(settings['depot-paths'])
3453 if self.previousDepotPaths == []:
6326aa58 3454 self.previousDepotPaths = depotPaths
29bdbac1 3455 else:
6326aa58
HWN
3456 paths = []
3457 for (prev, cur) in zip(self.previousDepotPaths, depotPaths):
04d277b3
VA
3458 prev_list = prev.split("/")
3459 cur_list = cur.split("/")
3460 for i in range(0, min(len(cur_list), len(prev_list))):
3461 if cur_list[i] <> prev_list[i]:
583e1707 3462 i = i - 1
6326aa58
HWN
3463 break
3464
04d277b3 3465 paths.append ("/".join(cur_list[:i + 1]))
6326aa58
HWN
3466
3467 self.previousDepotPaths = paths
29bdbac1
SH
3468
3469 if p4Change > 0:
bb6e09b2 3470 self.depotPaths = sorted(self.previousDepotPaths)
d5904674 3471 self.changeRange = "@%s,#head" % p4Change
341dc1c1 3472 if not self.silent and not self.detectBranches:
967f72e2 3473 print "Performing incremental import into %s git branch" % self.branch
569d1bd4 3474
40d69ac3
PW
3475 # accept multiple ref name abbreviations:
3476 # refs/foo/bar/branch -> use it exactly
3477 # p4/branch -> prepend refs/remotes/ or refs/heads/
3478 # branch -> prepend refs/remotes/p4/ or refs/heads/p4/
f9162f6a 3479 if not self.branch.startswith("refs/"):
40d69ac3
PW
3480 if self.importIntoRemotes:
3481 prepend = "refs/remotes/"
3482 else:
3483 prepend = "refs/heads/"
3484 if not self.branch.startswith("p4/"):
3485 prepend += "p4/"
3486 self.branch = prepend + self.branch
179caebf 3487
6326aa58 3488 if len(args) == 0 and self.depotPaths:
b984733c 3489 if not self.silent:
6326aa58 3490 print "Depot paths: %s" % ' '.join(self.depotPaths)
b984733c 3491 else:
6326aa58 3492 if self.depotPaths and self.depotPaths != args:
cebdf5af 3493 print ("previous import used depot path %s and now %s was specified. "
6326aa58
HWN
3494 "This doesn't work!" % (' '.join (self.depotPaths),
3495 ' '.join (args)))
b984733c 3496 sys.exit(1)
6326aa58 3497
bb6e09b2 3498 self.depotPaths = sorted(args)
b984733c 3499
1c49fc19 3500 revision = ""
b984733c 3501 self.users = {}
b984733c 3502
58c8bc7c
PW
3503 # Make sure no revision specifiers are used when --changesfile
3504 # is specified.
3505 bad_changesfile = False
3506 if len(self.changesFile) > 0:
3507 for p in self.depotPaths:
3508 if p.find("@") >= 0 or p.find("#") >= 0:
3509 bad_changesfile = True
3510 break
3511 if bad_changesfile:
3512 die("Option --changesfile is incompatible with revision specifiers")
3513
6326aa58
HWN
3514 newPaths = []
3515 for p in self.depotPaths:
3516 if p.find("@") != -1:
3517 atIdx = p.index("@")
3518 self.changeRange = p[atIdx:]
3519 if self.changeRange == "@all":
3520 self.changeRange = ""
6a49f8e2 3521 elif ',' not in self.changeRange:
1c49fc19 3522 revision = self.changeRange
6326aa58 3523 self.changeRange = ""
7fcff9de 3524 p = p[:atIdx]
6326aa58
HWN
3525 elif p.find("#") != -1:
3526 hashIdx = p.index("#")
1c49fc19 3527 revision = p[hashIdx:]
7fcff9de 3528 p = p[:hashIdx]
6326aa58 3529 elif self.previousDepotPaths == []:
58c8bc7c
PW
3530 # pay attention to changesfile, if given, else import
3531 # the entire p4 tree at the head revision
3532 if len(self.changesFile) == 0:
3533 revision = "#head"
6326aa58
HWN
3534
3535 p = re.sub ("\.\.\.$", "", p)
3536 if not p.endswith("/"):
3537 p += "/"
3538
3539 newPaths.append(p)
3540
3541 self.depotPaths = newPaths
3542
e63231e5
PW
3543 # --detect-branches may change this for each branch
3544 self.branchPrefixes = self.depotPaths
3545
b607e71e 3546 self.loadUserMapFromCache()
cb53e1f8
SH
3547 self.labels = {}
3548 if self.detectLabels:
3549 self.getLabels();
b984733c 3550
4b97ffb1 3551 if self.detectBranches:
df450923
SH
3552 ## FIXME - what's a P4 projectName ?
3553 self.projectName = self.guessProjectName()
3554
38f9f5ec
SH
3555 if self.hasOrigin:
3556 self.getBranchMappingFromGitBranches()
3557 else:
3558 self.getBranchMapping()
29bdbac1
SH
3559 if self.verbose:
3560 print "p4-git branches: %s" % self.p4BranchesInGit
3561 print "initial parents: %s" % self.initialParents
3562 for b in self.p4BranchesInGit:
3563 if b != "master":
6326aa58
HWN
3564
3565 ## FIXME
29bdbac1
SH
3566 b = b[len(self.projectName):]
3567 self.createdBranches.add(b)
4b97ffb1 3568
123f6317 3569 self.openStreams()
b984733c 3570
1c49fc19 3571 if revision:
c208a243 3572 self.importHeadRevision(revision)
b984733c
SH
3573 else:
3574 changes = []
3575
0828ab14 3576 if len(self.changesFile) > 0:
b984733c 3577 output = open(self.changesFile).readlines()
1d7367dc 3578 changeSet = set()
b984733c
SH
3579 for line in output:
3580 changeSet.add(int(line))
3581
3582 for change in changeSet:
3583 changes.append(change)
3584
3585 changes.sort()
3586 else:
9dcb9f24
PW
3587 # catch "git p4 sync" with no new branches, in a repo that
3588 # does not have any existing p4 branches
5a8e84cd
PW
3589 if len(args) == 0:
3590 if not self.p4BranchesInGit:
3591 die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.")
3592
3593 # The default branch is master, unless --branch is used to
3594 # specify something else. Make sure it exists, or complain
3595 # nicely about how to use --branch.
3596 if not self.detectBranches:
3597 if not branch_exists(self.branch):
3598 if branch_arg_given:
3599 die("Error: branch %s does not exist." % self.branch)
3600 else:
3601 die("Error: no branch %s; perhaps specify one with --branch." %
3602 self.branch)
3603
29bdbac1 3604 if self.verbose:
86dff6b6 3605 print "Getting p4 changes for %s...%s" % (', '.join(self.depotPaths),
6326aa58 3606 self.changeRange)
96b2d54a 3607 changes = p4ChangesForPaths(self.depotPaths, self.changeRange, self.changes_block_size)
b984733c 3608
01a9c9c5 3609 if len(self.maxChanges) > 0:
7fcff9de 3610 changes = changes[:min(int(self.maxChanges), len(changes))]
01a9c9c5 3611
b984733c 3612 if len(changes) == 0:
0828ab14 3613 if not self.silent:
341dc1c1 3614 print "No changes to import!"
06804c76
LD
3615 else:
3616 if not self.silent and not self.detectBranches:
3617 print "Import destination: %s" % self.branch
3618
3619 self.updatedBranches = set()
b984733c 3620
47497844
PW
3621 if not self.detectBranches:
3622 if args:
3623 # start a new branch
3624 self.initialParent = ""
3625 else:
3626 # build on a previous revision
3627 self.initialParent = parseRevision(self.branch)
3628
06804c76 3629 self.importChanges(changes)
a9d1a27a 3630
06804c76
LD
3631 if not self.silent:
3632 print ""
3633 if len(self.updatedBranches) > 0:
3634 sys.stdout.write("Updated branches: ")
3635 for b in self.updatedBranches:
3636 sys.stdout.write("%s " % b)
3637 sys.stdout.write("\n")
341dc1c1 3638
0d609032 3639 if gitConfigBool("git-p4.importLabels"):
06dcd152 3640 self.importLabels = True
b984733c 3641
06804c76
LD
3642 if self.importLabels:
3643 p4Labels = getP4Labels(self.depotPaths)
3644 gitTags = getGitTags()
3645
3646 missingP4Labels = p4Labels - gitTags
3647 self.importP4Labels(self.gitStream, missingP4Labels)
b984733c 3648
123f6317 3649 self.closeStreams()
b984733c 3650
fed23693
VA
3651 # Cleanup temporary branches created during import
3652 if self.tempBranches != []:
3653 for branch in self.tempBranches:
3654 read_pipe("git update-ref -d %s" % branch)
3655 os.rmdir(os.path.join(os.environ.get("GIT_DIR", ".git"), self.tempBranchLocation))
3656
55d12437
PW
3657 # Create a symbolic ref p4/HEAD pointing to p4/<branch> to allow
3658 # a convenient shortcut refname "p4".
3659 if self.importIntoRemotes:
3660 head_ref = self.refPrefix + "HEAD"
3661 if not gitBranchExists(head_ref) and gitBranchExists(self.branch):
3662 system(["git", "symbolic-ref", head_ref, self.branch])
3663
b984733c
SH
3664 return True
3665
01ce1fe9
SH
3666class P4Rebase(Command):
3667 def __init__(self):
3668 Command.__init__(self)
06804c76
LD
3669 self.options = [
3670 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),
06804c76 3671 ]
06804c76 3672 self.importLabels = False
cebdf5af
HWN
3673 self.description = ("Fetches the latest revision from perforce and "
3674 + "rebases the current work (branch) against it")
01ce1fe9
SH
3675
3676 def run(self, args):
3677 sync = P4Sync()
06804c76 3678 sync.importLabels = self.importLabels
01ce1fe9 3679 sync.run([])
d7e3868c 3680
14594f4b
SH
3681 return self.rebase()
3682
3683 def rebase(self):
36ee4ee4 3684 if os.system("git update-index --refresh") != 0:
7560f547 3685 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.");
36ee4ee4 3686 if len(read_pipe("git diff-index HEAD --")) > 0:
f7e604ed 3687 die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash.");
36ee4ee4 3688
d7e3868c
SH
3689 [upstream, settings] = findUpstreamBranchPoint()
3690 if len(upstream) == 0:
3691 die("Cannot find upstream branchpoint for rebase")
3692
3693 # the branchpoint may be p4/foo~3, so strip off the parent
3694 upstream = re.sub("~[0-9]+$", "", upstream)
3695
3696 print "Rebasing the current branch onto %s" % upstream
b25b2065 3697 oldHead = read_pipe("git rev-parse HEAD").strip()
d7e3868c 3698 system("git rebase %s" % upstream)
4e49d95e 3699 system("git diff-tree --stat --summary -M %s HEAD --" % oldHead)
01ce1fe9
SH
3700 return True
3701
f9a3a4f7
SH
3702class P4Clone(P4Sync):
3703 def __init__(self):
3704 P4Sync.__init__(self)
3705 self.description = "Creates a new git repository and imports from Perforce into it"
bb6e09b2 3706 self.usage = "usage: %prog [options] //depot/path[@revRange]"
354081d5 3707 self.options += [
bb6e09b2
HWN
3708 optparse.make_option("--destination", dest="cloneDestination",
3709 action='store', default=None,
354081d5 3710 help="where to leave result of the clone"),
38200076
PW
3711 optparse.make_option("--bare", dest="cloneBare",
3712 action="store_true", default=False),
354081d5 3713 ]
bb6e09b2 3714 self.cloneDestination = None
f9a3a4f7 3715 self.needsGit = False
38200076 3716 self.cloneBare = False
f9a3a4f7 3717
6a49f8e2
HWN
3718 def defaultDestination(self, args):
3719 ## TODO: use common prefix of args?
3720 depotPath = args[0]
3721 depotDir = re.sub("(@[^@]*)$", "", depotPath)
3722 depotDir = re.sub("(#[^#]*)$", "", depotDir)
053d9e43 3723 depotDir = re.sub(r"\.\.\.$", "", depotDir)
6a49f8e2
HWN
3724 depotDir = re.sub(r"/$", "", depotDir)
3725 return os.path.split(depotDir)[1]
3726
f9a3a4f7
SH
3727 def run(self, args):
3728 if len(args) < 1:
3729 return False
bb6e09b2
HWN
3730
3731 if self.keepRepoPath and not self.cloneDestination:
3732 sys.stderr.write("Must specify destination for --keep-path\n")
3733 sys.exit(1)
f9a3a4f7 3734
6326aa58 3735 depotPaths = args
5e100b5c
SH
3736
3737 if not self.cloneDestination and len(depotPaths) > 1:
3738 self.cloneDestination = depotPaths[-1]
3739 depotPaths = depotPaths[:-1]
3740
354081d5 3741 self.cloneExclude = ["/"+p for p in self.cloneExclude]
6326aa58
HWN
3742 for p in depotPaths:
3743 if not p.startswith("//"):
0f487d30 3744 sys.stderr.write('Depot paths must start with "//": %s\n' % p)
6326aa58 3745 return False
f9a3a4f7 3746
bb6e09b2 3747 if not self.cloneDestination:
98ad4faf 3748 self.cloneDestination = self.defaultDestination(args)
f9a3a4f7 3749
86dff6b6 3750 print "Importing from %s into %s" % (', '.join(depotPaths), self.cloneDestination)
38200076 3751
c3bf3f13
KG
3752 if not os.path.exists(self.cloneDestination):
3753 os.makedirs(self.cloneDestination)
053fd0c1 3754 chdir(self.cloneDestination)
38200076
PW
3755
3756 init_cmd = [ "git", "init" ]
3757 if self.cloneBare:
3758 init_cmd.append("--bare")
a235e85c
BC
3759 retcode = subprocess.call(init_cmd)
3760 if retcode:
3761 raise CalledProcessError(retcode, init_cmd)
38200076 3762
6326aa58 3763 if not P4Sync.run(self, depotPaths):
f9a3a4f7 3764 return False
c595956d
PW
3765
3766 # create a master branch and check out a work tree
3767 if gitBranchExists(self.branch):
3768 system([ "git", "branch", "master", self.branch ])
3769 if not self.cloneBare:
3770 system([ "git", "checkout", "-f" ])
3771 else:
3772 print 'Not checking out any branch, use ' \
3773 '"git checkout -q -b master <branch>"'
86dff6b6 3774
a93d33ee
PW
3775 # auto-set this variable if invoked with --use-client-spec
3776 if self.useClientSpec_from_options:
3777 system("git config --bool git-p4.useclientspec true")
3778
f9a3a4f7
SH
3779 return True
3780
123f6317
LD
3781class P4Unshelve(Command):
3782 def __init__(self):
3783 Command.__init__(self)
3784 self.options = []
3785 self.origin = "HEAD"
3786 self.description = "Unshelve a P4 changelist into a git commit"
3787 self.usage = "usage: %prog [options] changelist"
3788 self.options += [
3789 optparse.make_option("--origin", dest="origin",
3790 help="Use this base revision instead of the default (%s)" % self.origin),
3791 ]
3792 self.verbose = False
3793 self.noCommit = False
3794 self.destbranch = "refs/remotes/p4/unshelved"
3795
3796 def renameBranch(self, branch_name):
3797 """ Rename the existing branch to branch_name.N
3798 """
3799
3800 found = True
3801 for i in range(0,1000):
3802 backup_branch_name = "{0}.{1}".format(branch_name, i)
3803 if not gitBranchExists(backup_branch_name):
3804 gitUpdateRef(backup_branch_name, branch_name) # copy ref to backup
3805 gitDeleteRef(branch_name)
3806 found = True
3807 print("renamed old unshelve branch to {0}".format(backup_branch_name))
3808 break
3809
3810 if not found:
3811 sys.exit("gave up trying to rename existing branch {0}".format(sync.branch))
3812
3813 def findLastP4Revision(self, starting_point):
3814 """ Look back from starting_point for the first commit created by git-p4
3815 to find the P4 commit we are based on, and the depot-paths.
3816 """
3817
3818 for parent in (range(65535)):
3819 log = extractLogMessageFromGitCommit("{0}^{1}".format(starting_point, parent))
3820 settings = extractSettingsGitLog(log)
3821 if settings.has_key('change'):
3822 return settings
3823
3824 sys.exit("could not find git-p4 commits in {0}".format(self.origin))
3825
3826 def run(self, args):
3827 if len(args) != 1:
3828 return False
3829
3830 if not gitBranchExists(self.origin):
3831 sys.exit("origin branch {0} does not exist".format(self.origin))
3832
3833 sync = P4Sync()
3834 changes = args
3835 sync.initialParent = self.origin
3836
3837 # use the first change in the list to construct the branch to unshelve into
3838 change = changes[0]
3839
3840 # if the target branch already exists, rename it
3841 branch_name = "{0}/{1}".format(self.destbranch, change)
3842 if gitBranchExists(branch_name):
3843 self.renameBranch(branch_name)
3844 sync.branch = branch_name
3845
3846 sync.verbose = self.verbose
3847 sync.suppress_meta_comment = True
3848
3849 settings = self.findLastP4Revision(self.origin)
3850 origin_revision = settings['change']
3851 sync.depotPaths = settings['depot-paths']
3852 sync.branchPrefixes = sync.depotPaths
3853
3854 sync.openStreams()
3855 sync.loadUserMapFromCache()
3856 sync.silent = True
3857 sync.importChanges(changes, shelved=True, origin_revision=origin_revision)
3858 sync.closeStreams()
3859
3860 print("unshelved changelist {0} into {1}".format(change, branch_name))
3861
3862 return True
3863
09d89de2
SH
3864class P4Branches(Command):
3865 def __init__(self):
3866 Command.__init__(self)
3867 self.options = [ ]
3868 self.description = ("Shows the git branches that hold imports and their "
3869 + "corresponding perforce depot paths")
3870 self.verbose = False
3871
3872 def run(self, args):
5ca44617
SH
3873 if originP4BranchesExist():
3874 createOrUpdateBranchesFromOrigin()
3875
09d89de2
SH
3876 cmdline = "git rev-parse --symbolic "
3877 cmdline += " --remotes"
3878
3879 for line in read_pipe_lines(cmdline):
3880 line = line.strip()
3881
3882 if not line.startswith('p4/') or line == "p4/HEAD":
3883 continue
3884 branch = line
3885
3886 log = extractLogMessageFromGitCommit("refs/remotes/%s" % branch)
3887 settings = extractSettingsGitLog(log)
3888
3889 print "%s <= %s (%s)" % (branch, ",".join(settings["depot-paths"]), settings["change"])
3890 return True
3891
b984733c
SH
3892class HelpFormatter(optparse.IndentedHelpFormatter):
3893 def __init__(self):
3894 optparse.IndentedHelpFormatter.__init__(self)
3895
3896 def format_description(self, description):
3897 if description:
3898 return description + "\n"
3899 else:
3900 return ""
4f5cf76a 3901
86949eef
SH
3902def printUsage(commands):
3903 print "usage: %s <command> [options]" % sys.argv[0]
3904 print ""
3905 print "valid commands: %s" % ", ".join(commands)
3906 print ""
3907 print "Try %s <command> --help for command specific help." % sys.argv[0]
3908 print ""
3909
3910commands = {
b86f7378
HWN
3911 "debug" : P4Debug,
3912 "submit" : P4Submit,
a9834f58 3913 "commit" : P4Submit,
b86f7378
HWN
3914 "sync" : P4Sync,
3915 "rebase" : P4Rebase,
3916 "clone" : P4Clone,
09d89de2 3917 "rollback" : P4RollBack,
123f6317
LD
3918 "branches" : P4Branches,
3919 "unshelve" : P4Unshelve,
86949eef
SH
3920}
3921
86949eef 3922
bb6e09b2
HWN
3923def main():
3924 if len(sys.argv[1:]) == 0:
3925 printUsage(commands.keys())
3926 sys.exit(2)
4f5cf76a 3927
bb6e09b2
HWN
3928 cmdName = sys.argv[1]
3929 try:
b86f7378
HWN
3930 klass = commands[cmdName]
3931 cmd = klass()
bb6e09b2
HWN
3932 except KeyError:
3933 print "unknown command %s" % cmdName
3934 print ""
3935 printUsage(commands.keys())
3936 sys.exit(2)
3937
3938 options = cmd.options
b86f7378 3939 cmd.gitdir = os.environ.get("GIT_DIR", None)
bb6e09b2
HWN
3940
3941 args = sys.argv[2:]
3942
b0ccc80d 3943 options.append(optparse.make_option("--verbose", "-v", dest="verbose", action="store_true"))
6a10b6aa
LD
3944 if cmd.needsGit:
3945 options.append(optparse.make_option("--git-dir", dest="gitdir"))
bb6e09b2 3946
6a10b6aa
LD
3947 parser = optparse.OptionParser(cmd.usage.replace("%prog", "%prog " + cmdName),
3948 options,
3949 description = cmd.description,
3950 formatter = HelpFormatter())
bb6e09b2 3951
6a10b6aa 3952 (cmd, args) = parser.parse_args(sys.argv[2:], cmd);
bb6e09b2
HWN
3953 global verbose
3954 verbose = cmd.verbose
3955 if cmd.needsGit:
b86f7378
HWN
3956 if cmd.gitdir == None:
3957 cmd.gitdir = os.path.abspath(".git")
3958 if not isValidGitDir(cmd.gitdir):
378f7be1 3959 # "rev-parse --git-dir" without arguments will try $PWD/.git
b86f7378
HWN
3960 cmd.gitdir = read_pipe("git rev-parse --git-dir").strip()
3961 if os.path.exists(cmd.gitdir):
bb6e09b2
HWN
3962 cdup = read_pipe("git rev-parse --show-cdup").strip()
3963 if len(cdup) > 0:
053fd0c1 3964 chdir(cdup);
e20a9e53 3965
b86f7378
HWN
3966 if not isValidGitDir(cmd.gitdir):
3967 if isValidGitDir(cmd.gitdir + "/.git"):
3968 cmd.gitdir += "/.git"
bb6e09b2 3969 else:
b86f7378 3970 die("fatal: cannot locate git repository at %s" % cmd.gitdir)
e20a9e53 3971
378f7be1 3972 # so git commands invoked from the P4 workspace will succeed
b86f7378 3973 os.environ["GIT_DIR"] = cmd.gitdir
86949eef 3974
bb6e09b2
HWN
3975 if not cmd.run(args):
3976 parser.print_help()
09fca77b 3977 sys.exit(2)
4f5cf76a 3978
4f5cf76a 3979
bb6e09b2
HWN
3980if __name__ == '__main__':
3981 main()