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 import optparse
, sys
, os
, marshal
, subprocess
, shelve
12 import tempfile
, getopt
, os
.path
, time
, platform
18 def p4_build_cmd(cmd
):
19 """Build a suitable p4 command line.
21 This consolidates building and returning a p4 command line into one
22 location. It means that hooking into the environment, or other configuration
23 can be done more easily.
27 user
= gitConfig("git-p4.user")
29 real_cmd
+= ["-u",user
]
31 password
= gitConfig("git-p4.password")
33 real_cmd
+= ["-P", password
]
35 port
= gitConfig("git-p4.port")
37 real_cmd
+= ["-p", port
]
39 host
= gitConfig("git-p4.host")
41 real_cmd
+= ["-h", host
]
43 client
= gitConfig("git-p4.client")
45 real_cmd
+= ["-c", client
]
48 if isinstance(cmd
,basestring
):
49 real_cmd
= ' '.join(real_cmd
) + ' ' + cmd
55 # P4 uses the PWD environment variable rather than getcwd(). Since we're
56 # not using the shell, we have to set it ourselves. This path could
57 # be relative, so go there first, then figure out where we ended up.
59 os
.environ
['PWD'] = os
.getcwd()
65 sys
.stderr
.write(msg
+ "\n")
68 def write_pipe(c
, stdin
):
70 sys
.stderr
.write('Writing pipe: %s\n' % str(c
))
72 expand
= isinstance(c
,basestring
)
73 p
= subprocess
.Popen(c
, stdin
=subprocess
.PIPE
, shell
=expand
)
75 val
= pipe
.write(stdin
)
78 die('Command failed: %s' % str(c
))
82 def p4_write_pipe(c
, stdin
):
83 real_cmd
= p4_build_cmd(c
)
84 return write_pipe(real_cmd
, stdin
)
86 def read_pipe(c
, ignore_error
=False):
88 sys
.stderr
.write('Reading pipe: %s\n' % str(c
))
90 expand
= isinstance(c
,basestring
)
91 p
= subprocess
.Popen(c
, stdout
=subprocess
.PIPE
, shell
=expand
)
94 if p
.wait() and not ignore_error
:
95 die('Command failed: %s' % str(c
))
99 def p4_read_pipe(c
, ignore_error
=False):
100 real_cmd
= p4_build_cmd(c
)
101 return read_pipe(real_cmd
, ignore_error
)
103 def read_pipe_lines(c
):
105 sys
.stderr
.write('Reading pipe: %s\n' % str(c
))
107 expand
= isinstance(c
, basestring
)
108 p
= subprocess
.Popen(c
, stdout
=subprocess
.PIPE
, shell
=expand
)
110 val
= pipe
.readlines()
111 if pipe
.close() or p
.wait():
112 die('Command failed: %s' % str(c
))
116 def p4_read_pipe_lines(c
):
117 """Specifically invoke p4 on the command supplied. """
118 real_cmd
= p4_build_cmd(c
)
119 return read_pipe_lines(real_cmd
)
122 expand
= isinstance(cmd
,basestring
)
124 sys
.stderr
.write("executing %s\n" % str(cmd
))
125 subprocess
.check_call(cmd
, shell
=expand
)
128 """Specifically invoke p4 as the system command. """
129 real_cmd
= p4_build_cmd(cmd
)
130 expand
= isinstance(real_cmd
, basestring
)
131 subprocess
.check_call(real_cmd
, shell
=expand
)
133 def p4_integrate(src
, dest
):
134 p4_system(["integrate", "-Dt", src
, dest
])
137 p4_system(["sync", path
])
140 p4_system(["add", f
])
143 p4_system(["delete", f
])
146 p4_system(["edit", f
])
149 p4_system(["revert", f
])
151 def p4_reopen(type, file):
152 p4_system(["reopen", "-t", type, file])
155 # Canonicalize the p4 type and return a tuple of the
156 # base type, plus any modifiers. See "p4 help filetypes"
157 # for a list and explanation.
159 def split_p4_type(p4type
):
161 p4_filetypes_historical
= {
162 "ctempobj": "binary+Sw",
168 "tempobj": "binary+FSw",
169 "ubinary": "binary+F",
170 "uresource": "resource+F",
171 "uxbinary": "binary+Fx",
172 "xbinary": "binary+x",
174 "xtempobj": "binary+Swx",
176 "xunicode": "unicode+x",
179 if p4type
in p4_filetypes_historical
:
180 p4type
= p4_filetypes_historical
[p4type
]
182 s
= p4type
.split("+")
190 # return the raw p4 type of a file (text, text+ko, etc)
193 results
= p4CmdList(["fstat", "-T", "headType", file])
194 return results
[0]['headType']
197 # Given a type base and modifier, return a regexp matching
198 # the keywords that can be expanded in the file
200 def p4_keywords_regexp_for_type(base
, type_mods
):
201 if base
in ("text", "unicode", "binary"):
203 if "ko" in type_mods
:
205 elif "k" in type_mods
:
206 kwords
= 'Id|Header|Author|Date|DateTime|Change|File|Revision'
210 \$ # Starts with a dollar, followed by...
211 (%s) # one of the keywords, followed by...
212 (:[^$]+)? # possibly an old expansion, followed by...
220 # Given a file, return a regexp matching the possible
221 # RCS keywords that will be expanded, or None for files
222 # with kw expansion turned off.
224 def p4_keywords_regexp_for_file(file):
225 if not os
.path
.exists(file):
228 (type_base
, type_mods
) = split_p4_type(p4_type(file))
229 return p4_keywords_regexp_for_type(type_base
, type_mods
)
231 def setP4ExecBit(file, mode
):
232 # Reopens an already open file and changes the execute bit to match
233 # the execute bit setting in the passed in mode.
237 if not isModeExec(mode
):
238 p4Type
= getP4OpenedType(file)
239 p4Type
= re
.sub('^([cku]?)x(.*)', '\\1\\2', p4Type
)
240 p4Type
= re
.sub('(.*?\+.*?)x(.*?)', '\\1\\2', p4Type
)
241 if p4Type
[-1] == "+":
242 p4Type
= p4Type
[0:-1]
244 p4_reopen(p4Type
, file)
246 def getP4OpenedType(file):
247 # Returns the perforce file type for the given file.
249 result
= p4_read_pipe(["opened", file])
250 match
= re
.match(".*\((.+)\)\r?$", result
)
252 return match
.group(1)
254 die("Could not determine file type for %s (result: '%s')" % (file, result
))
256 def diffTreePattern():
257 # This is a simple generator for the diff tree regex pattern. This could be
258 # a class variable if this and parseDiffTreeEntry were a part of a class.
259 pattern
= re
.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)')
263 def parseDiffTreeEntry(entry
):
264 """Parses a single diff tree entry into its component elements.
266 See git-diff-tree(1) manpage for details about the format of the diff
267 output. This method returns a dictionary with the following elements:
269 src_mode - The mode of the source file
270 dst_mode - The mode of the destination file
271 src_sha1 - The sha1 for the source file
272 dst_sha1 - The sha1 fr the destination file
273 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc)
274 status_score - The score for the status (applicable for 'C' and 'R'
275 statuses). This is None if there is no score.
276 src - The path for the source file.
277 dst - The path for the destination file. This is only present for
278 copy or renames. If it is not present, this is None.
280 If the pattern is not matched, None is returned."""
282 match
= diffTreePattern().next().match(entry
)
285 'src_mode': match
.group(1),
286 'dst_mode': match
.group(2),
287 'src_sha1': match
.group(3),
288 'dst_sha1': match
.group(4),
289 'status': match
.group(5),
290 'status_score': match
.group(6),
291 'src': match
.group(7),
292 'dst': match
.group(10)
296 def isModeExec(mode
):
297 # Returns True if the given git mode represents an executable file,
299 return mode
[-3:] == "755"
301 def isModeExecChanged(src_mode
, dst_mode
):
302 return isModeExec(src_mode
) != isModeExec(dst_mode
)
304 def p4CmdList(cmd
, stdin
=None, stdin_mode
='w+b', cb
=None):
306 if isinstance(cmd
,basestring
):
313 cmd
= p4_build_cmd(cmd
)
315 sys
.stderr
.write("Opening pipe: %s\n" % str(cmd
))
317 # Use a temporary file to avoid deadlocks without
318 # subprocess.communicate(), which would put another copy
319 # of stdout into memory.
321 if stdin
is not None:
322 stdin_file
= tempfile
.TemporaryFile(prefix
='p4-stdin', mode
=stdin_mode
)
323 if isinstance(stdin
,basestring
):
324 stdin_file
.write(stdin
)
327 stdin_file
.write(i
+ '\n')
331 p4
= subprocess
.Popen(cmd
,
334 stdout
=subprocess
.PIPE
)
339 entry
= marshal
.load(p4
.stdout
)
349 entry
["p4ExitCode"] = exitCode
355 list = p4CmdList(cmd
)
361 def p4Where(depotPath
):
362 if not depotPath
.endswith("/"):
364 depotPath
= depotPath
+ "..."
365 outputList
= p4CmdList(["where", depotPath
])
367 for entry
in outputList
:
368 if "depotFile" in entry
:
369 if entry
["depotFile"] == depotPath
:
372 elif "data" in entry
:
373 data
= entry
.get("data")
374 space
= data
.find(" ")
375 if data
[:space
] == depotPath
:
380 if output
["code"] == "error":
384 clientPath
= output
.get("path")
385 elif "data" in output
:
386 data
= output
.get("data")
387 lastSpace
= data
.rfind(" ")
388 clientPath
= data
[lastSpace
+ 1:]
390 if clientPath
.endswith("..."):
391 clientPath
= clientPath
[:-3]
394 def currentGitBranch():
395 return read_pipe("git name-rev HEAD").split(" ")[1].strip()
397 def isValidGitDir(path
):
398 if (os
.path
.exists(path
+ "/HEAD")
399 and os
.path
.exists(path
+ "/refs") and os
.path
.exists(path
+ "/objects")):
403 def parseRevision(ref
):
404 return read_pipe("git rev-parse %s" % ref
).strip()
406 def branchExists(ref
):
407 rev
= read_pipe(["git", "rev-parse", "-q", "--verify", ref
],
411 def extractLogMessageFromGitCommit(commit
):
414 ## fixme: title is first line of commit, not 1st paragraph.
416 for log
in read_pipe_lines("git cat-file commit %s" % commit
):
425 def extractSettingsGitLog(log
):
427 for line
in log
.split("\n"):
429 m
= re
.search (r
"^ *\[git-p4: (.*)\]$", line
)
433 assignments
= m
.group(1).split (':')
434 for a
in assignments
:
436 key
= vals
[0].strip()
437 val
= ('='.join (vals
[1:])).strip()
438 if val
.endswith ('\"') and val
.startswith('"'):
443 paths
= values
.get("depot-paths")
445 paths
= values
.get("depot-path")
447 values
['depot-paths'] = paths
.split(',')
450 def gitBranchExists(branch
):
451 proc
= subprocess
.Popen(["git", "rev-parse", branch
],
452 stderr
=subprocess
.PIPE
, stdout
=subprocess
.PIPE
);
453 return proc
.wait() == 0;
456 def gitConfig(key
, args
= None): # set args to "--bool", for instance
457 if not _gitConfig
.has_key(key
):
460 argsFilter
= "%s " % args
461 cmd
= "git config %s%s" % (argsFilter
, key
)
462 _gitConfig
[key
] = read_pipe(cmd
, ignore_error
=True).strip()
463 return _gitConfig
[key
]
465 def gitConfigList(key
):
466 if not _gitConfig
.has_key(key
):
467 _gitConfig
[key
] = read_pipe("git config --get-all %s" % key
, ignore_error
=True).strip().split(os
.linesep
)
468 return _gitConfig
[key
]
470 def p4BranchesInGit(branchesAreInRemotes
= True):
473 cmdline
= "git rev-parse --symbolic "
474 if branchesAreInRemotes
:
475 cmdline
+= " --remotes"
477 cmdline
+= " --branches"
479 for line
in read_pipe_lines(cmdline
):
482 ## only import to p4/
483 if not line
.startswith('p4/') or line
== "p4/HEAD":
488 branch
= re
.sub ("^p4/", "", line
)
490 branches
[branch
] = parseRevision(line
)
493 def findUpstreamBranchPoint(head
= "HEAD"):
494 branches
= p4BranchesInGit()
495 # map from depot-path to branch name
496 branchByDepotPath
= {}
497 for branch
in branches
.keys():
498 tip
= branches
[branch
]
499 log
= extractLogMessageFromGitCommit(tip
)
500 settings
= extractSettingsGitLog(log
)
501 if settings
.has_key("depot-paths"):
502 paths
= ",".join(settings
["depot-paths"])
503 branchByDepotPath
[paths
] = "remotes/p4/" + branch
507 while parent
< 65535:
508 commit
= head
+ "~%s" % parent
509 log
= extractLogMessageFromGitCommit(commit
)
510 settings
= extractSettingsGitLog(log
)
511 if settings
.has_key("depot-paths"):
512 paths
= ",".join(settings
["depot-paths"])
513 if branchByDepotPath
.has_key(paths
):
514 return [branchByDepotPath
[paths
], settings
]
518 return ["", settings
]
520 def createOrUpdateBranchesFromOrigin(localRefPrefix
= "refs/remotes/p4/", silent
=True):
522 print ("Creating/updating branch(es) in %s based on origin branch(es)"
525 originPrefix
= "origin/p4/"
527 for line
in read_pipe_lines("git rev-parse --symbolic --remotes"):
529 if (not line
.startswith(originPrefix
)) or line
.endswith("HEAD"):
532 headName
= line
[len(originPrefix
):]
533 remoteHead
= localRefPrefix
+ headName
536 original
= extractSettingsGitLog(extractLogMessageFromGitCommit(originHead
))
537 if (not original
.has_key('depot-paths')
538 or not original
.has_key('change')):
542 if not gitBranchExists(remoteHead
):
544 print "creating %s" % remoteHead
547 settings
= extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead
))
548 if settings
.has_key('change') > 0:
549 if settings
['depot-paths'] == original
['depot-paths']:
550 originP4Change
= int(original
['change'])
551 p4Change
= int(settings
['change'])
552 if originP4Change
> p4Change
:
553 print ("%s (%s) is newer than %s (%s). "
554 "Updating p4 branch from origin."
555 % (originHead
, originP4Change
,
556 remoteHead
, p4Change
))
559 print ("Ignoring: %s was imported from %s while "
560 "%s was imported from %s"
561 % (originHead
, ','.join(original
['depot-paths']),
562 remoteHead
, ','.join(settings
['depot-paths'])))
565 system("git update-ref %s %s" % (remoteHead
, originHead
))
567 def originP4BranchesExist():
568 return gitBranchExists("origin") or gitBranchExists("origin/p4") or gitBranchExists("origin/p4/master")
570 def p4ChangesForPaths(depotPaths
, changeRange
):
574 cmd
+= ["%s...%s" % (p
, changeRange
)]
575 output
= p4_read_pipe_lines(cmd
)
579 changeNum
= int(line
.split(" ")[1])
580 changes
[changeNum
] = True
582 changelist
= changes
.keys()
586 def p4PathStartsWith(path
, prefix
):
587 # This method tries to remedy a potential mixed-case issue:
589 # If UserA adds //depot/DirA/file1
590 # and UserB adds //depot/dira/file2
592 # we may or may not have a problem. If you have core.ignorecase=true,
593 # we treat DirA and dira as the same directory
594 ignorecase
= gitConfig("core.ignorecase", "--bool") == "true"
596 return path
.lower().startswith(prefix
.lower())
597 return path
.startswith(prefix
)
601 self
.usage
= "usage: %prog [options]"
606 self
.userMapFromPerforceServer
= False
607 self
.myP4UserId
= None
611 return self
.myP4UserId
613 results
= p4CmdList("user -o")
615 if r
.has_key('User'):
616 self
.myP4UserId
= r
['User']
618 die("Could not find your p4 user id")
620 def p4UserIsMe(self
, p4User
):
621 # return True if the given p4 user is actually me
623 if not p4User
or p4User
!= me
:
628 def getUserCacheFilename(self
):
629 home
= os
.environ
.get("HOME", os
.environ
.get("USERPROFILE"))
630 return home
+ "/.gitp4-usercache.txt"
632 def getUserMapFromPerforceServer(self
):
633 if self
.userMapFromPerforceServer
:
638 for output
in p4CmdList("users"):
639 if not output
.has_key("User"):
641 self
.users
[output
["User"]] = output
["FullName"] + " <" + output
["Email"] + ">"
642 self
.emails
[output
["Email"]] = output
["User"]
646 for (key
, val
) in self
.users
.items():
647 s
+= "%s\t%s\n" % (key
.expandtabs(1), val
.expandtabs(1))
649 open(self
.getUserCacheFilename(), "wb").write(s
)
650 self
.userMapFromPerforceServer
= True
652 def loadUserMapFromCache(self
):
654 self
.userMapFromPerforceServer
= False
656 cache
= open(self
.getUserCacheFilename(), "rb")
657 lines
= cache
.readlines()
660 entry
= line
.strip().split("\t")
661 self
.users
[entry
[0]] = entry
[1]
663 self
.getUserMapFromPerforceServer()
665 class P4Debug(Command
):
667 Command
.__init
__(self
)
669 optparse
.make_option("--verbose", dest
="verbose", action
="store_true",
672 self
.description
= "A tool to debug the output of p4 -G."
673 self
.needsGit
= False
678 for output
in p4CmdList(args
):
679 print 'Element: %d' % j
684 class P4RollBack(Command
):
686 Command
.__init
__(self
)
688 optparse
.make_option("--verbose", dest
="verbose", action
="store_true"),
689 optparse
.make_option("--local", dest
="rollbackLocalBranches", action
="store_true")
691 self
.description
= "A tool to debug the multi-branch import. Don't use :)"
693 self
.rollbackLocalBranches
= False
698 maxChange
= int(args
[0])
700 if "p4ExitCode" in p4Cmd("changes -m 1"):
701 die("Problems executing p4");
703 if self
.rollbackLocalBranches
:
704 refPrefix
= "refs/heads/"
705 lines
= read_pipe_lines("git rev-parse --symbolic --branches")
707 refPrefix
= "refs/remotes/"
708 lines
= read_pipe_lines("git rev-parse --symbolic --remotes")
711 if self
.rollbackLocalBranches
or (line
.startswith("p4/") and line
!= "p4/HEAD\n"):
713 ref
= refPrefix
+ line
714 log
= extractLogMessageFromGitCommit(ref
)
715 settings
= extractSettingsGitLog(log
)
717 depotPaths
= settings
['depot-paths']
718 change
= settings
['change']
722 if len(p4Cmd("changes -m 1 " + ' '.join (['%s...@%s' % (p
, maxChange
)
723 for p
in depotPaths
]))) == 0:
724 print "Branch %s did not exist at change %s, deleting." % (ref
, maxChange
)
725 system("git update-ref -d %s `git rev-parse %s`" % (ref
, ref
))
728 while change
and int(change
) > maxChange
:
731 print "%s is at %s ; rewinding towards %s" % (ref
, change
, maxChange
)
732 system("git update-ref %s \"%s^\"" % (ref
, ref
))
733 log
= extractLogMessageFromGitCommit(ref
)
734 settings
= extractSettingsGitLog(log
)
737 depotPaths
= settings
['depot-paths']
738 change
= settings
['change']
741 print "%s rewound to %s" % (ref
, change
)
745 class P4Submit(Command
, P4UserMap
):
747 Command
.__init
__(self
)
748 P4UserMap
.__init
__(self
)
750 optparse
.make_option("--verbose", dest
="verbose", action
="store_true"),
751 optparse
.make_option("--origin", dest
="origin"),
752 optparse
.make_option("-M", dest
="detectRenames", action
="store_true"),
753 # preserve the user, requires relevant p4 permissions
754 optparse
.make_option("--preserve-user", dest
="preserveUser", action
="store_true"),
756 self
.description
= "Submit changes from git to the perforce depot."
757 self
.usage
+= " [name of git branch to submit into perforce depot]"
758 self
.interactive
= True
760 self
.detectRenames
= False
762 self
.preserveUser
= gitConfig("git-p4.preserveUser").lower() == "true"
763 self
.isWindows
= (platform
.system() == "Windows")
766 if len(p4CmdList("opened ...")) > 0:
767 die("You have files opened with perforce! Close them before starting the sync.")
769 # replaces everything between 'Description:' and the next P4 submit template field with the
771 def prepareLogMessage(self
, template
, message
):
774 inDescriptionSection
= False
776 for line
in template
.split("\n"):
777 if line
.startswith("#"):
778 result
+= line
+ "\n"
781 if inDescriptionSection
:
782 if line
.startswith("Files:") or line
.startswith("Jobs:"):
783 inDescriptionSection
= False
787 if line
.startswith("Description:"):
788 inDescriptionSection
= True
790 for messageLine
in message
.split("\n"):
791 line
+= "\t" + messageLine
+ "\n"
793 result
+= line
+ "\n"
797 def patchRCSKeywords(self
, file, pattern
):
798 # Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern
799 (handle
, outFileName
) = tempfile
.mkstemp(dir='.')
801 outFile
= os
.fdopen(handle
, "w+")
802 inFile
= open(file, "r")
803 regexp
= re
.compile(pattern
, re
.VERBOSE
)
804 for line
in inFile
.readlines():
805 line
= regexp
.sub(r
'$\1$', line
)
809 # Forcibly overwrite the original file
811 shutil
.move(outFileName
, file)
813 # cleanup our temporary file
814 os
.unlink(outFileName
)
815 print "Failed to strip RCS keywords in %s" % file
818 print "Patched up RCS keywords in %s" % file
820 def p4UserForCommit(self
,id):
821 # Return the tuple (perforce user,git email) for a given git commit id
822 self
.getUserMapFromPerforceServer()
823 gitEmail
= read_pipe("git log --max-count=1 --format='%%ae' %s" % id)
824 gitEmail
= gitEmail
.strip()
825 if not self
.emails
.has_key(gitEmail
):
826 return (None,gitEmail
)
828 return (self
.emails
[gitEmail
],gitEmail
)
830 def checkValidP4Users(self
,commits
):
831 # check if any git authors cannot be mapped to p4 users
833 (user
,email
) = self
.p4UserForCommit(id)
835 msg
= "Cannot find p4 user for email %s in commit %s." % (email
, id)
836 if gitConfig('git-p4.allowMissingP4Users').lower() == "true":
839 die("Error: %s\nSet git-p4.allowMissingP4Users to true to allow this." % msg
)
841 def lastP4Changelist(self
):
842 # Get back the last changelist number submitted in this client spec. This
843 # then gets used to patch up the username in the change. If the same
844 # client spec is being used by multiple processes then this might go
846 results
= p4CmdList("client -o") # find the current client
849 if r
.has_key('Client'):
853 die("could not get client spec")
854 results
= p4CmdList(["changes", "-c", client
, "-m", "1"])
856 if r
.has_key('change'):
858 die("Could not get changelist number for last submit - cannot patch up user details")
860 def modifyChangelistUser(self
, changelist
, newUser
):
861 # fixup the user field of a changelist after it has been submitted.
862 changes
= p4CmdList("change -o %s" % changelist
)
863 if len(changes
) != 1:
864 die("Bad output from p4 change modifying %s to user %s" %
865 (changelist
, newUser
))
868 if c
['User'] == newUser
: return # nothing to do
870 input = marshal
.dumps(c
)
872 result
= p4CmdList("change -f -i", stdin
=input)
874 if r
.has_key('code'):
875 if r
['code'] == 'error':
876 die("Could not modify user field of changelist %s to %s:%s" % (changelist
, newUser
, r
['data']))
877 if r
.has_key('data'):
878 print("Updated user field for changelist %s to %s" % (changelist
, newUser
))
880 die("Could not modify user field of changelist %s to %s" % (changelist
, newUser
))
882 def canChangeChangelists(self
):
883 # check to see if we have p4 admin or super-user permissions, either of
884 # which are required to modify changelists.
885 results
= p4CmdList(["protects", self
.depotPath
])
887 if r
.has_key('perm'):
888 if r
['perm'] == 'admin':
890 if r
['perm'] == 'super':
894 def prepareSubmitTemplate(self
):
895 # remove lines in the Files section that show changes to files outside the depot path we're committing into
897 inFilesSection
= False
898 for line
in p4_read_pipe_lines(['change', '-o']):
899 if line
.endswith("\r\n"):
900 line
= line
[:-2] + "\n"
902 if line
.startswith("\t"):
903 # path starts and ends with a tab
905 lastTab
= path
.rfind("\t")
907 path
= path
[:lastTab
]
908 if not p4PathStartsWith(path
, self
.depotPath
):
911 inFilesSection
= False
913 if line
.startswith("Files:"):
914 inFilesSection
= True
920 def edit_template(self
, template_file
):
921 """Invoke the editor to let the user change the submission
922 message. Return true if okay to continue with the submit."""
924 # if configured to skip the editing part, just submit
925 if gitConfig("git-p4.skipSubmitEdit") == "true":
928 # look at the modification time, to check later if the user saved
930 mtime
= os
.stat(template_file
).st_mtime
933 if os
.environ
.has_key("P4EDITOR"):
934 editor
= os
.environ
.get("P4EDITOR")
936 editor
= read_pipe("git var GIT_EDITOR").strip()
937 system(editor
+ " " + template_file
)
939 # If the file was not saved, prompt to see if this patch should
940 # be skipped. But skip this verification step if configured so.
941 if gitConfig("git-p4.skipSubmitEditCheck") == "true":
944 # modification time updated means user saved the file
945 if os
.stat(template_file
).st_mtime
> mtime
:
949 response
= raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")
955 def applyCommit(self
, id):
956 print "Applying %s" % (read_pipe("git log --max-count=1 --pretty=oneline %s" % id))
958 (p4User
, gitEmail
) = self
.p4UserForCommit(id)
960 if not self
.detectRenames
:
961 # If not explicitly set check the config variable
962 self
.detectRenames
= gitConfig("git-p4.detectRenames")
964 if self
.detectRenames
.lower() == "false" or self
.detectRenames
== "":
966 elif self
.detectRenames
.lower() == "true":
969 diffOpts
= "-M%s" % self
.detectRenames
971 detectCopies
= gitConfig("git-p4.detectCopies")
972 if detectCopies
.lower() == "true":
974 elif detectCopies
!= "" and detectCopies
.lower() != "false":
975 diffOpts
+= " -C%s" % detectCopies
977 if gitConfig("git-p4.detectCopiesHarder", "--bool") == "true":
978 diffOpts
+= " --find-copies-harder"
980 diff
= read_pipe_lines("git diff-tree -r %s \"%s^\" \"%s\"" % (diffOpts
, id, id))
982 filesToDelete
= set()
984 filesToChangeExecBit
= {}
987 diff
= parseDiffTreeEntry(line
)
988 modifier
= diff
['status']
992 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
993 filesToChangeExecBit
[path
] = diff
['dst_mode']
994 editedFiles
.add(path
)
995 elif modifier
== "A":
997 filesToChangeExecBit
[path
] = diff
['dst_mode']
998 if path
in filesToDelete
:
999 filesToDelete
.remove(path
)
1000 elif modifier
== "D":
1001 filesToDelete
.add(path
)
1002 if path
in filesToAdd
:
1003 filesToAdd
.remove(path
)
1004 elif modifier
== "C":
1005 src
, dest
= diff
['src'], diff
['dst']
1006 p4_integrate(src
, dest
)
1007 if diff
['src_sha1'] != diff
['dst_sha1']:
1009 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
1011 filesToChangeExecBit
[dest
] = diff
['dst_mode']
1013 editedFiles
.add(dest
)
1014 elif modifier
== "R":
1015 src
, dest
= diff
['src'], diff
['dst']
1016 p4_integrate(src
, dest
)
1017 if diff
['src_sha1'] != diff
['dst_sha1']:
1019 if isModeExecChanged(diff
['src_mode'], diff
['dst_mode']):
1021 filesToChangeExecBit
[dest
] = diff
['dst_mode']
1023 editedFiles
.add(dest
)
1024 filesToDelete
.add(src
)
1026 die("unknown modifier %s for %s" % (modifier
, path
))
1028 diffcmd
= "git format-patch -k --stdout \"%s^\"..\"%s\"" % (id, id)
1029 patchcmd
= diffcmd
+ " | git apply "
1030 tryPatchCmd
= patchcmd
+ "--check -"
1031 applyPatchCmd
= patchcmd
+ "--check --apply -"
1032 patch_succeeded
= True
1034 if os
.system(tryPatchCmd
) != 0:
1035 fixed_rcs_keywords
= False
1036 patch_succeeded
= False
1037 print "Unfortunately applying the change failed!"
1039 # Patch failed, maybe it's just RCS keyword woes. Look through
1040 # the patch to see if that's possible.
1041 if gitConfig("git-p4.attemptRCSCleanup","--bool") == "true":
1045 for file in editedFiles | filesToDelete
:
1046 # did this file's delta contain RCS keywords?
1047 pattern
= p4_keywords_regexp_for_file(file)
1050 # this file is a possibility...look for RCS keywords.
1051 regexp
= re
.compile(pattern
, re
.VERBOSE
)
1052 for line
in read_pipe_lines(["git", "diff", "%s^..%s" % (id, id), file]):
1053 if regexp
.search(line
):
1055 print "got keyword match on %s in %s in %s" % (pattern
, line
, file)
1056 kwfiles
[file] = pattern
1059 for file in kwfiles
:
1061 print "zapping %s with %s" % (line
,pattern
)
1062 self
.patchRCSKeywords(file, kwfiles
[file])
1063 fixed_rcs_keywords
= True
1065 if fixed_rcs_keywords
:
1066 print "Retrying the patch with RCS keywords cleaned up"
1067 if os
.system(tryPatchCmd
) == 0:
1068 patch_succeeded
= True
1070 if not patch_succeeded
:
1071 print "What do you want to do?"
1073 while response
!= "s" and response
!= "a" and response
!= "w":
1074 response
= raw_input("[s]kip this patch / [a]pply the patch forcibly "
1075 "and with .rej files / [w]rite the patch to a file (patch.txt) ")
1077 print "Skipping! Good luck with the next patches..."
1078 for f
in editedFiles
:
1080 for f
in filesToAdd
:
1083 elif response
== "a":
1084 os
.system(applyPatchCmd
)
1085 if len(filesToAdd
) > 0:
1086 print "You may also want to call p4 add on the following files:"
1087 print " ".join(filesToAdd
)
1088 if len(filesToDelete
):
1089 print "The following files should be scheduled for deletion with p4 delete:"
1090 print " ".join(filesToDelete
)
1091 die("Please resolve and submit the conflict manually and "
1092 + "continue afterwards with git-p4 submit --continue")
1093 elif response
== "w":
1094 system(diffcmd
+ " > patch.txt")
1095 print "Patch saved to patch.txt in %s !" % self
.clientPath
1096 die("Please resolve and submit the conflict manually and "
1097 "continue afterwards with git-p4 submit --continue")
1099 system(applyPatchCmd
)
1101 for f
in filesToAdd
:
1103 for f
in filesToDelete
:
1107 # Set/clear executable bits
1108 for f
in filesToChangeExecBit
.keys():
1109 mode
= filesToChangeExecBit
[f
]
1110 setP4ExecBit(f
, mode
)
1112 logMessage
= extractLogMessageFromGitCommit(id)
1113 logMessage
= logMessage
.strip()
1115 template
= self
.prepareSubmitTemplate()
1117 if self
.interactive
:
1118 submitTemplate
= self
.prepareLogMessage(template
, logMessage
)
1120 if self
.preserveUser
:
1121 submitTemplate
= submitTemplate
+ ("\n######## Actual user %s, modified after commit\n" % p4User
)
1123 if os
.environ
.has_key("P4DIFF"):
1124 del(os
.environ
["P4DIFF"])
1126 for editedFile
in editedFiles
:
1127 diff
+= p4_read_pipe(['diff', '-du', editedFile
])
1130 for newFile
in filesToAdd
:
1131 newdiff
+= "==== new file ====\n"
1132 newdiff
+= "--- /dev/null\n"
1133 newdiff
+= "+++ %s\n" % newFile
1134 f
= open(newFile
, "r")
1135 for line
in f
.readlines():
1136 newdiff
+= "+" + line
1139 if self
.checkAuthorship
and not self
.p4UserIsMe(p4User
):
1140 submitTemplate
+= "######## git author %s does not match your p4 account.\n" % gitEmail
1141 submitTemplate
+= "######## Use git-p4 option --preserve-user to modify authorship\n"
1142 submitTemplate
+= "######## Use git-p4 config git-p4.skipUserNameCheck hides this message.\n"
1144 separatorLine
= "######## everything below this line is just the diff #######\n"
1146 (handle
, fileName
) = tempfile
.mkstemp()
1147 tmpFile
= os
.fdopen(handle
, "w+")
1149 submitTemplate
= submitTemplate
.replace("\n", "\r\n")
1150 separatorLine
= separatorLine
.replace("\n", "\r\n")
1151 newdiff
= newdiff
.replace("\n", "\r\n")
1152 tmpFile
.write(submitTemplate
+ separatorLine
+ diff
+ newdiff
)
1155 if self
.edit_template(fileName
):
1156 # read the edited message and submit
1157 tmpFile
= open(fileName
, "rb")
1158 message
= tmpFile
.read()
1160 submitTemplate
= message
[:message
.index(separatorLine
)]
1162 submitTemplate
= submitTemplate
.replace("\r\n", "\n")
1163 p4_write_pipe(['submit', '-i'], submitTemplate
)
1165 if self
.preserveUser
:
1167 # Get last changelist number. Cannot easily get it from
1168 # the submit command output as the output is
1170 changelist
= self
.lastP4Changelist()
1171 self
.modifyChangelistUser(changelist
, p4User
)
1174 print "Submission cancelled, undoing p4 changes."
1175 for f
in editedFiles
:
1177 for f
in filesToAdd
:
1183 fileName
= "submit.txt"
1184 file = open(fileName
, "w+")
1185 file.write(self
.prepareLogMessage(template
, logMessage
))
1187 print ("Perforce submit template written as %s. "
1188 + "Please review/edit and then use p4 submit -i < %s to submit directly!"
1189 % (fileName
, fileName
))
1191 def run(self
, args
):
1193 self
.master
= currentGitBranch()
1194 if len(self
.master
) == 0 or not gitBranchExists("refs/heads/%s" % self
.master
):
1195 die("Detecting current git branch failed!")
1196 elif len(args
) == 1:
1197 self
.master
= args
[0]
1198 if not branchExists(self
.master
):
1199 die("Branch %s does not exist" % self
.master
)
1203 allowSubmit
= gitConfig("git-p4.allowSubmit")
1204 if len(allowSubmit
) > 0 and not self
.master
in allowSubmit
.split(","):
1205 die("%s is not in git-p4.allowSubmit" % self
.master
)
1207 [upstream
, settings
] = findUpstreamBranchPoint()
1208 self
.depotPath
= settings
['depot-paths'][0]
1209 if len(self
.origin
) == 0:
1210 self
.origin
= upstream
1212 if self
.preserveUser
:
1213 if not self
.canChangeChangelists():
1214 die("Cannot preserve user names without p4 super-user or admin permissions")
1217 print "Origin branch is " + self
.origin
1219 if len(self
.depotPath
) == 0:
1220 print "Internal error: cannot locate perforce depot path from existing branches"
1223 self
.clientPath
= p4Where(self
.depotPath
)
1225 if len(self
.clientPath
) == 0:
1226 print "Error: Cannot locate perforce checkout of %s in client view" % self
.depotPath
1229 print "Perforce checkout for depot path %s located at %s" % (self
.depotPath
, self
.clientPath
)
1230 self
.oldWorkingDirectory
= os
.getcwd()
1232 # ensure the clientPath exists
1233 if not os
.path
.exists(self
.clientPath
):
1234 os
.makedirs(self
.clientPath
)
1236 chdir(self
.clientPath
)
1237 print "Synchronizing p4 checkout..."
1242 for line
in read_pipe_lines("git rev-list --no-merges %s..%s" % (self
.origin
, self
.master
)):
1243 commits
.append(line
.strip())
1246 if self
.preserveUser
or (gitConfig("git-p4.skipUserNameCheck") == "true"):
1247 self
.checkAuthorship
= False
1249 self
.checkAuthorship
= True
1251 if self
.preserveUser
:
1252 self
.checkValidP4Users(commits
)
1254 while len(commits
) > 0:
1256 commits
= commits
[1:]
1257 self
.applyCommit(commit
)
1258 if not self
.interactive
:
1261 if len(commits
) == 0:
1262 print "All changes applied!"
1263 chdir(self
.oldWorkingDirectory
)
1274 """Represent a p4 view ("p4 help views"), and map files in a
1275 repo according to the view."""
1278 """A depot or client path, possibly containing wildcards.
1279 The only one supported is ... at the end, currently.
1280 Initialize with the full path, with //depot or //client."""
1282 def __init__(self
, path
, is_depot
):
1284 self
.is_depot
= is_depot
1285 self
.find_wildcards()
1286 # remember the prefix bit, useful for relative mappings
1287 m
= re
.match("(//[^/]+/)", self
.path
)
1289 die("Path %s does not start with //prefix/" % self
.path
)
1291 if not self
.is_depot
:
1292 # strip //client/ on client paths
1293 self
.path
= self
.path
[len(prefix
):]
1295 def find_wildcards(self
):
1296 """Make sure wildcards are valid, and set up internal
1299 self
.ends_triple_dot
= False
1300 # There are three wildcards allowed in p4 views
1301 # (see "p4 help views"). This code knows how to
1302 # handle "..." (only at the end), but cannot deal with
1303 # "%%n" or "*". Only check the depot_side, as p4 should
1304 # validate that the client_side matches too.
1305 if re
.search(r
'%%[1-9]', self
.path
):
1306 die("Can't handle %%n wildcards in view: %s" % self
.path
)
1307 if self
.path
.find("*") >= 0:
1308 die("Can't handle * wildcards in view: %s" % self
.path
)
1309 triple_dot_index
= self
.path
.find("...")
1310 if triple_dot_index
>= 0:
1311 if triple_dot_index
!= len(self
.path
) - 3:
1312 die("Can handle only single ... wildcard, at end: %s" %
1314 self
.ends_triple_dot
= True
1316 def ensure_compatible(self
, other_path
):
1317 """Make sure the wildcards agree."""
1318 if self
.ends_triple_dot
!= other_path
.ends_triple_dot
:
1319 die("Both paths must end with ... if either does;\n" +
1320 "paths: %s %s" % (self
.path
, other_path
.path
))
1322 def match_wildcards(self
, test_path
):
1323 """See if this test_path matches us, and fill in the value
1324 of the wildcards if so. Returns a tuple of
1325 (True|False, wildcards[]). For now, only the ... at end
1326 is supported, so at most one wildcard."""
1327 if self
.ends_triple_dot
:
1328 dotless
= self
.path
[:-3]
1329 if test_path
.startswith(dotless
):
1330 wildcard
= test_path
[len(dotless
):]
1331 return (True, [ wildcard
])
1333 if test_path
== self
.path
:
1337 def match(self
, test_path
):
1338 """Just return if it matches; don't bother with the wildcards."""
1339 b
, _
= self
.match_wildcards(test_path
)
1342 def fill_in_wildcards(self
, wildcards
):
1343 """Return the relative path, with the wildcards filled in
1344 if there are any."""
1345 if self
.ends_triple_dot
:
1346 return self
.path
[:-3] + wildcards
[0]
1350 class Mapping(object):
1351 def __init__(self
, depot_side
, client_side
, overlay
, exclude
):
1352 # depot_side is without the trailing /... if it had one
1353 self
.depot_side
= View
.Path(depot_side
, is_depot
=True)
1354 self
.client_side
= View
.Path(client_side
, is_depot
=False)
1355 self
.overlay
= overlay
# started with "+"
1356 self
.exclude
= exclude
# started with "-"
1357 assert not (self
.overlay
and self
.exclude
)
1358 self
.depot_side
.ensure_compatible(self
.client_side
)
1366 return "View.Mapping: %s%s -> %s" % \
1367 (c
, self
.depot_side
.path
, self
.client_side
.path
)
1369 def map_depot_to_client(self
, depot_path
):
1370 """Calculate the client path if using this mapping on the
1371 given depot path; does not consider the effect of other
1372 mappings in a view. Even excluded mappings are returned."""
1373 matches
, wildcards
= self
.depot_side
.match_wildcards(depot_path
)
1376 client_path
= self
.client_side
.fill_in_wildcards(wildcards
)
1385 def append(self
, view_line
):
1386 """Parse a view line, splitting it into depot and client
1387 sides. Append to self.mappings, preserving order."""
1389 # Split the view line into exactly two words. P4 enforces
1390 # structure on these lines that simplifies this quite a bit.
1392 # Either or both words may be double-quoted.
1393 # Single quotes do not matter.
1394 # Double-quote marks cannot occur inside the words.
1395 # A + or - prefix is also inside the quotes.
1396 # There are no quotes unless they contain a space.
1397 # The line is already white-space stripped.
1398 # The two words are separated by a single space.
1400 if view_line
[0] == '"':
1401 # First word is double quoted. Find its end.
1402 close_quote_index
= view_line
.find('"', 1)
1403 if close_quote_index
<= 0:
1404 die("No first-word closing quote found: %s" % view_line
)
1405 depot_side
= view_line
[1:close_quote_index
]
1406 # skip closing quote and space
1407 rhs_index
= close_quote_index
+ 1 + 1
1409 space_index
= view_line
.find(" ")
1410 if space_index
<= 0:
1411 die("No word-splitting space found: %s" % view_line
)
1412 depot_side
= view_line
[0:space_index
]
1413 rhs_index
= space_index
+ 1
1415 if view_line
[rhs_index
] == '"':
1416 # Second word is double quoted. Make sure there is a
1417 # double quote at the end too.
1418 if not view_line
.endswith('"'):
1419 die("View line with rhs quote should end with one: %s" %
1422 client_side
= view_line
[rhs_index
+1:-1]
1424 client_side
= view_line
[rhs_index
:]
1426 # prefix + means overlay on previous mapping
1428 if depot_side
.startswith("+"):
1430 depot_side
= depot_side
[1:]
1432 # prefix - means exclude this path
1434 if depot_side
.startswith("-"):
1436 depot_side
= depot_side
[1:]
1438 m
= View
.Mapping(depot_side
, client_side
, overlay
, exclude
)
1439 self
.mappings
.append(m
)
1441 def map_in_client(self
, depot_path
):
1442 """Return the relative location in the client where this
1443 depot file should live. Returns "" if the file should
1444 not be mapped in the client."""
1449 # look at later entries first
1450 for m
in self
.mappings
[::-1]:
1452 # see where will this path end up in the client
1453 p
= m
.map_depot_to_client(depot_path
)
1456 # Depot path does not belong in client. Must remember
1457 # this, as previous items should not cause files to
1458 # exist in this path either. Remember that the list is
1459 # being walked from the end, which has higher precedence.
1460 # Overlap mappings do not exclude previous mappings.
1462 paths_filled
.append(m
.client_side
)
1465 # This mapping matched; no need to search any further.
1466 # But, the mapping could be rejected if the client path
1467 # has already been claimed by an earlier mapping (i.e.
1468 # one later in the list, which we are walking backwards).
1469 already_mapped_in_client
= False
1470 for f
in paths_filled
:
1471 # this is View.Path.match
1473 already_mapped_in_client
= True
1475 if not already_mapped_in_client
:
1476 # Include this file, unless it is from a line that
1477 # explicitly said to exclude it.
1481 # a match, even if rejected, always stops the search
1486 class P4Sync(Command
, P4UserMap
):
1487 delete_actions
= ( "delete", "move/delete", "purge" )
1490 Command
.__init
__(self
)
1491 P4UserMap
.__init
__(self
)
1493 optparse
.make_option("--branch", dest
="branch"),
1494 optparse
.make_option("--detect-branches", dest
="detectBranches", action
="store_true"),
1495 optparse
.make_option("--changesfile", dest
="changesFile"),
1496 optparse
.make_option("--silent", dest
="silent", action
="store_true"),
1497 optparse
.make_option("--detect-labels", dest
="detectLabels", action
="store_true"),
1498 optparse
.make_option("--verbose", dest
="verbose", action
="store_true"),
1499 optparse
.make_option("--import-local", dest
="importIntoRemotes", action
="store_false",
1500 help="Import into refs/heads/ , not refs/remotes"),
1501 optparse
.make_option("--max-changes", dest
="maxChanges"),
1502 optparse
.make_option("--keep-path", dest
="keepRepoPath", action
='store_true',
1503 help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),
1504 optparse
.make_option("--use-client-spec", dest
="useClientSpec", action
='store_true',
1505 help="Only sync files that are included in the Perforce Client Spec")
1507 self
.description
= """Imports from Perforce into a git repository.\n
1509 //depot/my/project/ -- to import the current head
1510 //depot/my/project/@all -- to import everything
1511 //depot/my/project/@1,6 -- to import only from revision 1 to 6
1513 (a ... is not needed in the path p4 specification, it's added implicitly)"""
1515 self
.usage
+= " //depot/path[@revRange]"
1517 self
.createdBranches
= set()
1518 self
.committedChanges
= set()
1520 self
.detectBranches
= False
1521 self
.detectLabels
= False
1522 self
.changesFile
= ""
1523 self
.syncWithOrigin
= True
1524 self
.verbose
= False
1525 self
.importIntoRemotes
= True
1526 self
.maxChanges
= ""
1527 self
.isWindows
= (platform
.system() == "Windows")
1528 self
.keepRepoPath
= False
1529 self
.depotPaths
= None
1530 self
.p4BranchesInGit
= []
1531 self
.cloneExclude
= []
1532 self
.useClientSpec
= False
1533 self
.clientSpecDirs
= None
1534 self
.tempBranches
= []
1535 self
.tempBranchLocation
= "git-p4-tmp"
1537 if gitConfig("git-p4.syncFromOrigin") == "false":
1538 self
.syncWithOrigin
= False
1541 # P4 wildcards are not allowed in filenames. P4 complains
1542 # if you simply add them, but you can force it with "-f", in
1543 # which case it translates them into %xx encoding internally.
1544 # Search for and fix just these four characters. Do % last so
1545 # that fixing it does not inadvertently create new %-escapes.
1547 def wildcard_decode(self
, path
):
1548 # Cannot have * in a filename in windows; untested as to
1549 # what p4 would do in such a case.
1550 if not self
.isWindows
:
1551 path
= path
.replace("%2A", "*")
1552 path
= path
.replace("%23", "#") \
1553 .replace("%40", "@") \
1554 .replace("%25", "%")
1557 # Force a checkpoint in fast-import and wait for it to finish
1558 def checkpoint(self
):
1559 self
.gitStream
.write("checkpoint\n\n")
1560 self
.gitStream
.write("progress checkpoint\n\n")
1561 out
= self
.gitOutput
.readline()
1563 print "checkpoint finished: " + out
1565 def extractFilesFromCommit(self
, commit
):
1566 self
.cloneExclude
= [re
.sub(r
"\.\.\.$", "", path
)
1567 for path
in self
.cloneExclude
]
1570 while commit
.has_key("depotFile%s" % fnum
):
1571 path
= commit
["depotFile%s" % fnum
]
1573 if [p
for p
in self
.cloneExclude
1574 if p4PathStartsWith(path
, p
)]:
1577 found
= [p
for p
in self
.depotPaths
1578 if p4PathStartsWith(path
, p
)]
1585 file["rev"] = commit
["rev%s" % fnum
]
1586 file["action"] = commit
["action%s" % fnum
]
1587 file["type"] = commit
["type%s" % fnum
]
1592 def stripRepoPath(self
, path
, prefixes
):
1593 if self
.useClientSpec
:
1594 return self
.clientSpecDirs
.map_in_client(path
)
1596 if self
.keepRepoPath
:
1597 prefixes
= [re
.sub("^(//[^/]+/).*", r
'\1', prefixes
[0])]
1600 if p4PathStartsWith(path
, p
):
1601 path
= path
[len(p
):]
1605 def splitFilesIntoBranches(self
, commit
):
1608 while commit
.has_key("depotFile%s" % fnum
):
1609 path
= commit
["depotFile%s" % fnum
]
1610 found
= [p
for p
in self
.depotPaths
1611 if p4PathStartsWith(path
, p
)]
1618 file["rev"] = commit
["rev%s" % fnum
]
1619 file["action"] = commit
["action%s" % fnum
]
1620 file["type"] = commit
["type%s" % fnum
]
1623 relPath
= self
.stripRepoPath(path
, self
.depotPaths
)
1625 for branch
in self
.knownBranches
.keys():
1627 # add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.2
1628 if relPath
.startswith(branch
+ "/"):
1629 if branch
not in branches
:
1630 branches
[branch
] = []
1631 branches
[branch
].append(file)
1636 # output one file from the P4 stream
1637 # - helper for streamP4Files
1639 def streamOneP4File(self
, file, contents
):
1640 relPath
= self
.stripRepoPath(file['depotFile'], self
.branchPrefixes
)
1641 relPath
= self
.wildcard_decode(relPath
)
1643 sys
.stderr
.write("%s\n" % relPath
)
1645 (type_base
, type_mods
) = split_p4_type(file["type"])
1648 if "x" in type_mods
:
1650 if type_base
== "symlink":
1652 # p4 print on a symlink contains "target\n"; remove the newline
1653 data
= ''.join(contents
)
1654 contents
= [data
[:-1]]
1656 if type_base
== "utf16":
1657 # p4 delivers different text in the python output to -G
1658 # than it does when using "print -o", or normal p4 client
1659 # operations. utf16 is converted to ascii or utf8, perhaps.
1660 # But ascii text saved as -t utf16 is completely mangled.
1661 # Invoke print -o to get the real contents.
1662 text
= p4_read_pipe(['print', '-q', '-o', '-', file['depotFile']])
1665 if type_base
== "apple":
1666 # Apple filetype files will be streamed as a concatenation of
1667 # its appledouble header and the contents. This is useless
1668 # on both macs and non-macs. If using "print -q -o xx", it
1669 # will create "xx" with the data, and "%xx" with the header.
1670 # This is also not very useful.
1672 # Ideally, someday, this script can learn how to generate
1673 # appledouble files directly and import those to git, but
1674 # non-mac machines can never find a use for apple filetype.
1675 print "\nIgnoring apple filetype file %s" % file['depotFile']
1678 # Perhaps windows wants unicode, utf16 newlines translated too;
1679 # but this is not doing it.
1680 if self
.isWindows
and type_base
== "text":
1682 for data
in contents
:
1683 data
= data
.replace("\r\n", "\n")
1684 mangled
.append(data
)
1687 # Note that we do not try to de-mangle keywords on utf16 files,
1688 # even though in theory somebody may want that.
1689 pattern
= p4_keywords_regexp_for_type(type_base
, type_mods
)
1691 regexp
= re
.compile(pattern
, re
.VERBOSE
)
1692 text
= ''.join(contents
)
1693 text
= regexp
.sub(r
'$\1$', text
)
1696 self
.gitStream
.write("M %s inline %s\n" % (git_mode
, relPath
))
1701 length
= length
+ len(d
)
1703 self
.gitStream
.write("data %d\n" % length
)
1705 self
.gitStream
.write(d
)
1706 self
.gitStream
.write("\n")
1708 def streamOneP4Deletion(self
, file):
1709 relPath
= self
.stripRepoPath(file['path'], self
.branchPrefixes
)
1711 sys
.stderr
.write("delete %s\n" % relPath
)
1712 self
.gitStream
.write("D %s\n" % relPath
)
1714 # handle another chunk of streaming data
1715 def streamP4FilesCb(self
, marshalled
):
1717 if marshalled
.has_key('depotFile') and self
.stream_have_file_info
:
1718 # start of a new file - output the old one first
1719 self
.streamOneP4File(self
.stream_file
, self
.stream_contents
)
1720 self
.stream_file
= {}
1721 self
.stream_contents
= []
1722 self
.stream_have_file_info
= False
1724 # pick up the new file information... for the
1725 # 'data' field we need to append to our array
1726 for k
in marshalled
.keys():
1728 self
.stream_contents
.append(marshalled
['data'])
1730 self
.stream_file
[k
] = marshalled
[k
]
1732 self
.stream_have_file_info
= True
1734 # Stream directly from "p4 files" into "git fast-import"
1735 def streamP4Files(self
, files
):
1741 # if using a client spec, only add the files that have
1742 # a path in the client
1743 if self
.clientSpecDirs
:
1744 if self
.clientSpecDirs
.map_in_client(f
['path']) == "":
1747 filesForCommit
.append(f
)
1748 if f
['action'] in self
.delete_actions
:
1749 filesToDelete
.append(f
)
1751 filesToRead
.append(f
)
1754 for f
in filesToDelete
:
1755 self
.streamOneP4Deletion(f
)
1757 if len(filesToRead
) > 0:
1758 self
.stream_file
= {}
1759 self
.stream_contents
= []
1760 self
.stream_have_file_info
= False
1762 # curry self argument
1763 def streamP4FilesCbSelf(entry
):
1764 self
.streamP4FilesCb(entry
)
1766 fileArgs
= ['%s#%s' % (f
['path'], f
['rev']) for f
in filesToRead
]
1768 p4CmdList(["-x", "-", "print"],
1770 cb
=streamP4FilesCbSelf
)
1773 if self
.stream_file
.has_key('depotFile'):
1774 self
.streamOneP4File(self
.stream_file
, self
.stream_contents
)
1776 def make_email(self
, userid
):
1777 if userid
in self
.users
:
1778 return self
.users
[userid
]
1780 return "%s <a@b>" % userid
1782 def commit(self
, details
, files
, branch
, branchPrefixes
, parent
= ""):
1783 epoch
= details
["time"]
1784 author
= details
["user"]
1785 self
.branchPrefixes
= branchPrefixes
1788 print "commit into %s" % branch
1790 # start with reading files; if that fails, we should not
1794 if [p
for p
in branchPrefixes
if p4PathStartsWith(f
['path'], p
)]:
1795 new_files
.append (f
)
1797 sys
.stderr
.write("Ignoring file outside of prefix: %s\n" % f
['path'])
1799 self
.gitStream
.write("commit %s\n" % branch
)
1800 # gitStream.write("mark :%s\n" % details["change"])
1801 self
.committedChanges
.add(int(details
["change"]))
1803 if author
not in self
.users
:
1804 self
.getUserMapFromPerforceServer()
1805 committer
= "%s %s %s" % (self
.make_email(author
), epoch
, self
.tz
)
1807 self
.gitStream
.write("committer %s\n" % committer
)
1809 self
.gitStream
.write("data <<EOT\n")
1810 self
.gitStream
.write(details
["desc"])
1811 self
.gitStream
.write("\n[git-p4: depot-paths = \"%s\": change = %s"
1812 % (','.join (branchPrefixes
), details
["change"]))
1813 if len(details
['options']) > 0:
1814 self
.gitStream
.write(": options = %s" % details
['options'])
1815 self
.gitStream
.write("]\nEOT\n\n")
1819 print "parent %s" % parent
1820 self
.gitStream
.write("from %s\n" % parent
)
1822 self
.streamP4Files(new_files
)
1823 self
.gitStream
.write("\n")
1825 change
= int(details
["change"])
1827 if self
.labels
.has_key(change
):
1828 label
= self
.labels
[change
]
1829 labelDetails
= label
[0]
1830 labelRevisions
= label
[1]
1832 print "Change %s is labelled %s" % (change
, labelDetails
)
1834 files
= p4CmdList(["files"] + ["%s...@%s" % (p
, change
)
1835 for p
in branchPrefixes
])
1837 if len(files
) == len(labelRevisions
):
1841 if info
["action"] in self
.delete_actions
:
1843 cleanedFiles
[info
["depotFile"]] = info
["rev"]
1845 if cleanedFiles
== labelRevisions
:
1846 self
.gitStream
.write("tag tag_%s\n" % labelDetails
["label"])
1847 self
.gitStream
.write("from %s\n" % branch
)
1849 owner
= labelDetails
["Owner"]
1851 # Try to use the owner of the p4 label, or failing that,
1852 # the current p4 user id.
1854 email
= self
.make_email(owner
)
1856 email
= self
.make_email(self
.p4UserId())
1857 tagger
= "%s %s %s" % (email
, epoch
, self
.tz
)
1859 self
.gitStream
.write("tagger %s\n" % tagger
)
1861 description
= labelDetails
["Description"]
1862 self
.gitStream
.write("data %d\n" % len(description
))
1863 self
.gitStream
.write(description
)
1864 self
.gitStream
.write("\n")
1868 print ("Tag %s does not match with change %s: files do not match."
1869 % (labelDetails
["label"], change
))
1873 print ("Tag %s does not match with change %s: file count is different."
1874 % (labelDetails
["label"], change
))
1876 def getLabels(self
):
1879 l
= p4CmdList(["labels"] + ["%s..." % p
for p
in self
.depotPaths
])
1880 if len(l
) > 0 and not self
.silent
:
1881 print "Finding files belonging to labels in %s" % `self
.depotPaths`
1884 label
= output
["label"]
1888 print "Querying files for label %s" % label
1889 for file in p4CmdList(["files"] +
1890 ["%s...@%s" % (p
, label
)
1891 for p
in self
.depotPaths
]):
1892 revisions
[file["depotFile"]] = file["rev"]
1893 change
= int(file["change"])
1894 if change
> newestChange
:
1895 newestChange
= change
1897 self
.labels
[newestChange
] = [output
, revisions
]
1900 print "Label changes: %s" % self
.labels
.keys()
1902 def guessProjectName(self
):
1903 for p
in self
.depotPaths
:
1906 p
= p
[p
.strip().rfind("/") + 1:]
1907 if not p
.endswith("/"):
1911 def getBranchMapping(self
):
1912 lostAndFoundBranches
= set()
1914 user
= gitConfig("git-p4.branchUser")
1916 command
= "branches -u %s" % user
1918 command
= "branches"
1920 for info
in p4CmdList(command
):
1921 details
= p4Cmd(["branch", "-o", info
["branch"]])
1923 while details
.has_key("View%s" % viewIdx
):
1924 paths
= details
["View%s" % viewIdx
].split(" ")
1925 viewIdx
= viewIdx
+ 1
1926 # require standard //depot/foo/... //depot/bar/... mapping
1927 if len(paths
) != 2 or not paths
[0].endswith("/...") or not paths
[1].endswith("/..."):
1930 destination
= paths
[1]
1932 if p4PathStartsWith(source
, self
.depotPaths
[0]) and p4PathStartsWith(destination
, self
.depotPaths
[0]):
1933 source
= source
[len(self
.depotPaths
[0]):-4]
1934 destination
= destination
[len(self
.depotPaths
[0]):-4]
1936 if destination
in self
.knownBranches
:
1938 print "p4 branch %s defines a mapping from %s to %s" % (info
["branch"], source
, destination
)
1939 print "but there exists another mapping from %s to %s already!" % (self
.knownBranches
[destination
], destination
)
1942 self
.knownBranches
[destination
] = source
1944 lostAndFoundBranches
.discard(destination
)
1946 if source
not in self
.knownBranches
:
1947 lostAndFoundBranches
.add(source
)
1949 # Perforce does not strictly require branches to be defined, so we also
1950 # check git config for a branch list.
1952 # Example of branch definition in git config file:
1954 # branchList=main:branchA
1955 # branchList=main:branchB
1956 # branchList=branchA:branchC
1957 configBranches
= gitConfigList("git-p4.branchList")
1958 for branch
in configBranches
:
1960 (source
, destination
) = branch
.split(":")
1961 self
.knownBranches
[destination
] = source
1963 lostAndFoundBranches
.discard(destination
)
1965 if source
not in self
.knownBranches
:
1966 lostAndFoundBranches
.add(source
)
1969 for branch
in lostAndFoundBranches
:
1970 self
.knownBranches
[branch
] = branch
1972 def getBranchMappingFromGitBranches(self
):
1973 branches
= p4BranchesInGit(self
.importIntoRemotes
)
1974 for branch
in branches
.keys():
1975 if branch
== "master":
1978 branch
= branch
[len(self
.projectName
):]
1979 self
.knownBranches
[branch
] = branch
1981 def listExistingP4GitBranches(self
):
1982 # branches holds mapping from name to commit
1983 branches
= p4BranchesInGit(self
.importIntoRemotes
)
1984 self
.p4BranchesInGit
= branches
.keys()
1985 for branch
in branches
.keys():
1986 self
.initialParents
[self
.refPrefix
+ branch
] = branches
[branch
]
1988 def updateOptionDict(self
, d
):
1990 if self
.keepRepoPath
:
1991 option_keys
['keepRepoPath'] = 1
1993 d
["options"] = ' '.join(sorted(option_keys
.keys()))
1995 def readOptions(self
, d
):
1996 self
.keepRepoPath
= (d
.has_key('options')
1997 and ('keepRepoPath' in d
['options']))
1999 def gitRefForBranch(self
, branch
):
2000 if branch
== "main":
2001 return self
.refPrefix
+ "master"
2003 if len(branch
) <= 0:
2006 return self
.refPrefix
+ self
.projectName
+ branch
2008 def gitCommitByP4Change(self
, ref
, change
):
2010 print "looking in ref " + ref
+ " for change %s using bisect..." % change
2013 latestCommit
= parseRevision(ref
)
2017 print "trying: earliest %s latest %s" % (earliestCommit
, latestCommit
)
2018 next
= read_pipe("git rev-list --bisect %s %s" % (latestCommit
, earliestCommit
)).strip()
2023 log
= extractLogMessageFromGitCommit(next
)
2024 settings
= extractSettingsGitLog(log
)
2025 currentChange
= int(settings
['change'])
2027 print "current change %s" % currentChange
2029 if currentChange
== change
:
2031 print "found %s" % next
2034 if currentChange
< change
:
2035 earliestCommit
= "^%s" % next
2037 latestCommit
= "%s" % next
2041 def importNewBranch(self
, branch
, maxChange
):
2042 # make fast-import flush all changes to disk and update the refs using the checkpoint
2043 # command so that we can try to find the branch parent in the git history
2044 self
.gitStream
.write("checkpoint\n\n");
2045 self
.gitStream
.flush();
2046 branchPrefix
= self
.depotPaths
[0] + branch
+ "/"
2047 range = "@1,%s" % maxChange
2048 #print "prefix" + branchPrefix
2049 changes
= p4ChangesForPaths([branchPrefix
], range)
2050 if len(changes
) <= 0:
2052 firstChange
= changes
[0]
2053 #print "first change in branch: %s" % firstChange
2054 sourceBranch
= self
.knownBranches
[branch
]
2055 sourceDepotPath
= self
.depotPaths
[0] + sourceBranch
2056 sourceRef
= self
.gitRefForBranch(sourceBranch
)
2057 #print "source " + sourceBranch
2059 branchParentChange
= int(p4Cmd(["changes", "-m", "1", "%s...@1,%s" % (sourceDepotPath
, firstChange
)])["change"])
2060 #print "branch parent: %s" % branchParentChange
2061 gitParent
= self
.gitCommitByP4Change(sourceRef
, branchParentChange
)
2062 if len(gitParent
) > 0:
2063 self
.initialParents
[self
.gitRefForBranch(branch
)] = gitParent
2064 #print "parent git commit: %s" % gitParent
2066 self
.importChanges(changes
)
2069 def searchParent(self
, parent
, branch
, target
):
2071 for blob
in read_pipe_lines(["git", "rev-list", "--reverse", "--no-merges", parent
]):
2073 if len(read_pipe(["git", "diff-tree", blob
, target
])) == 0:
2076 print "Found parent of %s in commit %s" % (branch
, blob
)
2083 def importChanges(self
, changes
):
2085 for change
in changes
:
2086 description
= p4Cmd(["describe", str(change
)])
2087 self
.updateOptionDict(description
)
2090 sys
.stdout
.write("\rImporting revision %s (%s%%)" % (change
, cnt
* 100 / len(changes
)))
2095 if self
.detectBranches
:
2096 branches
= self
.splitFilesIntoBranches(description
)
2097 for branch
in branches
.keys():
2099 branchPrefix
= self
.depotPaths
[0] + branch
+ "/"
2103 filesForCommit
= branches
[branch
]
2106 print "branch is %s" % branch
2108 self
.updatedBranches
.add(branch
)
2110 if branch
not in self
.createdBranches
:
2111 self
.createdBranches
.add(branch
)
2112 parent
= self
.knownBranches
[branch
]
2113 if parent
== branch
:
2116 fullBranch
= self
.projectName
+ branch
2117 if fullBranch
not in self
.p4BranchesInGit
:
2119 print("\n Importing new branch %s" % fullBranch
);
2120 if self
.importNewBranch(branch
, change
- 1):
2122 self
.p4BranchesInGit
.append(fullBranch
)
2124 print("\n Resuming with change %s" % change
);
2127 print "parent determined through known branches: %s" % parent
2129 branch
= self
.gitRefForBranch(branch
)
2130 parent
= self
.gitRefForBranch(parent
)
2133 print "looking for initial parent for %s; current parent is %s" % (branch
, parent
)
2135 if len(parent
) == 0 and branch
in self
.initialParents
:
2136 parent
= self
.initialParents
[branch
]
2137 del self
.initialParents
[branch
]
2141 tempBranch
= os
.path
.join(self
.tempBranchLocation
, "%d" % (change
))
2143 print "Creating temporary branch: " + tempBranch
2144 self
.commit(description
, filesForCommit
, tempBranch
, [branchPrefix
])
2145 self
.tempBranches
.append(tempBranch
)
2147 blob
= self
.searchParent(parent
, branch
, tempBranch
)
2149 self
.commit(description
, filesForCommit
, branch
, [branchPrefix
], blob
)
2152 print "Parent of %s not found. Committing into head of %s" % (branch
, parent
)
2153 self
.commit(description
, filesForCommit
, branch
, [branchPrefix
], parent
)
2155 files
= self
.extractFilesFromCommit(description
)
2156 self
.commit(description
, files
, self
.branch
, self
.depotPaths
,
2158 self
.initialParent
= ""
2160 print self
.gitError
.read()
2163 def importHeadRevision(self
, revision
):
2164 print "Doing initial import of %s from revision %s into %s" % (' '.join(self
.depotPaths
), revision
, self
.branch
)
2167 details
["user"] = "git perforce import user"
2168 details
["desc"] = ("Initial import of %s from the state at revision %s\n"
2169 % (' '.join(self
.depotPaths
), revision
))
2170 details
["change"] = revision
2174 fileArgs
= ["%s...%s" % (p
,revision
) for p
in self
.depotPaths
]
2176 for info
in p4CmdList(["files"] + fileArgs
):
2178 if 'code' in info
and info
['code'] == 'error':
2179 sys
.stderr
.write("p4 returned an error: %s\n"
2181 if info
['data'].find("must refer to client") >= 0:
2182 sys
.stderr
.write("This particular p4 error is misleading.\n")
2183 sys
.stderr
.write("Perhaps the depot path was misspelled.\n");
2184 sys
.stderr
.write("Depot path: %s\n" % " ".join(self
.depotPaths
))
2186 if 'p4ExitCode' in info
:
2187 sys
.stderr
.write("p4 exitcode: %s\n" % info
['p4ExitCode'])
2191 change
= int(info
["change"])
2192 if change
> newestRevision
:
2193 newestRevision
= change
2195 if info
["action"] in self
.delete_actions
:
2196 # don't increase the file cnt, otherwise details["depotFile123"] will have gaps!
2197 #fileCnt = fileCnt + 1
2200 for prop
in ["depotFile", "rev", "action", "type" ]:
2201 details
["%s%s" % (prop
, fileCnt
)] = info
[prop
]
2203 fileCnt
= fileCnt
+ 1
2205 details
["change"] = newestRevision
2207 # Use time from top-most change so that all git-p4 clones of
2208 # the same p4 repo have the same commit SHA1s.
2209 res
= p4CmdList("describe -s %d" % newestRevision
)
2212 if r
.has_key('time'):
2213 newestTime
= int(r
['time'])
2214 if newestTime
is None:
2215 die("\"describe -s\" on newest change %d did not give a time")
2216 details
["time"] = newestTime
2218 self
.updateOptionDict(details
)
2220 self
.commit(details
, self
.extractFilesFromCommit(details
), self
.branch
, self
.depotPaths
)
2222 print "IO error with git fast-import. Is your git version recent enough?"
2223 print self
.gitError
.read()
2226 def getClientSpec(self
):
2227 specList
= p4CmdList("client -o")
2228 if len(specList
) != 1:
2229 die('Output from "client -o" is %d lines, expecting 1' %
2232 # dictionary of all client parameters
2235 # just the keys that start with "View"
2236 view_keys
= [ k
for k
in entry
.keys() if k
.startswith("View") ]
2238 # hold this new View
2241 # append the lines, in order, to the view
2242 for view_num
in range(len(view_keys
)):
2243 k
= "View%d" % view_num
2244 if k
not in view_keys
:
2245 die("Expected view key %s missing" % k
)
2246 view
.append(entry
[k
])
2248 self
.clientSpecDirs
= view
2250 for i
, m
in enumerate(self
.clientSpecDirs
.mappings
):
2251 print "clientSpecDirs %d: %s" % (i
, str(m
))
2253 def run(self
, args
):
2254 self
.depotPaths
= []
2255 self
.changeRange
= ""
2256 self
.initialParent
= ""
2257 self
.previousDepotPaths
= []
2259 # map from branch depot path to parent branch
2260 self
.knownBranches
= {}
2261 self
.initialParents
= {}
2262 self
.hasOrigin
= originP4BranchesExist()
2263 if not self
.syncWithOrigin
:
2264 self
.hasOrigin
= False
2266 if self
.importIntoRemotes
:
2267 self
.refPrefix
= "refs/remotes/p4/"
2269 self
.refPrefix
= "refs/heads/p4/"
2271 if self
.syncWithOrigin
and self
.hasOrigin
:
2273 print "Syncing with origin first by calling git fetch origin"
2274 system("git fetch origin")
2276 if len(self
.branch
) == 0:
2277 self
.branch
= self
.refPrefix
+ "master"
2278 if gitBranchExists("refs/heads/p4") and self
.importIntoRemotes
:
2279 system("git update-ref %s refs/heads/p4" % self
.branch
)
2280 system("git branch -D p4");
2281 # create it /after/ importing, when master exists
2282 if not gitBranchExists(self
.refPrefix
+ "HEAD") and self
.importIntoRemotes
and gitBranchExists(self
.branch
):
2283 system("git symbolic-ref %sHEAD %s" % (self
.refPrefix
, self
.branch
))
2285 if not self
.useClientSpec
:
2286 if gitConfig("git-p4.useclientspec", "--bool") == "true":
2287 self
.useClientSpec
= True
2288 if self
.useClientSpec
:
2289 self
.getClientSpec()
2291 # TODO: should always look at previous commits,
2292 # merge with previous imports, if possible.
2295 createOrUpdateBranchesFromOrigin(self
.refPrefix
, self
.silent
)
2296 self
.listExistingP4GitBranches()
2298 if len(self
.p4BranchesInGit
) > 1:
2300 print "Importing from/into multiple branches"
2301 self
.detectBranches
= True
2304 print "branches: %s" % self
.p4BranchesInGit
2307 for branch
in self
.p4BranchesInGit
:
2308 logMsg
= extractLogMessageFromGitCommit(self
.refPrefix
+ branch
)
2310 settings
= extractSettingsGitLog(logMsg
)
2312 self
.readOptions(settings
)
2313 if (settings
.has_key('depot-paths')
2314 and settings
.has_key ('change')):
2315 change
= int(settings
['change']) + 1
2316 p4Change
= max(p4Change
, change
)
2318 depotPaths
= sorted(settings
['depot-paths'])
2319 if self
.previousDepotPaths
== []:
2320 self
.previousDepotPaths
= depotPaths
2323 for (prev
, cur
) in zip(self
.previousDepotPaths
, depotPaths
):
2324 prev_list
= prev
.split("/")
2325 cur_list
= cur
.split("/")
2326 for i
in range(0, min(len(cur_list
), len(prev_list
))):
2327 if cur_list
[i
] <> prev_list
[i
]:
2331 paths
.append ("/".join(cur_list
[:i
+ 1]))
2333 self
.previousDepotPaths
= paths
2336 self
.depotPaths
= sorted(self
.previousDepotPaths
)
2337 self
.changeRange
= "@%s,#head" % p4Change
2338 if not self
.detectBranches
:
2339 self
.initialParent
= parseRevision(self
.branch
)
2340 if not self
.silent
and not self
.detectBranches
:
2341 print "Performing incremental import into %s git branch" % self
.branch
2343 if not self
.branch
.startswith("refs/"):
2344 self
.branch
= "refs/heads/" + self
.branch
2346 if len(args
) == 0 and self
.depotPaths
:
2348 print "Depot paths: %s" % ' '.join(self
.depotPaths
)
2350 if self
.depotPaths
and self
.depotPaths
!= args
:
2351 print ("previous import used depot path %s and now %s was specified. "
2352 "This doesn't work!" % (' '.join (self
.depotPaths
),
2356 self
.depotPaths
= sorted(args
)
2361 # Make sure no revision specifiers are used when --changesfile
2363 bad_changesfile
= False
2364 if len(self
.changesFile
) > 0:
2365 for p
in self
.depotPaths
:
2366 if p
.find("@") >= 0 or p
.find("#") >= 0:
2367 bad_changesfile
= True
2370 die("Option --changesfile is incompatible with revision specifiers")
2373 for p
in self
.depotPaths
:
2374 if p
.find("@") != -1:
2375 atIdx
= p
.index("@")
2376 self
.changeRange
= p
[atIdx
:]
2377 if self
.changeRange
== "@all":
2378 self
.changeRange
= ""
2379 elif ',' not in self
.changeRange
:
2380 revision
= self
.changeRange
2381 self
.changeRange
= ""
2383 elif p
.find("#") != -1:
2384 hashIdx
= p
.index("#")
2385 revision
= p
[hashIdx
:]
2387 elif self
.previousDepotPaths
== []:
2388 # pay attention to changesfile, if given, else import
2389 # the entire p4 tree at the head revision
2390 if len(self
.changesFile
) == 0:
2393 p
= re
.sub ("\.\.\.$", "", p
)
2394 if not p
.endswith("/"):
2399 self
.depotPaths
= newPaths
2402 self
.loadUserMapFromCache()
2404 if self
.detectLabels
:
2407 if self
.detectBranches
:
2408 ## FIXME - what's a P4 projectName ?
2409 self
.projectName
= self
.guessProjectName()
2412 self
.getBranchMappingFromGitBranches()
2414 self
.getBranchMapping()
2416 print "p4-git branches: %s" % self
.p4BranchesInGit
2417 print "initial parents: %s" % self
.initialParents
2418 for b
in self
.p4BranchesInGit
:
2422 b
= b
[len(self
.projectName
):]
2423 self
.createdBranches
.add(b
)
2425 self
.tz
= "%+03d%02d" % (- time
.timezone
/ 3600, ((- time
.timezone
% 3600) / 60))
2427 importProcess
= subprocess
.Popen(["git", "fast-import"],
2428 stdin
=subprocess
.PIPE
, stdout
=subprocess
.PIPE
,
2429 stderr
=subprocess
.PIPE
);
2430 self
.gitOutput
= importProcess
.stdout
2431 self
.gitStream
= importProcess
.stdin
2432 self
.gitError
= importProcess
.stderr
2435 self
.importHeadRevision(revision
)
2439 if len(self
.changesFile
) > 0:
2440 output
= open(self
.changesFile
).readlines()
2443 changeSet
.add(int(line
))
2445 for change
in changeSet
:
2446 changes
.append(change
)
2450 # catch "git-p4 sync" with no new branches, in a repo that
2451 # does not have any existing git-p4 branches
2452 if len(args
) == 0 and not self
.p4BranchesInGit
:
2453 die("No remote p4 branches. Perhaps you never did \"git p4 clone\" in here.");
2455 print "Getting p4 changes for %s...%s" % (', '.join(self
.depotPaths
),
2457 changes
= p4ChangesForPaths(self
.depotPaths
, self
.changeRange
)
2459 if len(self
.maxChanges
) > 0:
2460 changes
= changes
[:min(int(self
.maxChanges
), len(changes
))]
2462 if len(changes
) == 0:
2464 print "No changes to import!"
2467 if not self
.silent
and not self
.detectBranches
:
2468 print "Import destination: %s" % self
.branch
2470 self
.updatedBranches
= set()
2472 self
.importChanges(changes
)
2476 if len(self
.updatedBranches
) > 0:
2477 sys
.stdout
.write("Updated branches: ")
2478 for b
in self
.updatedBranches
:
2479 sys
.stdout
.write("%s " % b
)
2480 sys
.stdout
.write("\n")
2482 self
.gitStream
.close()
2483 if importProcess
.wait() != 0:
2484 die("fast-import failed: %s" % self
.gitError
.read())
2485 self
.gitOutput
.close()
2486 self
.gitError
.close()
2488 # Cleanup temporary branches created during import
2489 if self
.tempBranches
!= []:
2490 for branch
in self
.tempBranches
:
2491 read_pipe("git update-ref -d %s" % branch
)
2492 os
.rmdir(os
.path
.join(os
.environ
.get("GIT_DIR", ".git"), self
.tempBranchLocation
))
2496 class P4Rebase(Command
):
2498 Command
.__init
__(self
)
2500 self
.description
= ("Fetches the latest revision from perforce and "
2501 + "rebases the current work (branch) against it")
2502 self
.verbose
= False
2504 def run(self
, args
):
2508 return self
.rebase()
2511 if os
.system("git update-index --refresh") != 0:
2512 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.");
2513 if len(read_pipe("git diff-index HEAD --")) > 0:
2514 die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");
2516 [upstream
, settings
] = findUpstreamBranchPoint()
2517 if len(upstream
) == 0:
2518 die("Cannot find upstream branchpoint for rebase")
2520 # the branchpoint may be p4/foo~3, so strip off the parent
2521 upstream
= re
.sub("~[0-9]+$", "", upstream
)
2523 print "Rebasing the current branch onto %s" % upstream
2524 oldHead
= read_pipe("git rev-parse HEAD").strip()
2525 system("git rebase %s" % upstream
)
2526 system("git diff-tree --stat --summary -M %s HEAD" % oldHead
)
2529 class P4Clone(P4Sync
):
2531 P4Sync
.__init
__(self
)
2532 self
.description
= "Creates a new git repository and imports from Perforce into it"
2533 self
.usage
= "usage: %prog [options] //depot/path[@revRange]"
2535 optparse
.make_option("--destination", dest
="cloneDestination",
2536 action
='store', default
=None,
2537 help="where to leave result of the clone"),
2538 optparse
.make_option("-/", dest
="cloneExclude",
2539 action
="append", type="string",
2540 help="exclude depot path"),
2541 optparse
.make_option("--bare", dest
="cloneBare",
2542 action
="store_true", default
=False),
2544 self
.cloneDestination
= None
2545 self
.needsGit
= False
2546 self
.cloneBare
= False
2548 # This is required for the "append" cloneExclude action
2549 def ensure_value(self
, attr
, value
):
2550 if not hasattr(self
, attr
) or getattr(self
, attr
) is None:
2551 setattr(self
, attr
, value
)
2552 return getattr(self
, attr
)
2554 def defaultDestination(self
, args
):
2555 ## TODO: use common prefix of args?
2557 depotDir
= re
.sub("(@[^@]*)$", "", depotPath
)
2558 depotDir
= re
.sub("(#[^#]*)$", "", depotDir
)
2559 depotDir
= re
.sub(r
"\.\.\.$", "", depotDir
)
2560 depotDir
= re
.sub(r
"/$", "", depotDir
)
2561 return os
.path
.split(depotDir
)[1]
2563 def run(self
, args
):
2567 if self
.keepRepoPath
and not self
.cloneDestination
:
2568 sys
.stderr
.write("Must specify destination for --keep-path\n")
2573 if not self
.cloneDestination
and len(depotPaths
) > 1:
2574 self
.cloneDestination
= depotPaths
[-1]
2575 depotPaths
= depotPaths
[:-1]
2577 self
.cloneExclude
= ["/"+p
for p
in self
.cloneExclude
]
2578 for p
in depotPaths
:
2579 if not p
.startswith("//"):
2582 if not self
.cloneDestination
:
2583 self
.cloneDestination
= self
.defaultDestination(args
)
2585 print "Importing from %s into %s" % (', '.join(depotPaths
), self
.cloneDestination
)
2587 if not os
.path
.exists(self
.cloneDestination
):
2588 os
.makedirs(self
.cloneDestination
)
2589 chdir(self
.cloneDestination
)
2591 init_cmd
= [ "git", "init" ]
2593 init_cmd
.append("--bare")
2594 subprocess
.check_call(init_cmd
)
2596 if not P4Sync
.run(self
, depotPaths
):
2598 if self
.branch
!= "master":
2599 if self
.importIntoRemotes
:
2600 masterbranch
= "refs/remotes/p4/master"
2602 masterbranch
= "refs/heads/p4/master"
2603 if gitBranchExists(masterbranch
):
2604 system("git branch master %s" % masterbranch
)
2605 if not self
.cloneBare
:
2606 system("git checkout -f")
2608 print "Could not detect main branch. No checkout/master branch created."
2612 class P4Branches(Command
):
2614 Command
.__init
__(self
)
2616 self
.description
= ("Shows the git branches that hold imports and their "
2617 + "corresponding perforce depot paths")
2618 self
.verbose
= False
2620 def run(self
, args
):
2621 if originP4BranchesExist():
2622 createOrUpdateBranchesFromOrigin()
2624 cmdline
= "git rev-parse --symbolic "
2625 cmdline
+= " --remotes"
2627 for line
in read_pipe_lines(cmdline
):
2630 if not line
.startswith('p4/') or line
== "p4/HEAD":
2634 log
= extractLogMessageFromGitCommit("refs/remotes/%s" % branch
)
2635 settings
= extractSettingsGitLog(log
)
2637 print "%s <= %s (%s)" % (branch
, ",".join(settings
["depot-paths"]), settings
["change"])
2640 class HelpFormatter(optparse
.IndentedHelpFormatter
):
2642 optparse
.IndentedHelpFormatter
.__init
__(self
)
2644 def format_description(self
, description
):
2646 return description
+ "\n"
2650 def printUsage(commands
):
2651 print "usage: %s <command> [options]" % sys
.argv
[0]
2653 print "valid commands: %s" % ", ".join(commands
)
2655 print "Try %s <command> --help for command specific help." % sys
.argv
[0]
2660 "submit" : P4Submit
,
2661 "commit" : P4Submit
,
2663 "rebase" : P4Rebase
,
2665 "rollback" : P4RollBack
,
2666 "branches" : P4Branches
2671 if len(sys
.argv
[1:]) == 0:
2672 printUsage(commands
.keys())
2676 cmdName
= sys
.argv
[1]
2678 klass
= commands
[cmdName
]
2681 print "unknown command %s" % cmdName
2683 printUsage(commands
.keys())
2686 options
= cmd
.options
2687 cmd
.gitdir
= os
.environ
.get("GIT_DIR", None)
2691 if len(options
) > 0:
2693 options
.append(optparse
.make_option("--git-dir", dest
="gitdir"))
2695 parser
= optparse
.OptionParser(cmd
.usage
.replace("%prog", "%prog " + cmdName
),
2697 description
= cmd
.description
,
2698 formatter
= HelpFormatter())
2700 (cmd
, args
) = parser
.parse_args(sys
.argv
[2:], cmd
);
2702 verbose
= cmd
.verbose
2704 if cmd
.gitdir
== None:
2705 cmd
.gitdir
= os
.path
.abspath(".git")
2706 if not isValidGitDir(cmd
.gitdir
):
2707 cmd
.gitdir
= read_pipe("git rev-parse --git-dir").strip()
2708 if os
.path
.exists(cmd
.gitdir
):
2709 cdup
= read_pipe("git rev-parse --show-cdup").strip()
2713 if not isValidGitDir(cmd
.gitdir
):
2714 if isValidGitDir(cmd
.gitdir
+ "/.git"):
2715 cmd
.gitdir
+= "/.git"
2717 die("fatal: cannot locate git repository at %s" % cmd
.gitdir
)
2719 os
.environ
["GIT_DIR"] = cmd
.gitdir
2721 if not cmd
.run(args
):
2726 if __name__
== '__main__':