3 # git-p4.py -- A tool for bidirectional operation between a Perforce depot and git.
5 # Author: Simon Hausmann <simon@lst.de>
6 # Copyright: 2007 Simon Hausmann <simon@lst.de>
8 # License: MIT <http://www.opensource.org/licenses/mit-license.php>
11 if sys
.hexversion
< 0x02040000:
12 # The limiter is the subprocess module
13 sys
.stderr
.write("git-p4: requires Python 2.4 or later.\n")
30 from subprocess
import CalledProcessError
32 # from python2.7:subprocess.py
33 # Exception classes used by this module.
34 class CalledProcessError(Exception):
35 """This exception is raised when a process run by check_call() returns
36 a non-zero exit status. The exit status will be stored in the
37 returncode attribute."""
38 def __init__(self
, returncode
, cmd
):
39 self
.returncode
= returncode
42 return "Command '%s' returned non-zero exit status %d" % (self
.cmd
, self
.returncode
)
46 # Only labels/tags matching this will be imported/exported
47 defaultLabelRegexp
= r
'[a-zA-Z0-9_\-.]+$'
49 # Grab changes in blocks of this many revisions, unless otherwise requested
50 defaultBlockSize
= 512
52 def p4_build_cmd(cmd
):
53 """Build a suitable p4 command line.
55 This consolidates building and returning a p4 command line into one
56 location. It means that hooking into the environment, or other configuration
57 can be done more easily.
61 user
= gitConfig("git-p4.user")
63 real_cmd
+= ["-u",user
]
65 password
= gitConfig("git-p4.password")
67 real_cmd
+= ["-P", password
]
69 port
= gitConfig("git-p4.port")
71 real_cmd
+= ["-p", port
]
73 host
= gitConfig("git-p4.host")
75 real_cmd
+= ["-H", host
]
77 client
= gitConfig("git-p4.client")
79 real_cmd
+= ["-c", client
]
82 if isinstance(cmd
,basestring
):
83 real_cmd
= ' '.join(real_cmd
) + ' ' + cmd
88 def chdir(path
, is_client_path
=False):
89 """Do chdir to the given path, and set the PWD environment
90 variable for use by P4. It does not look at getcwd() output.
91 Since we're not using the shell, it is necessary to set the
92 PWD environment variable explicitly.
94 Normally, expand the path to force it to be absolute. This
95 addresses the use of relative path names inside P4 settings,
96 e.g. P4CONFIG=.p4config. P4 does not simply open the filename
97 as given; it looks for .p4config using PWD.
99 If is_client_path, the path was handed to us directly by p4,
100 and may be a symbolic link. Do not call os.getcwd() in this
101 case, because it will cause p4 to think that PWD is not inside
106 if not is_client_path
:
108 os
.environ
['PWD'] = path
111 """Return free space in bytes on the disk of the given dirname."""
112 if platform
.system() == 'Windows':
113 free_bytes
= ctypes
.c_ulonglong(0)
114 ctypes
.windll
.kernel32
.GetDiskFreeSpaceExW(ctypes
.c_wchar_p(os
.getcwd()), None, None, ctypes
.pointer(free_bytes
))
115 return free_bytes
.value
117 st
= os
.statvfs(os
.getcwd())
118 return st
.f_bavail
* st
.f_frsize
124 sys
.stderr
.write(msg
+ "\n")
127 def write_pipe(c
, stdin
):
129 sys
.stderr
.write('Writing pipe: %s\n' % str(c
))
131 expand
= isinstance(c
,basestring
)
132 p
= subprocess
.Popen(c
, stdin
=subprocess
.PIPE
, shell
=expand
)
134 val
= pipe
.write(stdin
)
137 die('Command failed: %s' % str(c
))
141 def p4_write_pipe(c
, stdin
):
142 real_cmd
= p4_build_cmd(c
)
143 return write_pipe(real_cmd
, stdin
)
145 def read_pipe(c
, ignore_error
=False):
147 sys
.stderr
.write('Reading pipe: %s\n' % str(c
))
149 expand
= isinstance(c
,basestring
)
150 p
= subprocess
.Popen(c
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
, shell
=expand
)
151 (out
, err
) = p
.communicate()
152 if p
.returncode
!= 0 and not ignore_error
:
153 die('Command failed: %s\nError: %s' % (str(c
), err
))
156 def p4_read_pipe(c
, ignore_error
=False):
157 real_cmd
= p4_build_cmd(c
)
158 return read_pipe(real_cmd
, ignore_error
)
160 def read_pipe_lines(c
):
162 sys
.stderr
.write('Reading pipe: %s\n' % str(c
))
164 expand
= isinstance(c
, basestring
)
165 p
= subprocess
.Popen(c
, stdout
=subprocess
.PIPE
, shell
=expand
)
167 val
= pipe
.readlines()
168 if pipe
.close() or p
.wait():
169 die('Command failed: %s' % str(c
))
173 def p4_read_pipe_lines(c
):
174 """Specifically invoke p4 on the command supplied. """
175 real_cmd
= p4_build_cmd(c
)
176 return read_pipe_lines(real_cmd
)
178 def p4_has_command(cmd
):
179 """Ask p4 for help on this command. If it returns an error, the
180 command does not exist in this version of p4."""
181 real_cmd
= p4_build_cmd(["help", cmd
])
182 p
= subprocess
.Popen(real_cmd
, stdout
=subprocess
.PIPE
,
183 stderr
=subprocess
.PIPE
)
185 return p
.returncode
== 0
187 def p4_has_move_command():
188 """See if the move command exists, that it supports -k, and that
189 it has not been administratively disabled. The arguments
190 must be correct, but the filenames do not have to exist. Use
191 ones with wildcards so even if they exist, it will fail."""
193 if not p4_has_command("move"):
195 cmd
= p4_build_cmd(["move", "-k", "@from", "@to"])
196 p
= subprocess
.Popen(cmd
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
)
197 (out
, err
) = p
.communicate()
198 # return code will be 1 in either case
199 if err
.find("Invalid option") >= 0:
201 if err
.find("disabled") >= 0:
203 # assume it failed because @... was invalid changelist
207 expand
= isinstance(cmd
,basestring
)
209 sys
.stderr
.write("executing %s\n" % str(cmd
))
210 retcode
= subprocess
.call(cmd
, shell
=expand
)
212 raise CalledProcessError(retcode
, cmd
)
215 """Specifically invoke p4 as the system command. """
216 real_cmd
= p4_build_cmd(cmd
)
217 expand
= isinstance(real_cmd
, basestring
)
218 retcode
= subprocess
.call(real_cmd
, shell
=expand
)
220 raise CalledProcessError(retcode
, real_cmd
)
222 _p4_version_string
= None
223 def p4_version_string():
224 """Read the version string, showing just the last line, which
225 hopefully is the interesting version bit.
228 Perforce - The Fast Software Configuration Management System.
229 Copyright 1995-2011 Perforce Software. All rights reserved.
230 Rev. P4/NTX86/2011.1/393975 (2011/12/16).
232 global _p4_version_string
233 if not _p4_version_string
:
234 a
= p4_read_pipe_lines(["-V"])
235 _p4_version_string
= a
[-1].rstrip()
236 return _p4_version_string
238 def p4_integrate(src
, dest
):
239 p4_system(["integrate", "-Dt", wildcard_encode(src
), wildcard_encode(dest
)])
241 def p4_sync(f
, *options
):
242 p4_system(["sync"] + list(options
) + [wildcard_encode(f
)])
245 # forcibly add file names with wildcards
246 if wildcard_present(f
):
247 p4_system(["add", "-f", f
])
249 p4_system(["add", f
])
252 p4_system(["delete", wildcard_encode(f
)])
255 p4_system(["edit", wildcard_encode(f
)])
258 p4_system(["revert", wildcard_encode(f
)])
260 def p4_reopen(type, f
):
261 p4_system(["reopen", "-t", type, wildcard_encode(f
)])
263 def p4_move(src
, dest
):
264 p4_system(["move", "-k", wildcard_encode(src
), wildcard_encode(dest
)])
266 def p4_last_change():
267 results
= p4CmdList(["changes", "-m", "1"])
268 return int(results
[0]['change'])
270 def p4_describe(change
):
271 """Make sure it returns a valid result by checking for
272 the presence of field "time". Return a dict of the
275 ds
= p4CmdList(["describe", "-s", str(change
)])
277 die("p4 describe -s %d did not return 1 result: %s" % (change
, str(ds
)))
281 if "p4ExitCode" in d
:
282 die("p4 describe -s %d exited with %d: %s" % (change
, d
["p4ExitCode"],
285 if d
["code"] == "error":
286 die("p4 describe -s %d returned error code: %s" % (change
, str(d
)))
289 die("p4 describe -s %d returned no \"time\": %s" % (change
, str(d
)))
294 # Canonicalize the p4 type and return a tuple of the
295 # base type, plus any modifiers. See "p4 help filetypes"
296 # for a list and explanation.
298 def split_p4_type(p4type
):
300 p4_filetypes_historical
= {
301 "ctempobj": "binary+Sw",
307 "tempobj": "binary+FSw",
308 "ubinary": "binary+F",
309 "uresource": "resource+F",
310 "uxbinary": "binary+Fx",
311 "xbinary": "binary+x",
313 "xtempobj": "binary+Swx",
315 "xunicode": "unicode+x",
318 if p4type
in p4_filetypes_historical
:
319 p4type
= p4_filetypes_historical
[p4type
]
321 s
= p4type
.split("+")
329 # return the raw p4 type of a file (text, text+ko, etc)
332 results
= p4CmdList(["fstat", "-T", "headType", wildcard_encode(f
)])
333 return results
[0]['headType']
336 # Given a type base and modifier, return a regexp matching
337 # the keywords that can be expanded in the file
339 def p4_keywords_regexp_for_type(base
, type_mods
):
340 if base
in ("text", "unicode", "binary"):
342 if "ko" in type_mods
:
344 elif "k" in type_mods
:
345 kwords
= 'Id|Header|Author|Date|DateTime|Change|File|Revision'
349 \$ # Starts with a dollar, followed by...
350 (%s) # one of the keywords, followed by...
351 (:[^$\n]+)? # possibly an old expansion, followed by...
359 # Given a file, return a regexp matching the possible
360 # RCS keywords that will be expanded, or None for files
361 # with kw expansion turned off.
363 def p4_keywords_regexp_for_file(file):
364 if not os
.path
.exists(file):
367 (type_base
, type_mods
) = split_p4_type(p4_type(file))
368 return p4_keywords_regexp_for_type(type_base
, type_mods
)
370 def setP4ExecBit(file, mode
):
371 # Reopens an already open file and changes the execute bit to match
372 # the execute bit setting in the passed in mode.
376 if not isModeExec(mode
):
377 p4Type
= getP4OpenedType(file)
378 p4Type
= re
.sub('^([cku]?)x(.*)', '\\1\\2', p4Type
)
379 p4Type
= re
.sub('(.*?\+.*?)x(.*?)', '\\1\\2', p4Type
)
380 if p4Type
[-1] == "+":
381 p4Type
= p4Type
[0:-1]
383 p4_reopen(p4Type
, file)
385 def getP4OpenedType(file):
386 # Returns the perforce file type for the given file.
388 result
= p4_read_pipe(["opened", wildcard_encode(file)])
389 match
= re
.match(".*\((.+)\)( \*exclusive\*)?\r?$", result
)
391 return match
.group(1)
393 die("Could not determine file type for %s (result: '%s')" % (file, result
))
395 # Return the set of all p4 labels
396 def getP4Labels(depotPaths
):
398 if isinstance(depotPaths
,basestring
):
399 depotPaths
= [depotPaths
]
401 for l
in p4CmdList(["labels"] + ["%s..." % p
for p
in depotPaths
]):
407 # Return the set of all git tags
410 for line
in read_pipe_lines(["git", "tag"]):
415 def diffTreePattern():
416 # This is a simple generator for the diff tree regex pattern. This could be
417 # a class variable if this and parseDiffTreeEntry were a part of a class.
418 pattern
= re
.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)')
422 def parseDiffTreeEntry(entry
):
423 """Parses a single diff tree entry into its component elements.
425 See git-diff-tree(1) manpage for details about the format of the diff
426 output. This method returns a dictionary with the following elements:
428 src_mode - The mode of the source file
429 dst_mode - The mode of the destination file
430 src_sha1 - The sha1 for the source file
431 dst_sha1 - The sha1 fr the destination file
432 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc)
433 status_score - The score for the status (applicable for 'C' and 'R'
434 statuses). This is None if there is no score.
435 src - The path for the source file.
436 dst - The path for the destination file. This is only present for
437 copy or renames. If it is not present, this is None.
439 If the pattern is not matched, None is returned."""
441 match
= diffTreePattern().next().match(entry
)
444 'src_mode': match
.group(1),
445 'dst_mode': match
.group(2),
446 'src_sha1': match
.group(3),
447 'dst_sha1': match
.group(4),
448 'status': match
.group(5),
449 'status_score': match
.group(6),
450 'src': match
.group(7),
451 'dst': match
.group(10)
455 def isModeExec(mode
):
456 # Returns True if the given git mode represents an executable file,
458 return mode
[-3:] == "755"
460 def isModeExecChanged(src_mode
, dst_mode
):
461 return isModeExec(src_mode
) != isModeExec(dst_mode
)
463 def p4CmdList(cmd
, stdin
=None, stdin_mode
='w+b', cb
=None):
465 if isinstance(cmd
,basestring
):
472 cmd
= p4_build_cmd(cmd
)
474 sys
.stderr
.write("Opening pipe: %s\n" % str(cmd
))
476 # Use a temporary file to avoid deadlocks without
477 # subprocess.communicate(), which would put another copy
478 # of stdout into memory.
480 if stdin
is not None:
481 stdin_file
= tempfile
.TemporaryFile(prefix
='p4-stdin', mode
=stdin_mode
)
482 if isinstance(stdin
,basestring
):
483 stdin_file
.write(stdin
)
486 stdin_file
.write(i
+ '\n')
490 p4
= subprocess
.Popen(cmd
,
493 stdout
=subprocess
.PIPE
)
498 entry
= marshal
.load(p4
.stdout
)
508 entry
["p4ExitCode"] = exitCode
514 list = p4CmdList(cmd
)
520 def p4Where(depotPath
):
521 if not depotPath
.endswith("/"):
523 depotPathLong
= depotPath
+ "..."
524 outputList
= p4CmdList(["where", depotPathLong
])
526 for entry
in outputList
:
527 if "depotFile" in entry
:
528 # Search for the base client side depot path, as long as it starts with the branch's P4 path.
529 # The base path always ends with "/...".
530 if entry
["depotFile"].find(depotPath
) == 0 and entry
["depotFile"][-4:] == "/...":
533 elif "data" in entry
:
534 data
= entry
.get("data")
535 space
= data
.find(" ")
536 if data
[:space
] == depotPath
:
541 if output
["code"] == "error":
545 clientPath
= output
.get("path")
546 elif "data" in output
:
547 data
= output
.get("data")
548 lastSpace
= data
.rfind(" ")
549 clientPath
= data
[lastSpace
+ 1:]
551 if clientPath
.endswith("..."):
552 clientPath
= clientPath
[:-3]
555 def currentGitBranch():
556 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
558 def isValidGitDir(path
):
559 if (os
.path
.exists(path
+ "/HEAD")
560 and os
.path
.exists(path
+ "/refs") and os
.path
.exists(path
+ "/objects")):
564 def parseRevision(ref
):
565 return read_pipe("git rev-parse %s" % ref
).strip()
567 def branchExists(ref
):
568 rev
= read_pipe(["git", "rev-parse", "-q", "--verify", ref
],
572 def extractLogMessageFromGitCommit(commit
):
575 ## fixme: title is first line of commit, not 1st paragraph.
577 for log
in read_pipe_lines("git cat-file commit %s" % commit
):
586 def extractSettingsGitLog(log
):
588 for line
in log
.split("\n"):
590 m
= re
.search (r
"^ *\[git-p4: (.*)\]$", line
)
594 assignments
= m
.group(1).split (':')
595 for a
in assignments
:
597 key
= vals
[0].strip()
598 val
= ('='.join (vals
[1:])).strip()
599 if val
.endswith ('\"') and val
.startswith('"'):
604 paths
= values
.get("depot-paths")
606 paths
= values
.get("depot-path")
608 values
['depot-paths'] = paths
.split(',')
611 def gitBranchExists(branch
):
612 proc
= subprocess
.Popen(["git", "rev-parse", branch
],
613 stderr
=subprocess
.PIPE
, stdout
=subprocess
.PIPE
);
614 return proc
.wait() == 0;
618 def gitConfig(key
, typeSpecifier
=None):
619 if not _gitConfig
.has_key(key
):
620 cmd
= [ "git", "config" ]
622 cmd
+= [ typeSpecifier
]
624 s
= read_pipe(cmd
, ignore_error
=True)
625 _gitConfig
[key
] = s
.strip()
626 return _gitConfig
[key
]
628 def gitConfigBool(key
):
629 """Return a bool, using git config --bool. It is True only if the
630 variable is set to true, and False if set to false or not present
633 if not _gitConfig
.has_key(key
):
634 _gitConfig
[key
] = gitConfig(key
, '--bool') == "true"
635 return _gitConfig
[key
]
637 def gitConfigInt(key
):
638 if not _gitConfig
.has_key(key
):
639 cmd
= [ "git", "config", "--int", key
]
640 s
= read_pipe(cmd
, ignore_error
=True)
643 _gitConfig
[key
] = int(gitConfig(key
, '--int'))
645 _gitConfig
[key
] = None
646 return _gitConfig
[key
]
648 def gitConfigList(key
):
649 if not _gitConfig
.has_key(key
):
650 s
= read_pipe(["git", "config", "--get-all", key
], ignore_error
=True)
651 _gitConfig
[key
] = s
.strip().split(os
.linesep
)
652 if _gitConfig
[key
] == ['']:
654 return _gitConfig
[key
]
656 def p4BranchesInGit(branchesAreInRemotes
=True):
657 """Find all the branches whose names start with "p4/", looking
658 in remotes or heads as specified by the argument. Return
659 a dictionary of { branch: revision } for each one found.
660 The branch names are the short names, without any
665 cmdline
= "git rev-parse --symbolic "
666 if branchesAreInRemotes
:
667 cmdline
+= "--remotes"
669 cmdline
+= "--branches"
671 for line
in read_pipe_lines(cmdline
):
675 if not line
.startswith('p4/'):
677 # special symbolic ref to p4/master
678 if line
== "p4/HEAD":
681 # strip off p4/ prefix
682 branch
= line
[len("p4/"):]
684 branches
[branch
] = parseRevision(line
)
688 def branch_exists(branch
):
689 """Make sure that the given ref name really exists."""
691 cmd
= [ "git", "rev-parse", "--symbolic", "--verify", branch
]
692 p
= subprocess
.Popen(cmd
, stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
)
693 out
, _
= p
.communicate()
696 # expect exactly one line of output: the branch name
697 return out
.rstrip() == branch
699 def findUpstreamBranchPoint(head
= "HEAD"):
700 branches
= p4BranchesInGit()
701 # map from depot-path to branch name
702 branchByDepotPath
= {}
703 for branch
in branches
.keys():
704 tip
= branches
[branch
]
705 log
= extractLogMessageFromGitCommit(tip
)
706 settings
= extractSettingsGitLog(log
)
707 if settings
.has_key("depot-paths"):
708 paths
= ",".join(settings
["depot-paths"])
709 branchByDepotPath
[paths
] = "remotes/p4/" + branch
713 while parent
< 65535:
714 commit
= head
+ "~%s" % parent
715 log
= extractLogMessageFromGitCommit(commit
)
716 settings
= extractSettingsGitLog(log
)
717 if settings
.has_key("depot-paths"):
718 paths
= ",".join(settings
["depot-paths"])
719 if branchByDepotPath
.has_key(paths
):
720 return [branchByDepotPath
[paths
], settings
]
724 return ["", settings
]
726 def createOrUpdateBranchesFromOrigin(localRefPrefix
= "refs/remotes/p4/", silent
=True):
728 print ("Creating/updating branch(es) in %s based on origin branch(es)"
731 originPrefix
= "origin/p4/"
733 for line
in read_pipe_lines("git rev-parse --symbolic --remotes"):
735 if (not line
.startswith(originPrefix
)) or line
.endswith("HEAD"):
738 headName
= line
[len(originPrefix
):]
739 remoteHead
= localRefPrefix
+ headName
742 original
= extractSettingsGitLog(extractLogMessageFromGitCommit(originHead
))
743 if (not original
.has_key('depot-paths')
744 or not original
.has_key('change')):
748 if not gitBranchExists(remoteHead
):
750 print "creating %s" % remoteHead
753 settings
= extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead
))
754 if settings
.has_key('change') > 0:
755 if settings
['depot-paths'] == original
['depot-paths']:
756 originP4Change
= int(original
['change'])
757 p4Change
= int(settings
['change'])
758 if originP4Change
> p4Change
:
759 print ("%s (%s) is newer than %s (%s). "
760 "Updating p4 branch from origin."
761 % (originHead
, originP4Change
,
762 remoteHead
, p4Change
))
765 print ("Ignoring: %s was imported from %s while "
766 "%s was imported from %s"
767 % (originHead
, ','.join(original
['depot-paths']),
768 remoteHead
, ','.join(settings
['depot-paths'])))
771 system("git update-ref %s %s" % (remoteHead
, originHead
))
773 def originP4BranchesExist():
774 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
777 def p4ParseNumericChangeRange(parts
):
778 changeStart
= int(parts
[0][1:])
779 if parts
[1] == '#head':
780 changeEnd
= p4_last_change()
782 changeEnd
= int(parts
[1])
784 return (changeStart
, changeEnd
)
786 def chooseBlockSize(blockSize
):
790 return defaultBlockSize
792 def p4ChangesForPaths(depotPaths
, changeRange
, requestedBlockSize
):
795 # Parse the change range into start and end. Try to find integer
796 # revision ranges as these can be broken up into blocks to avoid
797 # hitting server-side limits (maxrows, maxscanresults). But if
798 # that doesn't work, fall back to using the raw revision specifier
799 # strings, without using block mode.
801 if changeRange
is None or changeRange
== '':
803 changeEnd
= p4_last_change()
804 block_size
= chooseBlockSize(requestedBlockSize
)
806 parts
= changeRange
.split(',')
807 assert len(parts
) == 2
809 (changeStart
, changeEnd
) = p4ParseNumericChangeRange(parts
)
810 block_size
= chooseBlockSize(requestedBlockSize
)
812 changeStart
= parts
[0][1:]
814 if requestedBlockSize
:
815 die("cannot use --changes-block-size with non-numeric revisions")
818 # Accumulate change numbers in a dictionary to avoid duplicates
822 # Retrieve changes a block at a time, to prevent running
823 # into a MaxResults/MaxScanRows error from the server.
829 end
= min(changeEnd
, changeStart
+ block_size
)
830 revisionRange
= "%d,%d" % (changeStart
, end
)
832 revisionRange
= "%s,%s" % (changeStart
, changeEnd
)
834 cmd
+= ["%s...@%s" % (p
, revisionRange
)]
836 for line
in p4_read_pipe_lines(cmd
):
837 changeNum
= int(line
.split(" ")[1])
838 changes
[changeNum
] = True
846 changeStart
= end
+ 1
848 changelist
= changes
.keys()
852 def p4PathStartsWith(path
, prefix
):
853 # This method tries to remedy a potential mixed-case issue:
855 # If UserA adds //depot/DirA/file1
856 # and UserB adds //depot/dira/file2
858 # we may or may not have a problem. If you have core.ignorecase=true,
859 # we treat DirA and dira as the same directory
860 if gitConfigBool("core.ignorecase"):
861 return path
.lower().startswith(prefix
.lower())
862 return path
.startswith(prefix
)
865 """Look at the p4 client spec, create a View() object that contains
866 all the mappings, and return it."""
868 specList
= p4CmdList("client -o")
869 if len(specList
) != 1:
870 die('Output from "client -o" is %d lines, expecting 1' %
873 # dictionary of all client parameters
877 client_name
= entry
["Client"]
879 # just the keys that start with "View"
880 view_keys
= [ k
for k
in entry
.keys() if k
.startswith("View") ]
883 view
= View(client_name
)
885 # append the lines, in order, to the view
886 for view_num
in range(len(view_keys
)):
887 k
= "View%d" % view_num
888 if k
not in view_keys
:
889 die("Expected view key %s missing" % k
)
890 view
.append(entry
[k
])
895 """Grab the client directory."""
897 output
= p4CmdList("client -o")
899 die('Output from "client -o" is %d lines, expecting 1' % len(output
))
902 if "Root" not in entry
:
903 die('Client has no "Root"')
908 # P4 wildcards are not allowed in filenames. P4 complains
909 # if you simply add them, but you can force it with "-f", in
910 # which case it translates them into %xx encoding internally.
912 def wildcard_decode(path
):
913 # Search for and fix just these four characters. Do % last so
914 # that fixing it does not inadvertently create new %-escapes.
915 # Cannot have * in a filename in windows; untested as to
916 # what p4 would do in such a case.
917 if not platform
.system() == "Windows":
918 path
= path
.replace("%2A", "*")
919 path
= path
.replace("%23", "#") \
920 .replace("%40", "@") \
924 def wildcard_encode(path
):
925 # do % first to avoid double-encoding the %s introduced here
926 path
= path
.replace("%", "%25") \
927 .replace("*", "%2A") \
928 .replace("#", "%23") \
932 def wildcard_present(path
):
933 m
= re
.search("[*#@%]", path
)
936 class LargeFileSystem(object):
937 """Base class for large file system support."""
939 def __init__(self
, writeToGitStream
):
940 self
.largeFiles
= set()
941 self
.writeToGitStream
= writeToGitStream
943 def generatePointer(self
, cloneDestination
, contentFile
):
944 """Return the content of a pointer file that is stored in Git instead of
945 the actual content."""
946 assert False, "Method 'generatePointer' required in " + self
.__class
__.__name
__
948 def pushFile(self
, localLargeFile
):
949 """Push the actual content which is not stored in the Git repository to
951 assert False, "Method 'pushFile' required in " + self
.__class
__.__name
__
953 def hasLargeFileExtension(self
, relPath
):
956 [relPath
.endswith('.' + e
) for e
in gitConfigList('git-p4.largeFileExtensions')],
960 def generateTempFile(self
, contents
):
961 contentFile
= tempfile
.NamedTemporaryFile(prefix
='git-p4-large-file', delete
=False)
965 return contentFile
.name
967 def exceedsLargeFileThreshold(self
, relPath
, contents
):
968 if gitConfigInt('git-p4.largeFileThreshold'):
969 contentsSize
= sum(len(d
) for d
in contents
)
970 if contentsSize
> gitConfigInt('git-p4.largeFileThreshold'):
972 if gitConfigInt('git-p4.largeFileCompressedThreshold'):
973 contentsSize
= sum(len(d
) for d
in contents
)
974 if contentsSize
<= gitConfigInt('git-p4.largeFileCompressedThreshold'):
976 contentTempFile
= self
.generateTempFile(contents
)
977 compressedContentFile
= tempfile
.NamedTemporaryFile(prefix
='git-p4-large-file', delete
=False)
978 zf
= zipfile
.ZipFile(compressedContentFile
.name
, mode
='w')
979 zf
.write(contentTempFile
, compress_type
=zipfile
.ZIP_DEFLATED
)
981 compressedContentsSize
= zf
.infolist()[0].compress_size
982 os
.remove(contentTempFile
)
983 os
.remove(compressedContentFile
.name
)
984 if compressedContentsSize
> gitConfigInt('git-p4.largeFileCompressedThreshold'):
988 def addLargeFile(self
, relPath
):
989 self
.largeFiles
.add(relPath
)
991 def removeLargeFile(self
, relPath
):
992 self
.largeFiles
.remove(relPath
)
994 def isLargeFile(self
, relPath
):
995 return relPath
in self
.largeFiles
997 def processContent(self
, git_mode
, relPath
, contents
):
998 """Processes the content of git fast import. This method decides if a
999 file is stored in the large file system and handles all necessary
1001 if self
.exceedsLargeFileThreshold(relPath
, contents
) or self
.hasLargeFileExtension(relPath
):
1002 contentTempFile
= self
.generateTempFile(contents
)
1003 (git_mode
, contents
, localLargeFile
) = self
.generatePointer(contentTempFile
)
1005 # Move temp file to final location in large file system
1006 largeFileDir
= os
.path
.dirname(localLargeFile
)
1007 if not os
.path
.isdir(largeFileDir
):
1008 os
.makedirs(largeFileDir
)
1009 shutil
.move(contentTempFile
, localLargeFile
)
1010 self
.addLargeFile(relPath
)
1011 if gitConfigBool('git-p4.largeFilePush'):
1012 self
.pushFile(localLargeFile
)
1014 sys
.stderr
.write("%s moved to large file system (%s)\n" % (relPath
, localLargeFile
))
1015 return (git_mode
, contents
)
1017 class MockLFS(LargeFileSystem
):
1018 """Mock large file system for testing."""
1020 def generatePointer(self
, contentFile
):
1021 """The pointer content is the original content prefixed with "pointer-".
1022 The local filename of the large file storage is derived from the file content.
1024 with
open(contentFile
, 'r') as f
:
1027 pointerContents
= 'pointer-' + content
1028 localLargeFile
= os
.path
.join(os
.getcwd(), '.git', 'mock-storage', 'local', content
[:-1])
1029 return (gitMode
, pointerContents
, localLargeFile
)
1031 def pushFile(self
, localLargeFile
):
1032 """The remote filename of the large file storage is the same as the local
1033 one but in a different directory.
1035 remotePath
= os
.path
.join(os
.path
.dirname(localLargeFile
), '..', 'remote')
1036 if not os
.path
.exists(remotePath
):
1037 os
.makedirs(remotePath
)
1038 shutil
.copyfile(localLargeFile
, os
.path
.join(remotePath
, os
.path
.basename(localLargeFile
)))
1040 class GitLFS(LargeFileSystem
):
1041 """Git LFS as backend for the git-p4 large file system.
1042 See https://git-lfs.github.com/ for details."""
1044 def __init__(self
, *args
):
1045 LargeFileSystem
.__init
__(self
, *args
)
1046 self
.baseGitAttributes
= []
1048 def generatePointer(self
, contentFile
):
1049 """Generate a Git LFS pointer for the content. Return LFS Pointer file
1050 mode and content which is stored in the Git repository instead of
1051 the actual content. Return also the new location of the actual
1054 pointerProcess
= subprocess
.Popen(
1055 ['git', 'lfs', 'pointer', '--file=' + contentFile
],
1056 stdout
=subprocess
.PIPE
1058 pointerFile
= pointerProcess
.stdout
.read()
1059 if pointerProcess
.wait():
1060 os
.remove(contentFile
)
1061 die('git-lfs pointer command failed. Did you install the extension?')
1062 pointerContents
= [i
+'\n' for i
in pointerFile
.split('\n')[2:][:-1]]
1063 oid
= pointerContents
[1].split(' ')[1].split(':')[1][:-1]
1064 localLargeFile
= os
.path
.join(
1066 '.git', 'lfs', 'objects', oid
[:2], oid
[2:4],
1069 # LFS Spec states that pointer files should not have the executable bit set.
1071 return (gitMode
, pointerContents
, localLargeFile
)
1073 def pushFile(self
, localLargeFile
):
1074 uploadProcess
= subprocess
.Popen(
1075 ['git', 'lfs', 'push', '--object-id', 'origin', os
.path
.basename(localLargeFile
)]
1077 if uploadProcess
.wait():
1078 die('git-lfs push command failed. Did you define a remote?')
1080 def generateGitAttributes(self
):
1082 self
.baseGitAttributes
+
1086 '# Git LFS (see https://git-lfs.github.com/)\n',
1089 ['*.' + f
.replace(' ', '[[:space:]]') + ' filter=lfs -text\n'
1090 for f
in sorted(gitConfigList('git-p4.largeFileExtensions'))
1092 ['/' + f
.replace(' ', '[[:space:]]') + ' filter=lfs -text\n'
1093 for f
in sorted(self
.largeFiles
) if not self
.hasLargeFileExtension(f
)
1097 def addLargeFile(self
, relPath
):
1098 LargeFileSystem
.addLargeFile(self
, relPath
)
1099 self
.writeToGitStream('100644', '.gitattributes', self
.generateGitAttributes())
1101 def removeLargeFile(self
, relPath
):
1102 LargeFileSystem
.removeLargeFile(self
, relPath
)
1103 self
.writeToGitStream('100644', '.gitattributes', self
.generateGitAttributes())
1105 def processContent(self
, git_mode
, relPath
, contents
):
1106 if relPath
== '.gitattributes':
1107 self
.baseGitAttributes
= contents
1108 return (git_mode
, self
.generateGitAttributes())
1110 return LargeFileSystem
.processContent(self
, git_mode
, relPath
, contents
)
1114 self
.usage
= "usage: %prog [options]"
1115 self
.needsGit
= True
1116 self
.verbose
= False
1120 self
.userMapFromPerforceServer
= False
1121 self
.myP4UserId
= None
1125 return self
.myP4UserId
1127 results
= p4CmdList("user -o")
1129 if r
.has_key('User'):
1130 self
.myP4UserId
= r
['User']
1132 die("Could not find your p4 user id")
1134 def p4UserIsMe(self
, p4User
):
1135 # return True if the given p4 user is actually me
1136 me
= self
.p4UserId()
1137 if not p4User
or p4User
!= me
:
1142 def getUserCacheFilename(self
):
1143 home
= os
.environ
.get("HOME", os
.environ
.get("USERPROFILE"))
1144 return home
+ "/.gitp4-usercache.txt"
1146 def getUserMapFromPerforceServer(self
):
1147 if self
.userMapFromPerforceServer
:
1152 for output
in p4CmdList("users"):
1153 if not output
.has_key("User"):
1155 self
.users
[output
["User"]] = output
["FullName"] + " <" + output
["Email"] + ">"
1156 self
.emails
[output
["Email"]] = output
["User"]
1160 for (key
, val
) in self
.users
.items():
1161 s
+= "%s\t%s\n" % (key
.expandtabs(1), val
.expandtabs(1))
1163 open(self
.getUserCacheFilename(), "wb").write(s
)
1164 self
.userMapFromPerforceServer
= True
1166 def loadUserMapFromCache(self
):
1168 self
.userMapFromPerforceServer
= False
1170 cache
= open(self
.getUserCacheFilename(), "rb")
1171 lines
= cache
.readlines()
1174 entry
= line
.strip().split("\t")
1175 self
.users
[entry
[0]] = entry
[1]
1177 self
.getUserMapFromPerforceServer()
1179 class P4Debug(Command
):
1181 Command
.__init
__(self
)
1183 self
.description
= "A tool to debug the output of p4 -G."
1184 self
.needsGit
= False
1186 def run(self
, args
):
1188 for output
in p4CmdList(args
):
1189 print 'Element: %d' % j
1194 class P4RollBack(Command
):
1196 Command
.__init
__(self
)
1198 optparse
.make_option("--local", dest
="rollbackLocalBranches", action
="store_true")
1200 self
.description
= "A tool to debug the multi-branch import. Don't use :)"
1201 self
.rollbackLocalBranches
= False
1203 def run(self
, args
):
1206 maxChange
= int(args
[0])
1208 if "p4ExitCode" in p4Cmd("changes -m 1"):
1209 die("Problems executing p4");
1211 if self
.rollbackLocalBranches
:
1212 refPrefix
= "refs/heads/"
1213 lines
= read_pipe_lines("git rev-parse --symbolic --branches")
1215 refPrefix
= "refs/remotes/"
1216 lines
= read_pipe_lines("git rev-parse --symbolic --remotes")
1219 if self
.rollbackLocalBranches
or (line
.startswith("p4/") and line
!= "p4/HEAD\n"):
1221 ref
= refPrefix
+ line
1222 log
= extractLogMessageFromGitCommit(ref
)
1223 settings
= extractSettingsGitLog(log
)
1225 depotPaths
= settings
['depot-paths']
1226 change
= settings
['change']
1230 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p
, maxChange
)
1231 for p
in depotPaths
]))) == 0:
1232 print "Branch %s did not exist at change %s, deleting." % (ref
, maxChange
)
1233 system("git update-ref -d %s `git rev-parse %s`" % (ref
, ref
))
1236 while change
and int(change
) > maxChange
:
1239 print "%s is at %s ; rewinding towards %s" % (ref
, change
, maxChange
)
1240 system("git update-ref %s \"%s^\"" % (ref
, ref
))
1241 log
= extractLogMessageFromGitCommit(ref
)
1242 settings
= extractSettingsGitLog(log
)
1245 depotPaths
= settings
['depot-paths']
1246 change
= settings
['change']
1249 print "%s rewound to %s" % (ref
, change
)
1253 class P4Submit(Command
, P4UserMap
):
1255 conflict_behavior_choices
= ("ask", "skip", "quit")
1258 Command
.__init
__(self
)
1259 P4UserMap
.__init
__(self
)
1261 optparse
.make_option("--origin", dest
="origin"),
1262 optparse
.make_option("-M", dest
="detectRenames", action
="store_true"),
1263 # preserve the user, requires relevant p4 permissions
1264 optparse
.make_option("--preserve-user", dest
="preserveUser", action
="store_true"),
1265 optparse
.make_option("--export-labels", dest
="exportLabels", action
="store_true"),
1266 optparse
.make_option("--dry-run", "-n", dest
="dry_run", action
="store_true"),
1267 optparse
.make_option("--prepare-p4-only", dest
="prepare_p4_only", action
="store_true"),
1268 optparse
.make_option("--conflict", dest
="conflict_behavior",
1269 choices
=self
.conflict_behavior_choices
),
1270 optparse
.make_option("--branch", dest
="branch"),
1272 self
.description
= "Submit changes from git to the perforce depot."
1273 self
.usage
+= " [name of git branch to submit into perforce depot]"
1275 self
.detectRenames
= False
1276 self
.preserveUser
= gitConfigBool("git-p4.preserveUser")
1277 self
.dry_run
= False
1278 self
.prepare_p4_only
= False
1279 self
.conflict_behavior
= None
1280 self
.isWindows
= (platform
.system() == "Windows")
1281 self
.exportLabels
= False
1282 self
.p4HasMoveCommand
= p4_has_move_command()
1285 if gitConfig('git-p4.largeFileSystem'):
1286 die("Large file system not supported for git-p4 submit command. Please remove it from config.")
1289 if len(p4CmdList("opened ...")) > 0:
1290 die("You have files opened with perforce! Close them before starting the sync.")
1292 def separate_jobs_from_description(self
, message
):
1293 """Extract and return a possible Jobs field in the commit
1294 message. It goes into a separate section in the p4 change
1297 A jobs line starts with "Jobs:" and looks like a new field
1298 in a form. Values are white-space separated on the same
1299 line or on following lines that start with a tab.
1301 This does not parse and extract the full git commit message
1302 like a p4 form. It just sees the Jobs: line as a marker
1303 to pass everything from then on directly into the p4 form,
1304 but outside the description section.
1306 Return a tuple (stripped log message, jobs string)."""
1308 m
= re
.search(r
'^Jobs:', message
, re
.MULTILINE
)
1310 return (message
, None)
1312 jobtext
= message
[m
.start():]
1313 stripped_message
= message
[:m
.start()].rstrip()
1314 return (stripped_message
, jobtext
)
1316 def prepareLogMessage(self
, template
, message
, jobs
):
1317 """Edits the template returned from "p4 change -o" to insert
1318 the message in the Description field, and the jobs text in
1322 inDescriptionSection
= False
1324 for line
in template
.split("\n"):
1325 if line
.startswith("#"):
1326 result
+= line
+ "\n"
1329 if inDescriptionSection
:
1330 if line
.startswith("Files:") or line
.startswith("Jobs:"):
1331 inDescriptionSection
= False
1332 # insert Jobs section
1334 result
+= jobs
+ "\n"
1338 if line
.startswith("Description:"):
1339 inDescriptionSection
= True
1341 for messageLine
in message
.split("\n"):
1342 line
+= "\t" + messageLine
+ "\n"
1344 result
+= line
+ "\n"
1348 def patchRCSKeywords(self
, file, pattern
):
1349 # Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern
1350 (handle
, outFileName
) = tempfile
.mkstemp(dir='.')
1352 outFile
= os
.fdopen(handle
, "w+")
1353 inFile
= open(file, "r")
1354 regexp
= re
.compile(pattern
, re
.VERBOSE
)
1355 for line
in inFile
.readlines():
1356 line
= regexp
.sub(r
'$\1$', line
)
1360 # Forcibly overwrite the original file
1362 shutil
.move(outFileName
, file)
1364 # cleanup our temporary file
1365 os
.unlink(outFileName
)
1366 print "Failed to strip RCS keywords in %s" % file
1369 print "Patched up RCS keywords in %s" % file
1371 def p4UserForCommit(self
,id):
1372 # Return the tuple (perforce user,git email) for a given git commit id
1373 self
.getUserMapFromPerforceServer()
1374 gitEmail
= read_pipe(["git", "log", "--max-count=1",
1375 "--format=%ae", id])
1376 gitEmail
= gitEmail
.strip()
1377 if not self
.emails
.has_key(gitEmail
):
1378 return (None,gitEmail
)
1380 return (self
.emails
[gitEmail
],gitEmail
)
1382 def checkValidP4Users(self
,commits
):
1383 # check if any git authors cannot be mapped to p4 users
1385 (user
,email
) = self
.p4UserForCommit(id)
1387 msg
= "Cannot find p4 user for email %s in commit %s." % (email
, id)
1388 if gitConfigBool("git-p4.allowMissingP4Users"):
1391 die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg
)
1393 def lastP4Changelist(self
):
1394 # Get back the last changelist number submitted in this client spec. This
1395 # then gets used to patch up the username in the change. If the same
1396 # client spec is being used by multiple processes then this might go
1398 results
= p4CmdList("client -o") # find the current client
1401 if r
.has_key('Client'):
1402 client
= r
['Client']
1405 die("could not get client spec")
1406 results
= p4CmdList(["changes", "-c", client
, "-m", "1"])
1408 if r
.has_key('change'):
1410 die("Could not get changelist number for last submit - cannot patch up user details")
1412 def modifyChangelistUser(self
, changelist
, newUser
):
1413 # fixup the user field of a changelist after it has been submitted.
1414 changes
= p4CmdList("change -o %s" % changelist
)
1415 if len(changes
) != 1:
1416 die("Bad output from p4 change modifying %s to user %s" %
1417 (changelist
, newUser
))
1420 if c
['User'] == newUser
: return # nothing to do
1422 input = marshal
.dumps(c
)
1424 result
= p4CmdList("change -f -i", stdin
=input)
1426 if r
.has_key('code'):
1427 if r
['code'] == 'error':
1428 die("Could not modify user field of changelist %s to %s:%s" % (changelist
, newUser
, r
['data']))
1429 if r
.has_key('data'):
1430 print("Updated user field for changelist %s to %s" % (changelist
, newUser
))
1432 die("Could not modify user field of changelist %s to %s" % (changelist
, newUser
))
1434 def canChangeChangelists(self
):
1435 # check to see if we have p4 admin or super-user permissions, either of
1436 # which are required to modify changelists.
1437 results
= p4CmdList(["protects", self
.depotPath
])
1439 if r
.has_key('perm'):
1440 if r
['perm'] == 'admin':
1442 if r
['perm'] == 'super':
1446 def prepareSubmitTemplate(self
):
1447 """Run "p4 change -o" to grab a change specification template.
1448 This does not use "p4 -G", as it is nice to keep the submission
1449 template in original order, since a human might edit it.
1451 Remove lines in the Files section that show changes to files
1452 outside the depot path we're committing into."""
1455 inFilesSection
= False
1456 for line
in p4_read_pipe_lines(['change', '-o']):
1457 if line
.endswith("\r\n"):
1458 line
= line
[:-2] + "\n"
1460 if line
.startswith("\t"):
1461 # path starts and ends with a tab
1463 lastTab
= path
.rfind("\t")
1465 path
= path
[:lastTab
]
1466 if not p4PathStartsWith(path
, self
.depotPath
):
1469 inFilesSection
= False
1471 if line
.startswith("Files:"):
1472 inFilesSection
= True
1478 def edit_template(self
, template_file
):
1479 """Invoke the editor to let the user change the submission
1480 message. Return true if okay to continue with the submit."""
1482 # if configured to skip the editing part, just submit
1483 if gitConfigBool("git-p4.skipSubmitEdit"):
1486 # look at the modification time, to check later if the user saved
1488 mtime
= os
.stat(template_file
).st_mtime
1491 if os
.environ
.has_key("P4EDITOR") and (os
.environ
.get("P4EDITOR") != ""):
1492 editor
= os
.environ
.get("P4EDITOR")
1494 editor
= read_pipe("git var GIT_EDITOR").strip()
1495 system(["sh", "-c", ('%s "$@"' % editor
), editor
, template_file
])
1497 # If the file was not saved, prompt to see if this patch should
1498 # be skipped. But skip this verification step if configured so.
1499 if gitConfigBool("git-p4.skipSubmitEditCheck"):
1502 # modification time updated means user saved the file
1503 if os
.stat(template_file
).st_mtime
> mtime
:
1507 response
= raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")
1513 def get_diff_description(self
, editedFiles
, filesToAdd
):
1515 if os
.environ
.has_key("P4DIFF"):
1516 del(os
.environ
["P4DIFF"])
1518 for editedFile
in editedFiles
:
1519 diff
+= p4_read_pipe(['diff', '-du',
1520 wildcard_encode(editedFile
)])
1524 for newFile
in filesToAdd
:
1525 newdiff
+= "==== new file ====\n"
1526 newdiff
+= "--- /dev/null\n"
1527 newdiff
+= "+++ %s\n" % newFile
1528 f
= open(newFile
, "r")
1529 for line
in f
.readlines():
1530 newdiff
+= "+" + line
1533 return (diff
+ newdiff
).replace('\r\n', '\n')
1535 def applyCommit(self
, id):
1536 """Apply one commit, return True if it succeeded."""
1538 print "Applying", read_pipe(["git", "show", "-s",
1539 "--format=format:%h %s", id])
1541 (p4User
, gitEmail
) = self
.p4UserForCommit(id)
1543 diff
= read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (self
.diffOpts
, id, id))
1545 filesToDelete
= set()
1547 pureRenameCopy
= set()
1548 filesToChangeExecBit
= {}
1551 diff
= parseDiffTreeEntry(line
)
1552 modifier
= diff
['status']
1556 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
1557 filesToChangeExecBit
[path
] = diff
['dst_mode']
1558 editedFiles
.add(path
)
1559 elif modifier
== "A":
1560 filesToAdd
.add(path
)
1561 filesToChangeExecBit
[path
] = diff
['dst_mode']
1562 if path
in filesToDelete
:
1563 filesToDelete
.remove(path
)
1564 elif modifier
== "D":
1565 filesToDelete
.add(path
)
1566 if path
in filesToAdd
:
1567 filesToAdd
.remove(path
)
1568 elif modifier
== "C":
1569 src
, dest
= diff
['src'], diff
['dst']
1570 p4_integrate(src
, dest
)
1571 pureRenameCopy
.add(dest
)
1572 if diff
['src_sha1'] != diff
['dst_sha1']:
1574 pureRenameCopy
.discard(dest
)
1575 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
1577 pureRenameCopy
.discard(dest
)
1578 filesToChangeExecBit
[dest
] = diff
['dst_mode']
1580 # turn off read-only attribute
1581 os
.chmod(dest
, stat
.S_IWRITE
)
1583 editedFiles
.add(dest
)
1584 elif modifier
== "R":
1585 src
, dest
= diff
['src'], diff
['dst']
1586 if self
.p4HasMoveCommand
:
1587 p4_edit(src
) # src must be open before move
1588 p4_move(src
, dest
) # opens for (move/delete, move/add)
1590 p4_integrate(src
, dest
)
1591 if diff
['src_sha1'] != diff
['dst_sha1']:
1594 pureRenameCopy
.add(dest
)
1595 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
1596 if not self
.p4HasMoveCommand
:
1597 p4_edit(dest
) # with move: already open, writable
1598 filesToChangeExecBit
[dest
] = diff
['dst_mode']
1599 if not self
.p4HasMoveCommand
:
1601 os
.chmod(dest
, stat
.S_IWRITE
)
1603 filesToDelete
.add(src
)
1604 editedFiles
.add(dest
)
1606 die("unknown modifier %s for %s" % (modifier
, path
))
1608 diffcmd
= "git diff-tree --full-index -p \"%s\"" % (id)
1609 patchcmd
= diffcmd
+ " | git apply "
1610 tryPatchCmd
= patchcmd
+ "--check -"
1611 applyPatchCmd
= patchcmd
+ "--check --apply -"
1612 patch_succeeded
= True
1614 if os
.system(tryPatchCmd
) != 0:
1615 fixed_rcs_keywords
= False
1616 patch_succeeded
= False
1617 print "Unfortunately applying the change failed!"
1619 # Patch failed, maybe it's just RCS keyword woes. Look through
1620 # the patch to see if that's possible.
1621 if gitConfigBool("git-p4.attemptRCSCleanup"):
1625 for file in editedFiles | filesToDelete
:
1626 # did this file's delta contain RCS keywords?
1627 pattern
= p4_keywords_regexp_for_file(file)
1630 # this file is a possibility...look for RCS keywords.
1631 regexp
= re
.compile(pattern
, re
.VERBOSE
)
1632 for line
in read_pipe_lines(["git", "diff", "%s^..%s" % (id, id), file]):
1633 if regexp
.search(line
):
1635 print "got keyword match on %s in %s in %s" % (pattern
, line
, file)
1636 kwfiles
[file] = pattern
1639 for file in kwfiles
:
1641 print "zapping %s with %s" % (line
,pattern
)
1642 # File is being deleted, so not open in p4. Must
1643 # disable the read-only bit on windows.
1644 if self
.isWindows
and file not in editedFiles
:
1645 os
.chmod(file, stat
.S_IWRITE
)
1646 self
.patchRCSKeywords(file, kwfiles
[file])
1647 fixed_rcs_keywords
= True
1649 if fixed_rcs_keywords
:
1650 print "Retrying the patch with RCS keywords cleaned up"
1651 if os
.system(tryPatchCmd
) == 0:
1652 patch_succeeded
= True
1654 if not patch_succeeded
:
1655 for f
in editedFiles
:
1660 # Apply the patch for real, and do add/delete/+x handling.
1662 system(applyPatchCmd
)
1664 for f
in filesToAdd
:
1666 for f
in filesToDelete
:
1670 # Set/clear executable bits
1671 for f
in filesToChangeExecBit
.keys():
1672 mode
= filesToChangeExecBit
[f
]
1673 setP4ExecBit(f
, mode
)
1676 # Build p4 change description, starting with the contents
1677 # of the git commit message.
1679 logMessage
= extractLogMessageFromGitCommit(id)
1680 logMessage
= logMessage
.strip()
1681 (logMessage
, jobs
) = self
.separate_jobs_from_description(logMessage
)
1683 template
= self
.prepareSubmitTemplate()
1684 submitTemplate
= self
.prepareLogMessage(template
, logMessage
, jobs
)
1686 if self
.preserveUser
:
1687 submitTemplate
+= "\n######## Actual user %s, modified after commit\n" % p4User
1689 if self
.checkAuthorship
and not self
.p4UserIsMe(p4User
):
1690 submitTemplate
+= "######## git author %s does not match your p4 account.\n" % gitEmail
1691 submitTemplate
+= "######## Use option --preserve-user to modify authorship.\n"
1692 submitTemplate
+= "######## Variable git-p4.skipUserNameCheck hides this message.\n"
1694 separatorLine
= "######## everything below this line is just the diff #######\n"
1695 if not self
.prepare_p4_only
:
1696 submitTemplate
+= separatorLine
1697 submitTemplate
+= self
.get_diff_description(editedFiles
, filesToAdd
)
1699 (handle
, fileName
) = tempfile
.mkstemp()
1700 tmpFile
= os
.fdopen(handle
, "w+b")
1702 submitTemplate
= submitTemplate
.replace("\n", "\r\n")
1703 tmpFile
.write(submitTemplate
)
1706 if self
.prepare_p4_only
:
1708 # Leave the p4 tree prepared, and the submit template around
1709 # and let the user decide what to do next
1712 print "P4 workspace prepared for submission."
1713 print "To submit or revert, go to client workspace"
1714 print " " + self
.clientPath
1716 print "To submit, use \"p4 submit\" to write a new description,"
1717 print "or \"p4 submit -i <%s\" to use the one prepared by" \
1718 " \"git p4\"." % fileName
1719 print "You can delete the file \"%s\" when finished." % fileName
1721 if self
.preserveUser
and p4User
and not self
.p4UserIsMe(p4User
):
1722 print "To preserve change ownership by user %s, you must\n" \
1723 "do \"p4 change -f <change>\" after submitting and\n" \
1724 "edit the User field."
1726 print "After submitting, renamed files must be re-synced."
1727 print "Invoke \"p4 sync -f\" on each of these files:"
1728 for f
in pureRenameCopy
:
1732 print "To revert the changes, use \"p4 revert ...\", and delete"
1733 print "the submit template file \"%s\"" % fileName
1735 print "Since the commit adds new files, they must be deleted:"
1736 for f
in filesToAdd
:
1742 # Let the user edit the change description, then submit it.
1744 if self
.edit_template(fileName
):
1745 # read the edited message and submit
1747 tmpFile
= open(fileName
, "rb")
1748 message
= tmpFile
.read()
1751 message
= message
.replace("\r\n", "\n")
1752 submitTemplate
= message
[:message
.index(separatorLine
)]
1753 p4_write_pipe(['submit', '-i'], submitTemplate
)
1755 if self
.preserveUser
:
1757 # Get last changelist number. Cannot easily get it from
1758 # the submit command output as the output is
1760 changelist
= self
.lastP4Changelist()
1761 self
.modifyChangelistUser(changelist
, p4User
)
1763 # The rename/copy happened by applying a patch that created a
1764 # new file. This leaves it writable, which confuses p4.
1765 for f
in pureRenameCopy
:
1771 print "Submission cancelled, undoing p4 changes."
1772 for f
in editedFiles
:
1774 for f
in filesToAdd
:
1777 for f
in filesToDelete
:
1783 # Export git tags as p4 labels. Create a p4 label and then tag
1785 def exportGitTags(self
, gitTags
):
1786 validLabelRegexp
= gitConfig("git-p4.labelExportRegexp")
1787 if len(validLabelRegexp
) == 0:
1788 validLabelRegexp
= defaultLabelRegexp
1789 m
= re
.compile(validLabelRegexp
)
1791 for name
in gitTags
:
1793 if not m
.match(name
):
1795 print "tag %s does not match regexp %s" % (name
, validLabelRegexp
)
1798 # Get the p4 commit this corresponds to
1799 logMessage
= extractLogMessageFromGitCommit(name
)
1800 values
= extractSettingsGitLog(logMessage
)
1802 if not values
.has_key('change'):
1803 # a tag pointing to something not sent to p4; ignore
1805 print "git tag %s does not give a p4 commit" % name
1808 changelist
= values
['change']
1810 # Get the tag details.
1814 for l
in read_pipe_lines(["git", "cat-file", "-p", name
]):
1817 if re
.match(r
'tag\s+', l
):
1819 elif re
.match(r
'\s*$', l
):
1826 body
= ["lightweight tag imported by git p4\n"]
1828 # Create the label - use the same view as the client spec we are using
1829 clientSpec
= getClientSpec()
1831 labelTemplate
= "Label: %s\n" % name
1832 labelTemplate
+= "Description:\n"
1834 labelTemplate
+= "\t" + b
+ "\n"
1835 labelTemplate
+= "View:\n"
1836 for depot_side
in clientSpec
.mappings
:
1837 labelTemplate
+= "\t%s\n" % depot_side
1840 print "Would create p4 label %s for tag" % name
1841 elif self
.prepare_p4_only
:
1842 print "Not creating p4 label %s for tag due to option" \
1843 " --prepare-p4-only" % name
1845 p4_write_pipe(["label", "-i"], labelTemplate
)
1848 p4_system(["tag", "-l", name
] +
1849 ["%s@%s" % (depot_side
, changelist
) for depot_side
in clientSpec
.mappings
])
1852 print "created p4 label for tag %s" % name
1854 def run(self
, args
):
1856 self
.master
= currentGitBranch()
1857 if len(self
.master
) == 0 or not gitBranchExists("refs/heads/%s" % self
.master
):
1858 die("Detecting current git branch failed!")
1859 elif len(args
) == 1:
1860 self
.master
= args
[0]
1861 if not branchExists(self
.master
):
1862 die("Branch %s does not exist" % self
.master
)
1866 allowSubmit
= gitConfig("git-p4.allowSubmit")
1867 if len(allowSubmit
) > 0 and not self
.master
in allowSubmit
.split(","):
1868 die("%s is not in git-p4.allowSubmit" % self
.master
)
1870 [upstream
, settings
] = findUpstreamBranchPoint()
1871 self
.depotPath
= settings
['depot-paths'][0]
1872 if len(self
.origin
) == 0:
1873 self
.origin
= upstream
1875 if self
.preserveUser
:
1876 if not self
.canChangeChangelists():
1877 die("Cannot preserve user names without p4 super-user or admin permissions")
1879 # if not set from the command line, try the config file
1880 if self
.conflict_behavior
is None:
1881 val
= gitConfig("git-p4.conflict")
1883 if val
not in self
.conflict_behavior_choices
:
1884 die("Invalid value '%s' for config git-p4.conflict" % val
)
1887 self
.conflict_behavior
= val
1890 print "Origin branch is " + self
.origin
1892 if len(self
.depotPath
) == 0:
1893 print "Internal error: cannot locate perforce depot path from existing branches"
1896 self
.useClientSpec
= False
1897 if gitConfigBool("git-p4.useclientspec"):
1898 self
.useClientSpec
= True
1899 if self
.useClientSpec
:
1900 self
.clientSpecDirs
= getClientSpec()
1902 # Check for the existance of P4 branches
1903 branchesDetected
= (len(p4BranchesInGit().keys()) > 1)
1905 if self
.useClientSpec
and not branchesDetected
:
1906 # all files are relative to the client spec
1907 self
.clientPath
= getClientRoot()
1909 self
.clientPath
= p4Where(self
.depotPath
)
1911 if self
.clientPath
== "":
1912 die("Error: Cannot locate perforce checkout of %s in client view" % self
.depotPath
)
1914 print "Perforce checkout for depot path %s located at %s" % (self
.depotPath
, self
.clientPath
)
1915 self
.oldWorkingDirectory
= os
.getcwd()
1917 # ensure the clientPath exists
1918 new_client_dir
= False
1919 if not os
.path
.exists(self
.clientPath
):
1920 new_client_dir
= True
1921 os
.makedirs(self
.clientPath
)
1923 chdir(self
.clientPath
, is_client_path
=True)
1925 print "Would synchronize p4 checkout in %s" % self
.clientPath
1927 print "Synchronizing p4 checkout..."
1929 # old one was destroyed, and maybe nobody told p4
1930 p4_sync("...", "-f")
1936 for line
in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self
.origin
, self
.master
)]):
1937 commits
.append(line
.strip())
1940 if self
.preserveUser
or gitConfigBool("git-p4.skipUserNameCheck"):
1941 self
.checkAuthorship
= False
1943 self
.checkAuthorship
= True
1945 if self
.preserveUser
:
1946 self
.checkValidP4Users(commits
)
1949 # Build up a set of options to be passed to diff when
1950 # submitting each commit to p4.
1952 if self
.detectRenames
:
1953 # command-line -M arg
1954 self
.diffOpts
= "-M"
1956 # If not explicitly set check the config variable
1957 detectRenames
= gitConfig("git-p4.detectRenames")
1959 if detectRenames
.lower() == "false" or detectRenames
== "":
1961 elif detectRenames
.lower() == "true":
1962 self
.diffOpts
= "-M"
1964 self
.diffOpts
= "-M%s" % detectRenames
1966 # no command-line arg for -C or --find-copies-harder, just
1968 detectCopies
= gitConfig("git-p4.detectCopies")
1969 if detectCopies
.lower() == "false" or detectCopies
== "":
1971 elif detectCopies
.lower() == "true":
1972 self
.diffOpts
+= " -C"
1974 self
.diffOpts
+= " -C%s" % detectCopies
1976 if gitConfigBool("git-p4.detectCopiesHarder"):
1977 self
.diffOpts
+= " --find-copies-harder"
1980 # Apply the commits, one at a time. On failure, ask if should
1981 # continue to try the rest of the patches, or quit.
1986 last
= len(commits
) - 1
1987 for i
, commit
in enumerate(commits
):
1989 print " ", read_pipe(["git", "show", "-s",
1990 "--format=format:%h %s", commit
])
1993 ok
= self
.applyCommit(commit
)
1995 applied
.append(commit
)
1997 if self
.prepare_p4_only
and i
< last
:
1998 print "Processing only the first commit due to option" \
1999 " --prepare-p4-only"
2004 # prompt for what to do, or use the option/variable
2005 if self
.conflict_behavior
== "ask":
2006 print "What do you want to do?"
2007 response
= raw_input("[s]kip this commit but apply"
2008 " the rest, or [q]uit? ")
2011 elif self
.conflict_behavior
== "skip":
2013 elif self
.conflict_behavior
== "quit":
2016 die("Unknown conflict_behavior '%s'" %
2017 self
.conflict_behavior
)
2019 if response
[0] == "s":
2020 print "Skipping this commit, but applying the rest"
2022 if response
[0] == "q":
2029 chdir(self
.oldWorkingDirectory
)
2033 elif self
.prepare_p4_only
:
2035 elif len(commits
) == len(applied
):
2036 print "All commits applied!"
2040 sync
.branch
= self
.branch
2047 if len(applied
) == 0:
2048 print "No commits applied."
2050 print "Applied only the commits marked with '*':"
2056 print star
, read_pipe(["git", "show", "-s",
2057 "--format=format:%h %s", c
])
2058 print "You will have to do 'git p4 sync' and rebase."
2060 if gitConfigBool("git-p4.exportLabels"):
2061 self
.exportLabels
= True
2063 if self
.exportLabels
:
2064 p4Labels
= getP4Labels(self
.depotPath
)
2065 gitTags
= getGitTags()
2067 missingGitTags
= gitTags
- p4Labels
2068 self
.exportGitTags(missingGitTags
)
2070 # exit with error unless everything applied perfectly
2071 if len(commits
) != len(applied
):
2077 """Represent a p4 view ("p4 help views"), and map files in a
2078 repo according to the view."""
2080 def __init__(self
, client_name
):
2082 self
.client_prefix
= "//%s/" % client_name
2083 # cache results of "p4 where" to lookup client file locations
2084 self
.client_spec_path_cache
= {}
2086 def append(self
, view_line
):
2087 """Parse a view line, splitting it into depot and client
2088 sides. Append to self.mappings, preserving order. This
2089 is only needed for tag creation."""
2091 # Split the view line into exactly two words. P4 enforces
2092 # structure on these lines that simplifies this quite a bit.
2094 # Either or both words may be double-quoted.
2095 # Single quotes do not matter.
2096 # Double-quote marks cannot occur inside the words.
2097 # A + or - prefix is also inside the quotes.
2098 # There are no quotes unless they contain a space.
2099 # The line is already white-space stripped.
2100 # The two words are separated by a single space.
2102 if view_line
[0] == '"':
2103 # First word is double quoted. Find its end.
2104 close_quote_index
= view_line
.find('"', 1)
2105 if close_quote_index
<= 0:
2106 die("No first-word closing quote found: %s" % view_line
)
2107 depot_side
= view_line
[1:close_quote_index
]
2108 # skip closing quote and space
2109 rhs_index
= close_quote_index
+ 1 + 1
2111 space_index
= view_line
.find(" ")
2112 if space_index
<= 0:
2113 die("No word-splitting space found: %s" % view_line
)
2114 depot_side
= view_line
[0:space_index
]
2115 rhs_index
= space_index
+ 1
2117 # prefix + means overlay on previous mapping
2118 if depot_side
.startswith("+"):
2119 depot_side
= depot_side
[1:]
2121 # prefix - means exclude this path, leave out of mappings
2123 if depot_side
.startswith("-"):
2125 depot_side
= depot_side
[1:]
2128 self
.mappings
.append(depot_side
)
2130 def convert_client_path(self
, clientFile
):
2131 # chop off //client/ part to make it relative
2132 if not clientFile
.startswith(self
.client_prefix
):
2133 die("No prefix '%s' on clientFile '%s'" %
2134 (self
.client_prefix
, clientFile
))
2135 return clientFile
[len(self
.client_prefix
):]
2137 def update_client_spec_path_cache(self
, files
):
2138 """ Caching file paths by "p4 where" batch query """
2140 # List depot file paths exclude that already cached
2141 fileArgs
= [f
['path'] for f
in files
if f
['path'] not in self
.client_spec_path_cache
]
2143 if len(fileArgs
) == 0:
2144 return # All files in cache
2146 where_result
= p4CmdList(["-x", "-", "where"], stdin
=fileArgs
)
2147 for res
in where_result
:
2148 if "code" in res
and res
["code"] == "error":
2149 # assume error is "... file(s) not in client view"
2151 if "clientFile" not in res
:
2152 die("No clientFile in 'p4 where' output")
2154 # it will list all of them, but only one not unmap-ped
2156 if gitConfigBool("core.ignorecase"):
2157 res
['depotFile'] = res
['depotFile'].lower()
2158 self
.client_spec_path_cache
[res
['depotFile']] = self
.convert_client_path(res
["clientFile"])
2160 # not found files or unmap files set to ""
2161 for depotFile
in fileArgs
:
2162 if gitConfigBool("core.ignorecase"):
2163 depotFile
= depotFile
.lower()
2164 if depotFile
not in self
.client_spec_path_cache
:
2165 self
.client_spec_path_cache
[depotFile
] = ""
2167 def map_in_client(self
, depot_path
):
2168 """Return the relative location in the client where this
2169 depot file should live. Returns "" if the file should
2170 not be mapped in the client."""
2172 if gitConfigBool("core.ignorecase"):
2173 depot_path
= depot_path
.lower()
2175 if depot_path
in self
.client_spec_path_cache
:
2176 return self
.client_spec_path_cache
[depot_path
]
2178 die( "Error: %s is not found in client spec path" % depot_path
)
2181 class P4Sync(Command
, P4UserMap
):
2182 delete_actions
= ( "delete", "move/delete", "purge" )
2185 Command
.__init
__(self
)
2186 P4UserMap
.__init
__(self
)
2188 optparse
.make_option("--branch", dest
="branch"),
2189 optparse
.make_option("--detect-branches", dest
="detectBranches", action
="store_true"),
2190 optparse
.make_option("--changesfile", dest
="changesFile"),
2191 optparse
.make_option("--silent", dest
="silent", action
="store_true"),
2192 optparse
.make_option("--detect-labels", dest
="detectLabels", action
="store_true"),
2193 optparse
.make_option("--import-labels", dest
="importLabels", action
="store_true"),
2194 optparse
.make_option("--import-local", dest
="importIntoRemotes", action
="store_false",
2195 help="Import into refs/heads/ , not refs/remotes"),
2196 optparse
.make_option("--max-changes", dest
="maxChanges",
2197 help="Maximum number of changes to import"),
2198 optparse
.make_option("--changes-block-size", dest
="changes_block_size", type="int",
2199 help="Internal block size to use when iteratively calling p4 changes"),
2200 optparse
.make_option("--keep-path", dest
="keepRepoPath", action
='store_true',
2201 help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),
2202 optparse
.make_option("--use-client-spec", dest
="useClientSpec", action
='store_true',
2203 help="Only sync files that are included in the Perforce Client Spec"),
2204 optparse
.make_option("-/", dest
="cloneExclude",
2205 action
="append", type="string",
2206 help="exclude depot path"),
2208 self
.description
= """Imports from Perforce into a git repository.\n
2210 //depot/my/project/ -- to import the current head
2211 //depot/my/project/@all -- to import everything
2212 //depot/my/project/@1,6 -- to import only from revision 1 to 6
2214 (a ... is not needed in the path p4 specification, it's added implicitly)"""
2216 self
.usage
+= " //depot/path[@revRange]"
2218 self
.createdBranches
= set()
2219 self
.committedChanges
= set()
2221 self
.detectBranches
= False
2222 self
.detectLabels
= False
2223 self
.importLabels
= False
2224 self
.changesFile
= ""
2225 self
.syncWithOrigin
= True
2226 self
.importIntoRemotes
= True
2227 self
.maxChanges
= ""
2228 self
.changes_block_size
= None
2229 self
.keepRepoPath
= False
2230 self
.depotPaths
= None
2231 self
.p4BranchesInGit
= []
2232 self
.cloneExclude
= []
2233 self
.useClientSpec
= False
2234 self
.useClientSpec_from_options
= False
2235 self
.clientSpecDirs
= None
2236 self
.tempBranches
= []
2237 self
.tempBranchLocation
= "git-p4-tmp"
2238 self
.largeFileSystem
= None
2240 if gitConfig('git-p4.largeFileSystem'):
2241 largeFileSystemConstructor
= globals()[gitConfig('git-p4.largeFileSystem')]
2242 self
.largeFileSystem
= largeFileSystemConstructor(
2243 lambda git_mode
, relPath
, contents
: self
.writeToGitStream(git_mode
, relPath
, contents
)
2246 if gitConfig("git-p4.syncFromOrigin") == "false":
2247 self
.syncWithOrigin
= False
2249 # This is required for the "append" cloneExclude action
2250 def ensure_value(self
, attr
, value
):
2251 if not hasattr(self
, attr
) or getattr(self
, attr
) is None:
2252 setattr(self
, attr
, value
)
2253 return getattr(self
, attr
)
2255 # Force a checkpoint in fast-import and wait for it to finish
2256 def checkpoint(self
):
2257 self
.gitStream
.write("checkpoint\n\n")
2258 self
.gitStream
.write("progress checkpoint\n\n")
2259 out
= self
.gitOutput
.readline()
2261 print "checkpoint finished: " + out
2263 def extractFilesFromCommit(self
, commit
):
2264 self
.cloneExclude
= [re
.sub(r
"\.\.\.$", "", path
)
2265 for path
in self
.cloneExclude
]
2268 while commit
.has_key("depotFile%s" % fnum
):
2269 path
= commit
["depotFile%s" % fnum
]
2271 if [p
for p
in self
.cloneExclude
2272 if p4PathStartsWith(path
, p
)]:
2275 found
= [p
for p
in self
.depotPaths
2276 if p4PathStartsWith(path
, p
)]
2283 file["rev"] = commit
["rev%s" % fnum
]
2284 file["action"] = commit
["action%s" % fnum
]
2285 file["type"] = commit
["type%s" % fnum
]
2290 def stripRepoPath(self
, path
, prefixes
):
2291 """When streaming files, this is called to map a p4 depot path
2292 to where it should go in git. The prefixes are either
2293 self.depotPaths, or self.branchPrefixes in the case of
2294 branch detection."""
2296 if self
.useClientSpec
:
2297 # branch detection moves files up a level (the branch name)
2298 # from what client spec interpretation gives
2299 path
= self
.clientSpecDirs
.map_in_client(path
)
2300 if self
.detectBranches
:
2301 for b
in self
.knownBranches
:
2302 if path
.startswith(b
+ "/"):
2303 path
= path
[len(b
)+1:]
2305 elif self
.keepRepoPath
:
2306 # Preserve everything in relative path name except leading
2307 # //depot/; just look at first prefix as they all should
2308 # be in the same depot.
2309 depot
= re
.sub("^(//[^/]+/).*", r
'\1', prefixes
[0])
2310 if p4PathStartsWith(path
, depot
):
2311 path
= path
[len(depot
):]
2315 if p4PathStartsWith(path
, p
):
2316 path
= path
[len(p
):]
2319 path
= wildcard_decode(path
)
2322 def splitFilesIntoBranches(self
, commit
):
2323 """Look at each depotFile in the commit to figure out to what
2324 branch it belongs."""
2326 if self
.clientSpecDirs
:
2327 files
= self
.extractFilesFromCommit(commit
)
2328 self
.clientSpecDirs
.update_client_spec_path_cache(files
)
2332 while commit
.has_key("depotFile%s" % fnum
):
2333 path
= commit
["depotFile%s" % fnum
]
2334 found
= [p
for p
in self
.depotPaths
2335 if p4PathStartsWith(path
, p
)]
2342 file["rev"] = commit
["rev%s" % fnum
]
2343 file["action"] = commit
["action%s" % fnum
]
2344 file["type"] = commit
["type%s" % fnum
]
2347 # start with the full relative path where this file would
2349 if self
.useClientSpec
:
2350 relPath
= self
.clientSpecDirs
.map_in_client(path
)
2352 relPath
= self
.stripRepoPath(path
, self
.depotPaths
)
2354 for branch
in self
.knownBranches
.keys():
2355 # add a trailing slash so that a commit into qt/4.2foo
2356 # doesn't end up in qt/4.2, e.g.
2357 if relPath
.startswith(branch
+ "/"):
2358 if branch
not in branches
:
2359 branches
[branch
] = []
2360 branches
[branch
].append(file)
2365 def writeToGitStream(self
, gitMode
, relPath
, contents
):
2366 self
.gitStream
.write('M %s inline %s\n' % (gitMode
, relPath
))
2367 self
.gitStream
.write('data %d\n' % sum(len(d
) for d
in contents
))
2369 self
.gitStream
.write(d
)
2370 self
.gitStream
.write('\n')
2372 # output one file from the P4 stream
2373 # - helper for streamP4Files
2375 def streamOneP4File(self
, file, contents
):
2376 relPath
= self
.stripRepoPath(file['depotFile'], self
.branchPrefixes
)
2378 size
= int(self
.stream_file
['fileSize'])
2379 sys
.stdout
.write('\r%s --> %s (%i MB)\n' % (file['depotFile'], relPath
, size
/1024/1024))
2382 (type_base
, type_mods
) = split_p4_type(file["type"])
2385 if "x" in type_mods
:
2387 if type_base
== "symlink":
2389 # p4 print on a symlink sometimes contains "target\n";
2390 # if it does, remove the newline
2391 data
= ''.join(contents
)
2393 # Some version of p4 allowed creating a symlink that pointed
2394 # to nothing. This causes p4 errors when checking out such
2395 # a change, and errors here too. Work around it by ignoring
2396 # the bad symlink; hopefully a future change fixes it.
2397 print "\nIgnoring empty symlink in %s" % file['depotFile']
2399 elif data
[-1] == '\n':
2400 contents
= [data
[:-1]]
2404 if type_base
== "utf16":
2405 # p4 delivers different text in the python output to -G
2406 # than it does when using "print -o", or normal p4 client
2407 # operations. utf16 is converted to ascii or utf8, perhaps.
2408 # But ascii text saved as -t utf16 is completely mangled.
2409 # Invoke print -o to get the real contents.
2411 # On windows, the newlines will always be mangled by print, so put
2412 # them back too. This is not needed to the cygwin windows version,
2413 # just the native "NT" type.
2416 text
= p4_read_pipe(['print', '-q', '-o', '-', '%s@%s' % (file['depotFile'], file['change'])])
2417 except Exception as e
:
2418 if 'Translation of file content failed' in str(e
):
2419 type_base
= 'binary'
2423 if p4_version_string().find('/NT') >= 0:
2424 text
= text
.replace('\r\n', '\n')
2427 if type_base
== "apple":
2428 # Apple filetype files will be streamed as a concatenation of
2429 # its appledouble header and the contents. This is useless
2430 # on both macs and non-macs. If using "print -q -o xx", it
2431 # will create "xx" with the data, and "%xx" with the header.
2432 # This is also not very useful.
2434 # Ideally, someday, this script can learn how to generate
2435 # appledouble files directly and import those to git, but
2436 # non-mac machines can never find a use for apple filetype.
2437 print "\nIgnoring apple filetype file %s" % file['depotFile']
2440 # Note that we do not try to de-mangle keywords on utf16 files,
2441 # even though in theory somebody may want that.
2442 pattern
= p4_keywords_regexp_for_type(type_base
, type_mods
)
2444 regexp
= re
.compile(pattern
, re
.VERBOSE
)
2445 text
= ''.join(contents
)
2446 text
= regexp
.sub(r
'$\1$', text
)
2450 relPath
.decode('ascii')
2453 if gitConfig('git-p4.pathEncoding'):
2454 encoding
= gitConfig('git-p4.pathEncoding')
2455 relPath
= relPath
.decode(encoding
, 'replace').encode('utf8', 'replace')
2457 print 'Path with non-ASCII characters detected. Used %s to encode: %s ' % (encoding
, relPath
)
2459 if self
.largeFileSystem
:
2460 (git_mode
, contents
) = self
.largeFileSystem
.processContent(git_mode
, relPath
, contents
)
2462 self
.writeToGitStream(git_mode
, relPath
, contents
)
2464 def streamOneP4Deletion(self
, file):
2465 relPath
= self
.stripRepoPath(file['path'], self
.branchPrefixes
)
2467 sys
.stdout
.write("delete %s\n" % relPath
)
2469 self
.gitStream
.write("D %s\n" % relPath
)
2471 if self
.largeFileSystem
and self
.largeFileSystem
.isLargeFile(relPath
):
2472 self
.largeFileSystem
.removeLargeFile(relPath
)
2474 # handle another chunk of streaming data
2475 def streamP4FilesCb(self
, marshalled
):
2477 # catch p4 errors and complain
2479 if "code" in marshalled
:
2480 if marshalled
["code"] == "error":
2481 if "data" in marshalled
:
2482 err
= marshalled
["data"].rstrip()
2484 if not err
and 'fileSize' in self
.stream_file
:
2485 required_bytes
= int((4 * int(self
.stream_file
["fileSize"])) - calcDiskFree())
2486 if required_bytes
> 0:
2487 err
= 'Not enough space left on %s! Free at least %i MB.' % (
2488 os
.getcwd(), required_bytes
/1024/1024
2493 if self
.stream_have_file_info
:
2494 if "depotFile" in self
.stream_file
:
2495 f
= self
.stream_file
["depotFile"]
2496 # force a failure in fast-import, else an empty
2497 # commit will be made
2498 self
.gitStream
.write("\n")
2499 self
.gitStream
.write("die-now\n")
2500 self
.gitStream
.close()
2501 # ignore errors, but make sure it exits first
2502 self
.importProcess
.wait()
2504 die("Error from p4 print for %s: %s" % (f
, err
))
2506 die("Error from p4 print: %s" % err
)
2508 if marshalled
.has_key('depotFile') and self
.stream_have_file_info
:
2509 # start of a new file - output the old one first
2510 self
.streamOneP4File(self
.stream_file
, self
.stream_contents
)
2511 self
.stream_file
= {}
2512 self
.stream_contents
= []
2513 self
.stream_have_file_info
= False
2515 # pick up the new file information... for the
2516 # 'data' field we need to append to our array
2517 for k
in marshalled
.keys():
2519 if 'streamContentSize' not in self
.stream_file
:
2520 self
.stream_file
['streamContentSize'] = 0
2521 self
.stream_file
['streamContentSize'] += len(marshalled
['data'])
2522 self
.stream_contents
.append(marshalled
['data'])
2524 self
.stream_file
[k
] = marshalled
[k
]
2527 'streamContentSize' in self
.stream_file
and
2528 'fileSize' in self
.stream_file
and
2529 'depotFile' in self
.stream_file
):
2530 size
= int(self
.stream_file
["fileSize"])
2532 progress
= 100*self
.stream_file
['streamContentSize']/size
2533 sys
.stdout
.write('\r%s %d%% (%i MB)' % (self
.stream_file
['depotFile'], progress
, int(size
/1024/1024)))
2536 self
.stream_have_file_info
= True
2538 # Stream directly from "p4 files" into "git fast-import"
2539 def streamP4Files(self
, files
):
2545 # if using a client spec, only add the files that have
2546 # a path in the client
2547 if self
.clientSpecDirs
:
2548 if self
.clientSpecDirs
.map_in_client(f
['path']) == "":
2551 filesForCommit
.append(f
)
2552 if f
['action'] in self
.delete_actions
:
2553 filesToDelete
.append(f
)
2555 filesToRead
.append(f
)
2558 for f
in filesToDelete
:
2559 self
.streamOneP4Deletion(f
)
2561 if len(filesToRead
) > 0:
2562 self
.stream_file
= {}
2563 self
.stream_contents
= []
2564 self
.stream_have_file_info
= False
2566 # curry self argument
2567 def streamP4FilesCbSelf(entry
):
2568 self
.streamP4FilesCb(entry
)
2570 fileArgs
= ['%s#%s' % (f
['path'], f
['rev']) for f
in filesToRead
]
2572 p4CmdList(["-x", "-", "print"],
2574 cb
=streamP4FilesCbSelf
)
2577 if self
.stream_file
.has_key('depotFile'):
2578 self
.streamOneP4File(self
.stream_file
, self
.stream_contents
)
2580 def make_email(self
, userid
):
2581 if userid
in self
.users
:
2582 return self
.users
[userid
]
2584 return "%s <a@b>" % userid
2586 def streamTag(self
, gitStream
, labelName
, labelDetails
, commit
, epoch
):
2587 """ Stream a p4 tag.
2588 commit is either a git commit, or a fast-import mark, ":<p4commit>"
2592 print "writing tag %s for commit %s" % (labelName
, commit
)
2593 gitStream
.write("tag %s\n" % labelName
)
2594 gitStream
.write("from %s\n" % commit
)
2596 if labelDetails
.has_key('Owner'):
2597 owner
= labelDetails
["Owner"]
2601 # Try to use the owner of the p4 label, or failing that,
2602 # the current p4 user id.
2604 email
= self
.make_email(owner
)
2606 email
= self
.make_email(self
.p4UserId())
2607 tagger
= "%s %s %s" % (email
, epoch
, self
.tz
)
2609 gitStream
.write("tagger %s\n" % tagger
)
2611 print "labelDetails=",labelDetails
2612 if labelDetails
.has_key('Description'):
2613 description
= labelDetails
['Description']
2615 description
= 'Label from git p4'
2617 gitStream
.write("data %d\n" % len(description
))
2618 gitStream
.write(description
)
2619 gitStream
.write("\n")
2621 def commit(self
, details
, files
, branch
, parent
= ""):
2622 epoch
= details
["time"]
2623 author
= details
["user"]
2626 print "commit into %s" % branch
2628 # start with reading files; if that fails, we should not
2632 if [p
for p
in self
.branchPrefixes
if p4PathStartsWith(f
['path'], p
)]:
2633 new_files
.append (f
)
2635 sys
.stderr
.write("Ignoring file outside of prefix: %s\n" % f
['path'])
2637 if self
.clientSpecDirs
:
2638 self
.clientSpecDirs
.update_client_spec_path_cache(files
)
2640 self
.gitStream
.write("commit %s\n" % branch
)
2641 self
.gitStream
.write("mark :%s\n" % details
["change"])
2642 self
.committedChanges
.add(int(details
["change"]))
2644 if author
not in self
.users
:
2645 self
.getUserMapFromPerforceServer()
2646 committer
= "%s %s %s" % (self
.make_email(author
), epoch
, self
.tz
)
2648 self
.gitStream
.write("committer %s\n" % committer
)
2650 self
.gitStream
.write("data <<EOT\n")
2651 self
.gitStream
.write(details
["desc"])
2652 self
.gitStream
.write("\n[git-p4: depot-paths = \"%s\": change = %s" %
2653 (','.join(self
.branchPrefixes
), details
["change"]))
2654 if len(details
['options']) > 0:
2655 self
.gitStream
.write(": options = %s" % details
['options'])
2656 self
.gitStream
.write("]\nEOT\n\n")
2660 print "parent %s" % parent
2661 self
.gitStream
.write("from %s\n" % parent
)
2663 self
.streamP4Files(new_files
)
2664 self
.gitStream
.write("\n")
2666 change
= int(details
["change"])
2668 if self
.labels
.has_key(change
):
2669 label
= self
.labels
[change
]
2670 labelDetails
= label
[0]
2671 labelRevisions
= label
[1]
2673 print "Change %s is labelled %s" % (change
, labelDetails
)
2675 files
= p4CmdList(["files"] + ["%s...@%s" % (p
, change
)
2676 for p
in self
.branchPrefixes
])
2678 if len(files
) == len(labelRevisions
):
2682 if info
["action"] in self
.delete_actions
:
2684 cleanedFiles
[info
["depotFile"]] = info
["rev"]
2686 if cleanedFiles
== labelRevisions
:
2687 self
.streamTag(self
.gitStream
, 'tag_%s' % labelDetails
['label'], labelDetails
, branch
, epoch
)
2691 print ("Tag %s does not match with change %s: files do not match."
2692 % (labelDetails
["label"], change
))
2696 print ("Tag %s does not match with change %s: file count is different."
2697 % (labelDetails
["label"], change
))
2699 # Build a dictionary of changelists and labels, for "detect-labels" option.
2700 def getLabels(self
):
2703 l
= p4CmdList(["labels"] + ["%s..." % p
for p
in self
.depotPaths
])
2704 if len(l
) > 0 and not self
.silent
:
2705 print "Finding files belonging to labels in %s" % `self
.depotPaths`
2708 label
= output
["label"]
2712 print "Querying files for label %s" % label
2713 for file in p4CmdList(["files"] +
2714 ["%s...@%s" % (p
, label
)
2715 for p
in self
.depotPaths
]):
2716 revisions
[file["depotFile"]] = file["rev"]
2717 change
= int(file["change"])
2718 if change
> newestChange
:
2719 newestChange
= change
2721 self
.labels
[newestChange
] = [output
, revisions
]
2724 print "Label changes: %s" % self
.labels
.keys()
2726 # Import p4 labels as git tags. A direct mapping does not
2727 # exist, so assume that if all the files are at the same revision
2728 # then we can use that, or it's something more complicated we should
2730 def importP4Labels(self
, stream
, p4Labels
):
2732 print "import p4 labels: " + ' '.join(p4Labels
)
2734 ignoredP4Labels
= gitConfigList("git-p4.ignoredP4Labels")
2735 validLabelRegexp
= gitConfig("git-p4.labelImportRegexp")
2736 if len(validLabelRegexp
) == 0:
2737 validLabelRegexp
= defaultLabelRegexp
2738 m
= re
.compile(validLabelRegexp
)
2740 for name
in p4Labels
:
2743 if not m
.match(name
):
2745 print "label %s does not match regexp %s" % (name
,validLabelRegexp
)
2748 if name
in ignoredP4Labels
:
2751 labelDetails
= p4CmdList(['label', "-o", name
])[0]
2753 # get the most recent changelist for each file in this label
2754 change
= p4Cmd(["changes", "-m", "1"] + ["%s...@%s" % (p
, name
)
2755 for p
in self
.depotPaths
])
2757 if change
.has_key('change'):
2758 # find the corresponding git commit; take the oldest commit
2759 changelist
= int(change
['change'])
2760 if changelist
in self
.committedChanges
:
2761 gitCommit
= ":%d" % changelist
# use a fast-import mark
2764 gitCommit
= read_pipe(["git", "rev-list", "--max-count=1",
2765 "--reverse", ":/\[git-p4:.*change = %d\]" % changelist
], ignore_error
=True)
2766 if len(gitCommit
) == 0:
2767 print "importing label %s: could not find git commit for changelist %d" % (name
, changelist
)
2770 gitCommit
= gitCommit
.strip()
2773 # Convert from p4 time format
2775 tmwhen
= time
.strptime(labelDetails
['Update'], "%Y/%m/%d %H:%M:%S")
2777 print "Could not convert label time %s" % labelDetails
['Update']
2780 when
= int(time
.mktime(tmwhen
))
2781 self
.streamTag(stream
, name
, labelDetails
, gitCommit
, when
)
2783 print "p4 label %s mapped to git commit %s" % (name
, gitCommit
)
2786 print "Label %s has no changelists - possibly deleted?" % name
2789 # We can't import this label; don't try again as it will get very
2790 # expensive repeatedly fetching all the files for labels that will
2791 # never be imported. If the label is moved in the future, the
2792 # ignore will need to be removed manually.
2793 system(["git", "config", "--add", "git-p4.ignoredP4Labels", name
])
2795 def guessProjectName(self
):
2796 for p
in self
.depotPaths
:
2799 p
= p
[p
.strip().rfind("/") + 1:]
2800 if not p
.endswith("/"):
2804 def getBranchMapping(self
):
2805 lostAndFoundBranches
= set()
2807 user
= gitConfig("git-p4.branchUser")
2809 command
= "branches -u %s" % user
2811 command
= "branches"
2813 for info
in p4CmdList(command
):
2814 details
= p4Cmd(["branch", "-o", info
["branch"]])
2816 while details
.has_key("View%s" % viewIdx
):
2817 paths
= details
["View%s" % viewIdx
].split(" ")
2818 viewIdx
= viewIdx
+ 1
2819 # require standard //depot/foo/... //depot/bar/... mapping
2820 if len(paths
) != 2 or not paths
[0].endswith("/...") or not paths
[1].endswith("/..."):
2823 destination
= paths
[1]
2825 if p4PathStartsWith(source
, self
.depotPaths
[0]) and p4PathStartsWith(destination
, self
.depotPaths
[0]):
2826 source
= source
[len(self
.depotPaths
[0]):-4]
2827 destination
= destination
[len(self
.depotPaths
[0]):-4]
2829 if destination
in self
.knownBranches
:
2831 print "p4 branch %s defines a mapping from %s to %s" % (info
["branch"], source
, destination
)
2832 print "but there exists another mapping from %s to %s already!" % (self
.knownBranches
[destination
], destination
)
2835 self
.knownBranches
[destination
] = source
2837 lostAndFoundBranches
.discard(destination
)
2839 if source
not in self
.knownBranches
:
2840 lostAndFoundBranches
.add(source
)
2842 # Perforce does not strictly require branches to be defined, so we also
2843 # check git config for a branch list.
2845 # Example of branch definition in git config file:
2847 # branchList=main:branchA
2848 # branchList=main:branchB
2849 # branchList=branchA:branchC
2850 configBranches
= gitConfigList("git-p4.branchList")
2851 for branch
in configBranches
:
2853 (source
, destination
) = branch
.split(":")
2854 self
.knownBranches
[destination
] = source
2856 lostAndFoundBranches
.discard(destination
)
2858 if source
not in self
.knownBranches
:
2859 lostAndFoundBranches
.add(source
)
2862 for branch
in lostAndFoundBranches
:
2863 self
.knownBranches
[branch
] = branch
2865 def getBranchMappingFromGitBranches(self
):
2866 branches
= p4BranchesInGit(self
.importIntoRemotes
)
2867 for branch
in branches
.keys():
2868 if branch
== "master":
2871 branch
= branch
[len(self
.projectName
):]
2872 self
.knownBranches
[branch
] = branch
2874 def updateOptionDict(self
, d
):
2876 if self
.keepRepoPath
:
2877 option_keys
['keepRepoPath'] = 1
2879 d
["options"] = ' '.join(sorted(option_keys
.keys()))
2881 def readOptions(self
, d
):
2882 self
.keepRepoPath
= (d
.has_key('options')
2883 and ('keepRepoPath' in d
['options']))
2885 def gitRefForBranch(self
, branch
):
2886 if branch
== "main":
2887 return self
.refPrefix
+ "master"
2889 if len(branch
) <= 0:
2892 return self
.refPrefix
+ self
.projectName
+ branch
2894 def gitCommitByP4Change(self
, ref
, change
):
2896 print "looking in ref " + ref
+ " for change %s using bisect..." % change
2899 latestCommit
= parseRevision(ref
)
2903 print "trying: earliest %s latest %s" % (earliestCommit
, latestCommit
)
2904 next
= read_pipe("git rev-list --bisect %s %s" % (latestCommit
, earliestCommit
)).strip()
2909 log
= extractLogMessageFromGitCommit(next
)
2910 settings
= extractSettingsGitLog(log
)
2911 currentChange
= int(settings
['change'])
2913 print "current change %s" % currentChange
2915 if currentChange
== change
:
2917 print "found %s" % next
2920 if currentChange
< change
:
2921 earliestCommit
= "^%s" % next
2923 latestCommit
= "%s" % next
2927 def importNewBranch(self
, branch
, maxChange
):
2928 # make fast-import flush all changes to disk and update the refs using the checkpoint
2929 # command so that we can try to find the branch parent in the git history
2930 self
.gitStream
.write("checkpoint\n\n");
2931 self
.gitStream
.flush();
2932 branchPrefix
= self
.depotPaths
[0] + branch
+ "/"
2933 range = "@1,%s" % maxChange
2934 #print "prefix" + branchPrefix
2935 changes
= p4ChangesForPaths([branchPrefix
], range, self
.changes_block_size
)
2936 if len(changes
) <= 0:
2938 firstChange
= changes
[0]
2939 #print "first change in branch: %s" % firstChange
2940 sourceBranch
= self
.knownBranches
[branch
]
2941 sourceDepotPath
= self
.depotPaths
[0] + sourceBranch
2942 sourceRef
= self
.gitRefForBranch(sourceBranch
)
2943 #print "source " + sourceBranch
2945 branchParentChange
= int(p4Cmd(["changes", "-m", "1", "%s...@1,%s" % (sourceDepotPath
, firstChange
)])["change"])
2946 #print "branch parent: %s" % branchParentChange
2947 gitParent
= self
.gitCommitByP4Change(sourceRef
, branchParentChange
)
2948 if len(gitParent
) > 0:
2949 self
.initialParents
[self
.gitRefForBranch(branch
)] = gitParent
2950 #print "parent git commit: %s" % gitParent
2952 self
.importChanges(changes
)
2955 def searchParent(self
, parent
, branch
, target
):
2957 for blob
in read_pipe_lines(["git", "rev-list", "--reverse",
2958 "--no-merges", parent
]):
2960 if len(read_pipe(["git", "diff-tree", blob
, target
])) == 0:
2963 print "Found parent of %s in commit %s" % (branch
, blob
)
2970 def importChanges(self
, changes
):
2972 for change
in changes
:
2973 description
= p4_describe(change
)
2974 self
.updateOptionDict(description
)
2977 sys
.stdout
.write("\rImporting revision %s (%s%%)" % (change
, cnt
* 100 / len(changes
)))
2982 if self
.detectBranches
:
2983 branches
= self
.splitFilesIntoBranches(description
)
2984 for branch
in branches
.keys():
2986 branchPrefix
= self
.depotPaths
[0] + branch
+ "/"
2987 self
.branchPrefixes
= [ branchPrefix
]
2991 filesForCommit
= branches
[branch
]
2994 print "branch is %s" % branch
2996 self
.updatedBranches
.add(branch
)
2998 if branch
not in self
.createdBranches
:
2999 self
.createdBranches
.add(branch
)
3000 parent
= self
.knownBranches
[branch
]
3001 if parent
== branch
:
3004 fullBranch
= self
.projectName
+ branch
3005 if fullBranch
not in self
.p4BranchesInGit
:
3007 print("\n Importing new branch %s" % fullBranch
);
3008 if self
.importNewBranch(branch
, change
- 1):
3010 self
.p4BranchesInGit
.append(fullBranch
)
3012 print("\n Resuming with change %s" % change
);
3015 print "parent determined through known branches: %s" % parent
3017 branch
= self
.gitRefForBranch(branch
)
3018 parent
= self
.gitRefForBranch(parent
)
3021 print "looking for initial parent for %s; current parent is %s" % (branch
, parent
)
3023 if len(parent
) == 0 and branch
in self
.initialParents
:
3024 parent
= self
.initialParents
[branch
]
3025 del self
.initialParents
[branch
]
3029 tempBranch
= "%s/%d" % (self
.tempBranchLocation
, change
)
3031 print "Creating temporary branch: " + tempBranch
3032 self
.commit(description
, filesForCommit
, tempBranch
)
3033 self
.tempBranches
.append(tempBranch
)
3035 blob
= self
.searchParent(parent
, branch
, tempBranch
)
3037 self
.commit(description
, filesForCommit
, branch
, blob
)
3040 print "Parent of %s not found. Committing into head of %s" % (branch
, parent
)
3041 self
.commit(description
, filesForCommit
, branch
, parent
)
3043 files
= self
.extractFilesFromCommit(description
)
3044 self
.commit(description
, files
, self
.branch
,
3046 # only needed once, to connect to the previous commit
3047 self
.initialParent
= ""
3049 print self
.gitError
.read()
3052 def importHeadRevision(self
, revision
):
3053 print "Doing initial import of %s from revision %s into %s" % (' '.join(self
.depotPaths
), revision
, self
.branch
)
3056 details
["user"] = "git perforce import user"
3057 details
["desc"] = ("Initial import of %s from the state at revision %s\n"
3058 % (' '.join(self
.depotPaths
), revision
))
3059 details
["change"] = revision
3063 fileArgs
= ["%s...%s" % (p
,revision
) for p
in self
.depotPaths
]
3065 for info
in p4CmdList(["files"] + fileArgs
):
3067 if 'code' in info
and info
['code'] == 'error':
3068 sys
.stderr
.write("p4 returned an error: %s\n"
3070 if info
['data'].find("must refer to client") >= 0:
3071 sys
.stderr
.write("This particular p4 error is misleading.\n")
3072 sys
.stderr
.write("Perhaps the depot path was misspelled.\n");
3073 sys
.stderr
.write("Depot path: %s\n" % " ".join(self
.depotPaths
))
3075 if 'p4ExitCode' in info
:
3076 sys
.stderr
.write("p4 exitcode: %s\n" % info
['p4ExitCode'])
3080 change
= int(info
["change"])
3081 if change
> newestRevision
:
3082 newestRevision
= change
3084 if info
["action"] in self
.delete_actions
:
3085 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
3086 #fileCnt = fileCnt + 1
3089 for prop
in ["depotFile", "rev", "action", "type" ]:
3090 details
["%s%s" % (prop
, fileCnt
)] = info
[prop
]
3092 fileCnt
= fileCnt
+ 1
3094 details
["change"] = newestRevision
3096 # Use time from top-most change so that all git p4 clones of
3097 # the same p4 repo have the same commit SHA1s.
3098 res
= p4_describe(newestRevision
)
3099 details
["time"] = res
["time"]
3101 self
.updateOptionDict(details
)
3103 self
.commit(details
, self
.extractFilesFromCommit(details
), self
.branch
)
3105 print "IO error with git fast-import. Is your git version recent enough?"
3106 print self
.gitError
.read()
3109 def run(self
, args
):
3110 self
.depotPaths
= []
3111 self
.changeRange
= ""
3112 self
.previousDepotPaths
= []
3113 self
.hasOrigin
= False
3115 # map from branch depot path to parent branch
3116 self
.knownBranches
= {}
3117 self
.initialParents
= {}
3119 if self
.importIntoRemotes
:
3120 self
.refPrefix
= "refs/remotes/p4/"
3122 self
.refPrefix
= "refs/heads/p4/"
3124 if self
.syncWithOrigin
:
3125 self
.hasOrigin
= originP4BranchesExist()
3128 print 'Syncing with origin first, using "git fetch origin"'
3129 system("git fetch origin")
3131 branch_arg_given
= bool(self
.branch
)
3132 if len(self
.branch
) == 0:
3133 self
.branch
= self
.refPrefix
+ "master"
3134 if gitBranchExists("refs/heads/p4") and self
.importIntoRemotes
:
3135 system("git update-ref %s refs/heads/p4" % self
.branch
)
3136 system("git branch -D p4")
3138 # accept either the command-line option, or the configuration variable
3139 if self
.useClientSpec
:
3140 # will use this after clone to set the variable
3141 self
.useClientSpec_from_options
= True
3143 if gitConfigBool("git-p4.useclientspec"):
3144 self
.useClientSpec
= True
3145 if self
.useClientSpec
:
3146 self
.clientSpecDirs
= getClientSpec()
3148 # TODO: should always look at previous commits,
3149 # merge with previous imports, if possible.
3152 createOrUpdateBranchesFromOrigin(self
.refPrefix
, self
.silent
)
3154 # branches holds mapping from branch name to sha1
3155 branches
= p4BranchesInGit(self
.importIntoRemotes
)
3157 # restrict to just this one, disabling detect-branches
3158 if branch_arg_given
:
3159 short
= self
.branch
.split("/")[-1]
3160 if short
in branches
:
3161 self
.p4BranchesInGit
= [ short
]
3163 self
.p4BranchesInGit
= branches
.keys()
3165 if len(self
.p4BranchesInGit
) > 1:
3167 print "Importing from/into multiple branches"
3168 self
.detectBranches
= True
3169 for branch
in branches
.keys():
3170 self
.initialParents
[self
.refPrefix
+ branch
] = \
3174 print "branches: %s" % self
.p4BranchesInGit
3177 for branch
in self
.p4BranchesInGit
:
3178 logMsg
= extractLogMessageFromGitCommit(self
.refPrefix
+ branch
)
3180 settings
= extractSettingsGitLog(logMsg
)
3182 self
.readOptions(settings
)
3183 if (settings
.has_key('depot-paths')
3184 and settings
.has_key ('change')):
3185 change
= int(settings
['change']) + 1
3186 p4Change
= max(p4Change
, change
)
3188 depotPaths
= sorted(settings
['depot-paths'])
3189 if self
.previousDepotPaths
== []:
3190 self
.previousDepotPaths
= depotPaths
3193 for (prev
, cur
) in zip(self
.previousDepotPaths
, depotPaths
):
3194 prev_list
= prev
.split("/")
3195 cur_list
= cur
.split("/")
3196 for i
in range(0, min(len(cur_list
), len(prev_list
))):
3197 if cur_list
[i
] <> prev_list
[i
]:
3201 paths
.append ("/".join(cur_list
[:i
+ 1]))
3203 self
.previousDepotPaths
= paths
3206 self
.depotPaths
= sorted(self
.previousDepotPaths
)
3207 self
.changeRange
= "@%s,#head" % p4Change
3208 if not self
.silent
and not self
.detectBranches
:
3209 print "Performing incremental import into %s git branch" % self
.branch
3211 # accept multiple ref name abbreviations:
3212 # refs/foo/bar/branch -> use it exactly
3213 # p4/branch -> prepend refs/remotes/ or refs/heads/
3214 # branch -> prepend refs/remotes/p4/ or refs/heads/p4/
3215 if not self
.branch
.startswith("refs/"):
3216 if self
.importIntoRemotes
:
3217 prepend
= "refs/remotes/"
3219 prepend
= "refs/heads/"
3220 if not self
.branch
.startswith("p4/"):
3222 self
.branch
= prepend
+ self
.branch
3224 if len(args
) == 0 and self
.depotPaths
:
3226 print "Depot paths: %s" % ' '.join(self
.depotPaths
)
3228 if self
.depotPaths
and self
.depotPaths
!= args
:
3229 print ("previous import used depot path %s and now %s was specified. "
3230 "This doesn't work!" % (' '.join (self
.depotPaths
),
3234 self
.depotPaths
= sorted(args
)
3239 # Make sure no revision specifiers are used when --changesfile
3241 bad_changesfile
= False
3242 if len(self
.changesFile
) > 0:
3243 for p
in self
.depotPaths
:
3244 if p
.find("@") >= 0 or p
.find("#") >= 0:
3245 bad_changesfile
= True
3248 die("Option --changesfile is incompatible with revision specifiers")
3251 for p
in self
.depotPaths
:
3252 if p
.find("@") != -1:
3253 atIdx
= p
.index("@")
3254 self
.changeRange
= p
[atIdx
:]
3255 if self
.changeRange
== "@all":
3256 self
.changeRange
= ""
3257 elif ',' not in self
.changeRange
:
3258 revision
= self
.changeRange
3259 self
.changeRange
= ""
3261 elif p
.find("#") != -1:
3262 hashIdx
= p
.index("#")
3263 revision
= p
[hashIdx
:]
3265 elif self
.previousDepotPaths
== []:
3266 # pay attention to changesfile, if given, else import
3267 # the entire p4 tree at the head revision
3268 if len(self
.changesFile
) == 0:
3271 p
= re
.sub ("\.\.\.$", "", p
)
3272 if not p
.endswith("/"):
3277 self
.depotPaths
= newPaths
3279 # --detect-branches may change this for each branch
3280 self
.branchPrefixes
= self
.depotPaths
3282 self
.loadUserMapFromCache()
3284 if self
.detectLabels
:
3287 if self
.detectBranches
:
3288 ## FIXME - what's a P4 projectName ?
3289 self
.projectName
= self
.guessProjectName()
3292 self
.getBranchMappingFromGitBranches()
3294 self
.getBranchMapping()
3296 print "p4-git branches: %s" % self
.p4BranchesInGit
3297 print "initial parents: %s" % self
.initialParents
3298 for b
in self
.p4BranchesInGit
:
3302 b
= b
[len(self
.projectName
):]
3303 self
.createdBranches
.add(b
)
3305 self
.tz
= "%+03d%02d" % (- time
.timezone
/ 3600, ((- time
.timezone
% 3600) / 60))
3307 self
.importProcess
= subprocess
.Popen(["git", "fast-import"],
3308 stdin
=subprocess
.PIPE
,
3309 stdout
=subprocess
.PIPE
,
3310 stderr
=subprocess
.PIPE
);
3311 self
.gitOutput
= self
.importProcess
.stdout
3312 self
.gitStream
= self
.importProcess
.stdin
3313 self
.gitError
= self
.importProcess
.stderr
3316 self
.importHeadRevision(revision
)
3320 if len(self
.changesFile
) > 0:
3321 output
= open(self
.changesFile
).readlines()
3324 changeSet
.add(int(line
))
3326 for change
in changeSet
:
3327 changes
.append(change
)
3331 # catch "git p4 sync" with no new branches, in a repo that
3332 # does not have any existing p4 branches
3334 if not self
.p4BranchesInGit
:
3335 die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.")
3337 # The default branch is master, unless --branch is used to
3338 # specify something else. Make sure it exists, or complain
3339 # nicely about how to use --branch.
3340 if not self
.detectBranches
:
3341 if not branch_exists(self
.branch
):
3342 if branch_arg_given
:
3343 die("Error: branch %s does not exist." % self
.branch
)
3345 die("Error: no branch %s; perhaps specify one with --branch." %
3349 print "Getting p4 changes for %s...%s" % (', '.join(self
.depotPaths
),
3351 changes
= p4ChangesForPaths(self
.depotPaths
, self
.changeRange
, self
.changes_block_size
)
3353 if len(self
.maxChanges
) > 0:
3354 changes
= changes
[:min(int(self
.maxChanges
), len(changes
))]
3356 if len(changes
) == 0:
3358 print "No changes to import!"
3360 if not self
.silent
and not self
.detectBranches
:
3361 print "Import destination: %s" % self
.branch
3363 self
.updatedBranches
= set()
3365 if not self
.detectBranches
:
3367 # start a new branch
3368 self
.initialParent
= ""
3370 # build on a previous revision
3371 self
.initialParent
= parseRevision(self
.branch
)
3373 self
.importChanges(changes
)
3377 if len(self
.updatedBranches
) > 0:
3378 sys
.stdout
.write("Updated branches: ")
3379 for b
in self
.updatedBranches
:
3380 sys
.stdout
.write("%s " % b
)
3381 sys
.stdout
.write("\n")
3383 if gitConfigBool("git-p4.importLabels"):
3384 self
.importLabels
= True
3386 if self
.importLabels
:
3387 p4Labels
= getP4Labels(self
.depotPaths
)
3388 gitTags
= getGitTags()
3390 missingP4Labels
= p4Labels
- gitTags
3391 self
.importP4Labels(self
.gitStream
, missingP4Labels
)
3393 self
.gitStream
.close()
3394 if self
.importProcess
.wait() != 0:
3395 die("fast-import failed: %s" % self
.gitError
.read())
3396 self
.gitOutput
.close()
3397 self
.gitError
.close()
3399 # Cleanup temporary branches created during import
3400 if self
.tempBranches
!= []:
3401 for branch
in self
.tempBranches
:
3402 read_pipe("git update-ref -d %s" % branch
)
3403 os
.rmdir(os
.path
.join(os
.environ
.get("GIT_DIR", ".git"), self
.tempBranchLocation
))
3405 # Create a symbolic ref p4/HEAD pointing to p4/<branch> to allow
3406 # a convenient shortcut refname "p4".
3407 if self
.importIntoRemotes
:
3408 head_ref
= self
.refPrefix
+ "HEAD"
3409 if not gitBranchExists(head_ref
) and gitBranchExists(self
.branch
):
3410 system(["git", "symbolic-ref", head_ref
, self
.branch
])
3414 class P4Rebase(Command
):
3416 Command
.__init
__(self
)
3418 optparse
.make_option("--import-labels", dest
="importLabels", action
="store_true"),
3420 self
.importLabels
= False
3421 self
.description
= ("Fetches the latest revision from perforce and "
3422 + "rebases the current work (branch) against it")
3424 def run(self
, args
):
3426 sync
.importLabels
= self
.importLabels
3429 return self
.rebase()
3432 if os
.system("git update-index --refresh") != 0:
3433 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.");
3434 if len(read_pipe("git diff-index HEAD --")) > 0:
3435 die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash.");
3437 [upstream
, settings
] = findUpstreamBranchPoint()
3438 if len(upstream
) == 0:
3439 die("Cannot find upstream branchpoint for rebase")
3441 # the branchpoint may be p4/foo~3, so strip off the parent
3442 upstream
= re
.sub("~[0-9]+$", "", upstream
)
3444 print "Rebasing the current branch onto %s" % upstream
3445 oldHead
= read_pipe("git rev-parse HEAD").strip()
3446 system("git rebase %s" % upstream
)
3447 system("git diff-tree --stat --summary -M %s HEAD --" % oldHead
)
3450 class P4Clone(P4Sync
):
3452 P4Sync
.__init
__(self
)
3453 self
.description
= "Creates a new git repository and imports from Perforce into it"
3454 self
.usage
= "usage: %prog [options] //depot/path[@revRange]"
3456 optparse
.make_option("--destination", dest
="cloneDestination",
3457 action
='store', default
=None,
3458 help="where to leave result of the clone"),
3459 optparse
.make_option("--bare", dest
="cloneBare",
3460 action
="store_true", default
=False),
3462 self
.cloneDestination
= None
3463 self
.needsGit
= False
3464 self
.cloneBare
= False
3466 def defaultDestination(self
, args
):
3467 ## TODO: use common prefix of args?
3469 depotDir
= re
.sub("(@[^@]*)$", "", depotPath
)
3470 depotDir
= re
.sub("(#[^#]*)$", "", depotDir
)
3471 depotDir
= re
.sub(r
"\.\.\.$", "", depotDir
)
3472 depotDir
= re
.sub(r
"/$", "", depotDir
)
3473 return os
.path
.split(depotDir
)[1]
3475 def run(self
, args
):
3479 if self
.keepRepoPath
and not self
.cloneDestination
:
3480 sys
.stderr
.write("Must specify destination for --keep-path\n")
3485 if not self
.cloneDestination
and len(depotPaths
) > 1:
3486 self
.cloneDestination
= depotPaths
[-1]
3487 depotPaths
= depotPaths
[:-1]
3489 self
.cloneExclude
= ["/"+p
for p
in self
.cloneExclude
]
3490 for p
in depotPaths
:
3491 if not p
.startswith("//"):
3492 sys
.stderr
.write('Depot paths must start with "//": %s\n' % p
)
3495 if not self
.cloneDestination
:
3496 self
.cloneDestination
= self
.defaultDestination(args
)
3498 print "Importing from %s into %s" % (', '.join(depotPaths
), self
.cloneDestination
)
3500 if not os
.path
.exists(self
.cloneDestination
):
3501 os
.makedirs(self
.cloneDestination
)
3502 chdir(self
.cloneDestination
)
3504 init_cmd
= [ "git", "init" ]
3506 init_cmd
.append("--bare")
3507 retcode
= subprocess
.call(init_cmd
)
3509 raise CalledProcessError(retcode
, init_cmd
)
3511 if not P4Sync
.run(self
, depotPaths
):
3514 # create a master branch and check out a work tree
3515 if gitBranchExists(self
.branch
):
3516 system([ "git", "branch", "master", self
.branch
])
3517 if not self
.cloneBare
:
3518 system([ "git", "checkout", "-f" ])
3520 print 'Not checking out any branch, use ' \
3521 '"git checkout -q -b master <branch>"'
3523 # auto-set this variable if invoked with --use-client-spec
3524 if self
.useClientSpec_from_options
:
3525 system("git config --bool git-p4.useclientspec true")
3529 class P4Branches(Command
):
3531 Command
.__init
__(self
)
3533 self
.description
= ("Shows the git branches that hold imports and their "
3534 + "corresponding perforce depot paths")
3535 self
.verbose
= False
3537 def run(self
, args
):
3538 if originP4BranchesExist():
3539 createOrUpdateBranchesFromOrigin()
3541 cmdline
= "git rev-parse --symbolic "
3542 cmdline
+= " --remotes"
3544 for line
in read_pipe_lines(cmdline
):
3547 if not line
.startswith('p4/') or line
== "p4/HEAD":
3551 log
= extractLogMessageFromGitCommit("refs/remotes/%s" % branch
)
3552 settings
= extractSettingsGitLog(log
)
3554 print "%s <= %s (%s)" % (branch
, ",".join(settings
["depot-paths"]), settings
["change"])
3557 class HelpFormatter(optparse
.IndentedHelpFormatter
):
3559 optparse
.IndentedHelpFormatter
.__init
__(self
)
3561 def format_description(self
, description
):
3563 return description
+ "\n"
3567 def printUsage(commands
):
3568 print "usage: %s <command> [options]" % sys
.argv
[0]
3570 print "valid commands: %s" % ", ".join(commands
)
3572 print "Try %s <command> --help for command specific help." % sys
.argv
[0]
3577 "submit" : P4Submit
,
3578 "commit" : P4Submit
,
3580 "rebase" : P4Rebase
,
3582 "rollback" : P4RollBack
,
3583 "branches" : P4Branches
3588 if len(sys
.argv
[1:]) == 0:
3589 printUsage(commands
.keys())
3592 cmdName
= sys
.argv
[1]
3594 klass
= commands
[cmdName
]
3597 print "unknown command %s" % cmdName
3599 printUsage(commands
.keys())
3602 options
= cmd
.options
3603 cmd
.gitdir
= os
.environ
.get("GIT_DIR", None)
3607 options
.append(optparse
.make_option("--verbose", "-v", dest
="verbose", action
="store_true"))
3609 options
.append(optparse
.make_option("--git-dir", dest
="gitdir"))
3611 parser
= optparse
.OptionParser(cmd
.usage
.replace("%prog", "%prog " + cmdName
),
3613 description
= cmd
.description
,
3614 formatter
= HelpFormatter())
3616 (cmd
, args
) = parser
.parse_args(sys
.argv
[2:], cmd
);
3618 verbose
= cmd
.verbose
3620 if cmd
.gitdir
== None:
3621 cmd
.gitdir
= os
.path
.abspath(".git")
3622 if not isValidGitDir(cmd
.gitdir
):
3623 cmd
.gitdir
= read_pipe("git rev-parse --git-dir").strip()
3624 if os
.path
.exists(cmd
.gitdir
):
3625 cdup
= read_pipe("git rev-parse --show-cdup").strip()
3629 if not isValidGitDir(cmd
.gitdir
):
3630 if isValidGitDir(cmd
.gitdir
+ "/.git"):
3631 cmd
.gitdir
+= "/.git"
3633 die("fatal: cannot locate git repository at %s" % cmd
.gitdir
)
3635 os
.environ
["GIT_DIR"] = cmd
.gitdir
3637 if not cmd
.run(args
):
3642 if __name__
== '__main__':