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-zA-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 123defp4_has_command(cmd): 124"""Ask p4 for help on this command. If it returns an error, the 125 command does not exist in this version of p4.""" 126 real_cmd =p4_build_cmd(["help", cmd]) 127 p = subprocess.Popen(real_cmd, stdout=subprocess.PIPE, 128 stderr=subprocess.PIPE) 129 p.communicate() 130return p.returncode ==0 131 132defsystem(cmd): 133 expand =isinstance(cmd,basestring) 134if verbose: 135 sys.stderr.write("executing%s\n"%str(cmd)) 136 subprocess.check_call(cmd, shell=expand) 137 138defp4_system(cmd): 139"""Specifically invoke p4 as the system command. """ 140 real_cmd =p4_build_cmd(cmd) 141 expand =isinstance(real_cmd, basestring) 142 subprocess.check_call(real_cmd, shell=expand) 143 144defp4_integrate(src, dest): 145p4_system(["integrate","-Dt",wildcard_encode(src),wildcard_encode(dest)]) 146 147defp4_sync(f, *options): 148p4_system(["sync"] +list(options) + [wildcard_encode(f)]) 149 150defp4_add(f): 151# forcibly add file names with wildcards 152ifwildcard_present(f): 153p4_system(["add","-f", f]) 154else: 155p4_system(["add", f]) 156 157defp4_delete(f): 158p4_system(["delete",wildcard_encode(f)]) 159 160defp4_edit(f): 161p4_system(["edit",wildcard_encode(f)]) 162 163defp4_revert(f): 164p4_system(["revert",wildcard_encode(f)]) 165 166defp4_reopen(type, f): 167p4_system(["reopen","-t",type,wildcard_encode(f)]) 168 169defp4_move(src, dest): 170p4_system(["move","-k",wildcard_encode(src),wildcard_encode(dest)]) 171 172# 173# Canonicalize the p4 type and return a tuple of the 174# base type, plus any modifiers. See "p4 help filetypes" 175# for a list and explanation. 176# 177defsplit_p4_type(p4type): 178 179 p4_filetypes_historical = { 180"ctempobj":"binary+Sw", 181"ctext":"text+C", 182"cxtext":"text+Cx", 183"ktext":"text+k", 184"kxtext":"text+kx", 185"ltext":"text+F", 186"tempobj":"binary+FSw", 187"ubinary":"binary+F", 188"uresource":"resource+F", 189"uxbinary":"binary+Fx", 190"xbinary":"binary+x", 191"xltext":"text+Fx", 192"xtempobj":"binary+Swx", 193"xtext":"text+x", 194"xunicode":"unicode+x", 195"xutf16":"utf16+x", 196} 197if p4type in p4_filetypes_historical: 198 p4type = p4_filetypes_historical[p4type] 199 mods ="" 200 s = p4type.split("+") 201 base = s[0] 202 mods ="" 203iflen(s) >1: 204 mods = s[1] 205return(base, mods) 206 207# 208# return the raw p4 type of a file (text, text+ko, etc) 209# 210defp4_type(file): 211 results =p4CmdList(["fstat","-T","headType",file]) 212return results[0]['headType'] 213 214# 215# Given a type base and modifier, return a regexp matching 216# the keywords that can be expanded in the file 217# 218defp4_keywords_regexp_for_type(base, type_mods): 219if base in("text","unicode","binary"): 220 kwords =None 221if"ko"in type_mods: 222 kwords ='Id|Header' 223elif"k"in type_mods: 224 kwords ='Id|Header|Author|Date|DateTime|Change|File|Revision' 225else: 226return None 227 pattern = r""" 228 \$ # Starts with a dollar, followed by... 229 (%s) # one of the keywords, followed by... 230 (:[^$]+)? # possibly an old expansion, followed by... 231 \$ # another dollar 232 """% kwords 233return pattern 234else: 235return None 236 237# 238# Given a file, return a regexp matching the possible 239# RCS keywords that will be expanded, or None for files 240# with kw expansion turned off. 241# 242defp4_keywords_regexp_for_file(file): 243if not os.path.exists(file): 244return None 245else: 246(type_base, type_mods) =split_p4_type(p4_type(file)) 247returnp4_keywords_regexp_for_type(type_base, type_mods) 248 249defsetP4ExecBit(file, mode): 250# Reopens an already open file and changes the execute bit to match 251# the execute bit setting in the passed in mode. 252 253 p4Type ="+x" 254 255if notisModeExec(mode): 256 p4Type =getP4OpenedType(file) 257 p4Type = re.sub('^([cku]?)x(.*)','\\1\\2', p4Type) 258 p4Type = re.sub('(.*?\+.*?)x(.*?)','\\1\\2', p4Type) 259if p4Type[-1] =="+": 260 p4Type = p4Type[0:-1] 261 262p4_reopen(p4Type,file) 263 264defgetP4OpenedType(file): 265# Returns the perforce file type for the given file. 266 267 result =p4_read_pipe(["opened",wildcard_encode(file)]) 268 match = re.match(".*\((.+)\)\r?$", result) 269if match: 270return match.group(1) 271else: 272die("Could not determine file type for%s(result: '%s')"% (file, result)) 273 274# Return the set of all p4 labels 275defgetP4Labels(depotPaths): 276 labels =set() 277ifisinstance(depotPaths,basestring): 278 depotPaths = [depotPaths] 279 280for l inp4CmdList(["labels"] + ["%s..."% p for p in depotPaths]): 281 label = l['label'] 282 labels.add(label) 283 284return labels 285 286# Return the set of all git tags 287defgetGitTags(): 288 gitTags =set() 289for line inread_pipe_lines(["git","tag"]): 290 tag = line.strip() 291 gitTags.add(tag) 292return gitTags 293 294defdiffTreePattern(): 295# This is a simple generator for the diff tree regex pattern. This could be 296# a class variable if this and parseDiffTreeEntry were a part of a class. 297 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)') 298while True: 299yield pattern 300 301defparseDiffTreeEntry(entry): 302"""Parses a single diff tree entry into its component elements. 303 304 See git-diff-tree(1) manpage for details about the format of the diff 305 output. This method returns a dictionary with the following elements: 306 307 src_mode - The mode of the source file 308 dst_mode - The mode of the destination file 309 src_sha1 - The sha1 for the source file 310 dst_sha1 - The sha1 fr the destination file 311 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc) 312 status_score - The score for the status (applicable for 'C' and 'R' 313 statuses). This is None if there is no score. 314 src - The path for the source file. 315 dst - The path for the destination file. This is only present for 316 copy or renames. If it is not present, this is None. 317 318 If the pattern is not matched, None is returned.""" 319 320 match =diffTreePattern().next().match(entry) 321if match: 322return{ 323'src_mode': match.group(1), 324'dst_mode': match.group(2), 325'src_sha1': match.group(3), 326'dst_sha1': match.group(4), 327'status': match.group(5), 328'status_score': match.group(6), 329'src': match.group(7), 330'dst': match.group(10) 331} 332return None 333 334defisModeExec(mode): 335# Returns True if the given git mode represents an executable file, 336# otherwise False. 337return mode[-3:] =="755" 338 339defisModeExecChanged(src_mode, dst_mode): 340returnisModeExec(src_mode) !=isModeExec(dst_mode) 341 342defp4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None): 343 344ifisinstance(cmd,basestring): 345 cmd ="-G "+ cmd 346 expand =True 347else: 348 cmd = ["-G"] + cmd 349 expand =False 350 351 cmd =p4_build_cmd(cmd) 352if verbose: 353 sys.stderr.write("Opening pipe:%s\n"%str(cmd)) 354 355# Use a temporary file to avoid deadlocks without 356# subprocess.communicate(), which would put another copy 357# of stdout into memory. 358 stdin_file =None 359if stdin is not None: 360 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode) 361ifisinstance(stdin,basestring): 362 stdin_file.write(stdin) 363else: 364for i in stdin: 365 stdin_file.write(i +'\n') 366 stdin_file.flush() 367 stdin_file.seek(0) 368 369 p4 = subprocess.Popen(cmd, 370 shell=expand, 371 stdin=stdin_file, 372 stdout=subprocess.PIPE) 373 374 result = [] 375try: 376while True: 377 entry = marshal.load(p4.stdout) 378if cb is not None: 379cb(entry) 380else: 381 result.append(entry) 382exceptEOFError: 383pass 384 exitCode = p4.wait() 385if exitCode !=0: 386 entry = {} 387 entry["p4ExitCode"] = exitCode 388 result.append(entry) 389 390return result 391 392defp4Cmd(cmd): 393list=p4CmdList(cmd) 394 result = {} 395for entry inlist: 396 result.update(entry) 397return result; 398 399defp4Where(depotPath): 400if not depotPath.endswith("/"): 401 depotPath +="/" 402 depotPath = depotPath +"..." 403 outputList =p4CmdList(["where", depotPath]) 404 output =None 405for entry in outputList: 406if"depotFile"in entry: 407if entry["depotFile"] == depotPath: 408 output = entry 409break 410elif"data"in entry: 411 data = entry.get("data") 412 space = data.find(" ") 413if data[:space] == depotPath: 414 output = entry 415break 416if output ==None: 417return"" 418if output["code"] =="error": 419return"" 420 clientPath ="" 421if"path"in output: 422 clientPath = output.get("path") 423elif"data"in output: 424 data = output.get("data") 425 lastSpace = data.rfind(" ") 426 clientPath = data[lastSpace +1:] 427 428if clientPath.endswith("..."): 429 clientPath = clientPath[:-3] 430return clientPath 431 432defcurrentGitBranch(): 433returnread_pipe("git name-rev HEAD").split(" ")[1].strip() 434 435defisValidGitDir(path): 436if(os.path.exists(path +"/HEAD") 437and os.path.exists(path +"/refs")and os.path.exists(path +"/objects")): 438return True; 439return False 440 441defparseRevision(ref): 442returnread_pipe("git rev-parse%s"% ref).strip() 443 444defbranchExists(ref): 445 rev =read_pipe(["git","rev-parse","-q","--verify", ref], 446 ignore_error=True) 447returnlen(rev) >0 448 449defextractLogMessageFromGitCommit(commit): 450 logMessage ="" 451 452## fixme: title is first line of commit, not 1st paragraph. 453 foundTitle =False 454for log inread_pipe_lines("git cat-file commit%s"% commit): 455if not foundTitle: 456iflen(log) ==1: 457 foundTitle =True 458continue 459 460 logMessage += log 461return logMessage 462 463defextractSettingsGitLog(log): 464 values = {} 465for line in log.split("\n"): 466 line = line.strip() 467 m = re.search(r"^ *\[git-p4: (.*)\]$", line) 468if not m: 469continue 470 471 assignments = m.group(1).split(':') 472for a in assignments: 473 vals = a.split('=') 474 key = vals[0].strip() 475 val = ('='.join(vals[1:])).strip() 476if val.endswith('\"')and val.startswith('"'): 477 val = val[1:-1] 478 479 values[key] = val 480 481 paths = values.get("depot-paths") 482if not paths: 483 paths = values.get("depot-path") 484if paths: 485 values['depot-paths'] = paths.split(',') 486return values 487 488defgitBranchExists(branch): 489 proc = subprocess.Popen(["git","rev-parse", branch], 490 stderr=subprocess.PIPE, stdout=subprocess.PIPE); 491return proc.wait() ==0; 492 493_gitConfig = {} 494defgitConfig(key, args =None):# set args to "--bool", for instance 495if not _gitConfig.has_key(key): 496 argsFilter ="" 497if args !=None: 498 argsFilter ="%s"% args 499 cmd ="git config%s%s"% (argsFilter, key) 500 _gitConfig[key] =read_pipe(cmd, ignore_error=True).strip() 501return _gitConfig[key] 502 503defgitConfigList(key): 504if not _gitConfig.has_key(key): 505 _gitConfig[key] =read_pipe("git config --get-all%s"% key, ignore_error=True).strip().split(os.linesep) 506return _gitConfig[key] 507 508defp4BranchesInGit(branchesAreInRemotes =True): 509 branches = {} 510 511 cmdline ="git rev-parse --symbolic " 512if branchesAreInRemotes: 513 cmdline +=" --remotes" 514else: 515 cmdline +=" --branches" 516 517for line inread_pipe_lines(cmdline): 518 line = line.strip() 519 520## only import to p4/ 521if not line.startswith('p4/')or line =="p4/HEAD": 522continue 523 branch = line 524 525# strip off p4 526 branch = re.sub("^p4/","", line) 527 528 branches[branch] =parseRevision(line) 529return branches 530 531deffindUpstreamBranchPoint(head ="HEAD"): 532 branches =p4BranchesInGit() 533# map from depot-path to branch name 534 branchByDepotPath = {} 535for branch in branches.keys(): 536 tip = branches[branch] 537 log =extractLogMessageFromGitCommit(tip) 538 settings =extractSettingsGitLog(log) 539if settings.has_key("depot-paths"): 540 paths =",".join(settings["depot-paths"]) 541 branchByDepotPath[paths] ="remotes/p4/"+ branch 542 543 settings =None 544 parent =0 545while parent <65535: 546 commit = head +"~%s"% parent 547 log =extractLogMessageFromGitCommit(commit) 548 settings =extractSettingsGitLog(log) 549if settings.has_key("depot-paths"): 550 paths =",".join(settings["depot-paths"]) 551if branchByDepotPath.has_key(paths): 552return[branchByDepotPath[paths], settings] 553 554 parent = parent +1 555 556return["", settings] 557 558defcreateOrUpdateBranchesFromOrigin(localRefPrefix ="refs/remotes/p4/", silent=True): 559if not silent: 560print("Creating/updating branch(es) in%sbased on origin branch(es)" 561% localRefPrefix) 562 563 originPrefix ="origin/p4/" 564 565for line inread_pipe_lines("git rev-parse --symbolic --remotes"): 566 line = line.strip() 567if(not line.startswith(originPrefix))or line.endswith("HEAD"): 568continue 569 570 headName = line[len(originPrefix):] 571 remoteHead = localRefPrefix + headName 572 originHead = line 573 574 original =extractSettingsGitLog(extractLogMessageFromGitCommit(originHead)) 575if(not original.has_key('depot-paths') 576or not original.has_key('change')): 577continue 578 579 update =False 580if notgitBranchExists(remoteHead): 581if verbose: 582print"creating%s"% remoteHead 583 update =True 584else: 585 settings =extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead)) 586if settings.has_key('change') >0: 587if settings['depot-paths'] == original['depot-paths']: 588 originP4Change =int(original['change']) 589 p4Change =int(settings['change']) 590if originP4Change > p4Change: 591print("%s(%s) is newer than%s(%s). " 592"Updating p4 branch from origin." 593% (originHead, originP4Change, 594 remoteHead, p4Change)) 595 update =True 596else: 597print("Ignoring:%swas imported from%swhile " 598"%swas imported from%s" 599% (originHead,','.join(original['depot-paths']), 600 remoteHead,','.join(settings['depot-paths']))) 601 602if update: 603system("git update-ref%s %s"% (remoteHead, originHead)) 604 605deforiginP4BranchesExist(): 606returngitBranchExists("origin")orgitBranchExists("origin/p4")orgitBranchExists("origin/p4/master") 607 608defp4ChangesForPaths(depotPaths, changeRange): 609assert depotPaths 610 cmd = ['changes'] 611for p in depotPaths: 612 cmd += ["%s...%s"% (p, changeRange)] 613 output =p4_read_pipe_lines(cmd) 614 615 changes = {} 616for line in output: 617 changeNum =int(line.split(" ")[1]) 618 changes[changeNum] =True 619 620 changelist = changes.keys() 621 changelist.sort() 622return changelist 623 624defp4PathStartsWith(path, prefix): 625# This method tries to remedy a potential mixed-case issue: 626# 627# If UserA adds //depot/DirA/file1 628# and UserB adds //depot/dira/file2 629# 630# we may or may not have a problem. If you have core.ignorecase=true, 631# we treat DirA and dira as the same directory 632 ignorecase =gitConfig("core.ignorecase","--bool") =="true" 633if ignorecase: 634return path.lower().startswith(prefix.lower()) 635return path.startswith(prefix) 636 637defgetClientSpec(): 638"""Look at the p4 client spec, create a View() object that contains 639 all the mappings, and return it.""" 640 641 specList =p4CmdList("client -o") 642iflen(specList) !=1: 643die('Output from "client -o" is%dlines, expecting 1'% 644len(specList)) 645 646# dictionary of all client parameters 647 entry = specList[0] 648 649# just the keys that start with "View" 650 view_keys = [ k for k in entry.keys()if k.startswith("View") ] 651 652# hold this new View 653 view =View() 654 655# append the lines, in order, to the view 656for view_num inrange(len(view_keys)): 657 k ="View%d"% view_num 658if k not in view_keys: 659die("Expected view key%smissing"% k) 660 view.append(entry[k]) 661 662return view 663 664defgetClientRoot(): 665"""Grab the client directory.""" 666 667 output =p4CmdList("client -o") 668iflen(output) !=1: 669die('Output from "client -o" is%dlines, expecting 1'%len(output)) 670 671 entry = output[0] 672if"Root"not in entry: 673die('Client has no "Root"') 674 675return entry["Root"] 676 677# 678# P4 wildcards are not allowed in filenames. P4 complains 679# if you simply add them, but you can force it with "-f", in 680# which case it translates them into %xx encoding internally. 681# 682defwildcard_decode(path): 683# Search for and fix just these four characters. Do % last so 684# that fixing it does not inadvertently create new %-escapes. 685# Cannot have * in a filename in windows; untested as to 686# what p4 would do in such a case. 687if not platform.system() =="Windows": 688 path = path.replace("%2A","*") 689 path = path.replace("%23","#") \ 690.replace("%40","@") \ 691.replace("%25","%") 692return path 693 694defwildcard_encode(path): 695# do % first to avoid double-encoding the %s introduced here 696 path = path.replace("%","%25") \ 697.replace("*","%2A") \ 698.replace("#","%23") \ 699.replace("@","%40") 700return path 701 702defwildcard_present(path): 703return path.translate(None,"*#@%") != path 704 705class Command: 706def__init__(self): 707 self.usage ="usage: %prog [options]" 708 self.needsGit =True 709 self.verbose =False 710 711class P4UserMap: 712def__init__(self): 713 self.userMapFromPerforceServer =False 714 self.myP4UserId =None 715 716defp4UserId(self): 717if self.myP4UserId: 718return self.myP4UserId 719 720 results =p4CmdList("user -o") 721for r in results: 722if r.has_key('User'): 723 self.myP4UserId = r['User'] 724return r['User'] 725die("Could not find your p4 user id") 726 727defp4UserIsMe(self, p4User): 728# return True if the given p4 user is actually me 729 me = self.p4UserId() 730if not p4User or p4User != me: 731return False 732else: 733return True 734 735defgetUserCacheFilename(self): 736 home = os.environ.get("HOME", os.environ.get("USERPROFILE")) 737return home +"/.gitp4-usercache.txt" 738 739defgetUserMapFromPerforceServer(self): 740if self.userMapFromPerforceServer: 741return 742 self.users = {} 743 self.emails = {} 744 745for output inp4CmdList("users"): 746if not output.has_key("User"): 747continue 748 self.users[output["User"]] = output["FullName"] +" <"+ output["Email"] +">" 749 self.emails[output["Email"]] = output["User"] 750 751 752 s ='' 753for(key, val)in self.users.items(): 754 s +="%s\t%s\n"% (key.expandtabs(1), val.expandtabs(1)) 755 756open(self.getUserCacheFilename(),"wb").write(s) 757 self.userMapFromPerforceServer =True 758 759defloadUserMapFromCache(self): 760 self.users = {} 761 self.userMapFromPerforceServer =False 762try: 763 cache =open(self.getUserCacheFilename(),"rb") 764 lines = cache.readlines() 765 cache.close() 766for line in lines: 767 entry = line.strip().split("\t") 768 self.users[entry[0]] = entry[1] 769exceptIOError: 770 self.getUserMapFromPerforceServer() 771 772classP4Debug(Command): 773def__init__(self): 774 Command.__init__(self) 775 self.options = [] 776 self.description ="A tool to debug the output of p4 -G." 777 self.needsGit =False 778 779defrun(self, args): 780 j =0 781for output inp4CmdList(args): 782print'Element:%d'% j 783 j +=1 784print output 785return True 786 787classP4RollBack(Command): 788def__init__(self): 789 Command.__init__(self) 790 self.options = [ 791 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true") 792] 793 self.description ="A tool to debug the multi-branch import. Don't use :)" 794 self.rollbackLocalBranches =False 795 796defrun(self, args): 797iflen(args) !=1: 798return False 799 maxChange =int(args[0]) 800 801if"p4ExitCode"inp4Cmd("changes -m 1"): 802die("Problems executing p4"); 803 804if self.rollbackLocalBranches: 805 refPrefix ="refs/heads/" 806 lines =read_pipe_lines("git rev-parse --symbolic --branches") 807else: 808 refPrefix ="refs/remotes/" 809 lines =read_pipe_lines("git rev-parse --symbolic --remotes") 810 811for line in lines: 812if self.rollbackLocalBranches or(line.startswith("p4/")and line !="p4/HEAD\n"): 813 line = line.strip() 814 ref = refPrefix + line 815 log =extractLogMessageFromGitCommit(ref) 816 settings =extractSettingsGitLog(log) 817 818 depotPaths = settings['depot-paths'] 819 change = settings['change'] 820 821 changed =False 822 823iflen(p4Cmd("changes -m 1 "+' '.join(['%s...@%s'% (p, maxChange) 824for p in depotPaths]))) ==0: 825print"Branch%sdid not exist at change%s, deleting."% (ref, maxChange) 826system("git update-ref -d%s`git rev-parse%s`"% (ref, ref)) 827continue 828 829while change andint(change) > maxChange: 830 changed =True 831if self.verbose: 832print"%sis at%s; rewinding towards%s"% (ref, change, maxChange) 833system("git update-ref%s\"%s^\""% (ref, ref)) 834 log =extractLogMessageFromGitCommit(ref) 835 settings =extractSettingsGitLog(log) 836 837 838 depotPaths = settings['depot-paths'] 839 change = settings['change'] 840 841if changed: 842print"%srewound to%s"% (ref, change) 843 844return True 845 846classP4Submit(Command, P4UserMap): 847 848 conflict_behavior_choices = ("ask","skip","quit") 849 850def__init__(self): 851 Command.__init__(self) 852 P4UserMap.__init__(self) 853 self.options = [ 854 optparse.make_option("--origin", dest="origin"), 855 optparse.make_option("-M", dest="detectRenames", action="store_true"), 856# preserve the user, requires relevant p4 permissions 857 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"), 858 optparse.make_option("--export-labels", dest="exportLabels", action="store_true"), 859 optparse.make_option("--dry-run","-n", dest="dry_run", action="store_true"), 860 optparse.make_option("--prepare-p4-only", dest="prepare_p4_only", action="store_true"), 861 optparse.make_option("--conflict", dest="conflict_behavior", 862 choices=self.conflict_behavior_choices) 863] 864 self.description ="Submit changes from git to the perforce depot." 865 self.usage +=" [name of git branch to submit into perforce depot]" 866 self.origin ="" 867 self.detectRenames =False 868 self.preserveUser =gitConfig("git-p4.preserveUser").lower() =="true" 869 self.dry_run =False 870 self.prepare_p4_only =False 871 self.conflict_behavior =None 872 self.isWindows = (platform.system() =="Windows") 873 self.exportLabels =False 874 self.p4HasMoveCommand =p4_has_command("move") 875 876defcheck(self): 877iflen(p4CmdList("opened ...")) >0: 878die("You have files opened with perforce! Close them before starting the sync.") 879 880defseparate_jobs_from_description(self, message): 881"""Extract and return a possible Jobs field in the commit 882 message. It goes into a separate section in the p4 change 883 specification. 884 885 A jobs line starts with "Jobs:" and looks like a new field 886 in a form. Values are white-space separated on the same 887 line or on following lines that start with a tab. 888 889 This does not parse and extract the full git commit message 890 like a p4 form. It just sees the Jobs: line as a marker 891 to pass everything from then on directly into the p4 form, 892 but outside the description section. 893 894 Return a tuple (stripped log message, jobs string).""" 895 896 m = re.search(r'^Jobs:', message, re.MULTILINE) 897if m is None: 898return(message,None) 899 900 jobtext = message[m.start():] 901 stripped_message = message[:m.start()].rstrip() 902return(stripped_message, jobtext) 903 904defprepareLogMessage(self, template, message, jobs): 905"""Edits the template returned from "p4 change -o" to insert 906 the message in the Description field, and the jobs text in 907 the Jobs field.""" 908 result ="" 909 910 inDescriptionSection =False 911 912for line in template.split("\n"): 913if line.startswith("#"): 914 result += line +"\n" 915continue 916 917if inDescriptionSection: 918if line.startswith("Files:")or line.startswith("Jobs:"): 919 inDescriptionSection =False 920# insert Jobs section 921if jobs: 922 result += jobs +"\n" 923else: 924continue 925else: 926if line.startswith("Description:"): 927 inDescriptionSection =True 928 line +="\n" 929for messageLine in message.split("\n"): 930 line +="\t"+ messageLine +"\n" 931 932 result += line +"\n" 933 934return result 935 936defpatchRCSKeywords(self,file, pattern): 937# Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern 938(handle, outFileName) = tempfile.mkstemp(dir='.') 939try: 940 outFile = os.fdopen(handle,"w+") 941 inFile =open(file,"r") 942 regexp = re.compile(pattern, re.VERBOSE) 943for line in inFile.readlines(): 944 line = regexp.sub(r'$\1$', line) 945 outFile.write(line) 946 inFile.close() 947 outFile.close() 948# Forcibly overwrite the original file 949 os.unlink(file) 950 shutil.move(outFileName,file) 951except: 952# cleanup our temporary file 953 os.unlink(outFileName) 954print"Failed to strip RCS keywords in%s"%file 955raise 956 957print"Patched up RCS keywords in%s"%file 958 959defp4UserForCommit(self,id): 960# Return the tuple (perforce user,git email) for a given git commit id 961 self.getUserMapFromPerforceServer() 962 gitEmail =read_pipe("git log --max-count=1 --format='%%ae'%s"%id) 963 gitEmail = gitEmail.strip() 964if not self.emails.has_key(gitEmail): 965return(None,gitEmail) 966else: 967return(self.emails[gitEmail],gitEmail) 968 969defcheckValidP4Users(self,commits): 970# check if any git authors cannot be mapped to p4 users 971foridin commits: 972(user,email) = self.p4UserForCommit(id) 973if not user: 974 msg ="Cannot find p4 user for email%sin commit%s."% (email,id) 975ifgitConfig('git-p4.allowMissingP4Users').lower() =="true": 976print"%s"% msg 977else: 978die("Error:%s\nSet git-p4.allowMissingP4Users to true to allow this."% msg) 979 980deflastP4Changelist(self): 981# Get back the last changelist number submitted in this client spec. This 982# then gets used to patch up the username in the change. If the same 983# client spec is being used by multiple processes then this might go 984# wrong. 985 results =p4CmdList("client -o")# find the current client 986 client =None 987for r in results: 988if r.has_key('Client'): 989 client = r['Client'] 990break 991if not client: 992die("could not get client spec") 993 results =p4CmdList(["changes","-c", client,"-m","1"]) 994for r in results: 995if r.has_key('change'): 996return r['change'] 997die("Could not get changelist number for last submit - cannot patch up user details") 998 999defmodifyChangelistUser(self, changelist, newUser):1000# fixup the user field of a changelist after it has been submitted.1001 changes =p4CmdList("change -o%s"% changelist)1002iflen(changes) !=1:1003die("Bad output from p4 change modifying%sto user%s"%1004(changelist, newUser))10051006 c = changes[0]1007if c['User'] == newUser:return# nothing to do1008 c['User'] = newUser1009input= marshal.dumps(c)10101011 result =p4CmdList("change -f -i", stdin=input)1012for r in result:1013if r.has_key('code'):1014if r['code'] =='error':1015die("Could not modify user field of changelist%sto%s:%s"% (changelist, newUser, r['data']))1016if r.has_key('data'):1017print("Updated user field for changelist%sto%s"% (changelist, newUser))1018return1019die("Could not modify user field of changelist%sto%s"% (changelist, newUser))10201021defcanChangeChangelists(self):1022# check to see if we have p4 admin or super-user permissions, either of1023# which are required to modify changelists.1024 results =p4CmdList(["protects", self.depotPath])1025for r in results:1026if r.has_key('perm'):1027if r['perm'] =='admin':1028return11029if r['perm'] =='super':1030return11031return010321033defprepareSubmitTemplate(self):1034"""Run "p4 change -o" to grab a change specification template.1035 This does not use "p4 -G", as it is nice to keep the submission1036 template in original order, since a human might edit it.10371038 Remove lines in the Files section that show changes to files1039 outside the depot path we're committing into."""10401041 template =""1042 inFilesSection =False1043for line inp4_read_pipe_lines(['change','-o']):1044if line.endswith("\r\n"):1045 line = line[:-2] +"\n"1046if inFilesSection:1047if line.startswith("\t"):1048# path starts and ends with a tab1049 path = line[1:]1050 lastTab = path.rfind("\t")1051if lastTab != -1:1052 path = path[:lastTab]1053if notp4PathStartsWith(path, self.depotPath):1054continue1055else:1056 inFilesSection =False1057else:1058if line.startswith("Files:"):1059 inFilesSection =True10601061 template += line10621063return template10641065defedit_template(self, template_file):1066"""Invoke the editor to let the user change the submission1067 message. Return true if okay to continue with the submit."""10681069# if configured to skip the editing part, just submit1070ifgitConfig("git-p4.skipSubmitEdit") =="true":1071return True10721073# look at the modification time, to check later if the user saved1074# the file1075 mtime = os.stat(template_file).st_mtime10761077# invoke the editor1078if os.environ.has_key("P4EDITOR")and(os.environ.get("P4EDITOR") !=""):1079 editor = os.environ.get("P4EDITOR")1080else:1081 editor =read_pipe("git var GIT_EDITOR").strip()1082system(editor +" "+ template_file)10831084# If the file was not saved, prompt to see if this patch should1085# be skipped. But skip this verification step if configured so.1086ifgitConfig("git-p4.skipSubmitEditCheck") =="true":1087return True10881089# modification time updated means user saved the file1090if os.stat(template_file).st_mtime > mtime:1091return True10921093while True:1094 response =raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")1095if response =='y':1096return True1097if response =='n':1098return False10991100defapplyCommit(self,id):1101"""Apply one commit, return True if it succeeded."""11021103print"Applying",read_pipe(["git","show","-s",1104"--format=format:%h%s",id])11051106(p4User, gitEmail) = self.p4UserForCommit(id)11071108 diff =read_pipe_lines("git diff-tree -r%s\"%s^\" \"%s\""% (self.diffOpts,id,id))1109 filesToAdd =set()1110 filesToDelete =set()1111 editedFiles =set()1112 pureRenameCopy =set()1113 filesToChangeExecBit = {}11141115for line in diff:1116 diff =parseDiffTreeEntry(line)1117 modifier = diff['status']1118 path = diff['src']1119if modifier =="M":1120p4_edit(path)1121ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1122 filesToChangeExecBit[path] = diff['dst_mode']1123 editedFiles.add(path)1124elif modifier =="A":1125 filesToAdd.add(path)1126 filesToChangeExecBit[path] = diff['dst_mode']1127if path in filesToDelete:1128 filesToDelete.remove(path)1129elif modifier =="D":1130 filesToDelete.add(path)1131if path in filesToAdd:1132 filesToAdd.remove(path)1133elif modifier =="C":1134 src, dest = diff['src'], diff['dst']1135p4_integrate(src, dest)1136 pureRenameCopy.add(dest)1137if diff['src_sha1'] != diff['dst_sha1']:1138p4_edit(dest)1139 pureRenameCopy.discard(dest)1140ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1141p4_edit(dest)1142 pureRenameCopy.discard(dest)1143 filesToChangeExecBit[dest] = diff['dst_mode']1144 os.unlink(dest)1145 editedFiles.add(dest)1146elif modifier =="R":1147 src, dest = diff['src'], diff['dst']1148if self.p4HasMoveCommand:1149p4_edit(src)# src must be open before move1150p4_move(src, dest)# opens for (move/delete, move/add)1151else:1152p4_integrate(src, dest)1153if diff['src_sha1'] != diff['dst_sha1']:1154p4_edit(dest)1155else:1156 pureRenameCopy.add(dest)1157ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1158if not self.p4HasMoveCommand:1159p4_edit(dest)# with move: already open, writable1160 filesToChangeExecBit[dest] = diff['dst_mode']1161if not self.p4HasMoveCommand:1162 os.unlink(dest)1163 filesToDelete.add(src)1164 editedFiles.add(dest)1165else:1166die("unknown modifier%sfor%s"% (modifier, path))11671168 diffcmd ="git format-patch -k --stdout\"%s^\"..\"%s\""% (id,id)1169 patchcmd = diffcmd +" | git apply "1170 tryPatchCmd = patchcmd +"--check -"1171 applyPatchCmd = patchcmd +"--check --apply -"1172 patch_succeeded =True11731174if os.system(tryPatchCmd) !=0:1175 fixed_rcs_keywords =False1176 patch_succeeded =False1177print"Unfortunately applying the change failed!"11781179# Patch failed, maybe it's just RCS keyword woes. Look through1180# the patch to see if that's possible.1181ifgitConfig("git-p4.attemptRCSCleanup","--bool") =="true":1182file=None1183 pattern =None1184 kwfiles = {}1185forfilein editedFiles | filesToDelete:1186# did this file's delta contain RCS keywords?1187 pattern =p4_keywords_regexp_for_file(file)11881189if pattern:1190# this file is a possibility...look for RCS keywords.1191 regexp = re.compile(pattern, re.VERBOSE)1192for line inread_pipe_lines(["git","diff","%s^..%s"% (id,id),file]):1193if regexp.search(line):1194if verbose:1195print"got keyword match on%sin%sin%s"% (pattern, line,file)1196 kwfiles[file] = pattern1197break11981199forfilein kwfiles:1200if verbose:1201print"zapping%swith%s"% (line,pattern)1202 self.patchRCSKeywords(file, kwfiles[file])1203 fixed_rcs_keywords =True12041205if fixed_rcs_keywords:1206print"Retrying the patch with RCS keywords cleaned up"1207if os.system(tryPatchCmd) ==0:1208 patch_succeeded =True12091210if not patch_succeeded:1211for f in editedFiles:1212p4_revert(f)1213return False12141215#1216# Apply the patch for real, and do add/delete/+x handling.1217#1218system(applyPatchCmd)12191220for f in filesToAdd:1221p4_add(f)1222for f in filesToDelete:1223p4_revert(f)1224p4_delete(f)12251226# Set/clear executable bits1227for f in filesToChangeExecBit.keys():1228 mode = filesToChangeExecBit[f]1229setP4ExecBit(f, mode)12301231#1232# Build p4 change description, starting with the contents1233# of the git commit message.1234#1235 logMessage =extractLogMessageFromGitCommit(id)1236 logMessage = logMessage.strip()1237(logMessage, jobs) = self.separate_jobs_from_description(logMessage)12381239 template = self.prepareSubmitTemplate()1240 submitTemplate = self.prepareLogMessage(template, logMessage, jobs)12411242if self.preserveUser:1243 submitTemplate +="\n######## Actual user%s, modified after commit\n"% p4User12441245if self.checkAuthorship and not self.p4UserIsMe(p4User):1246 submitTemplate +="######## git author%sdoes not match your p4 account.\n"% gitEmail1247 submitTemplate +="######## Use option --preserve-user to modify authorship.\n"1248 submitTemplate +="######## Variable git-p4.skipUserNameCheck hides this message.\n"12491250 separatorLine ="######## everything below this line is just the diff #######\n"12511252# diff1253if os.environ.has_key("P4DIFF"):1254del(os.environ["P4DIFF"])1255 diff =""1256for editedFile in editedFiles:1257 diff +=p4_read_pipe(['diff','-du',1258wildcard_encode(editedFile)])12591260# new file diff1261 newdiff =""1262for newFile in filesToAdd:1263 newdiff +="==== new file ====\n"1264 newdiff +="--- /dev/null\n"1265 newdiff +="+++%s\n"% newFile1266 f =open(newFile,"r")1267for line in f.readlines():1268 newdiff +="+"+ line1269 f.close()12701271# change description file: submitTemplate, separatorLine, diff, newdiff1272(handle, fileName) = tempfile.mkstemp()1273 tmpFile = os.fdopen(handle,"w+")1274if self.isWindows:1275 submitTemplate = submitTemplate.replace("\n","\r\n")1276 separatorLine = separatorLine.replace("\n","\r\n")1277 newdiff = newdiff.replace("\n","\r\n")1278 tmpFile.write(submitTemplate + separatorLine + diff + newdiff)1279 tmpFile.close()12801281if self.prepare_p4_only:1282#1283# Leave the p4 tree prepared, and the submit template around1284# and let the user decide what to do next1285#1286print1287print"P4 workspace prepared for submission."1288print"To submit or revert, go to client workspace"1289print" "+ self.clientPath1290print1291print"To submit, use\"p4 submit\"to write a new description,"1292print"or\"p4 submit -i%s\"to use the one prepared by" \1293"\"git p4\"."% fileName1294print"You can delete the file\"%s\"when finished."% fileName12951296if self.preserveUser and p4User and not self.p4UserIsMe(p4User):1297print"To preserve change ownership by user%s, you must\n" \1298"do\"p4 change -f <change>\"after submitting and\n" \1299"edit the User field."1300if pureRenameCopy:1301print"After submitting, renamed files must be re-synced."1302print"Invoke\"p4 sync -f\"on each of these files:"1303for f in pureRenameCopy:1304print" "+ f13051306print1307print"To revert the changes, use\"p4 revert ...\", and delete"1308print"the submit template file\"%s\""% fileName1309if filesToAdd:1310print"Since the commit adds new files, they must be deleted:"1311for f in filesToAdd:1312print" "+ f1313print1314return True13151316#1317# Let the user edit the change description, then submit it.1318#1319if self.edit_template(fileName):1320# read the edited message and submit1321 ret =True1322 tmpFile =open(fileName,"rb")1323 message = tmpFile.read()1324 tmpFile.close()1325 submitTemplate = message[:message.index(separatorLine)]1326if self.isWindows:1327 submitTemplate = submitTemplate.replace("\r\n","\n")1328p4_write_pipe(['submit','-i'], submitTemplate)13291330if self.preserveUser:1331if p4User:1332# Get last changelist number. Cannot easily get it from1333# the submit command output as the output is1334# unmarshalled.1335 changelist = self.lastP4Changelist()1336 self.modifyChangelistUser(changelist, p4User)13371338# The rename/copy happened by applying a patch that created a1339# new file. This leaves it writable, which confuses p4.1340for f in pureRenameCopy:1341p4_sync(f,"-f")13421343else:1344# skip this patch1345 ret =False1346print"Submission cancelled, undoing p4 changes."1347for f in editedFiles:1348p4_revert(f)1349for f in filesToAdd:1350p4_revert(f)1351 os.remove(f)1352for f in filesToDelete:1353p4_revert(f)13541355 os.remove(fileName)1356return ret13571358# Export git tags as p4 labels. Create a p4 label and then tag1359# with that.1360defexportGitTags(self, gitTags):1361 validLabelRegexp =gitConfig("git-p4.labelExportRegexp")1362iflen(validLabelRegexp) ==0:1363 validLabelRegexp = defaultLabelRegexp1364 m = re.compile(validLabelRegexp)13651366for name in gitTags:13671368if not m.match(name):1369if verbose:1370print"tag%sdoes not match regexp%s"% (name, validLabelRegexp)1371continue13721373# Get the p4 commit this corresponds to1374 logMessage =extractLogMessageFromGitCommit(name)1375 values =extractSettingsGitLog(logMessage)13761377if not values.has_key('change'):1378# a tag pointing to something not sent to p4; ignore1379if verbose:1380print"git tag%sdoes not give a p4 commit"% name1381continue1382else:1383 changelist = values['change']13841385# Get the tag details.1386 inHeader =True1387 isAnnotated =False1388 body = []1389for l inread_pipe_lines(["git","cat-file","-p", name]):1390 l = l.strip()1391if inHeader:1392if re.match(r'tag\s+', l):1393 isAnnotated =True1394elif re.match(r'\s*$', l):1395 inHeader =False1396continue1397else:1398 body.append(l)13991400if not isAnnotated:1401 body = ["lightweight tag imported by git p4\n"]14021403# Create the label - use the same view as the client spec we are using1404 clientSpec =getClientSpec()14051406 labelTemplate ="Label:%s\n"% name1407 labelTemplate +="Description:\n"1408for b in body:1409 labelTemplate +="\t"+ b +"\n"1410 labelTemplate +="View:\n"1411for mapping in clientSpec.mappings:1412 labelTemplate +="\t%s\n"% mapping.depot_side.path14131414if self.dry_run:1415print"Would create p4 label%sfor tag"% name1416elif self.prepare_p4_only:1417print"Not creating p4 label%sfor tag due to option" \1418" --prepare-p4-only"% name1419else:1420p4_write_pipe(["label","-i"], labelTemplate)14211422# Use the label1423p4_system(["tag","-l", name] +1424["%s@%s"% (mapping.depot_side.path, changelist)for mapping in clientSpec.mappings])14251426if verbose:1427print"created p4 label for tag%s"% name14281429defrun(self, args):1430iflen(args) ==0:1431 self.master =currentGitBranch()1432iflen(self.master) ==0or notgitBranchExists("refs/heads/%s"% self.master):1433die("Detecting current git branch failed!")1434eliflen(args) ==1:1435 self.master = args[0]1436if notbranchExists(self.master):1437die("Branch%sdoes not exist"% self.master)1438else:1439return False14401441 allowSubmit =gitConfig("git-p4.allowSubmit")1442iflen(allowSubmit) >0and not self.master in allowSubmit.split(","):1443die("%sis not in git-p4.allowSubmit"% self.master)14441445[upstream, settings] =findUpstreamBranchPoint()1446 self.depotPath = settings['depot-paths'][0]1447iflen(self.origin) ==0:1448 self.origin = upstream14491450if self.preserveUser:1451if not self.canChangeChangelists():1452die("Cannot preserve user names without p4 super-user or admin permissions")14531454# if not set from the command line, try the config file1455if self.conflict_behavior is None:1456 val =gitConfig("git-p4.conflict")1457if val:1458if val not in self.conflict_behavior_choices:1459die("Invalid value '%s' for config git-p4.conflict"% val)1460else:1461 val ="ask"1462 self.conflict_behavior = val14631464if self.verbose:1465print"Origin branch is "+ self.origin14661467iflen(self.depotPath) ==0:1468print"Internal error: cannot locate perforce depot path from existing branches"1469 sys.exit(128)14701471 self.useClientSpec =False1472ifgitConfig("git-p4.useclientspec","--bool") =="true":1473 self.useClientSpec =True1474if self.useClientSpec:1475 self.clientSpecDirs =getClientSpec()14761477if self.useClientSpec:1478# all files are relative to the client spec1479 self.clientPath =getClientRoot()1480else:1481 self.clientPath =p4Where(self.depotPath)14821483if self.clientPath =="":1484die("Error: Cannot locate perforce checkout of%sin client view"% self.depotPath)14851486print"Perforce checkout for depot path%slocated at%s"% (self.depotPath, self.clientPath)1487 self.oldWorkingDirectory = os.getcwd()14881489# ensure the clientPath exists1490 new_client_dir =False1491if not os.path.exists(self.clientPath):1492 new_client_dir =True1493 os.makedirs(self.clientPath)14941495chdir(self.clientPath)1496if self.dry_run:1497print"Would synchronize p4 checkout in%s"% self.clientPath1498else:1499print"Synchronizing p4 checkout..."1500if new_client_dir:1501# old one was destroyed, and maybe nobody told p41502p4_sync("...","-f")1503else:1504p4_sync("...")1505 self.check()15061507 commits = []1508for line inread_pipe_lines("git rev-list --no-merges%s..%s"% (self.origin, self.master)):1509 commits.append(line.strip())1510 commits.reverse()15111512if self.preserveUser or(gitConfig("git-p4.skipUserNameCheck") =="true"):1513 self.checkAuthorship =False1514else:1515 self.checkAuthorship =True15161517if self.preserveUser:1518 self.checkValidP4Users(commits)15191520#1521# Build up a set of options to be passed to diff when1522# submitting each commit to p4.1523#1524if self.detectRenames:1525# command-line -M arg1526 self.diffOpts ="-M"1527else:1528# If not explicitly set check the config variable1529 detectRenames =gitConfig("git-p4.detectRenames")15301531if detectRenames.lower() =="false"or detectRenames =="":1532 self.diffOpts =""1533elif detectRenames.lower() =="true":1534 self.diffOpts ="-M"1535else:1536 self.diffOpts ="-M%s"% detectRenames15371538# no command-line arg for -C or --find-copies-harder, just1539# config variables1540 detectCopies =gitConfig("git-p4.detectCopies")1541if detectCopies.lower() =="false"or detectCopies =="":1542pass1543elif detectCopies.lower() =="true":1544 self.diffOpts +=" -C"1545else:1546 self.diffOpts +=" -C%s"% detectCopies15471548ifgitConfig("git-p4.detectCopiesHarder","--bool") =="true":1549 self.diffOpts +=" --find-copies-harder"15501551#1552# Apply the commits, one at a time. On failure, ask if should1553# continue to try the rest of the patches, or quit.1554#1555if self.dry_run:1556print"Would apply"1557 applied = []1558 last =len(commits) -11559for i, commit inenumerate(commits):1560if self.dry_run:1561print" ",read_pipe(["git","show","-s",1562"--format=format:%h%s", commit])1563 ok =True1564else:1565 ok = self.applyCommit(commit)1566if ok:1567 applied.append(commit)1568else:1569if self.prepare_p4_only and i < last:1570print"Processing only the first commit due to option" \1571" --prepare-p4-only"1572break1573if i < last:1574 quit =False1575while True:1576# prompt for what to do, or use the option/variable1577if self.conflict_behavior =="ask":1578print"What do you want to do?"1579 response =raw_input("[s]kip this commit but apply"1580" the rest, or [q]uit? ")1581if not response:1582continue1583elif self.conflict_behavior =="skip":1584 response ="s"1585elif self.conflict_behavior =="quit":1586 response ="q"1587else:1588die("Unknown conflict_behavior '%s'"%1589 self.conflict_behavior)15901591if response[0] =="s":1592print"Skipping this commit, but applying the rest"1593break1594if response[0] =="q":1595print"Quitting"1596 quit =True1597break1598if quit:1599break16001601chdir(self.oldWorkingDirectory)16021603if self.dry_run:1604pass1605elif self.prepare_p4_only:1606pass1607eliflen(commits) ==len(applied):1608print"All commits applied!"16091610 sync =P4Sync()1611 sync.run([])16121613 rebase =P4Rebase()1614 rebase.rebase()16151616else:1617iflen(applied) ==0:1618print"No commits applied."1619else:1620print"Applied only the commits marked with '*':"1621for c in commits:1622if c in applied:1623 star ="*"1624else:1625 star =" "1626print star,read_pipe(["git","show","-s",1627"--format=format:%h%s", c])1628print"You will have to do 'git p4 sync' and rebase."16291630ifgitConfig("git-p4.exportLabels","--bool") =="true":1631 self.exportLabels =True16321633if self.exportLabels:1634 p4Labels =getP4Labels(self.depotPath)1635 gitTags =getGitTags()16361637 missingGitTags = gitTags - p4Labels1638 self.exportGitTags(missingGitTags)16391640# exit with error unless everything applied perfecly1641iflen(commits) !=len(applied):1642 sys.exit(1)16431644return True16451646classView(object):1647"""Represent a p4 view ("p4 help views"), and map files in a1648 repo according to the view."""16491650classPath(object):1651"""A depot or client path, possibly containing wildcards.1652 The only one supported is ... at the end, currently.1653 Initialize with the full path, with //depot or //client."""16541655def__init__(self, path, is_depot):1656 self.path = path1657 self.is_depot = is_depot1658 self.find_wildcards()1659# remember the prefix bit, useful for relative mappings1660 m = re.match("(//[^/]+/)", self.path)1661if not m:1662die("Path%sdoes not start with //prefix/"% self.path)1663 prefix = m.group(1)1664if not self.is_depot:1665# strip //client/ on client paths1666 self.path = self.path[len(prefix):]16671668deffind_wildcards(self):1669"""Make sure wildcards are valid, and set up internal1670 variables."""16711672 self.ends_triple_dot =False1673# There are three wildcards allowed in p4 views1674# (see "p4 help views"). This code knows how to1675# handle "..." (only at the end), but cannot deal with1676# "%%n" or "*". Only check the depot_side, as p4 should1677# validate that the client_side matches too.1678if re.search(r'%%[1-9]', self.path):1679die("Can't handle%%n wildcards in view:%s"% self.path)1680if self.path.find("*") >=0:1681die("Can't handle * wildcards in view:%s"% self.path)1682 triple_dot_index = self.path.find("...")1683if triple_dot_index >=0:1684if triple_dot_index !=len(self.path) -3:1685die("Can handle only single ... wildcard, at end:%s"%1686 self.path)1687 self.ends_triple_dot =True16881689defensure_compatible(self, other_path):1690"""Make sure the wildcards agree."""1691if self.ends_triple_dot != other_path.ends_triple_dot:1692die("Both paths must end with ... if either does;\n"+1693"paths:%s %s"% (self.path, other_path.path))16941695defmatch_wildcards(self, test_path):1696"""See if this test_path matches us, and fill in the value1697 of the wildcards if so. Returns a tuple of1698 (True|False, wildcards[]). For now, only the ... at end1699 is supported, so at most one wildcard."""1700if self.ends_triple_dot:1701 dotless = self.path[:-3]1702if test_path.startswith(dotless):1703 wildcard = test_path[len(dotless):]1704return(True, [ wildcard ])1705else:1706if test_path == self.path:1707return(True, [])1708return(False, [])17091710defmatch(self, test_path):1711"""Just return if it matches; don't bother with the wildcards."""1712 b, _ = self.match_wildcards(test_path)1713return b17141715deffill_in_wildcards(self, wildcards):1716"""Return the relative path, with the wildcards filled in1717 if there are any."""1718if self.ends_triple_dot:1719return self.path[:-3] + wildcards[0]1720else:1721return self.path17221723classMapping(object):1724def__init__(self, depot_side, client_side, overlay, exclude):1725# depot_side is without the trailing /... if it had one1726 self.depot_side = View.Path(depot_side, is_depot=True)1727 self.client_side = View.Path(client_side, is_depot=False)1728 self.overlay = overlay # started with "+"1729 self.exclude = exclude # started with "-"1730assert not(self.overlay and self.exclude)1731 self.depot_side.ensure_compatible(self.client_side)17321733def__str__(self):1734 c =" "1735if self.overlay:1736 c ="+"1737if self.exclude:1738 c ="-"1739return"View.Mapping:%s%s->%s"% \1740(c, self.depot_side.path, self.client_side.path)17411742defmap_depot_to_client(self, depot_path):1743"""Calculate the client path if using this mapping on the1744 given depot path; does not consider the effect of other1745 mappings in a view. Even excluded mappings are returned."""1746 matches, wildcards = self.depot_side.match_wildcards(depot_path)1747if not matches:1748return""1749 client_path = self.client_side.fill_in_wildcards(wildcards)1750return client_path17511752#1753# View methods1754#1755def__init__(self):1756 self.mappings = []17571758defappend(self, view_line):1759"""Parse a view line, splitting it into depot and client1760 sides. Append to self.mappings, preserving order."""17611762# Split the view line into exactly two words. P4 enforces1763# structure on these lines that simplifies this quite a bit.1764#1765# Either or both words may be double-quoted.1766# Single quotes do not matter.1767# Double-quote marks cannot occur inside the words.1768# A + or - prefix is also inside the quotes.1769# There are no quotes unless they contain a space.1770# The line is already white-space stripped.1771# The two words are separated by a single space.1772#1773if view_line[0] =='"':1774# First word is double quoted. Find its end.1775 close_quote_index = view_line.find('"',1)1776if close_quote_index <=0:1777die("No first-word closing quote found:%s"% view_line)1778 depot_side = view_line[1:close_quote_index]1779# skip closing quote and space1780 rhs_index = close_quote_index +1+11781else:1782 space_index = view_line.find(" ")1783if space_index <=0:1784die("No word-splitting space found:%s"% view_line)1785 depot_side = view_line[0:space_index]1786 rhs_index = space_index +117871788if view_line[rhs_index] =='"':1789# Second word is double quoted. Make sure there is a1790# double quote at the end too.1791if not view_line.endswith('"'):1792die("View line with rhs quote should end with one:%s"%1793 view_line)1794# skip the quotes1795 client_side = view_line[rhs_index+1:-1]1796else:1797 client_side = view_line[rhs_index:]17981799# prefix + means overlay on previous mapping1800 overlay =False1801if depot_side.startswith("+"):1802 overlay =True1803 depot_side = depot_side[1:]18041805# prefix - means exclude this path1806 exclude =False1807if depot_side.startswith("-"):1808 exclude =True1809 depot_side = depot_side[1:]18101811 m = View.Mapping(depot_side, client_side, overlay, exclude)1812 self.mappings.append(m)18131814defmap_in_client(self, depot_path):1815"""Return the relative location in the client where this1816 depot file should live. Returns "" if the file should1817 not be mapped in the client."""18181819 paths_filled = []1820 client_path =""18211822# look at later entries first1823for m in self.mappings[::-1]:18241825# see where will this path end up in the client1826 p = m.map_depot_to_client(depot_path)18271828if p =="":1829# Depot path does not belong in client. Must remember1830# this, as previous items should not cause files to1831# exist in this path either. Remember that the list is1832# being walked from the end, which has higher precedence.1833# Overlap mappings do not exclude previous mappings.1834if not m.overlay:1835 paths_filled.append(m.client_side)18361837else:1838# This mapping matched; no need to search any further.1839# But, the mapping could be rejected if the client path1840# has already been claimed by an earlier mapping (i.e.1841# one later in the list, which we are walking backwards).1842 already_mapped_in_client =False1843for f in paths_filled:1844# this is View.Path.match1845if f.match(p):1846 already_mapped_in_client =True1847break1848if not already_mapped_in_client:1849# Include this file, unless it is from a line that1850# explicitly said to exclude it.1851if not m.exclude:1852 client_path = p18531854# a match, even if rejected, always stops the search1855break18561857return client_path18581859classP4Sync(Command, P4UserMap):1860 delete_actions = ("delete","move/delete","purge")18611862def__init__(self):1863 Command.__init__(self)1864 P4UserMap.__init__(self)1865 self.options = [1866 optparse.make_option("--branch", dest="branch"),1867 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),1868 optparse.make_option("--changesfile", dest="changesFile"),1869 optparse.make_option("--silent", dest="silent", action="store_true"),1870 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),1871 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),1872 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",1873help="Import into refs/heads/ , not refs/remotes"),1874 optparse.make_option("--max-changes", dest="maxChanges"),1875 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',1876help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),1877 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',1878help="Only sync files that are included in the Perforce Client Spec")1879]1880 self.description ="""Imports from Perforce into a git repository.\n1881 example:1882 //depot/my/project/ -- to import the current head1883 //depot/my/project/@all -- to import everything1884 //depot/my/project/@1,6 -- to import only from revision 1 to 618851886 (a ... is not needed in the path p4 specification, it's added implicitly)"""18871888 self.usage +=" //depot/path[@revRange]"1889 self.silent =False1890 self.createdBranches =set()1891 self.committedChanges =set()1892 self.branch =""1893 self.detectBranches =False1894 self.detectLabels =False1895 self.importLabels =False1896 self.changesFile =""1897 self.syncWithOrigin =True1898 self.importIntoRemotes =True1899 self.maxChanges =""1900 self.isWindows = (platform.system() =="Windows")1901 self.keepRepoPath =False1902 self.depotPaths =None1903 self.p4BranchesInGit = []1904 self.cloneExclude = []1905 self.useClientSpec =False1906 self.useClientSpec_from_options =False1907 self.clientSpecDirs =None1908 self.tempBranches = []1909 self.tempBranchLocation ="git-p4-tmp"19101911ifgitConfig("git-p4.syncFromOrigin") =="false":1912 self.syncWithOrigin =False19131914# Force a checkpoint in fast-import and wait for it to finish1915defcheckpoint(self):1916 self.gitStream.write("checkpoint\n\n")1917 self.gitStream.write("progress checkpoint\n\n")1918 out = self.gitOutput.readline()1919if self.verbose:1920print"checkpoint finished: "+ out19211922defextractFilesFromCommit(self, commit):1923 self.cloneExclude = [re.sub(r"\.\.\.$","", path)1924for path in self.cloneExclude]1925 files = []1926 fnum =01927while commit.has_key("depotFile%s"% fnum):1928 path = commit["depotFile%s"% fnum]19291930if[p for p in self.cloneExclude1931ifp4PathStartsWith(path, p)]:1932 found =False1933else:1934 found = [p for p in self.depotPaths1935ifp4PathStartsWith(path, p)]1936if not found:1937 fnum = fnum +11938continue19391940file= {}1941file["path"] = path1942file["rev"] = commit["rev%s"% fnum]1943file["action"] = commit["action%s"% fnum]1944file["type"] = commit["type%s"% fnum]1945 files.append(file)1946 fnum = fnum +11947return files19481949defstripRepoPath(self, path, prefixes):1950if self.useClientSpec:1951return self.clientSpecDirs.map_in_client(path)19521953if self.keepRepoPath:1954 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]19551956for p in prefixes:1957ifp4PathStartsWith(path, p):1958 path = path[len(p):]19591960return path19611962defsplitFilesIntoBranches(self, commit):1963 branches = {}1964 fnum =01965while commit.has_key("depotFile%s"% fnum):1966 path = commit["depotFile%s"% fnum]1967 found = [p for p in self.depotPaths1968ifp4PathStartsWith(path, p)]1969if not found:1970 fnum = fnum +11971continue19721973file= {}1974file["path"] = path1975file["rev"] = commit["rev%s"% fnum]1976file["action"] = commit["action%s"% fnum]1977file["type"] = commit["type%s"% fnum]1978 fnum = fnum +119791980 relPath = self.stripRepoPath(path, self.depotPaths)1981 relPath =wildcard_decode(relPath)19821983for branch in self.knownBranches.keys():19841985# add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.21986if relPath.startswith(branch +"/"):1987if branch not in branches:1988 branches[branch] = []1989 branches[branch].append(file)1990break19911992return branches19931994# output one file from the P4 stream1995# - helper for streamP4Files19961997defstreamOneP4File(self,file, contents):1998 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)1999 relPath =wildcard_decode(relPath)2000if verbose:2001 sys.stderr.write("%s\n"% relPath)20022003(type_base, type_mods) =split_p4_type(file["type"])20042005 git_mode ="100644"2006if"x"in type_mods:2007 git_mode ="100755"2008if type_base =="symlink":2009 git_mode ="120000"2010# p4 print on a symlink contains "target\n"; remove the newline2011 data =''.join(contents)2012 contents = [data[:-1]]20132014if type_base =="utf16":2015# p4 delivers different text in the python output to -G2016# than it does when using "print -o", or normal p4 client2017# operations. utf16 is converted to ascii or utf8, perhaps.2018# But ascii text saved as -t utf16 is completely mangled.2019# Invoke print -o to get the real contents.2020 text =p4_read_pipe(['print','-q','-o','-',file['depotFile']])2021 contents = [ text ]20222023if type_base =="apple":2024# Apple filetype files will be streamed as a concatenation of2025# its appledouble header and the contents. This is useless2026# on both macs and non-macs. If using "print -q -o xx", it2027# will create "xx" with the data, and "%xx" with the header.2028# This is also not very useful.2029#2030# Ideally, someday, this script can learn how to generate2031# appledouble files directly and import those to git, but2032# non-mac machines can never find a use for apple filetype.2033print"\nIgnoring apple filetype file%s"%file['depotFile']2034return20352036# Perhaps windows wants unicode, utf16 newlines translated too;2037# but this is not doing it.2038if self.isWindows and type_base =="text":2039 mangled = []2040for data in contents:2041 data = data.replace("\r\n","\n")2042 mangled.append(data)2043 contents = mangled20442045# Note that we do not try to de-mangle keywords on utf16 files,2046# even though in theory somebody may want that.2047 pattern =p4_keywords_regexp_for_type(type_base, type_mods)2048if pattern:2049 regexp = re.compile(pattern, re.VERBOSE)2050 text =''.join(contents)2051 text = regexp.sub(r'$\1$', text)2052 contents = [ text ]20532054 self.gitStream.write("M%sinline%s\n"% (git_mode, relPath))20552056# total length...2057 length =02058for d in contents:2059 length = length +len(d)20602061 self.gitStream.write("data%d\n"% length)2062for d in contents:2063 self.gitStream.write(d)2064 self.gitStream.write("\n")20652066defstreamOneP4Deletion(self,file):2067 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)2068 relPath =wildcard_decode(relPath)2069if verbose:2070 sys.stderr.write("delete%s\n"% relPath)2071 self.gitStream.write("D%s\n"% relPath)20722073# handle another chunk of streaming data2074defstreamP4FilesCb(self, marshalled):20752076if marshalled.has_key('depotFile')and self.stream_have_file_info:2077# start of a new file - output the old one first2078 self.streamOneP4File(self.stream_file, self.stream_contents)2079 self.stream_file = {}2080 self.stream_contents = []2081 self.stream_have_file_info =False20822083# pick up the new file information... for the2084# 'data' field we need to append to our array2085for k in marshalled.keys():2086if k =='data':2087 self.stream_contents.append(marshalled['data'])2088else:2089 self.stream_file[k] = marshalled[k]20902091 self.stream_have_file_info =True20922093# Stream directly from "p4 files" into "git fast-import"2094defstreamP4Files(self, files):2095 filesForCommit = []2096 filesToRead = []2097 filesToDelete = []20982099for f in files:2100# if using a client spec, only add the files that have2101# a path in the client2102if self.clientSpecDirs:2103if self.clientSpecDirs.map_in_client(f['path']) =="":2104continue21052106 filesForCommit.append(f)2107if f['action']in self.delete_actions:2108 filesToDelete.append(f)2109else:2110 filesToRead.append(f)21112112# deleted files...2113for f in filesToDelete:2114 self.streamOneP4Deletion(f)21152116iflen(filesToRead) >0:2117 self.stream_file = {}2118 self.stream_contents = []2119 self.stream_have_file_info =False21202121# curry self argument2122defstreamP4FilesCbSelf(entry):2123 self.streamP4FilesCb(entry)21242125 fileArgs = ['%s#%s'% (f['path'], f['rev'])for f in filesToRead]21262127p4CmdList(["-x","-","print"],2128 stdin=fileArgs,2129 cb=streamP4FilesCbSelf)21302131# do the last chunk2132if self.stream_file.has_key('depotFile'):2133 self.streamOneP4File(self.stream_file, self.stream_contents)21342135defmake_email(self, userid):2136if userid in self.users:2137return self.users[userid]2138else:2139return"%s<a@b>"% userid21402141# Stream a p4 tag2142defstreamTag(self, gitStream, labelName, labelDetails, commit, epoch):2143if verbose:2144print"writing tag%sfor commit%s"% (labelName, commit)2145 gitStream.write("tag%s\n"% labelName)2146 gitStream.write("from%s\n"% commit)21472148if labelDetails.has_key('Owner'):2149 owner = labelDetails["Owner"]2150else:2151 owner =None21522153# Try to use the owner of the p4 label, or failing that,2154# the current p4 user id.2155if owner:2156 email = self.make_email(owner)2157else:2158 email = self.make_email(self.p4UserId())2159 tagger ="%s %s %s"% (email, epoch, self.tz)21602161 gitStream.write("tagger%s\n"% tagger)21622163print"labelDetails=",labelDetails2164if labelDetails.has_key('Description'):2165 description = labelDetails['Description']2166else:2167 description ='Label from git p4'21682169 gitStream.write("data%d\n"%len(description))2170 gitStream.write(description)2171 gitStream.write("\n")21722173defcommit(self, details, files, branch, branchPrefixes, parent =""):2174 epoch = details["time"]2175 author = details["user"]2176 self.branchPrefixes = branchPrefixes21772178if self.verbose:2179print"commit into%s"% branch21802181# start with reading files; if that fails, we should not2182# create a commit.2183 new_files = []2184for f in files:2185if[p for p in branchPrefixes ifp4PathStartsWith(f['path'], p)]:2186 new_files.append(f)2187else:2188 sys.stderr.write("Ignoring file outside of prefix:%s\n"% f['path'])21892190 self.gitStream.write("commit%s\n"% branch)2191# gitStream.write("mark :%s\n" % details["change"])2192 self.committedChanges.add(int(details["change"]))2193 committer =""2194if author not in self.users:2195 self.getUserMapFromPerforceServer()2196 committer ="%s %s %s"% (self.make_email(author), epoch, self.tz)21972198 self.gitStream.write("committer%s\n"% committer)21992200 self.gitStream.write("data <<EOT\n")2201 self.gitStream.write(details["desc"])2202 self.gitStream.write("\n[git-p4: depot-paths =\"%s\": change =%s"2203% (','.join(branchPrefixes), details["change"]))2204iflen(details['options']) >0:2205 self.gitStream.write(": options =%s"% details['options'])2206 self.gitStream.write("]\nEOT\n\n")22072208iflen(parent) >0:2209if self.verbose:2210print"parent%s"% parent2211 self.gitStream.write("from%s\n"% parent)22122213 self.streamP4Files(new_files)2214 self.gitStream.write("\n")22152216 change =int(details["change"])22172218if self.labels.has_key(change):2219 label = self.labels[change]2220 labelDetails = label[0]2221 labelRevisions = label[1]2222if self.verbose:2223print"Change%sis labelled%s"% (change, labelDetails)22242225 files =p4CmdList(["files"] + ["%s...@%s"% (p, change)2226for p in branchPrefixes])22272228iflen(files) ==len(labelRevisions):22292230 cleanedFiles = {}2231for info in files:2232if info["action"]in self.delete_actions:2233continue2234 cleanedFiles[info["depotFile"]] = info["rev"]22352236if cleanedFiles == labelRevisions:2237 self.streamTag(self.gitStream,'tag_%s'% labelDetails['label'], labelDetails, branch, epoch)22382239else:2240if not self.silent:2241print("Tag%sdoes not match with change%s: files do not match."2242% (labelDetails["label"], change))22432244else:2245if not self.silent:2246print("Tag%sdoes not match with change%s: file count is different."2247% (labelDetails["label"], change))22482249# Build a dictionary of changelists and labels, for "detect-labels" option.2250defgetLabels(self):2251 self.labels = {}22522253 l =p4CmdList(["labels"] + ["%s..."% p for p in self.depotPaths])2254iflen(l) >0and not self.silent:2255print"Finding files belonging to labels in%s"% `self.depotPaths`22562257for output in l:2258 label = output["label"]2259 revisions = {}2260 newestChange =02261if self.verbose:2262print"Querying files for label%s"% label2263forfileinp4CmdList(["files"] +2264["%s...@%s"% (p, label)2265for p in self.depotPaths]):2266 revisions[file["depotFile"]] =file["rev"]2267 change =int(file["change"])2268if change > newestChange:2269 newestChange = change22702271 self.labels[newestChange] = [output, revisions]22722273if self.verbose:2274print"Label changes:%s"% self.labels.keys()22752276# Import p4 labels as git tags. A direct mapping does not2277# exist, so assume that if all the files are at the same revision2278# then we can use that, or it's something more complicated we should2279# just ignore.2280defimportP4Labels(self, stream, p4Labels):2281if verbose:2282print"import p4 labels: "+' '.join(p4Labels)22832284 ignoredP4Labels =gitConfigList("git-p4.ignoredP4Labels")2285 validLabelRegexp =gitConfig("git-p4.labelImportRegexp")2286iflen(validLabelRegexp) ==0:2287 validLabelRegexp = defaultLabelRegexp2288 m = re.compile(validLabelRegexp)22892290for name in p4Labels:2291 commitFound =False22922293if not m.match(name):2294if verbose:2295print"label%sdoes not match regexp%s"% (name,validLabelRegexp)2296continue22972298if name in ignoredP4Labels:2299continue23002301 labelDetails =p4CmdList(['label',"-o", name])[0]23022303# get the most recent changelist for each file in this label2304 change =p4Cmd(["changes","-m","1"] + ["%s...@%s"% (p, name)2305for p in self.depotPaths])23062307if change.has_key('change'):2308# find the corresponding git commit; take the oldest commit2309 changelist =int(change['change'])2310 gitCommit =read_pipe(["git","rev-list","--max-count=1",2311"--reverse",":/\[git-p4:.*change =%d\]"% changelist])2312iflen(gitCommit) ==0:2313print"could not find git commit for changelist%d"% changelist2314else:2315 gitCommit = gitCommit.strip()2316 commitFound =True2317# Convert from p4 time format2318try:2319 tmwhen = time.strptime(labelDetails['Update'],"%Y/%m/%d%H:%M:%S")2320exceptValueError:2321print"Could not convert label time%s"% labelDetail['Update']2322 tmwhen =123232324 when =int(time.mktime(tmwhen))2325 self.streamTag(stream, name, labelDetails, gitCommit, when)2326if verbose:2327print"p4 label%smapped to git commit%s"% (name, gitCommit)2328else:2329if verbose:2330print"Label%shas no changelists - possibly deleted?"% name23312332if not commitFound:2333# We can't import this label; don't try again as it will get very2334# expensive repeatedly fetching all the files for labels that will2335# never be imported. If the label is moved in the future, the2336# ignore will need to be removed manually.2337system(["git","config","--add","git-p4.ignoredP4Labels", name])23382339defguessProjectName(self):2340for p in self.depotPaths:2341if p.endswith("/"):2342 p = p[:-1]2343 p = p[p.strip().rfind("/") +1:]2344if not p.endswith("/"):2345 p +="/"2346return p23472348defgetBranchMapping(self):2349 lostAndFoundBranches =set()23502351 user =gitConfig("git-p4.branchUser")2352iflen(user) >0:2353 command ="branches -u%s"% user2354else:2355 command ="branches"23562357for info inp4CmdList(command):2358 details =p4Cmd(["branch","-o", info["branch"]])2359 viewIdx =02360while details.has_key("View%s"% viewIdx):2361 paths = details["View%s"% viewIdx].split(" ")2362 viewIdx = viewIdx +12363# require standard //depot/foo/... //depot/bar/... mapping2364iflen(paths) !=2or not paths[0].endswith("/...")or not paths[1].endswith("/..."):2365continue2366 source = paths[0]2367 destination = paths[1]2368## HACK2369ifp4PathStartsWith(source, self.depotPaths[0])andp4PathStartsWith(destination, self.depotPaths[0]):2370 source = source[len(self.depotPaths[0]):-4]2371 destination = destination[len(self.depotPaths[0]):-4]23722373if destination in self.knownBranches:2374if not self.silent:2375print"p4 branch%sdefines a mapping from%sto%s"% (info["branch"], source, destination)2376print"but there exists another mapping from%sto%salready!"% (self.knownBranches[destination], destination)2377continue23782379 self.knownBranches[destination] = source23802381 lostAndFoundBranches.discard(destination)23822383if source not in self.knownBranches:2384 lostAndFoundBranches.add(source)23852386# Perforce does not strictly require branches to be defined, so we also2387# check git config for a branch list.2388#2389# Example of branch definition in git config file:2390# [git-p4]2391# branchList=main:branchA2392# branchList=main:branchB2393# branchList=branchA:branchC2394 configBranches =gitConfigList("git-p4.branchList")2395for branch in configBranches:2396if branch:2397(source, destination) = branch.split(":")2398 self.knownBranches[destination] = source23992400 lostAndFoundBranches.discard(destination)24012402if source not in self.knownBranches:2403 lostAndFoundBranches.add(source)240424052406for branch in lostAndFoundBranches:2407 self.knownBranches[branch] = branch24082409defgetBranchMappingFromGitBranches(self):2410 branches =p4BranchesInGit(self.importIntoRemotes)2411for branch in branches.keys():2412if branch =="master":2413 branch ="main"2414else:2415 branch = branch[len(self.projectName):]2416 self.knownBranches[branch] = branch24172418deflistExistingP4GitBranches(self):2419# branches holds mapping from name to commit2420 branches =p4BranchesInGit(self.importIntoRemotes)2421 self.p4BranchesInGit = branches.keys()2422for branch in branches.keys():2423 self.initialParents[self.refPrefix + branch] = branches[branch]24242425defupdateOptionDict(self, d):2426 option_keys = {}2427if self.keepRepoPath:2428 option_keys['keepRepoPath'] =124292430 d["options"] =' '.join(sorted(option_keys.keys()))24312432defreadOptions(self, d):2433 self.keepRepoPath = (d.has_key('options')2434and('keepRepoPath'in d['options']))24352436defgitRefForBranch(self, branch):2437if branch =="main":2438return self.refPrefix +"master"24392440iflen(branch) <=0:2441return branch24422443return self.refPrefix + self.projectName + branch24442445defgitCommitByP4Change(self, ref, change):2446if self.verbose:2447print"looking in ref "+ ref +" for change%susing bisect..."% change24482449 earliestCommit =""2450 latestCommit =parseRevision(ref)24512452while True:2453if self.verbose:2454print"trying: earliest%slatest%s"% (earliestCommit, latestCommit)2455 next =read_pipe("git rev-list --bisect%s %s"% (latestCommit, earliestCommit)).strip()2456iflen(next) ==0:2457if self.verbose:2458print"argh"2459return""2460 log =extractLogMessageFromGitCommit(next)2461 settings =extractSettingsGitLog(log)2462 currentChange =int(settings['change'])2463if self.verbose:2464print"current change%s"% currentChange24652466if currentChange == change:2467if self.verbose:2468print"found%s"% next2469return next24702471if currentChange < change:2472 earliestCommit ="^%s"% next2473else:2474 latestCommit ="%s"% next24752476return""24772478defimportNewBranch(self, branch, maxChange):2479# make fast-import flush all changes to disk and update the refs using the checkpoint2480# command so that we can try to find the branch parent in the git history2481 self.gitStream.write("checkpoint\n\n");2482 self.gitStream.flush();2483 branchPrefix = self.depotPaths[0] + branch +"/"2484range="@1,%s"% maxChange2485#print "prefix" + branchPrefix2486 changes =p4ChangesForPaths([branchPrefix],range)2487iflen(changes) <=0:2488return False2489 firstChange = changes[0]2490#print "first change in branch: %s" % firstChange2491 sourceBranch = self.knownBranches[branch]2492 sourceDepotPath = self.depotPaths[0] + sourceBranch2493 sourceRef = self.gitRefForBranch(sourceBranch)2494#print "source " + sourceBranch24952496 branchParentChange =int(p4Cmd(["changes","-m","1","%s...@1,%s"% (sourceDepotPath, firstChange)])["change"])2497#print "branch parent: %s" % branchParentChange2498 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)2499iflen(gitParent) >0:2500 self.initialParents[self.gitRefForBranch(branch)] = gitParent2501#print "parent git commit: %s" % gitParent25022503 self.importChanges(changes)2504return True25052506defsearchParent(self, parent, branch, target):2507 parentFound =False2508for blob inread_pipe_lines(["git","rev-list","--reverse","--no-merges", parent]):2509 blob = blob.strip()2510iflen(read_pipe(["git","diff-tree", blob, target])) ==0:2511 parentFound =True2512if self.verbose:2513print"Found parent of%sin commit%s"% (branch, blob)2514break2515if parentFound:2516return blob2517else:2518return None25192520defimportChanges(self, changes):2521 cnt =12522for change in changes:2523 description =p4Cmd(["describe",str(change)])2524 self.updateOptionDict(description)25252526if not self.silent:2527 sys.stdout.write("\rImporting revision%s(%s%%)"% (change, cnt *100/len(changes)))2528 sys.stdout.flush()2529 cnt = cnt +125302531try:2532if self.detectBranches:2533 branches = self.splitFilesIntoBranches(description)2534for branch in branches.keys():2535## HACK --hwn2536 branchPrefix = self.depotPaths[0] + branch +"/"25372538 parent =""25392540 filesForCommit = branches[branch]25412542if self.verbose:2543print"branch is%s"% branch25442545 self.updatedBranches.add(branch)25462547if branch not in self.createdBranches:2548 self.createdBranches.add(branch)2549 parent = self.knownBranches[branch]2550if parent == branch:2551 parent =""2552else:2553 fullBranch = self.projectName + branch2554if fullBranch not in self.p4BranchesInGit:2555if not self.silent:2556print("\nImporting new branch%s"% fullBranch);2557if self.importNewBranch(branch, change -1):2558 parent =""2559 self.p4BranchesInGit.append(fullBranch)2560if not self.silent:2561print("\nResuming with change%s"% change);25622563if self.verbose:2564print"parent determined through known branches:%s"% parent25652566 branch = self.gitRefForBranch(branch)2567 parent = self.gitRefForBranch(parent)25682569if self.verbose:2570print"looking for initial parent for%s; current parent is%s"% (branch, parent)25712572iflen(parent) ==0and branch in self.initialParents:2573 parent = self.initialParents[branch]2574del self.initialParents[branch]25752576 blob =None2577iflen(parent) >0:2578 tempBranch = os.path.join(self.tempBranchLocation,"%d"% (change))2579if self.verbose:2580print"Creating temporary branch: "+ tempBranch2581 self.commit(description, filesForCommit, tempBranch, [branchPrefix])2582 self.tempBranches.append(tempBranch)2583 self.checkpoint()2584 blob = self.searchParent(parent, branch, tempBranch)2585if blob:2586 self.commit(description, filesForCommit, branch, [branchPrefix], blob)2587else:2588if self.verbose:2589print"Parent of%snot found. Committing into head of%s"% (branch, parent)2590 self.commit(description, filesForCommit, branch, [branchPrefix], parent)2591else:2592 files = self.extractFilesFromCommit(description)2593 self.commit(description, files, self.branch, self.depotPaths,2594 self.initialParent)2595 self.initialParent =""2596exceptIOError:2597print self.gitError.read()2598 sys.exit(1)25992600defimportHeadRevision(self, revision):2601print"Doing initial import of%sfrom revision%sinto%s"% (' '.join(self.depotPaths), revision, self.branch)26022603 details = {}2604 details["user"] ="git perforce import user"2605 details["desc"] = ("Initial import of%sfrom the state at revision%s\n"2606% (' '.join(self.depotPaths), revision))2607 details["change"] = revision2608 newestRevision =026092610 fileCnt =02611 fileArgs = ["%s...%s"% (p,revision)for p in self.depotPaths]26122613for info inp4CmdList(["files"] + fileArgs):26142615if'code'in info and info['code'] =='error':2616 sys.stderr.write("p4 returned an error:%s\n"2617% info['data'])2618if info['data'].find("must refer to client") >=0:2619 sys.stderr.write("This particular p4 error is misleading.\n")2620 sys.stderr.write("Perhaps the depot path was misspelled.\n");2621 sys.stderr.write("Depot path:%s\n"%" ".join(self.depotPaths))2622 sys.exit(1)2623if'p4ExitCode'in info:2624 sys.stderr.write("p4 exitcode:%s\n"% info['p4ExitCode'])2625 sys.exit(1)262626272628 change =int(info["change"])2629if change > newestRevision:2630 newestRevision = change26312632if info["action"]in self.delete_actions:2633# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!2634#fileCnt = fileCnt + 12635continue26362637for prop in["depotFile","rev","action","type"]:2638 details["%s%s"% (prop, fileCnt)] = info[prop]26392640 fileCnt = fileCnt +126412642 details["change"] = newestRevision26432644# Use time from top-most change so that all git p4 clones of2645# the same p4 repo have the same commit SHA1s.2646 res =p4CmdList("describe -s%d"% newestRevision)2647 newestTime =None2648for r in res:2649if r.has_key('time'):2650 newestTime =int(r['time'])2651if newestTime is None:2652die("\"describe -s\"on newest change%ddid not give a time")2653 details["time"] = newestTime26542655 self.updateOptionDict(details)2656try:2657 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)2658exceptIOError:2659print"IO error with git fast-import. Is your git version recent enough?"2660print self.gitError.read()266126622663defrun(self, args):2664 self.depotPaths = []2665 self.changeRange =""2666 self.initialParent =""2667 self.previousDepotPaths = []26682669# map from branch depot path to parent branch2670 self.knownBranches = {}2671 self.initialParents = {}2672 self.hasOrigin =originP4BranchesExist()2673if not self.syncWithOrigin:2674 self.hasOrigin =False26752676if self.importIntoRemotes:2677 self.refPrefix ="refs/remotes/p4/"2678else:2679 self.refPrefix ="refs/heads/p4/"26802681if self.syncWithOrigin and self.hasOrigin:2682if not self.silent:2683print"Syncing with origin first by calling git fetch origin"2684system("git fetch origin")26852686iflen(self.branch) ==0:2687 self.branch = self.refPrefix +"master"2688ifgitBranchExists("refs/heads/p4")and self.importIntoRemotes:2689system("git update-ref%srefs/heads/p4"% self.branch)2690system("git branch -D p4");2691# create it /after/ importing, when master exists2692if notgitBranchExists(self.refPrefix +"HEAD")and self.importIntoRemotes andgitBranchExists(self.branch):2693system("git symbolic-ref%sHEAD%s"% (self.refPrefix, self.branch))26942695# accept either the command-line option, or the configuration variable2696if self.useClientSpec:2697# will use this after clone to set the variable2698 self.useClientSpec_from_options =True2699else:2700ifgitConfig("git-p4.useclientspec","--bool") =="true":2701 self.useClientSpec =True2702if self.useClientSpec:2703 self.clientSpecDirs =getClientSpec()27042705# TODO: should always look at previous commits,2706# merge with previous imports, if possible.2707if args == []:2708if self.hasOrigin:2709createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)2710 self.listExistingP4GitBranches()27112712iflen(self.p4BranchesInGit) >1:2713if not self.silent:2714print"Importing from/into multiple branches"2715 self.detectBranches =True27162717if self.verbose:2718print"branches:%s"% self.p4BranchesInGit27192720 p4Change =02721for branch in self.p4BranchesInGit:2722 logMsg =extractLogMessageFromGitCommit(self.refPrefix + branch)27232724 settings =extractSettingsGitLog(logMsg)27252726 self.readOptions(settings)2727if(settings.has_key('depot-paths')2728and settings.has_key('change')):2729 change =int(settings['change']) +12730 p4Change =max(p4Change, change)27312732 depotPaths =sorted(settings['depot-paths'])2733if self.previousDepotPaths == []:2734 self.previousDepotPaths = depotPaths2735else:2736 paths = []2737for(prev, cur)inzip(self.previousDepotPaths, depotPaths):2738 prev_list = prev.split("/")2739 cur_list = cur.split("/")2740for i inrange(0,min(len(cur_list),len(prev_list))):2741if cur_list[i] <> prev_list[i]:2742 i = i -12743break27442745 paths.append("/".join(cur_list[:i +1]))27462747 self.previousDepotPaths = paths27482749if p4Change >0:2750 self.depotPaths =sorted(self.previousDepotPaths)2751 self.changeRange ="@%s,#head"% p4Change2752if not self.detectBranches:2753 self.initialParent =parseRevision(self.branch)2754if not self.silent and not self.detectBranches:2755print"Performing incremental import into%sgit branch"% self.branch27562757if not self.branch.startswith("refs/"):2758 self.branch ="refs/heads/"+ self.branch27592760iflen(args) ==0and self.depotPaths:2761if not self.silent:2762print"Depot paths:%s"%' '.join(self.depotPaths)2763else:2764if self.depotPaths and self.depotPaths != args:2765print("previous import used depot path%sand now%swas specified. "2766"This doesn't work!"% (' '.join(self.depotPaths),2767' '.join(args)))2768 sys.exit(1)27692770 self.depotPaths =sorted(args)27712772 revision =""2773 self.users = {}27742775# Make sure no revision specifiers are used when --changesfile2776# is specified.2777 bad_changesfile =False2778iflen(self.changesFile) >0:2779for p in self.depotPaths:2780if p.find("@") >=0or p.find("#") >=0:2781 bad_changesfile =True2782break2783if bad_changesfile:2784die("Option --changesfile is incompatible with revision specifiers")27852786 newPaths = []2787for p in self.depotPaths:2788if p.find("@") != -1:2789 atIdx = p.index("@")2790 self.changeRange = p[atIdx:]2791if self.changeRange =="@all":2792 self.changeRange =""2793elif','not in self.changeRange:2794 revision = self.changeRange2795 self.changeRange =""2796 p = p[:atIdx]2797elif p.find("#") != -1:2798 hashIdx = p.index("#")2799 revision = p[hashIdx:]2800 p = p[:hashIdx]2801elif self.previousDepotPaths == []:2802# pay attention to changesfile, if given, else import2803# the entire p4 tree at the head revision2804iflen(self.changesFile) ==0:2805 revision ="#head"28062807 p = re.sub("\.\.\.$","", p)2808if not p.endswith("/"):2809 p +="/"28102811 newPaths.append(p)28122813 self.depotPaths = newPaths28142815 self.loadUserMapFromCache()2816 self.labels = {}2817if self.detectLabels:2818 self.getLabels();28192820if self.detectBranches:2821## FIXME - what's a P4 projectName ?2822 self.projectName = self.guessProjectName()28232824if self.hasOrigin:2825 self.getBranchMappingFromGitBranches()2826else:2827 self.getBranchMapping()2828if self.verbose:2829print"p4-git branches:%s"% self.p4BranchesInGit2830print"initial parents:%s"% self.initialParents2831for b in self.p4BranchesInGit:2832if b !="master":28332834## FIXME2835 b = b[len(self.projectName):]2836 self.createdBranches.add(b)28372838 self.tz ="%+03d%02d"% (- time.timezone /3600, ((- time.timezone %3600) /60))28392840 importProcess = subprocess.Popen(["git","fast-import"],2841 stdin=subprocess.PIPE, stdout=subprocess.PIPE,2842 stderr=subprocess.PIPE);2843 self.gitOutput = importProcess.stdout2844 self.gitStream = importProcess.stdin2845 self.gitError = importProcess.stderr28462847if revision:2848 self.importHeadRevision(revision)2849else:2850 changes = []28512852iflen(self.changesFile) >0:2853 output =open(self.changesFile).readlines()2854 changeSet =set()2855for line in output:2856 changeSet.add(int(line))28572858for change in changeSet:2859 changes.append(change)28602861 changes.sort()2862else:2863# catch "git p4 sync" with no new branches, in a repo that2864# does not have any existing p4 branches2865iflen(args) ==0and not self.p4BranchesInGit:2866die("No remote p4 branches. Perhaps you never did\"git p4 clone\"in here.");2867if self.verbose:2868print"Getting p4 changes for%s...%s"% (', '.join(self.depotPaths),2869 self.changeRange)2870 changes =p4ChangesForPaths(self.depotPaths, self.changeRange)28712872iflen(self.maxChanges) >0:2873 changes = changes[:min(int(self.maxChanges),len(changes))]28742875iflen(changes) ==0:2876if not self.silent:2877print"No changes to import!"2878else:2879if not self.silent and not self.detectBranches:2880print"Import destination:%s"% self.branch28812882 self.updatedBranches =set()28832884 self.importChanges(changes)28852886if not self.silent:2887print""2888iflen(self.updatedBranches) >0:2889 sys.stdout.write("Updated branches: ")2890for b in self.updatedBranches:2891 sys.stdout.write("%s"% b)2892 sys.stdout.write("\n")28932894ifgitConfig("git-p4.importLabels","--bool") =="true":2895 self.importLabels =True28962897if self.importLabels:2898 p4Labels =getP4Labels(self.depotPaths)2899 gitTags =getGitTags()29002901 missingP4Labels = p4Labels - gitTags2902 self.importP4Labels(self.gitStream, missingP4Labels)29032904 self.gitStream.close()2905if importProcess.wait() !=0:2906die("fast-import failed:%s"% self.gitError.read())2907 self.gitOutput.close()2908 self.gitError.close()29092910# Cleanup temporary branches created during import2911if self.tempBranches != []:2912for branch in self.tempBranches:2913read_pipe("git update-ref -d%s"% branch)2914 os.rmdir(os.path.join(os.environ.get("GIT_DIR",".git"), self.tempBranchLocation))29152916return True29172918classP4Rebase(Command):2919def__init__(self):2920 Command.__init__(self)2921 self.options = [2922 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),2923]2924 self.importLabels =False2925 self.description = ("Fetches the latest revision from perforce and "2926+"rebases the current work (branch) against it")29272928defrun(self, args):2929 sync =P4Sync()2930 sync.importLabels = self.importLabels2931 sync.run([])29322933return self.rebase()29342935defrebase(self):2936if os.system("git update-index --refresh") !=0:2937die("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.");2938iflen(read_pipe("git diff-index HEAD --")) >0:2939die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");29402941[upstream, settings] =findUpstreamBranchPoint()2942iflen(upstream) ==0:2943die("Cannot find upstream branchpoint for rebase")29442945# the branchpoint may be p4/foo~3, so strip off the parent2946 upstream = re.sub("~[0-9]+$","", upstream)29472948print"Rebasing the current branch onto%s"% upstream2949 oldHead =read_pipe("git rev-parse HEAD").strip()2950system("git rebase%s"% upstream)2951system("git diff-tree --stat --summary -M%sHEAD"% oldHead)2952return True29532954classP4Clone(P4Sync):2955def__init__(self):2956 P4Sync.__init__(self)2957 self.description ="Creates a new git repository and imports from Perforce into it"2958 self.usage ="usage: %prog [options] //depot/path[@revRange]"2959 self.options += [2960 optparse.make_option("--destination", dest="cloneDestination",2961 action='store', default=None,2962help="where to leave result of the clone"),2963 optparse.make_option("-/", dest="cloneExclude",2964 action="append",type="string",2965help="exclude depot path"),2966 optparse.make_option("--bare", dest="cloneBare",2967 action="store_true", default=False),2968]2969 self.cloneDestination =None2970 self.needsGit =False2971 self.cloneBare =False29722973# This is required for the "append" cloneExclude action2974defensure_value(self, attr, value):2975if nothasattr(self, attr)orgetattr(self, attr)is None:2976setattr(self, attr, value)2977returngetattr(self, attr)29782979defdefaultDestination(self, args):2980## TODO: use common prefix of args?2981 depotPath = args[0]2982 depotDir = re.sub("(@[^@]*)$","", depotPath)2983 depotDir = re.sub("(#[^#]*)$","", depotDir)2984 depotDir = re.sub(r"\.\.\.$","", depotDir)2985 depotDir = re.sub(r"/$","", depotDir)2986return os.path.split(depotDir)[1]29872988defrun(self, args):2989iflen(args) <1:2990return False29912992if self.keepRepoPath and not self.cloneDestination:2993 sys.stderr.write("Must specify destination for --keep-path\n")2994 sys.exit(1)29952996 depotPaths = args29972998if not self.cloneDestination andlen(depotPaths) >1:2999 self.cloneDestination = depotPaths[-1]3000 depotPaths = depotPaths[:-1]30013002 self.cloneExclude = ["/"+p for p in self.cloneExclude]3003for p in depotPaths:3004if not p.startswith("//"):3005return False30063007if not self.cloneDestination:3008 self.cloneDestination = self.defaultDestination(args)30093010print"Importing from%sinto%s"% (', '.join(depotPaths), self.cloneDestination)30113012if not os.path.exists(self.cloneDestination):3013 os.makedirs(self.cloneDestination)3014chdir(self.cloneDestination)30153016 init_cmd = ["git","init"]3017if self.cloneBare:3018 init_cmd.append("--bare")3019 subprocess.check_call(init_cmd)30203021if not P4Sync.run(self, depotPaths):3022return False3023if self.branch !="master":3024if self.importIntoRemotes:3025 masterbranch ="refs/remotes/p4/master"3026else:3027 masterbranch ="refs/heads/p4/master"3028ifgitBranchExists(masterbranch):3029system("git branch master%s"% masterbranch)3030if not self.cloneBare:3031system("git checkout -f")3032else:3033print"Could not detect main branch. No checkout/master branch created."30343035# auto-set this variable if invoked with --use-client-spec3036if self.useClientSpec_from_options:3037system("git config --bool git-p4.useclientspec true")30383039return True30403041classP4Branches(Command):3042def__init__(self):3043 Command.__init__(self)3044 self.options = [ ]3045 self.description = ("Shows the git branches that hold imports and their "3046+"corresponding perforce depot paths")3047 self.verbose =False30483049defrun(self, args):3050iforiginP4BranchesExist():3051createOrUpdateBranchesFromOrigin()30523053 cmdline ="git rev-parse --symbolic "3054 cmdline +=" --remotes"30553056for line inread_pipe_lines(cmdline):3057 line = line.strip()30583059if not line.startswith('p4/')or line =="p4/HEAD":3060continue3061 branch = line30623063 log =extractLogMessageFromGitCommit("refs/remotes/%s"% branch)3064 settings =extractSettingsGitLog(log)30653066print"%s<=%s(%s)"% (branch,",".join(settings["depot-paths"]), settings["change"])3067return True30683069classHelpFormatter(optparse.IndentedHelpFormatter):3070def__init__(self):3071 optparse.IndentedHelpFormatter.__init__(self)30723073defformat_description(self, description):3074if description:3075return description +"\n"3076else:3077return""30783079defprintUsage(commands):3080print"usage:%s<command> [options]"% sys.argv[0]3081print""3082print"valid commands:%s"%", ".join(commands)3083print""3084print"Try%s<command> --help for command specific help."% sys.argv[0]3085print""30863087commands = {3088"debug": P4Debug,3089"submit": P4Submit,3090"commit": P4Submit,3091"sync": P4Sync,3092"rebase": P4Rebase,3093"clone": P4Clone,3094"rollback": P4RollBack,3095"branches": P4Branches3096}309730983099defmain():3100iflen(sys.argv[1:]) ==0:3101printUsage(commands.keys())3102 sys.exit(2)31033104 cmd =""3105 cmdName = sys.argv[1]3106try:3107 klass = commands[cmdName]3108 cmd =klass()3109exceptKeyError:3110print"unknown command%s"% cmdName3111print""3112printUsage(commands.keys())3113 sys.exit(2)31143115 options = cmd.options3116 cmd.gitdir = os.environ.get("GIT_DIR",None)31173118 args = sys.argv[2:]31193120 options.append(optparse.make_option("--verbose","-v", dest="verbose", action="store_true"))3121if cmd.needsGit:3122 options.append(optparse.make_option("--git-dir", dest="gitdir"))31233124 parser = optparse.OptionParser(cmd.usage.replace("%prog","%prog "+ cmdName),3125 options,3126 description = cmd.description,3127 formatter =HelpFormatter())31283129(cmd, args) = parser.parse_args(sys.argv[2:], cmd);3130global verbose3131 verbose = cmd.verbose3132if cmd.needsGit:3133if cmd.gitdir ==None:3134 cmd.gitdir = os.path.abspath(".git")3135if notisValidGitDir(cmd.gitdir):3136 cmd.gitdir =read_pipe("git rev-parse --git-dir").strip()3137if os.path.exists(cmd.gitdir):3138 cdup =read_pipe("git rev-parse --show-cdup").strip()3139iflen(cdup) >0:3140chdir(cdup);31413142if notisValidGitDir(cmd.gitdir):3143ifisValidGitDir(cmd.gitdir +"/.git"):3144 cmd.gitdir +="/.git"3145else:3146die("fatal: cannot locate git repository at%s"% cmd.gitdir)31473148 os.environ["GIT_DIR"] = cmd.gitdir31493150if not cmd.run(args):3151 parser.print_help()3152 sys.exit(2)315331543155if __name__ =='__main__':3156main()