1#!/usr/bin/env python 2# 3# git-p4.py -- A tool for bidirectional operation between a Perforce depot and git. 4# 5# Author: Simon Hausmann <simon@lst.de> 6# Copyright: 2007 Simon Hausmann <simon@lst.de> 7# 2007 Trolltech ASA 8# License: MIT <http://www.opensource.org/licenses/mit-license.php> 9# 10 11import optparse, sys, os, marshal, subprocess, shelve 12import tempfile, getopt, os.path, time, platform 13import re, shutil 14 15verbose =False 16 17# Only labels/tags matching this will be imported/exported 18defaultLabelRegexp = r'[A-Z0-9_\-.]+$' 19 20defp4_build_cmd(cmd): 21"""Build a suitable p4 command line. 22 23 This consolidates building and returning a p4 command line into one 24 location. It means that hooking into the environment, or other configuration 25 can be done more easily. 26 """ 27 real_cmd = ["p4"] 28 29 user =gitConfig("git-p4.user") 30iflen(user) >0: 31 real_cmd += ["-u",user] 32 33 password =gitConfig("git-p4.password") 34iflen(password) >0: 35 real_cmd += ["-P", password] 36 37 port =gitConfig("git-p4.port") 38iflen(port) >0: 39 real_cmd += ["-p", port] 40 41 host =gitConfig("git-p4.host") 42iflen(host) >0: 43 real_cmd += ["-H", host] 44 45 client =gitConfig("git-p4.client") 46iflen(client) >0: 47 real_cmd += ["-c", client] 48 49 50ifisinstance(cmd,basestring): 51 real_cmd =' '.join(real_cmd) +' '+ cmd 52else: 53 real_cmd += cmd 54return real_cmd 55 56defchdir(dir): 57# P4 uses the PWD environment variable rather than getcwd(). Since we're 58# not using the shell, we have to set it ourselves. This path could 59# be relative, so go there first, then figure out where we ended up. 60 os.chdir(dir) 61 os.environ['PWD'] = os.getcwd() 62 63defdie(msg): 64if verbose: 65raiseException(msg) 66else: 67 sys.stderr.write(msg +"\n") 68 sys.exit(1) 69 70defwrite_pipe(c, stdin): 71if verbose: 72 sys.stderr.write('Writing pipe:%s\n'%str(c)) 73 74 expand =isinstance(c,basestring) 75 p = subprocess.Popen(c, stdin=subprocess.PIPE, shell=expand) 76 pipe = p.stdin 77 val = pipe.write(stdin) 78 pipe.close() 79if p.wait(): 80die('Command failed:%s'%str(c)) 81 82return val 83 84defp4_write_pipe(c, stdin): 85 real_cmd =p4_build_cmd(c) 86returnwrite_pipe(real_cmd, stdin) 87 88defread_pipe(c, ignore_error=False): 89if verbose: 90 sys.stderr.write('Reading pipe:%s\n'%str(c)) 91 92 expand =isinstance(c,basestring) 93 p = subprocess.Popen(c, stdout=subprocess.PIPE, shell=expand) 94 pipe = p.stdout 95 val = pipe.read() 96if p.wait()and not ignore_error: 97die('Command failed:%s'%str(c)) 98 99return val 100 101defp4_read_pipe(c, ignore_error=False): 102 real_cmd =p4_build_cmd(c) 103returnread_pipe(real_cmd, ignore_error) 104 105defread_pipe_lines(c): 106if verbose: 107 sys.stderr.write('Reading pipe:%s\n'%str(c)) 108 109 expand =isinstance(c, basestring) 110 p = subprocess.Popen(c, stdout=subprocess.PIPE, shell=expand) 111 pipe = p.stdout 112 val = pipe.readlines() 113if pipe.close()or p.wait(): 114die('Command failed:%s'%str(c)) 115 116return val 117 118defp4_read_pipe_lines(c): 119"""Specifically invoke p4 on the command supplied. """ 120 real_cmd =p4_build_cmd(c) 121returnread_pipe_lines(real_cmd) 122 123defsystem(cmd): 124 expand =isinstance(cmd,basestring) 125if verbose: 126 sys.stderr.write("executing%s\n"%str(cmd)) 127 subprocess.check_call(cmd, shell=expand) 128 129defp4_system(cmd): 130"""Specifically invoke p4 as the system command. """ 131 real_cmd =p4_build_cmd(cmd) 132 expand =isinstance(real_cmd, basestring) 133 subprocess.check_call(real_cmd, shell=expand) 134 135defp4_integrate(src, dest): 136p4_system(["integrate","-Dt", src, dest]) 137 138defp4_sync(path): 139p4_system(["sync", path]) 140 141defp4_add(f): 142p4_system(["add", f]) 143 144defp4_delete(f): 145p4_system(["delete", f]) 146 147defp4_edit(f): 148p4_system(["edit", f]) 149 150defp4_revert(f): 151p4_system(["revert", f]) 152 153defp4_reopen(type,file): 154p4_system(["reopen","-t",type,file]) 155 156# 157# Canonicalize the p4 type and return a tuple of the 158# base type, plus any modifiers. See "p4 help filetypes" 159# for a list and explanation. 160# 161defsplit_p4_type(p4type): 162 163 p4_filetypes_historical = { 164"ctempobj":"binary+Sw", 165"ctext":"text+C", 166"cxtext":"text+Cx", 167"ktext":"text+k", 168"kxtext":"text+kx", 169"ltext":"text+F", 170"tempobj":"binary+FSw", 171"ubinary":"binary+F", 172"uresource":"resource+F", 173"uxbinary":"binary+Fx", 174"xbinary":"binary+x", 175"xltext":"text+Fx", 176"xtempobj":"binary+Swx", 177"xtext":"text+x", 178"xunicode":"unicode+x", 179"xutf16":"utf16+x", 180} 181if p4type in p4_filetypes_historical: 182 p4type = p4_filetypes_historical[p4type] 183 mods ="" 184 s = p4type.split("+") 185 base = s[0] 186 mods ="" 187iflen(s) >1: 188 mods = s[1] 189return(base, mods) 190 191# 192# return the raw p4 type of a file (text, text+ko, etc) 193# 194defp4_type(file): 195 results =p4CmdList(["fstat","-T","headType",file]) 196return results[0]['headType'] 197 198# 199# Given a type base and modifier, return a regexp matching 200# the keywords that can be expanded in the file 201# 202defp4_keywords_regexp_for_type(base, type_mods): 203if base in("text","unicode","binary"): 204 kwords =None 205if"ko"in type_mods: 206 kwords ='Id|Header' 207elif"k"in type_mods: 208 kwords ='Id|Header|Author|Date|DateTime|Change|File|Revision' 209else: 210return None 211 pattern = r""" 212 \$ # Starts with a dollar, followed by... 213 (%s) # one of the keywords, followed by... 214 (:[^$]+)? # possibly an old expansion, followed by... 215 \$ # another dollar 216 """% kwords 217return pattern 218else: 219return None 220 221# 222# Given a file, return a regexp matching the possible 223# RCS keywords that will be expanded, or None for files 224# with kw expansion turned off. 225# 226defp4_keywords_regexp_for_file(file): 227if not os.path.exists(file): 228return None 229else: 230(type_base, type_mods) =split_p4_type(p4_type(file)) 231returnp4_keywords_regexp_for_type(type_base, type_mods) 232 233defsetP4ExecBit(file, mode): 234# Reopens an already open file and changes the execute bit to match 235# the execute bit setting in the passed in mode. 236 237 p4Type ="+x" 238 239if notisModeExec(mode): 240 p4Type =getP4OpenedType(file) 241 p4Type = re.sub('^([cku]?)x(.*)','\\1\\2', p4Type) 242 p4Type = re.sub('(.*?\+.*?)x(.*?)','\\1\\2', p4Type) 243if p4Type[-1] =="+": 244 p4Type = p4Type[0:-1] 245 246p4_reopen(p4Type,file) 247 248defgetP4OpenedType(file): 249# Returns the perforce file type for the given file. 250 251 result =p4_read_pipe(["opened",file]) 252 match = re.match(".*\((.+)\)\r?$", result) 253if match: 254return match.group(1) 255else: 256die("Could not determine file type for%s(result: '%s')"% (file, result)) 257 258# Return the set of all p4 labels 259defgetP4Labels(depotPaths): 260 labels =set() 261ifisinstance(depotPaths,basestring): 262 depotPaths = [depotPaths] 263 264for l inp4CmdList(["labels"] + ["%s..."% p for p in depotPaths]): 265 label = l['label'] 266 labels.add(label) 267 268return labels 269 270# Return the set of all git tags 271defgetGitTags(): 272 gitTags =set() 273for line inread_pipe_lines(["git","tag"]): 274 tag = line.strip() 275 gitTags.add(tag) 276return gitTags 277 278defdiffTreePattern(): 279# This is a simple generator for the diff tree regex pattern. This could be 280# a class variable if this and parseDiffTreeEntry were a part of a class. 281 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)') 282while True: 283yield pattern 284 285defparseDiffTreeEntry(entry): 286"""Parses a single diff tree entry into its component elements. 287 288 See git-diff-tree(1) manpage for details about the format of the diff 289 output. This method returns a dictionary with the following elements: 290 291 src_mode - The mode of the source file 292 dst_mode - The mode of the destination file 293 src_sha1 - The sha1 for the source file 294 dst_sha1 - The sha1 fr the destination file 295 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc) 296 status_score - The score for the status (applicable for 'C' and 'R' 297 statuses). This is None if there is no score. 298 src - The path for the source file. 299 dst - The path for the destination file. This is only present for 300 copy or renames. If it is not present, this is None. 301 302 If the pattern is not matched, None is returned.""" 303 304 match =diffTreePattern().next().match(entry) 305if match: 306return{ 307'src_mode': match.group(1), 308'dst_mode': match.group(2), 309'src_sha1': match.group(3), 310'dst_sha1': match.group(4), 311'status': match.group(5), 312'status_score': match.group(6), 313'src': match.group(7), 314'dst': match.group(10) 315} 316return None 317 318defisModeExec(mode): 319# Returns True if the given git mode represents an executable file, 320# otherwise False. 321return mode[-3:] =="755" 322 323defisModeExecChanged(src_mode, dst_mode): 324returnisModeExec(src_mode) !=isModeExec(dst_mode) 325 326defp4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None): 327 328ifisinstance(cmd,basestring): 329 cmd ="-G "+ cmd 330 expand =True 331else: 332 cmd = ["-G"] + cmd 333 expand =False 334 335 cmd =p4_build_cmd(cmd) 336if verbose: 337 sys.stderr.write("Opening pipe:%s\n"%str(cmd)) 338 339# Use a temporary file to avoid deadlocks without 340# subprocess.communicate(), which would put another copy 341# of stdout into memory. 342 stdin_file =None 343if stdin is not None: 344 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode) 345ifisinstance(stdin,basestring): 346 stdin_file.write(stdin) 347else: 348for i in stdin: 349 stdin_file.write(i +'\n') 350 stdin_file.flush() 351 stdin_file.seek(0) 352 353 p4 = subprocess.Popen(cmd, 354 shell=expand, 355 stdin=stdin_file, 356 stdout=subprocess.PIPE) 357 358 result = [] 359try: 360while True: 361 entry = marshal.load(p4.stdout) 362if cb is not None: 363cb(entry) 364else: 365 result.append(entry) 366exceptEOFError: 367pass 368 exitCode = p4.wait() 369if exitCode !=0: 370 entry = {} 371 entry["p4ExitCode"] = exitCode 372 result.append(entry) 373 374return result 375 376defp4Cmd(cmd): 377list=p4CmdList(cmd) 378 result = {} 379for entry inlist: 380 result.update(entry) 381return result; 382 383defp4Where(depotPath): 384if not depotPath.endswith("/"): 385 depotPath +="/" 386 depotPath = depotPath +"..." 387 outputList =p4CmdList(["where", depotPath]) 388 output =None 389for entry in outputList: 390if"depotFile"in entry: 391if entry["depotFile"] == depotPath: 392 output = entry 393break 394elif"data"in entry: 395 data = entry.get("data") 396 space = data.find(" ") 397if data[:space] == depotPath: 398 output = entry 399break 400if output ==None: 401return"" 402if output["code"] =="error": 403return"" 404 clientPath ="" 405if"path"in output: 406 clientPath = output.get("path") 407elif"data"in output: 408 data = output.get("data") 409 lastSpace = data.rfind(" ") 410 clientPath = data[lastSpace +1:] 411 412if clientPath.endswith("..."): 413 clientPath = clientPath[:-3] 414return clientPath 415 416defcurrentGitBranch(): 417returnread_pipe("git name-rev HEAD").split(" ")[1].strip() 418 419defisValidGitDir(path): 420if(os.path.exists(path +"/HEAD") 421and os.path.exists(path +"/refs")and os.path.exists(path +"/objects")): 422return True; 423return False 424 425defparseRevision(ref): 426returnread_pipe("git rev-parse%s"% ref).strip() 427 428defbranchExists(ref): 429 rev =read_pipe(["git","rev-parse","-q","--verify", ref], 430 ignore_error=True) 431returnlen(rev) >0 432 433defextractLogMessageFromGitCommit(commit): 434 logMessage ="" 435 436## fixme: title is first line of commit, not 1st paragraph. 437 foundTitle =False 438for log inread_pipe_lines("git cat-file commit%s"% commit): 439if not foundTitle: 440iflen(log) ==1: 441 foundTitle =True 442continue 443 444 logMessage += log 445return logMessage 446 447defextractSettingsGitLog(log): 448 values = {} 449for line in log.split("\n"): 450 line = line.strip() 451 m = re.search(r"^ *\[git-p4: (.*)\]$", line) 452if not m: 453continue 454 455 assignments = m.group(1).split(':') 456for a in assignments: 457 vals = a.split('=') 458 key = vals[0].strip() 459 val = ('='.join(vals[1:])).strip() 460if val.endswith('\"')and val.startswith('"'): 461 val = val[1:-1] 462 463 values[key] = val 464 465 paths = values.get("depot-paths") 466if not paths: 467 paths = values.get("depot-path") 468if paths: 469 values['depot-paths'] = paths.split(',') 470return values 471 472defgitBranchExists(branch): 473 proc = subprocess.Popen(["git","rev-parse", branch], 474 stderr=subprocess.PIPE, stdout=subprocess.PIPE); 475return proc.wait() ==0; 476 477_gitConfig = {} 478defgitConfig(key, args =None):# set args to "--bool", for instance 479if not _gitConfig.has_key(key): 480 argsFilter ="" 481if args !=None: 482 argsFilter ="%s"% args 483 cmd ="git config%s%s"% (argsFilter, key) 484 _gitConfig[key] =read_pipe(cmd, ignore_error=True).strip() 485return _gitConfig[key] 486 487defgitConfigList(key): 488if not _gitConfig.has_key(key): 489 _gitConfig[key] =read_pipe("git config --get-all%s"% key, ignore_error=True).strip().split(os.linesep) 490return _gitConfig[key] 491 492defp4BranchesInGit(branchesAreInRemotes =True): 493 branches = {} 494 495 cmdline ="git rev-parse --symbolic " 496if branchesAreInRemotes: 497 cmdline +=" --remotes" 498else: 499 cmdline +=" --branches" 500 501for line inread_pipe_lines(cmdline): 502 line = line.strip() 503 504## only import to p4/ 505if not line.startswith('p4/')or line =="p4/HEAD": 506continue 507 branch = line 508 509# strip off p4 510 branch = re.sub("^p4/","", line) 511 512 branches[branch] =parseRevision(line) 513return branches 514 515deffindUpstreamBranchPoint(head ="HEAD"): 516 branches =p4BranchesInGit() 517# map from depot-path to branch name 518 branchByDepotPath = {} 519for branch in branches.keys(): 520 tip = branches[branch] 521 log =extractLogMessageFromGitCommit(tip) 522 settings =extractSettingsGitLog(log) 523if settings.has_key("depot-paths"): 524 paths =",".join(settings["depot-paths"]) 525 branchByDepotPath[paths] ="remotes/p4/"+ branch 526 527 settings =None 528 parent =0 529while parent <65535: 530 commit = head +"~%s"% parent 531 log =extractLogMessageFromGitCommit(commit) 532 settings =extractSettingsGitLog(log) 533if settings.has_key("depot-paths"): 534 paths =",".join(settings["depot-paths"]) 535if branchByDepotPath.has_key(paths): 536return[branchByDepotPath[paths], settings] 537 538 parent = parent +1 539 540return["", settings] 541 542defcreateOrUpdateBranchesFromOrigin(localRefPrefix ="refs/remotes/p4/", silent=True): 543if not silent: 544print("Creating/updating branch(es) in%sbased on origin branch(es)" 545% localRefPrefix) 546 547 originPrefix ="origin/p4/" 548 549for line inread_pipe_lines("git rev-parse --symbolic --remotes"): 550 line = line.strip() 551if(not line.startswith(originPrefix))or line.endswith("HEAD"): 552continue 553 554 headName = line[len(originPrefix):] 555 remoteHead = localRefPrefix + headName 556 originHead = line 557 558 original =extractSettingsGitLog(extractLogMessageFromGitCommit(originHead)) 559if(not original.has_key('depot-paths') 560or not original.has_key('change')): 561continue 562 563 update =False 564if notgitBranchExists(remoteHead): 565if verbose: 566print"creating%s"% remoteHead 567 update =True 568else: 569 settings =extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead)) 570if settings.has_key('change') >0: 571if settings['depot-paths'] == original['depot-paths']: 572 originP4Change =int(original['change']) 573 p4Change =int(settings['change']) 574if originP4Change > p4Change: 575print("%s(%s) is newer than%s(%s). " 576"Updating p4 branch from origin." 577% (originHead, originP4Change, 578 remoteHead, p4Change)) 579 update =True 580else: 581print("Ignoring:%swas imported from%swhile " 582"%swas imported from%s" 583% (originHead,','.join(original['depot-paths']), 584 remoteHead,','.join(settings['depot-paths']))) 585 586if update: 587system("git update-ref%s %s"% (remoteHead, originHead)) 588 589deforiginP4BranchesExist(): 590returngitBranchExists("origin")orgitBranchExists("origin/p4")orgitBranchExists("origin/p4/master") 591 592defp4ChangesForPaths(depotPaths, changeRange): 593assert depotPaths 594 cmd = ['changes'] 595for p in depotPaths: 596 cmd += ["%s...%s"% (p, changeRange)] 597 output =p4_read_pipe_lines(cmd) 598 599 changes = {} 600for line in output: 601 changeNum =int(line.split(" ")[1]) 602 changes[changeNum] =True 603 604 changelist = changes.keys() 605 changelist.sort() 606return changelist 607 608defp4PathStartsWith(path, prefix): 609# This method tries to remedy a potential mixed-case issue: 610# 611# If UserA adds //depot/DirA/file1 612# and UserB adds //depot/dira/file2 613# 614# we may or may not have a problem. If you have core.ignorecase=true, 615# we treat DirA and dira as the same directory 616 ignorecase =gitConfig("core.ignorecase","--bool") =="true" 617if ignorecase: 618return path.lower().startswith(prefix.lower()) 619return path.startswith(prefix) 620 621defgetClientSpec(): 622"""Look at the p4 client spec, create a View() object that contains 623 all the mappings, and return it.""" 624 625 specList =p4CmdList("client -o") 626iflen(specList) !=1: 627die('Output from "client -o" is%dlines, expecting 1'% 628len(specList)) 629 630# dictionary of all client parameters 631 entry = specList[0] 632 633# just the keys that start with "View" 634 view_keys = [ k for k in entry.keys()if k.startswith("View") ] 635 636# hold this new View 637 view =View() 638 639# append the lines, in order, to the view 640for view_num inrange(len(view_keys)): 641 k ="View%d"% view_num 642if k not in view_keys: 643die("Expected view key%smissing"% k) 644 view.append(entry[k]) 645 646return view 647 648defgetClientRoot(): 649"""Grab the client directory.""" 650 651 output =p4CmdList("client -o") 652iflen(output) !=1: 653die('Output from "client -o" is%dlines, expecting 1'%len(output)) 654 655 entry = output[0] 656if"Root"not in entry: 657die('Client has no "Root"') 658 659return entry["Root"] 660 661class Command: 662def__init__(self): 663 self.usage ="usage: %prog [options]" 664 self.needsGit =True 665 666class P4UserMap: 667def__init__(self): 668 self.userMapFromPerforceServer =False 669 self.myP4UserId =None 670 671defp4UserId(self): 672if self.myP4UserId: 673return self.myP4UserId 674 675 results =p4CmdList("user -o") 676for r in results: 677if r.has_key('User'): 678 self.myP4UserId = r['User'] 679return r['User'] 680die("Could not find your p4 user id") 681 682defp4UserIsMe(self, p4User): 683# return True if the given p4 user is actually me 684 me = self.p4UserId() 685if not p4User or p4User != me: 686return False 687else: 688return True 689 690defgetUserCacheFilename(self): 691 home = os.environ.get("HOME", os.environ.get("USERPROFILE")) 692return home +"/.gitp4-usercache.txt" 693 694defgetUserMapFromPerforceServer(self): 695if self.userMapFromPerforceServer: 696return 697 self.users = {} 698 self.emails = {} 699 700for output inp4CmdList("users"): 701if not output.has_key("User"): 702continue 703 self.users[output["User"]] = output["FullName"] +" <"+ output["Email"] +">" 704 self.emails[output["Email"]] = output["User"] 705 706 707 s ='' 708for(key, val)in self.users.items(): 709 s +="%s\t%s\n"% (key.expandtabs(1), val.expandtabs(1)) 710 711open(self.getUserCacheFilename(),"wb").write(s) 712 self.userMapFromPerforceServer =True 713 714defloadUserMapFromCache(self): 715 self.users = {} 716 self.userMapFromPerforceServer =False 717try: 718 cache =open(self.getUserCacheFilename(),"rb") 719 lines = cache.readlines() 720 cache.close() 721for line in lines: 722 entry = line.strip().split("\t") 723 self.users[entry[0]] = entry[1] 724exceptIOError: 725 self.getUserMapFromPerforceServer() 726 727classP4Debug(Command): 728def__init__(self): 729 Command.__init__(self) 730 self.options = [ 731 optparse.make_option("--verbose", dest="verbose", action="store_true", 732 default=False), 733] 734 self.description ="A tool to debug the output of p4 -G." 735 self.needsGit =False 736 self.verbose =False 737 738defrun(self, args): 739 j =0 740for output inp4CmdList(args): 741print'Element:%d'% j 742 j +=1 743print output 744return True 745 746classP4RollBack(Command): 747def__init__(self): 748 Command.__init__(self) 749 self.options = [ 750 optparse.make_option("--verbose", dest="verbose", action="store_true"), 751 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true") 752] 753 self.description ="A tool to debug the multi-branch import. Don't use :)" 754 self.verbose =False 755 self.rollbackLocalBranches =False 756 757defrun(self, args): 758iflen(args) !=1: 759return False 760 maxChange =int(args[0]) 761 762if"p4ExitCode"inp4Cmd("changes -m 1"): 763die("Problems executing p4"); 764 765if self.rollbackLocalBranches: 766 refPrefix ="refs/heads/" 767 lines =read_pipe_lines("git rev-parse --symbolic --branches") 768else: 769 refPrefix ="refs/remotes/" 770 lines =read_pipe_lines("git rev-parse --symbolic --remotes") 771 772for line in lines: 773if self.rollbackLocalBranches or(line.startswith("p4/")and line !="p4/HEAD\n"): 774 line = line.strip() 775 ref = refPrefix + line 776 log =extractLogMessageFromGitCommit(ref) 777 settings =extractSettingsGitLog(log) 778 779 depotPaths = settings['depot-paths'] 780 change = settings['change'] 781 782 changed =False 783 784iflen(p4Cmd("changes -m 1 "+' '.join(['%s...@%s'% (p, maxChange) 785for p in depotPaths]))) ==0: 786print"Branch%sdid not exist at change%s, deleting."% (ref, maxChange) 787system("git update-ref -d%s`git rev-parse%s`"% (ref, ref)) 788continue 789 790while change andint(change) > maxChange: 791 changed =True 792if self.verbose: 793print"%sis at%s; rewinding towards%s"% (ref, change, maxChange) 794system("git update-ref%s\"%s^\""% (ref, ref)) 795 log =extractLogMessageFromGitCommit(ref) 796 settings =extractSettingsGitLog(log) 797 798 799 depotPaths = settings['depot-paths'] 800 change = settings['change'] 801 802if changed: 803print"%srewound to%s"% (ref, change) 804 805return True 806 807classP4Submit(Command, P4UserMap): 808def__init__(self): 809 Command.__init__(self) 810 P4UserMap.__init__(self) 811 self.options = [ 812 optparse.make_option("--verbose", dest="verbose", action="store_true"), 813 optparse.make_option("--origin", dest="origin"), 814 optparse.make_option("-M", dest="detectRenames", action="store_true"), 815# preserve the user, requires relevant p4 permissions 816 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"), 817 optparse.make_option("--export-labels", dest="exportLabels", action="store_true"), 818] 819 self.description ="Submit changes from git to the perforce depot." 820 self.usage +=" [name of git branch to submit into perforce depot]" 821 self.interactive =True 822 self.origin ="" 823 self.detectRenames =False 824 self.verbose =False 825 self.preserveUser =gitConfig("git-p4.preserveUser").lower() =="true" 826 self.isWindows = (platform.system() =="Windows") 827 self.exportLabels =False 828 829defcheck(self): 830iflen(p4CmdList("opened ...")) >0: 831die("You have files opened with perforce! Close them before starting the sync.") 832 833# replaces everything between 'Description:' and the next P4 submit template field with the 834# commit message 835defprepareLogMessage(self, template, message): 836 result ="" 837 838 inDescriptionSection =False 839 840for line in template.split("\n"): 841if line.startswith("#"): 842 result += line +"\n" 843continue 844 845if inDescriptionSection: 846if line.startswith("Files:")or line.startswith("Jobs:"): 847 inDescriptionSection =False 848else: 849continue 850else: 851if line.startswith("Description:"): 852 inDescriptionSection =True 853 line +="\n" 854for messageLine in message.split("\n"): 855 line +="\t"+ messageLine +"\n" 856 857 result += line +"\n" 858 859return result 860 861defpatchRCSKeywords(self,file, pattern): 862# Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern 863(handle, outFileName) = tempfile.mkstemp(dir='.') 864try: 865 outFile = os.fdopen(handle,"w+") 866 inFile =open(file,"r") 867 regexp = re.compile(pattern, re.VERBOSE) 868for line in inFile.readlines(): 869 line = regexp.sub(r'$\1$', line) 870 outFile.write(line) 871 inFile.close() 872 outFile.close() 873# Forcibly overwrite the original file 874 os.unlink(file) 875 shutil.move(outFileName,file) 876except: 877# cleanup our temporary file 878 os.unlink(outFileName) 879print"Failed to strip RCS keywords in%s"%file 880raise 881 882print"Patched up RCS keywords in%s"%file 883 884defp4UserForCommit(self,id): 885# Return the tuple (perforce user,git email) for a given git commit id 886 self.getUserMapFromPerforceServer() 887 gitEmail =read_pipe("git log --max-count=1 --format='%%ae'%s"%id) 888 gitEmail = gitEmail.strip() 889if not self.emails.has_key(gitEmail): 890return(None,gitEmail) 891else: 892return(self.emails[gitEmail],gitEmail) 893 894defcheckValidP4Users(self,commits): 895# check if any git authors cannot be mapped to p4 users 896foridin commits: 897(user,email) = self.p4UserForCommit(id) 898if not user: 899 msg ="Cannot find p4 user for email%sin commit%s."% (email,id) 900ifgitConfig('git-p4.allowMissingP4Users').lower() =="true": 901print"%s"% msg 902else: 903die("Error:%s\nSet git-p4.allowMissingP4Users to true to allow this."% msg) 904 905deflastP4Changelist(self): 906# Get back the last changelist number submitted in this client spec. This 907# then gets used to patch up the username in the change. If the same 908# client spec is being used by multiple processes then this might go 909# wrong. 910 results =p4CmdList("client -o")# find the current client 911 client =None 912for r in results: 913if r.has_key('Client'): 914 client = r['Client'] 915break 916if not client: 917die("could not get client spec") 918 results =p4CmdList(["changes","-c", client,"-m","1"]) 919for r in results: 920if r.has_key('change'): 921return r['change'] 922die("Could not get changelist number for last submit - cannot patch up user details") 923 924defmodifyChangelistUser(self, changelist, newUser): 925# fixup the user field of a changelist after it has been submitted. 926 changes =p4CmdList("change -o%s"% changelist) 927iflen(changes) !=1: 928die("Bad output from p4 change modifying%sto user%s"% 929(changelist, newUser)) 930 931 c = changes[0] 932if c['User'] == newUser:return# nothing to do 933 c['User'] = newUser 934input= marshal.dumps(c) 935 936 result =p4CmdList("change -f -i", stdin=input) 937for r in result: 938if r.has_key('code'): 939if r['code'] =='error': 940die("Could not modify user field of changelist%sto%s:%s"% (changelist, newUser, r['data'])) 941if r.has_key('data'): 942print("Updated user field for changelist%sto%s"% (changelist, newUser)) 943return 944die("Could not modify user field of changelist%sto%s"% (changelist, newUser)) 945 946defcanChangeChangelists(self): 947# check to see if we have p4 admin or super-user permissions, either of 948# which are required to modify changelists. 949 results =p4CmdList(["protects", self.depotPath]) 950for r in results: 951if r.has_key('perm'): 952if r['perm'] =='admin': 953return1 954if r['perm'] =='super': 955return1 956return0 957 958defprepareSubmitTemplate(self): 959# remove lines in the Files section that show changes to files outside the depot path we're committing into 960 template ="" 961 inFilesSection =False 962for line inp4_read_pipe_lines(['change','-o']): 963if line.endswith("\r\n"): 964 line = line[:-2] +"\n" 965if inFilesSection: 966if line.startswith("\t"): 967# path starts and ends with a tab 968 path = line[1:] 969 lastTab = path.rfind("\t") 970if lastTab != -1: 971 path = path[:lastTab] 972if notp4PathStartsWith(path, self.depotPath): 973continue 974else: 975 inFilesSection =False 976else: 977if line.startswith("Files:"): 978 inFilesSection =True 979 980 template += line 981 982return template 983 984defedit_template(self, template_file): 985"""Invoke the editor to let the user change the submission 986 message. Return true if okay to continue with the submit.""" 987 988# if configured to skip the editing part, just submit 989ifgitConfig("git-p4.skipSubmitEdit") =="true": 990return True 991 992# look at the modification time, to check later if the user saved 993# the file 994 mtime = os.stat(template_file).st_mtime 995 996# invoke the editor 997if os.environ.has_key("P4EDITOR"): 998 editor = os.environ.get("P4EDITOR") 999else:1000 editor =read_pipe("git var GIT_EDITOR").strip()1001system(editor +" "+ template_file)10021003# If the file was not saved, prompt to see if this patch should1004# be skipped. But skip this verification step if configured so.1005ifgitConfig("git-p4.skipSubmitEditCheck") =="true":1006return True10071008# modification time updated means user saved the file1009if os.stat(template_file).st_mtime > mtime:1010return True10111012while True:1013 response =raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")1014if response =='y':1015return True1016if response =='n':1017return False10181019defapplyCommit(self,id):1020print"Applying%s"% (read_pipe("git log --max-count=1 --pretty=oneline%s"%id))10211022(p4User, gitEmail) = self.p4UserForCommit(id)10231024if not self.detectRenames:1025# If not explicitly set check the config variable1026 self.detectRenames =gitConfig("git-p4.detectRenames")10271028if self.detectRenames.lower() =="false"or self.detectRenames =="":1029 diffOpts =""1030elif self.detectRenames.lower() =="true":1031 diffOpts ="-M"1032else:1033 diffOpts ="-M%s"% self.detectRenames10341035 detectCopies =gitConfig("git-p4.detectCopies")1036if detectCopies.lower() =="true":1037 diffOpts +=" -C"1038elif detectCopies !=""and detectCopies.lower() !="false":1039 diffOpts +=" -C%s"% detectCopies10401041ifgitConfig("git-p4.detectCopiesHarder","--bool") =="true":1042 diffOpts +=" --find-copies-harder"10431044 diff =read_pipe_lines("git diff-tree -r%s\"%s^\" \"%s\""% (diffOpts,id,id))1045 filesToAdd =set()1046 filesToDelete =set()1047 editedFiles =set()1048 filesToChangeExecBit = {}10491050for line in diff:1051 diff =parseDiffTreeEntry(line)1052 modifier = diff['status']1053 path = diff['src']1054if modifier =="M":1055p4_edit(path)1056ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1057 filesToChangeExecBit[path] = diff['dst_mode']1058 editedFiles.add(path)1059elif modifier =="A":1060 filesToAdd.add(path)1061 filesToChangeExecBit[path] = diff['dst_mode']1062if path in filesToDelete:1063 filesToDelete.remove(path)1064elif modifier =="D":1065 filesToDelete.add(path)1066if path in filesToAdd:1067 filesToAdd.remove(path)1068elif modifier =="C":1069 src, dest = diff['src'], diff['dst']1070p4_integrate(src, dest)1071if diff['src_sha1'] != diff['dst_sha1']:1072p4_edit(dest)1073ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1074p4_edit(dest)1075 filesToChangeExecBit[dest] = diff['dst_mode']1076 os.unlink(dest)1077 editedFiles.add(dest)1078elif modifier =="R":1079 src, dest = diff['src'], diff['dst']1080p4_integrate(src, dest)1081if diff['src_sha1'] != diff['dst_sha1']:1082p4_edit(dest)1083ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1084p4_edit(dest)1085 filesToChangeExecBit[dest] = diff['dst_mode']1086 os.unlink(dest)1087 editedFiles.add(dest)1088 filesToDelete.add(src)1089else:1090die("unknown modifier%sfor%s"% (modifier, path))10911092 diffcmd ="git format-patch -k --stdout\"%s^\"..\"%s\""% (id,id)1093 patchcmd = diffcmd +" | git apply "1094 tryPatchCmd = patchcmd +"--check -"1095 applyPatchCmd = patchcmd +"--check --apply -"1096 patch_succeeded =True10971098if os.system(tryPatchCmd) !=0:1099 fixed_rcs_keywords =False1100 patch_succeeded =False1101print"Unfortunately applying the change failed!"11021103# Patch failed, maybe it's just RCS keyword woes. Look through1104# the patch to see if that's possible.1105ifgitConfig("git-p4.attemptRCSCleanup","--bool") =="true":1106file=None1107 pattern =None1108 kwfiles = {}1109forfilein editedFiles | filesToDelete:1110# did this file's delta contain RCS keywords?1111 pattern =p4_keywords_regexp_for_file(file)11121113if pattern:1114# this file is a possibility...look for RCS keywords.1115 regexp = re.compile(pattern, re.VERBOSE)1116for line inread_pipe_lines(["git","diff","%s^..%s"% (id,id),file]):1117if regexp.search(line):1118if verbose:1119print"got keyword match on%sin%sin%s"% (pattern, line,file)1120 kwfiles[file] = pattern1121break11221123forfilein kwfiles:1124if verbose:1125print"zapping%swith%s"% (line,pattern)1126 self.patchRCSKeywords(file, kwfiles[file])1127 fixed_rcs_keywords =True11281129if fixed_rcs_keywords:1130print"Retrying the patch with RCS keywords cleaned up"1131if os.system(tryPatchCmd) ==0:1132 patch_succeeded =True11331134if not patch_succeeded:1135print"What do you want to do?"1136 response ="x"1137while response !="s"and response !="a"and response !="w":1138 response =raw_input("[s]kip this patch / [a]pply the patch forcibly "1139"and with .rej files / [w]rite the patch to a file (patch.txt) ")1140if response =="s":1141print"Skipping! Good luck with the next patches..."1142for f in editedFiles:1143p4_revert(f)1144for f in filesToAdd:1145 os.remove(f)1146return1147elif response =="a":1148 os.system(applyPatchCmd)1149iflen(filesToAdd) >0:1150print"You may also want to call p4 add on the following files:"1151print" ".join(filesToAdd)1152iflen(filesToDelete):1153print"The following files should be scheduled for deletion with p4 delete:"1154print" ".join(filesToDelete)1155die("Please resolve and submit the conflict manually and "1156+"continue afterwards with git p4 submit --continue")1157elif response =="w":1158system(diffcmd +" > patch.txt")1159print"Patch saved to patch.txt in%s!"% self.clientPath1160die("Please resolve and submit the conflict manually and "1161"continue afterwards with git p4 submit --continue")11621163system(applyPatchCmd)11641165for f in filesToAdd:1166p4_add(f)1167for f in filesToDelete:1168p4_revert(f)1169p4_delete(f)11701171# Set/clear executable bits1172for f in filesToChangeExecBit.keys():1173 mode = filesToChangeExecBit[f]1174setP4ExecBit(f, mode)11751176 logMessage =extractLogMessageFromGitCommit(id)1177 logMessage = logMessage.strip()11781179 template = self.prepareSubmitTemplate()11801181if self.interactive:1182 submitTemplate = self.prepareLogMessage(template, logMessage)11831184if self.preserveUser:1185 submitTemplate = submitTemplate + ("\n######## Actual user%s, modified after commit\n"% p4User)11861187if os.environ.has_key("P4DIFF"):1188del(os.environ["P4DIFF"])1189 diff =""1190for editedFile in editedFiles:1191 diff +=p4_read_pipe(['diff','-du', editedFile])11921193 newdiff =""1194for newFile in filesToAdd:1195 newdiff +="==== new file ====\n"1196 newdiff +="--- /dev/null\n"1197 newdiff +="+++%s\n"% newFile1198 f =open(newFile,"r")1199for line in f.readlines():1200 newdiff +="+"+ line1201 f.close()12021203if self.checkAuthorship and not self.p4UserIsMe(p4User):1204 submitTemplate +="######## git author%sdoes not match your p4 account.\n"% gitEmail1205 submitTemplate +="######## Use option --preserve-user to modify authorship.\n"1206 submitTemplate +="######## Variable git-p4.skipUserNameCheck hides this message.\n"12071208 separatorLine ="######## everything below this line is just the diff #######\n"12091210(handle, fileName) = tempfile.mkstemp()1211 tmpFile = os.fdopen(handle,"w+")1212if self.isWindows:1213 submitTemplate = submitTemplate.replace("\n","\r\n")1214 separatorLine = separatorLine.replace("\n","\r\n")1215 newdiff = newdiff.replace("\n","\r\n")1216 tmpFile.write(submitTemplate + separatorLine + diff + newdiff)1217 tmpFile.close()12181219if self.edit_template(fileName):1220# read the edited message and submit1221 tmpFile =open(fileName,"rb")1222 message = tmpFile.read()1223 tmpFile.close()1224 submitTemplate = message[:message.index(separatorLine)]1225if self.isWindows:1226 submitTemplate = submitTemplate.replace("\r\n","\n")1227p4_write_pipe(['submit','-i'], submitTemplate)12281229if self.preserveUser:1230if p4User:1231# Get last changelist number. Cannot easily get it from1232# the submit command output as the output is1233# unmarshalled.1234 changelist = self.lastP4Changelist()1235 self.modifyChangelistUser(changelist, p4User)1236else:1237# skip this patch1238print"Submission cancelled, undoing p4 changes."1239for f in editedFiles:1240p4_revert(f)1241for f in filesToAdd:1242p4_revert(f)1243 os.remove(f)12441245 os.remove(fileName)1246else:1247 fileName ="submit.txt"1248file=open(fileName,"w+")1249file.write(self.prepareLogMessage(template, logMessage))1250file.close()1251print("Perforce submit template written as%s. "1252+"Please review/edit and then use p4 submit -i <%sto submit directly!"1253% (fileName, fileName))12541255# Export git tags as p4 labels. Create a p4 label and then tag1256# with that.1257defexportGitTags(self, gitTags):1258 validTagRegexp =gitConfig("git-p4.validTagRegexp")1259iflen(validTagRegexp) ==0:1260 validTagRegexp = defaultLabelRegexp1261 m = re.compile(validTagRegexp)1262 commit_re = re.compile(r'\s*\[git-p4:.*change = (\d+)\s*\]')12631264for name in gitTags:12651266if not m.match(name):1267if verbose:1268print"tag%sdoes not match regexp%s"% (name, validTagRegexp)1269continue12701271# Get the p4 commit this corresponds to1272 changelist =None1273for l inread_pipe_lines(["git","log","--max-count=1", name]):1274 match = commit_re.match(l)1275if match:1276 changelist = match.group(1)12771278if not changelist:1279# a tag pointing to something not sent to p4; ignore1280if verbose:1281print"git tag%sdoes not give a p4 commit"% name1282continue12831284# Get the tag details.1285 inHeader =True1286 isAnnotated =False1287 body = []1288for l inread_pipe_lines(["git","cat-file","-p", name]):1289 l = l.strip()1290if inHeader:1291if re.match(r'tag\s+', l):1292 isAnnotated =True1293elif re.match(r'\s*$', l):1294 inHeader =False1295continue1296else:1297 body.append(l)12981299if not isAnnotated:1300 body = ["lightweight tag imported by git p4\n"]13011302# Create the label - use the same view as the client spec we are using1303 clientSpec =getClientSpec()13041305 labelTemplate ="Label:%s\n"% name1306 labelTemplate +="Description:\n"1307for b in body:1308 labelTemplate +="\t"+ b +"\n"1309 labelTemplate +="View:\n"1310for mapping in clientSpec.mappings:1311 labelTemplate +="\t%s\n"% mapping.depot_side.path13121313p4_write_pipe(["label","-i"], labelTemplate)13141315# Use the label1316p4_system(["tag","-l", name] +1317["%s@%s"% (mapping.depot_side.path, changelist)for mapping in clientSpec.mappings])13181319if verbose:1320print"created p4 label for tag%s"% name13211322defrun(self, args):1323iflen(args) ==0:1324 self.master =currentGitBranch()1325iflen(self.master) ==0or notgitBranchExists("refs/heads/%s"% self.master):1326die("Detecting current git branch failed!")1327eliflen(args) ==1:1328 self.master = args[0]1329if notbranchExists(self.master):1330die("Branch%sdoes not exist"% self.master)1331else:1332return False13331334 allowSubmit =gitConfig("git-p4.allowSubmit")1335iflen(allowSubmit) >0and not self.master in allowSubmit.split(","):1336die("%sis not in git-p4.allowSubmit"% self.master)13371338[upstream, settings] =findUpstreamBranchPoint()1339 self.depotPath = settings['depot-paths'][0]1340iflen(self.origin) ==0:1341 self.origin = upstream13421343if self.preserveUser:1344if not self.canChangeChangelists():1345die("Cannot preserve user names without p4 super-user or admin permissions")13461347if self.verbose:1348print"Origin branch is "+ self.origin13491350iflen(self.depotPath) ==0:1351print"Internal error: cannot locate perforce depot path from existing branches"1352 sys.exit(128)13531354 self.useClientSpec =False1355ifgitConfig("git-p4.useclientspec","--bool") =="true":1356 self.useClientSpec =True1357if self.useClientSpec:1358 self.clientSpecDirs =getClientSpec()13591360if self.useClientSpec:1361# all files are relative to the client spec1362 self.clientPath =getClientRoot()1363else:1364 self.clientPath =p4Where(self.depotPath)13651366if self.clientPath =="":1367die("Error: Cannot locate perforce checkout of%sin client view"% self.depotPath)13681369print"Perforce checkout for depot path%slocated at%s"% (self.depotPath, self.clientPath)1370 self.oldWorkingDirectory = os.getcwd()13711372# ensure the clientPath exists1373if not os.path.exists(self.clientPath):1374 os.makedirs(self.clientPath)13751376chdir(self.clientPath)1377print"Synchronizing p4 checkout..."1378p4_sync("...")1379 self.check()13801381 commits = []1382for line inread_pipe_lines("git rev-list --no-merges%s..%s"% (self.origin, self.master)):1383 commits.append(line.strip())1384 commits.reverse()13851386if self.preserveUser or(gitConfig("git-p4.skipUserNameCheck") =="true"):1387 self.checkAuthorship =False1388else:1389 self.checkAuthorship =True13901391if self.preserveUser:1392 self.checkValidP4Users(commits)13931394whilelen(commits) >0:1395 commit = commits[0]1396 commits = commits[1:]1397 self.applyCommit(commit)1398if not self.interactive:1399break14001401iflen(commits) ==0:1402print"All changes applied!"1403chdir(self.oldWorkingDirectory)14041405 sync =P4Sync()1406 sync.run([])14071408 rebase =P4Rebase()1409 rebase.rebase()14101411ifgitConfig("git-p4.exportLabels","--bool") =="true":1412 self.exportLabels = true14131414if self.exportLabels:1415 p4Labels =getP4Labels(self.depotPath)1416 gitTags =getGitTags()14171418 missingGitTags = gitTags - p4Labels1419 self.exportGitTags(missingGitTags)14201421return True14221423classView(object):1424"""Represent a p4 view ("p4 help views"), and map files in a1425 repo according to the view."""14261427classPath(object):1428"""A depot or client path, possibly containing wildcards.1429 The only one supported is ... at the end, currently.1430 Initialize with the full path, with //depot or //client."""14311432def__init__(self, path, is_depot):1433 self.path = path1434 self.is_depot = is_depot1435 self.find_wildcards()1436# remember the prefix bit, useful for relative mappings1437 m = re.match("(//[^/]+/)", self.path)1438if not m:1439die("Path%sdoes not start with //prefix/"% self.path)1440 prefix = m.group(1)1441if not self.is_depot:1442# strip //client/ on client paths1443 self.path = self.path[len(prefix):]14441445deffind_wildcards(self):1446"""Make sure wildcards are valid, and set up internal1447 variables."""14481449 self.ends_triple_dot =False1450# There are three wildcards allowed in p4 views1451# (see "p4 help views"). This code knows how to1452# handle "..." (only at the end), but cannot deal with1453# "%%n" or "*". Only check the depot_side, as p4 should1454# validate that the client_side matches too.1455if re.search(r'%%[1-9]', self.path):1456die("Can't handle%%n wildcards in view:%s"% self.path)1457if self.path.find("*") >=0:1458die("Can't handle * wildcards in view:%s"% self.path)1459 triple_dot_index = self.path.find("...")1460if triple_dot_index >=0:1461if triple_dot_index !=len(self.path) -3:1462die("Can handle only single ... wildcard, at end:%s"%1463 self.path)1464 self.ends_triple_dot =True14651466defensure_compatible(self, other_path):1467"""Make sure the wildcards agree."""1468if self.ends_triple_dot != other_path.ends_triple_dot:1469die("Both paths must end with ... if either does;\n"+1470"paths:%s %s"% (self.path, other_path.path))14711472defmatch_wildcards(self, test_path):1473"""See if this test_path matches us, and fill in the value1474 of the wildcards if so. Returns a tuple of1475 (True|False, wildcards[]). For now, only the ... at end1476 is supported, so at most one wildcard."""1477if self.ends_triple_dot:1478 dotless = self.path[:-3]1479if test_path.startswith(dotless):1480 wildcard = test_path[len(dotless):]1481return(True, [ wildcard ])1482else:1483if test_path == self.path:1484return(True, [])1485return(False, [])14861487defmatch(self, test_path):1488"""Just return if it matches; don't bother with the wildcards."""1489 b, _ = self.match_wildcards(test_path)1490return b14911492deffill_in_wildcards(self, wildcards):1493"""Return the relative path, with the wildcards filled in1494 if there are any."""1495if self.ends_triple_dot:1496return self.path[:-3] + wildcards[0]1497else:1498return self.path14991500classMapping(object):1501def__init__(self, depot_side, client_side, overlay, exclude):1502# depot_side is without the trailing /... if it had one1503 self.depot_side = View.Path(depot_side, is_depot=True)1504 self.client_side = View.Path(client_side, is_depot=False)1505 self.overlay = overlay # started with "+"1506 self.exclude = exclude # started with "-"1507assert not(self.overlay and self.exclude)1508 self.depot_side.ensure_compatible(self.client_side)15091510def__str__(self):1511 c =" "1512if self.overlay:1513 c ="+"1514if self.exclude:1515 c ="-"1516return"View.Mapping:%s%s->%s"% \1517(c, self.depot_side.path, self.client_side.path)15181519defmap_depot_to_client(self, depot_path):1520"""Calculate the client path if using this mapping on the1521 given depot path; does not consider the effect of other1522 mappings in a view. Even excluded mappings are returned."""1523 matches, wildcards = self.depot_side.match_wildcards(depot_path)1524if not matches:1525return""1526 client_path = self.client_side.fill_in_wildcards(wildcards)1527return client_path15281529#1530# View methods1531#1532def__init__(self):1533 self.mappings = []15341535defappend(self, view_line):1536"""Parse a view line, splitting it into depot and client1537 sides. Append to self.mappings, preserving order."""15381539# Split the view line into exactly two words. P4 enforces1540# structure on these lines that simplifies this quite a bit.1541#1542# Either or both words may be double-quoted.1543# Single quotes do not matter.1544# Double-quote marks cannot occur inside the words.1545# A + or - prefix is also inside the quotes.1546# There are no quotes unless they contain a space.1547# The line is already white-space stripped.1548# The two words are separated by a single space.1549#1550if view_line[0] =='"':1551# First word is double quoted. Find its end.1552 close_quote_index = view_line.find('"',1)1553if close_quote_index <=0:1554die("No first-word closing quote found:%s"% view_line)1555 depot_side = view_line[1:close_quote_index]1556# skip closing quote and space1557 rhs_index = close_quote_index +1+11558else:1559 space_index = view_line.find(" ")1560if space_index <=0:1561die("No word-splitting space found:%s"% view_line)1562 depot_side = view_line[0:space_index]1563 rhs_index = space_index +115641565if view_line[rhs_index] =='"':1566# Second word is double quoted. Make sure there is a1567# double quote at the end too.1568if not view_line.endswith('"'):1569die("View line with rhs quote should end with one:%s"%1570 view_line)1571# skip the quotes1572 client_side = view_line[rhs_index+1:-1]1573else:1574 client_side = view_line[rhs_index:]15751576# prefix + means overlay on previous mapping1577 overlay =False1578if depot_side.startswith("+"):1579 overlay =True1580 depot_side = depot_side[1:]15811582# prefix - means exclude this path1583 exclude =False1584if depot_side.startswith("-"):1585 exclude =True1586 depot_side = depot_side[1:]15871588 m = View.Mapping(depot_side, client_side, overlay, exclude)1589 self.mappings.append(m)15901591defmap_in_client(self, depot_path):1592"""Return the relative location in the client where this1593 depot file should live. Returns "" if the file should1594 not be mapped in the client."""15951596 paths_filled = []1597 client_path =""15981599# look at later entries first1600for m in self.mappings[::-1]:16011602# see where will this path end up in the client1603 p = m.map_depot_to_client(depot_path)16041605if p =="":1606# Depot path does not belong in client. Must remember1607# this, as previous items should not cause files to1608# exist in this path either. Remember that the list is1609# being walked from the end, which has higher precedence.1610# Overlap mappings do not exclude previous mappings.1611if not m.overlay:1612 paths_filled.append(m.client_side)16131614else:1615# This mapping matched; no need to search any further.1616# But, the mapping could be rejected if the client path1617# has already been claimed by an earlier mapping (i.e.1618# one later in the list, which we are walking backwards).1619 already_mapped_in_client =False1620for f in paths_filled:1621# this is View.Path.match1622if f.match(p):1623 already_mapped_in_client =True1624break1625if not already_mapped_in_client:1626# Include this file, unless it is from a line that1627# explicitly said to exclude it.1628if not m.exclude:1629 client_path = p16301631# a match, even if rejected, always stops the search1632break16331634return client_path16351636classP4Sync(Command, P4UserMap):1637 delete_actions = ("delete","move/delete","purge")16381639def__init__(self):1640 Command.__init__(self)1641 P4UserMap.__init__(self)1642 self.options = [1643 optparse.make_option("--branch", dest="branch"),1644 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),1645 optparse.make_option("--changesfile", dest="changesFile"),1646 optparse.make_option("--silent", dest="silent", action="store_true"),1647 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),1648 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),1649 optparse.make_option("--verbose", dest="verbose", action="store_true"),1650 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",1651help="Import into refs/heads/ , not refs/remotes"),1652 optparse.make_option("--max-changes", dest="maxChanges"),1653 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',1654help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),1655 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',1656help="Only sync files that are included in the Perforce Client Spec")1657]1658 self.description ="""Imports from Perforce into a git repository.\n1659 example:1660 //depot/my/project/ -- to import the current head1661 //depot/my/project/@all -- to import everything1662 //depot/my/project/@1,6 -- to import only from revision 1 to 616631664 (a ... is not needed in the path p4 specification, it's added implicitly)"""16651666 self.usage +=" //depot/path[@revRange]"1667 self.silent =False1668 self.createdBranches =set()1669 self.committedChanges =set()1670 self.branch =""1671 self.detectBranches =False1672 self.detectLabels =False1673 self.importLabels =False1674 self.changesFile =""1675 self.syncWithOrigin =True1676 self.verbose =False1677 self.importIntoRemotes =True1678 self.maxChanges =""1679 self.isWindows = (platform.system() =="Windows")1680 self.keepRepoPath =False1681 self.depotPaths =None1682 self.p4BranchesInGit = []1683 self.cloneExclude = []1684 self.useClientSpec =False1685 self.useClientSpec_from_options =False1686 self.clientSpecDirs =None1687 self.tempBranches = []1688 self.tempBranchLocation ="git-p4-tmp"16891690ifgitConfig("git-p4.syncFromOrigin") =="false":1691 self.syncWithOrigin =False16921693#1694# P4 wildcards are not allowed in filenames. P4 complains1695# if you simply add them, but you can force it with "-f", in1696# which case it translates them into %xx encoding internally.1697# Search for and fix just these four characters. Do % last so1698# that fixing it does not inadvertently create new %-escapes.1699#1700defwildcard_decode(self, path):1701# Cannot have * in a filename in windows; untested as to1702# what p4 would do in such a case.1703if not self.isWindows:1704 path = path.replace("%2A","*")1705 path = path.replace("%23","#") \1706.replace("%40","@") \1707.replace("%25","%")1708return path17091710# Force a checkpoint in fast-import and wait for it to finish1711defcheckpoint(self):1712 self.gitStream.write("checkpoint\n\n")1713 self.gitStream.write("progress checkpoint\n\n")1714 out = self.gitOutput.readline()1715if self.verbose:1716print"checkpoint finished: "+ out17171718defextractFilesFromCommit(self, commit):1719 self.cloneExclude = [re.sub(r"\.\.\.$","", path)1720for path in self.cloneExclude]1721 files = []1722 fnum =01723while commit.has_key("depotFile%s"% fnum):1724 path = commit["depotFile%s"% fnum]17251726if[p for p in self.cloneExclude1727ifp4PathStartsWith(path, p)]:1728 found =False1729else:1730 found = [p for p in self.depotPaths1731ifp4PathStartsWith(path, p)]1732if not found:1733 fnum = fnum +11734continue17351736file= {}1737file["path"] = path1738file["rev"] = commit["rev%s"% fnum]1739file["action"] = commit["action%s"% fnum]1740file["type"] = commit["type%s"% fnum]1741 files.append(file)1742 fnum = fnum +11743return files17441745defstripRepoPath(self, path, prefixes):1746if self.useClientSpec:1747return self.clientSpecDirs.map_in_client(path)17481749if self.keepRepoPath:1750 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]17511752for p in prefixes:1753ifp4PathStartsWith(path, p):1754 path = path[len(p):]17551756return path17571758defsplitFilesIntoBranches(self, commit):1759 branches = {}1760 fnum =01761while commit.has_key("depotFile%s"% fnum):1762 path = commit["depotFile%s"% fnum]1763 found = [p for p in self.depotPaths1764ifp4PathStartsWith(path, p)]1765if not found:1766 fnum = fnum +11767continue17681769file= {}1770file["path"] = path1771file["rev"] = commit["rev%s"% fnum]1772file["action"] = commit["action%s"% fnum]1773file["type"] = commit["type%s"% fnum]1774 fnum = fnum +117751776 relPath = self.stripRepoPath(path, self.depotPaths)17771778for branch in self.knownBranches.keys():17791780# add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.21781if relPath.startswith(branch +"/"):1782if branch not in branches:1783 branches[branch] = []1784 branches[branch].append(file)1785break17861787return branches17881789# output one file from the P4 stream1790# - helper for streamP4Files17911792defstreamOneP4File(self,file, contents):1793 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)1794 relPath = self.wildcard_decode(relPath)1795if verbose:1796 sys.stderr.write("%s\n"% relPath)17971798(type_base, type_mods) =split_p4_type(file["type"])17991800 git_mode ="100644"1801if"x"in type_mods:1802 git_mode ="100755"1803if type_base =="symlink":1804 git_mode ="120000"1805# p4 print on a symlink contains "target\n"; remove the newline1806 data =''.join(contents)1807 contents = [data[:-1]]18081809if type_base =="utf16":1810# p4 delivers different text in the python output to -G1811# than it does when using "print -o", or normal p4 client1812# operations. utf16 is converted to ascii or utf8, perhaps.1813# But ascii text saved as -t utf16 is completely mangled.1814# Invoke print -o to get the real contents.1815 text =p4_read_pipe(['print','-q','-o','-',file['depotFile']])1816 contents = [ text ]18171818if type_base =="apple":1819# Apple filetype files will be streamed as a concatenation of1820# its appledouble header and the contents. This is useless1821# on both macs and non-macs. If using "print -q -o xx", it1822# will create "xx" with the data, and "%xx" with the header.1823# This is also not very useful.1824#1825# Ideally, someday, this script can learn how to generate1826# appledouble files directly and import those to git, but1827# non-mac machines can never find a use for apple filetype.1828print"\nIgnoring apple filetype file%s"%file['depotFile']1829return18301831# Perhaps windows wants unicode, utf16 newlines translated too;1832# but this is not doing it.1833if self.isWindows and type_base =="text":1834 mangled = []1835for data in contents:1836 data = data.replace("\r\n","\n")1837 mangled.append(data)1838 contents = mangled18391840# Note that we do not try to de-mangle keywords on utf16 files,1841# even though in theory somebody may want that.1842 pattern =p4_keywords_regexp_for_type(type_base, type_mods)1843if pattern:1844 regexp = re.compile(pattern, re.VERBOSE)1845 text =''.join(contents)1846 text = regexp.sub(r'$\1$', text)1847 contents = [ text ]18481849 self.gitStream.write("M%sinline%s\n"% (git_mode, relPath))18501851# total length...1852 length =01853for d in contents:1854 length = length +len(d)18551856 self.gitStream.write("data%d\n"% length)1857for d in contents:1858 self.gitStream.write(d)1859 self.gitStream.write("\n")18601861defstreamOneP4Deletion(self,file):1862 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)1863if verbose:1864 sys.stderr.write("delete%s\n"% relPath)1865 self.gitStream.write("D%s\n"% relPath)18661867# handle another chunk of streaming data1868defstreamP4FilesCb(self, marshalled):18691870if marshalled.has_key('depotFile')and self.stream_have_file_info:1871# start of a new file - output the old one first1872 self.streamOneP4File(self.stream_file, self.stream_contents)1873 self.stream_file = {}1874 self.stream_contents = []1875 self.stream_have_file_info =False18761877# pick up the new file information... for the1878# 'data' field we need to append to our array1879for k in marshalled.keys():1880if k =='data':1881 self.stream_contents.append(marshalled['data'])1882else:1883 self.stream_file[k] = marshalled[k]18841885 self.stream_have_file_info =True18861887# Stream directly from "p4 files" into "git fast-import"1888defstreamP4Files(self, files):1889 filesForCommit = []1890 filesToRead = []1891 filesToDelete = []18921893for f in files:1894# if using a client spec, only add the files that have1895# a path in the client1896if self.clientSpecDirs:1897if self.clientSpecDirs.map_in_client(f['path']) =="":1898continue18991900 filesForCommit.append(f)1901if f['action']in self.delete_actions:1902 filesToDelete.append(f)1903else:1904 filesToRead.append(f)19051906# deleted files...1907for f in filesToDelete:1908 self.streamOneP4Deletion(f)19091910iflen(filesToRead) >0:1911 self.stream_file = {}1912 self.stream_contents = []1913 self.stream_have_file_info =False19141915# curry self argument1916defstreamP4FilesCbSelf(entry):1917 self.streamP4FilesCb(entry)19181919 fileArgs = ['%s#%s'% (f['path'], f['rev'])for f in filesToRead]19201921p4CmdList(["-x","-","print"],1922 stdin=fileArgs,1923 cb=streamP4FilesCbSelf)19241925# do the last chunk1926if self.stream_file.has_key('depotFile'):1927 self.streamOneP4File(self.stream_file, self.stream_contents)19281929defmake_email(self, userid):1930if userid in self.users:1931return self.users[userid]1932else:1933return"%s<a@b>"% userid19341935# Stream a p4 tag1936defstreamTag(self, gitStream, labelName, labelDetails, commit, epoch):1937if verbose:1938print"writing tag%sfor commit%s"% (labelName, commit)1939 gitStream.write("tag%s\n"% labelName)1940 gitStream.write("from%s\n"% commit)19411942if labelDetails.has_key('Owner'):1943 owner = labelDetails["Owner"]1944else:1945 owner =None19461947# Try to use the owner of the p4 label, or failing that,1948# the current p4 user id.1949if owner:1950 email = self.make_email(owner)1951else:1952 email = self.make_email(self.p4UserId())1953 tagger ="%s %s %s"% (email, epoch, self.tz)19541955 gitStream.write("tagger%s\n"% tagger)19561957print"labelDetails=",labelDetails1958if labelDetails.has_key('Description'):1959 description = labelDetails['Description']1960else:1961 description ='Label from git p4'19621963 gitStream.write("data%d\n"%len(description))1964 gitStream.write(description)1965 gitStream.write("\n")19661967defcommit(self, details, files, branch, branchPrefixes, parent =""):1968 epoch = details["time"]1969 author = details["user"]1970 self.branchPrefixes = branchPrefixes19711972if self.verbose:1973print"commit into%s"% branch19741975# start with reading files; if that fails, we should not1976# create a commit.1977 new_files = []1978for f in files:1979if[p for p in branchPrefixes ifp4PathStartsWith(f['path'], p)]:1980 new_files.append(f)1981else:1982 sys.stderr.write("Ignoring file outside of prefix:%s\n"% f['path'])19831984 self.gitStream.write("commit%s\n"% branch)1985# gitStream.write("mark :%s\n" % details["change"])1986 self.committedChanges.add(int(details["change"]))1987 committer =""1988if author not in self.users:1989 self.getUserMapFromPerforceServer()1990 committer ="%s %s %s"% (self.make_email(author), epoch, self.tz)19911992 self.gitStream.write("committer%s\n"% committer)19931994 self.gitStream.write("data <<EOT\n")1995 self.gitStream.write(details["desc"])1996 self.gitStream.write("\n[git-p4: depot-paths =\"%s\": change =%s"1997% (','.join(branchPrefixes), details["change"]))1998iflen(details['options']) >0:1999 self.gitStream.write(": options =%s"% details['options'])2000 self.gitStream.write("]\nEOT\n\n")20012002iflen(parent) >0:2003if self.verbose:2004print"parent%s"% parent2005 self.gitStream.write("from%s\n"% parent)20062007 self.streamP4Files(new_files)2008 self.gitStream.write("\n")20092010 change =int(details["change"])20112012if self.labels.has_key(change):2013 label = self.labels[change]2014 labelDetails = label[0]2015 labelRevisions = label[1]2016if self.verbose:2017print"Change%sis labelled%s"% (change, labelDetails)20182019 files =p4CmdList(["files"] + ["%s...@%s"% (p, change)2020for p in branchPrefixes])20212022iflen(files) ==len(labelRevisions):20232024 cleanedFiles = {}2025for info in files:2026if info["action"]in self.delete_actions:2027continue2028 cleanedFiles[info["depotFile"]] = info["rev"]20292030if cleanedFiles == labelRevisions:2031 self.streamTag(self.gitStream,'tag_%s'% labelDetails['label'], labelDetails, branch, epoch)20322033else:2034if not self.silent:2035print("Tag%sdoes not match with change%s: files do not match."2036% (labelDetails["label"], change))20372038else:2039if not self.silent:2040print("Tag%sdoes not match with change%s: file count is different."2041% (labelDetails["label"], change))20422043# Build a dictionary of changelists and labels, for "detect-labels" option.2044defgetLabels(self):2045 self.labels = {}20462047 l =p4CmdList(["labels"] + ["%s..."% p for p in self.depotPaths])2048iflen(l) >0and not self.silent:2049print"Finding files belonging to labels in%s"% `self.depotPaths`20502051for output in l:2052 label = output["label"]2053 revisions = {}2054 newestChange =02055if self.verbose:2056print"Querying files for label%s"% label2057forfileinp4CmdList(["files"] +2058["%s...@%s"% (p, label)2059for p in self.depotPaths]):2060 revisions[file["depotFile"]] =file["rev"]2061 change =int(file["change"])2062if change > newestChange:2063 newestChange = change20642065 self.labels[newestChange] = [output, revisions]20662067if self.verbose:2068print"Label changes:%s"% self.labels.keys()20692070# Import p4 labels as git tags. A direct mapping does not2071# exist, so assume that if all the files are at the same revision2072# then we can use that, or it's something more complicated we should2073# just ignore.2074defimportP4Labels(self, stream, p4Labels):2075if verbose:2076print"import p4 labels: "+' '.join(p4Labels)20772078 ignoredP4Labels =gitConfigList("git-p4.ignoredP4Labels")2079 validLabelRegexp =gitConfig("git-p4.validLabelRegexp")2080iflen(validLabelRegexp) ==0:2081 validLabelRegexp = defaultLabelRegexp2082 m = re.compile(validLabelRegexp)20832084for name in p4Labels:2085 commitFound =False20862087if not m.match(name):2088if verbose:2089print"label%sdoes not match regexp%s"% (name,validLabelRegexp)2090continue20912092if name in ignoredP4Labels:2093continue20942095 labelDetails =p4CmdList(['label',"-o", name])[0]20962097# get the most recent changelist for each file in this label2098 change =p4Cmd(["changes","-m","1"] + ["%s...@%s"% (p, name)2099for p in self.depotPaths])21002101if change.has_key('change'):2102# find the corresponding git commit; take the oldest commit2103 changelist =int(change['change'])2104 gitCommit =read_pipe(["git","rev-list","--max-count=1",2105"--reverse",":/\[git-p4:.*change =%d\]"% changelist])2106iflen(gitCommit) ==0:2107print"could not find git commit for changelist%d"% changelist2108else:2109 gitCommit = gitCommit.strip()2110 commitFound =True2111# Convert from p4 time format2112try:2113 tmwhen = time.strptime(labelDetails['Update'],"%Y/%m/%d%H:%M:%S")2114exceptValueError:2115print"Could not convert label time%s"% labelDetail['Update']2116 tmwhen =121172118 when =int(time.mktime(tmwhen))2119 self.streamTag(stream, name, labelDetails, gitCommit, when)2120if verbose:2121print"p4 label%smapped to git commit%s"% (name, gitCommit)2122else:2123if verbose:2124print"Label%shas no changelists - possibly deleted?"% name21252126if not commitFound:2127# We can't import this label; don't try again as it will get very2128# expensive repeatedly fetching all the files for labels that will2129# never be imported. If the label is moved in the future, the2130# ignore will need to be removed manually.2131system(["git","config","--add","git-p4.ignoredP4Labels", name])21322133defguessProjectName(self):2134for p in self.depotPaths:2135if p.endswith("/"):2136 p = p[:-1]2137 p = p[p.strip().rfind("/") +1:]2138if not p.endswith("/"):2139 p +="/"2140return p21412142defgetBranchMapping(self):2143 lostAndFoundBranches =set()21442145 user =gitConfig("git-p4.branchUser")2146iflen(user) >0:2147 command ="branches -u%s"% user2148else:2149 command ="branches"21502151for info inp4CmdList(command):2152 details =p4Cmd(["branch","-o", info["branch"]])2153 viewIdx =02154while details.has_key("View%s"% viewIdx):2155 paths = details["View%s"% viewIdx].split(" ")2156 viewIdx = viewIdx +12157# require standard //depot/foo/... //depot/bar/... mapping2158iflen(paths) !=2or not paths[0].endswith("/...")or not paths[1].endswith("/..."):2159continue2160 source = paths[0]2161 destination = paths[1]2162## HACK2163ifp4PathStartsWith(source, self.depotPaths[0])andp4PathStartsWith(destination, self.depotPaths[0]):2164 source = source[len(self.depotPaths[0]):-4]2165 destination = destination[len(self.depotPaths[0]):-4]21662167if destination in self.knownBranches:2168if not self.silent:2169print"p4 branch%sdefines a mapping from%sto%s"% (info["branch"], source, destination)2170print"but there exists another mapping from%sto%salready!"% (self.knownBranches[destination], destination)2171continue21722173 self.knownBranches[destination] = source21742175 lostAndFoundBranches.discard(destination)21762177if source not in self.knownBranches:2178 lostAndFoundBranches.add(source)21792180# Perforce does not strictly require branches to be defined, so we also2181# check git config for a branch list.2182#2183# Example of branch definition in git config file:2184# [git-p4]2185# branchList=main:branchA2186# branchList=main:branchB2187# branchList=branchA:branchC2188 configBranches =gitConfigList("git-p4.branchList")2189for branch in configBranches:2190if branch:2191(source, destination) = branch.split(":")2192 self.knownBranches[destination] = source21932194 lostAndFoundBranches.discard(destination)21952196if source not in self.knownBranches:2197 lostAndFoundBranches.add(source)219821992200for branch in lostAndFoundBranches:2201 self.knownBranches[branch] = branch22022203defgetBranchMappingFromGitBranches(self):2204 branches =p4BranchesInGit(self.importIntoRemotes)2205for branch in branches.keys():2206if branch =="master":2207 branch ="main"2208else:2209 branch = branch[len(self.projectName):]2210 self.knownBranches[branch] = branch22112212deflistExistingP4GitBranches(self):2213# branches holds mapping from name to commit2214 branches =p4BranchesInGit(self.importIntoRemotes)2215 self.p4BranchesInGit = branches.keys()2216for branch in branches.keys():2217 self.initialParents[self.refPrefix + branch] = branches[branch]22182219defupdateOptionDict(self, d):2220 option_keys = {}2221if self.keepRepoPath:2222 option_keys['keepRepoPath'] =122232224 d["options"] =' '.join(sorted(option_keys.keys()))22252226defreadOptions(self, d):2227 self.keepRepoPath = (d.has_key('options')2228and('keepRepoPath'in d['options']))22292230defgitRefForBranch(self, branch):2231if branch =="main":2232return self.refPrefix +"master"22332234iflen(branch) <=0:2235return branch22362237return self.refPrefix + self.projectName + branch22382239defgitCommitByP4Change(self, ref, change):2240if self.verbose:2241print"looking in ref "+ ref +" for change%susing bisect..."% change22422243 earliestCommit =""2244 latestCommit =parseRevision(ref)22452246while True:2247if self.verbose:2248print"trying: earliest%slatest%s"% (earliestCommit, latestCommit)2249 next =read_pipe("git rev-list --bisect%s %s"% (latestCommit, earliestCommit)).strip()2250iflen(next) ==0:2251if self.verbose:2252print"argh"2253return""2254 log =extractLogMessageFromGitCommit(next)2255 settings =extractSettingsGitLog(log)2256 currentChange =int(settings['change'])2257if self.verbose:2258print"current change%s"% currentChange22592260if currentChange == change:2261if self.verbose:2262print"found%s"% next2263return next22642265if currentChange < change:2266 earliestCommit ="^%s"% next2267else:2268 latestCommit ="%s"% next22692270return""22712272defimportNewBranch(self, branch, maxChange):2273# make fast-import flush all changes to disk and update the refs using the checkpoint2274# command so that we can try to find the branch parent in the git history2275 self.gitStream.write("checkpoint\n\n");2276 self.gitStream.flush();2277 branchPrefix = self.depotPaths[0] + branch +"/"2278range="@1,%s"% maxChange2279#print "prefix" + branchPrefix2280 changes =p4ChangesForPaths([branchPrefix],range)2281iflen(changes) <=0:2282return False2283 firstChange = changes[0]2284#print "first change in branch: %s" % firstChange2285 sourceBranch = self.knownBranches[branch]2286 sourceDepotPath = self.depotPaths[0] + sourceBranch2287 sourceRef = self.gitRefForBranch(sourceBranch)2288#print "source " + sourceBranch22892290 branchParentChange =int(p4Cmd(["changes","-m","1","%s...@1,%s"% (sourceDepotPath, firstChange)])["change"])2291#print "branch parent: %s" % branchParentChange2292 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)2293iflen(gitParent) >0:2294 self.initialParents[self.gitRefForBranch(branch)] = gitParent2295#print "parent git commit: %s" % gitParent22962297 self.importChanges(changes)2298return True22992300defsearchParent(self, parent, branch, target):2301 parentFound =False2302for blob inread_pipe_lines(["git","rev-list","--reverse","--no-merges", parent]):2303 blob = blob.strip()2304iflen(read_pipe(["git","diff-tree", blob, target])) ==0:2305 parentFound =True2306if self.verbose:2307print"Found parent of%sin commit%s"% (branch, blob)2308break2309if parentFound:2310return blob2311else:2312return None23132314defimportChanges(self, changes):2315 cnt =12316for change in changes:2317 description =p4Cmd(["describe",str(change)])2318 self.updateOptionDict(description)23192320if not self.silent:2321 sys.stdout.write("\rImporting revision%s(%s%%)"% (change, cnt *100/len(changes)))2322 sys.stdout.flush()2323 cnt = cnt +123242325try:2326if self.detectBranches:2327 branches = self.splitFilesIntoBranches(description)2328for branch in branches.keys():2329## HACK --hwn2330 branchPrefix = self.depotPaths[0] + branch +"/"23312332 parent =""23332334 filesForCommit = branches[branch]23352336if self.verbose:2337print"branch is%s"% branch23382339 self.updatedBranches.add(branch)23402341if branch not in self.createdBranches:2342 self.createdBranches.add(branch)2343 parent = self.knownBranches[branch]2344if parent == branch:2345 parent =""2346else:2347 fullBranch = self.projectName + branch2348if fullBranch not in self.p4BranchesInGit:2349if not self.silent:2350print("\nImporting new branch%s"% fullBranch);2351if self.importNewBranch(branch, change -1):2352 parent =""2353 self.p4BranchesInGit.append(fullBranch)2354if not self.silent:2355print("\nResuming with change%s"% change);23562357if self.verbose:2358print"parent determined through known branches:%s"% parent23592360 branch = self.gitRefForBranch(branch)2361 parent = self.gitRefForBranch(parent)23622363if self.verbose:2364print"looking for initial parent for%s; current parent is%s"% (branch, parent)23652366iflen(parent) ==0and branch in self.initialParents:2367 parent = self.initialParents[branch]2368del self.initialParents[branch]23692370 blob =None2371iflen(parent) >0:2372 tempBranch = os.path.join(self.tempBranchLocation,"%d"% (change))2373if self.verbose:2374print"Creating temporary branch: "+ tempBranch2375 self.commit(description, filesForCommit, tempBranch, [branchPrefix])2376 self.tempBranches.append(tempBranch)2377 self.checkpoint()2378 blob = self.searchParent(parent, branch, tempBranch)2379if blob:2380 self.commit(description, filesForCommit, branch, [branchPrefix], blob)2381else:2382if self.verbose:2383print"Parent of%snot found. Committing into head of%s"% (branch, parent)2384 self.commit(description, filesForCommit, branch, [branchPrefix], parent)2385else:2386 files = self.extractFilesFromCommit(description)2387 self.commit(description, files, self.branch, self.depotPaths,2388 self.initialParent)2389 self.initialParent =""2390exceptIOError:2391print self.gitError.read()2392 sys.exit(1)23932394defimportHeadRevision(self, revision):2395print"Doing initial import of%sfrom revision%sinto%s"% (' '.join(self.depotPaths), revision, self.branch)23962397 details = {}2398 details["user"] ="git perforce import user"2399 details["desc"] = ("Initial import of%sfrom the state at revision%s\n"2400% (' '.join(self.depotPaths), revision))2401 details["change"] = revision2402 newestRevision =024032404 fileCnt =02405 fileArgs = ["%s...%s"% (p,revision)for p in self.depotPaths]24062407for info inp4CmdList(["files"] + fileArgs):24082409if'code'in info and info['code'] =='error':2410 sys.stderr.write("p4 returned an error:%s\n"2411% info['data'])2412if info['data'].find("must refer to client") >=0:2413 sys.stderr.write("This particular p4 error is misleading.\n")2414 sys.stderr.write("Perhaps the depot path was misspelled.\n");2415 sys.stderr.write("Depot path:%s\n"%" ".join(self.depotPaths))2416 sys.exit(1)2417if'p4ExitCode'in info:2418 sys.stderr.write("p4 exitcode:%s\n"% info['p4ExitCode'])2419 sys.exit(1)242024212422 change =int(info["change"])2423if change > newestRevision:2424 newestRevision = change24252426if info["action"]in self.delete_actions:2427# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!2428#fileCnt = fileCnt + 12429continue24302431for prop in["depotFile","rev","action","type"]:2432 details["%s%s"% (prop, fileCnt)] = info[prop]24332434 fileCnt = fileCnt +124352436 details["change"] = newestRevision24372438# Use time from top-most change so that all git p4 clones of2439# the same p4 repo have the same commit SHA1s.2440 res =p4CmdList("describe -s%d"% newestRevision)2441 newestTime =None2442for r in res:2443if r.has_key('time'):2444 newestTime =int(r['time'])2445if newestTime is None:2446die("\"describe -s\"on newest change%ddid not give a time")2447 details["time"] = newestTime24482449 self.updateOptionDict(details)2450try:2451 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)2452exceptIOError:2453print"IO error with git fast-import. Is your git version recent enough?"2454print self.gitError.read()245524562457defrun(self, args):2458 self.depotPaths = []2459 self.changeRange =""2460 self.initialParent =""2461 self.previousDepotPaths = []24622463# map from branch depot path to parent branch2464 self.knownBranches = {}2465 self.initialParents = {}2466 self.hasOrigin =originP4BranchesExist()2467if not self.syncWithOrigin:2468 self.hasOrigin =False24692470if self.importIntoRemotes:2471 self.refPrefix ="refs/remotes/p4/"2472else:2473 self.refPrefix ="refs/heads/p4/"24742475if self.syncWithOrigin and self.hasOrigin:2476if not self.silent:2477print"Syncing with origin first by calling git fetch origin"2478system("git fetch origin")24792480iflen(self.branch) ==0:2481 self.branch = self.refPrefix +"master"2482ifgitBranchExists("refs/heads/p4")and self.importIntoRemotes:2483system("git update-ref%srefs/heads/p4"% self.branch)2484system("git branch -D p4");2485# create it /after/ importing, when master exists2486if notgitBranchExists(self.refPrefix +"HEAD")and self.importIntoRemotes andgitBranchExists(self.branch):2487system("git symbolic-ref%sHEAD%s"% (self.refPrefix, self.branch))24882489# accept either the command-line option, or the configuration variable2490if self.useClientSpec:2491# will use this after clone to set the variable2492 self.useClientSpec_from_options =True2493else:2494ifgitConfig("git-p4.useclientspec","--bool") =="true":2495 self.useClientSpec =True2496if self.useClientSpec:2497 self.clientSpecDirs =getClientSpec()24982499# TODO: should always look at previous commits,2500# merge with previous imports, if possible.2501if args == []:2502if self.hasOrigin:2503createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)2504 self.listExistingP4GitBranches()25052506iflen(self.p4BranchesInGit) >1:2507if not self.silent:2508print"Importing from/into multiple branches"2509 self.detectBranches =True25102511if self.verbose:2512print"branches:%s"% self.p4BranchesInGit25132514 p4Change =02515for branch in self.p4BranchesInGit:2516 logMsg =extractLogMessageFromGitCommit(self.refPrefix + branch)25172518 settings =extractSettingsGitLog(logMsg)25192520 self.readOptions(settings)2521if(settings.has_key('depot-paths')2522and settings.has_key('change')):2523 change =int(settings['change']) +12524 p4Change =max(p4Change, change)25252526 depotPaths =sorted(settings['depot-paths'])2527if self.previousDepotPaths == []:2528 self.previousDepotPaths = depotPaths2529else:2530 paths = []2531for(prev, cur)inzip(self.previousDepotPaths, depotPaths):2532 prev_list = prev.split("/")2533 cur_list = cur.split("/")2534for i inrange(0,min(len(cur_list),len(prev_list))):2535if cur_list[i] <> prev_list[i]:2536 i = i -12537break25382539 paths.append("/".join(cur_list[:i +1]))25402541 self.previousDepotPaths = paths25422543if p4Change >0:2544 self.depotPaths =sorted(self.previousDepotPaths)2545 self.changeRange ="@%s,#head"% p4Change2546if not self.detectBranches:2547 self.initialParent =parseRevision(self.branch)2548if not self.silent and not self.detectBranches:2549print"Performing incremental import into%sgit branch"% self.branch25502551if not self.branch.startswith("refs/"):2552 self.branch ="refs/heads/"+ self.branch25532554iflen(args) ==0and self.depotPaths:2555if not self.silent:2556print"Depot paths:%s"%' '.join(self.depotPaths)2557else:2558if self.depotPaths and self.depotPaths != args:2559print("previous import used depot path%sand now%swas specified. "2560"This doesn't work!"% (' '.join(self.depotPaths),2561' '.join(args)))2562 sys.exit(1)25632564 self.depotPaths =sorted(args)25652566 revision =""2567 self.users = {}25682569# Make sure no revision specifiers are used when --changesfile2570# is specified.2571 bad_changesfile =False2572iflen(self.changesFile) >0:2573for p in self.depotPaths:2574if p.find("@") >=0or p.find("#") >=0:2575 bad_changesfile =True2576break2577if bad_changesfile:2578die("Option --changesfile is incompatible with revision specifiers")25792580 newPaths = []2581for p in self.depotPaths:2582if p.find("@") != -1:2583 atIdx = p.index("@")2584 self.changeRange = p[atIdx:]2585if self.changeRange =="@all":2586 self.changeRange =""2587elif','not in self.changeRange:2588 revision = self.changeRange2589 self.changeRange =""2590 p = p[:atIdx]2591elif p.find("#") != -1:2592 hashIdx = p.index("#")2593 revision = p[hashIdx:]2594 p = p[:hashIdx]2595elif self.previousDepotPaths == []:2596# pay attention to changesfile, if given, else import2597# the entire p4 tree at the head revision2598iflen(self.changesFile) ==0:2599 revision ="#head"26002601 p = re.sub("\.\.\.$","", p)2602if not p.endswith("/"):2603 p +="/"26042605 newPaths.append(p)26062607 self.depotPaths = newPaths26082609 self.loadUserMapFromCache()2610 self.labels = {}2611if self.detectLabels:2612 self.getLabels();26132614if self.detectBranches:2615## FIXME - what's a P4 projectName ?2616 self.projectName = self.guessProjectName()26172618if self.hasOrigin:2619 self.getBranchMappingFromGitBranches()2620else:2621 self.getBranchMapping()2622if self.verbose:2623print"p4-git branches:%s"% self.p4BranchesInGit2624print"initial parents:%s"% self.initialParents2625for b in self.p4BranchesInGit:2626if b !="master":26272628## FIXME2629 b = b[len(self.projectName):]2630 self.createdBranches.add(b)26312632 self.tz ="%+03d%02d"% (- time.timezone /3600, ((- time.timezone %3600) /60))26332634 importProcess = subprocess.Popen(["git","fast-import"],2635 stdin=subprocess.PIPE, stdout=subprocess.PIPE,2636 stderr=subprocess.PIPE);2637 self.gitOutput = importProcess.stdout2638 self.gitStream = importProcess.stdin2639 self.gitError = importProcess.stderr26402641if revision:2642 self.importHeadRevision(revision)2643else:2644 changes = []26452646iflen(self.changesFile) >0:2647 output =open(self.changesFile).readlines()2648 changeSet =set()2649for line in output:2650 changeSet.add(int(line))26512652for change in changeSet:2653 changes.append(change)26542655 changes.sort()2656else:2657# catch "git p4 sync" with no new branches, in a repo that2658# does not have any existing p4 branches2659iflen(args) ==0and not self.p4BranchesInGit:2660die("No remote p4 branches. Perhaps you never did\"git p4 clone\"in here.");2661if self.verbose:2662print"Getting p4 changes for%s...%s"% (', '.join(self.depotPaths),2663 self.changeRange)2664 changes =p4ChangesForPaths(self.depotPaths, self.changeRange)26652666iflen(self.maxChanges) >0:2667 changes = changes[:min(int(self.maxChanges),len(changes))]26682669iflen(changes) ==0:2670if not self.silent:2671print"No changes to import!"2672else:2673if not self.silent and not self.detectBranches:2674print"Import destination:%s"% self.branch26752676 self.updatedBranches =set()26772678 self.importChanges(changes)26792680if not self.silent:2681print""2682iflen(self.updatedBranches) >0:2683 sys.stdout.write("Updated branches: ")2684for b in self.updatedBranches:2685 sys.stdout.write("%s"% b)2686 sys.stdout.write("\n")26872688ifgitConfig("git-p4.importLabels","--bool") =="true":2689 self.importLabels = true26902691if self.importLabels:2692 p4Labels =getP4Labels(self.depotPaths)2693 gitTags =getGitTags()26942695 missingP4Labels = p4Labels - gitTags2696 self.importP4Labels(self.gitStream, missingP4Labels)26972698 self.gitStream.close()2699if importProcess.wait() !=0:2700die("fast-import failed:%s"% self.gitError.read())2701 self.gitOutput.close()2702 self.gitError.close()27032704# Cleanup temporary branches created during import2705if self.tempBranches != []:2706for branch in self.tempBranches:2707read_pipe("git update-ref -d%s"% branch)2708 os.rmdir(os.path.join(os.environ.get("GIT_DIR",".git"), self.tempBranchLocation))27092710return True27112712classP4Rebase(Command):2713def__init__(self):2714 Command.__init__(self)2715 self.options = [2716 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),2717 optparse.make_option("--verbose", dest="verbose", action="store_true"),2718]2719 self.verbose =False2720 self.importLabels =False2721 self.description = ("Fetches the latest revision from perforce and "2722+"rebases the current work (branch) against it")27232724defrun(self, args):2725 sync =P4Sync()2726 sync.importLabels = self.importLabels2727 sync.run([])27282729return self.rebase()27302731defrebase(self):2732if os.system("git update-index --refresh") !=0:2733die("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.");2734iflen(read_pipe("git diff-index HEAD --")) >0:2735die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");27362737[upstream, settings] =findUpstreamBranchPoint()2738iflen(upstream) ==0:2739die("Cannot find upstream branchpoint for rebase")27402741# the branchpoint may be p4/foo~3, so strip off the parent2742 upstream = re.sub("~[0-9]+$","", upstream)27432744print"Rebasing the current branch onto%s"% upstream2745 oldHead =read_pipe("git rev-parse HEAD").strip()2746system("git rebase%s"% upstream)2747system("git diff-tree --stat --summary -M%sHEAD"% oldHead)2748return True27492750classP4Clone(P4Sync):2751def__init__(self):2752 P4Sync.__init__(self)2753 self.description ="Creates a new git repository and imports from Perforce into it"2754 self.usage ="usage: %prog [options] //depot/path[@revRange]"2755 self.options += [2756 optparse.make_option("--destination", dest="cloneDestination",2757 action='store', default=None,2758help="where to leave result of the clone"),2759 optparse.make_option("-/", dest="cloneExclude",2760 action="append",type="string",2761help="exclude depot path"),2762 optparse.make_option("--bare", dest="cloneBare",2763 action="store_true", default=False),2764]2765 self.cloneDestination =None2766 self.needsGit =False2767 self.cloneBare =False27682769# This is required for the "append" cloneExclude action2770defensure_value(self, attr, value):2771if nothasattr(self, attr)orgetattr(self, attr)is None:2772setattr(self, attr, value)2773returngetattr(self, attr)27742775defdefaultDestination(self, args):2776## TODO: use common prefix of args?2777 depotPath = args[0]2778 depotDir = re.sub("(@[^@]*)$","", depotPath)2779 depotDir = re.sub("(#[^#]*)$","", depotDir)2780 depotDir = re.sub(r"\.\.\.$","", depotDir)2781 depotDir = re.sub(r"/$","", depotDir)2782return os.path.split(depotDir)[1]27832784defrun(self, args):2785iflen(args) <1:2786return False27872788if self.keepRepoPath and not self.cloneDestination:2789 sys.stderr.write("Must specify destination for --keep-path\n")2790 sys.exit(1)27912792 depotPaths = args27932794if not self.cloneDestination andlen(depotPaths) >1:2795 self.cloneDestination = depotPaths[-1]2796 depotPaths = depotPaths[:-1]27972798 self.cloneExclude = ["/"+p for p in self.cloneExclude]2799for p in depotPaths:2800if not p.startswith("//"):2801return False28022803if not self.cloneDestination:2804 self.cloneDestination = self.defaultDestination(args)28052806print"Importing from%sinto%s"% (', '.join(depotPaths), self.cloneDestination)28072808if not os.path.exists(self.cloneDestination):2809 os.makedirs(self.cloneDestination)2810chdir(self.cloneDestination)28112812 init_cmd = ["git","init"]2813if self.cloneBare:2814 init_cmd.append("--bare")2815 subprocess.check_call(init_cmd)28162817if not P4Sync.run(self, depotPaths):2818return False2819if self.branch !="master":2820if self.importIntoRemotes:2821 masterbranch ="refs/remotes/p4/master"2822else:2823 masterbranch ="refs/heads/p4/master"2824ifgitBranchExists(masterbranch):2825system("git branch master%s"% masterbranch)2826if not self.cloneBare:2827system("git checkout -f")2828else:2829print"Could not detect main branch. No checkout/master branch created."28302831# auto-set this variable if invoked with --use-client-spec2832if self.useClientSpec_from_options:2833system("git config --bool git-p4.useclientspec true")28342835return True28362837classP4Branches(Command):2838def__init__(self):2839 Command.__init__(self)2840 self.options = [ ]2841 self.description = ("Shows the git branches that hold imports and their "2842+"corresponding perforce depot paths")2843 self.verbose =False28442845defrun(self, args):2846iforiginP4BranchesExist():2847createOrUpdateBranchesFromOrigin()28482849 cmdline ="git rev-parse --symbolic "2850 cmdline +=" --remotes"28512852for line inread_pipe_lines(cmdline):2853 line = line.strip()28542855if not line.startswith('p4/')or line =="p4/HEAD":2856continue2857 branch = line28582859 log =extractLogMessageFromGitCommit("refs/remotes/%s"% branch)2860 settings =extractSettingsGitLog(log)28612862print"%s<=%s(%s)"% (branch,",".join(settings["depot-paths"]), settings["change"])2863return True28642865classHelpFormatter(optparse.IndentedHelpFormatter):2866def__init__(self):2867 optparse.IndentedHelpFormatter.__init__(self)28682869defformat_description(self, description):2870if description:2871return description +"\n"2872else:2873return""28742875defprintUsage(commands):2876print"usage:%s<command> [options]"% sys.argv[0]2877print""2878print"valid commands:%s"%", ".join(commands)2879print""2880print"Try%s<command> --help for command specific help."% sys.argv[0]2881print""28822883commands = {2884"debug": P4Debug,2885"submit": P4Submit,2886"commit": P4Submit,2887"sync": P4Sync,2888"rebase": P4Rebase,2889"clone": P4Clone,2890"rollback": P4RollBack,2891"branches": P4Branches2892}289328942895defmain():2896iflen(sys.argv[1:]) ==0:2897printUsage(commands.keys())2898 sys.exit(2)28992900 cmd =""2901 cmdName = sys.argv[1]2902try:2903 klass = commands[cmdName]2904 cmd =klass()2905exceptKeyError:2906print"unknown command%s"% cmdName2907print""2908printUsage(commands.keys())2909 sys.exit(2)29102911 options = cmd.options2912 cmd.gitdir = os.environ.get("GIT_DIR",None)29132914 args = sys.argv[2:]29152916iflen(options) >0:2917if cmd.needsGit:2918 options.append(optparse.make_option("--git-dir", dest="gitdir"))29192920 parser = optparse.OptionParser(cmd.usage.replace("%prog","%prog "+ cmdName),2921 options,2922 description = cmd.description,2923 formatter =HelpFormatter())29242925(cmd, args) = parser.parse_args(sys.argv[2:], cmd);2926global verbose2927 verbose = cmd.verbose2928if cmd.needsGit:2929if cmd.gitdir ==None:2930 cmd.gitdir = os.path.abspath(".git")2931if notisValidGitDir(cmd.gitdir):2932 cmd.gitdir =read_pipe("git rev-parse --git-dir").strip()2933if os.path.exists(cmd.gitdir):2934 cdup =read_pipe("git rev-parse --show-cdup").strip()2935iflen(cdup) >0:2936chdir(cdup);29372938if notisValidGitDir(cmd.gitdir):2939ifisValidGitDir(cmd.gitdir +"/.git"):2940 cmd.gitdir +="/.git"2941else:2942die("fatal: cannot locate git repository at%s"% cmd.gitdir)29432944 os.environ["GIT_DIR"] = cmd.gitdir29452946if not cmd.run(args):2947 parser.print_help()2948 sys.exit(2)294929502951if __name__ =='__main__':2952main()