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): 847def__init__(self): 848 Command.__init__(self) 849 P4UserMap.__init__(self) 850 self.options = [ 851 optparse.make_option("--origin", dest="origin"), 852 optparse.make_option("-M", dest="detectRenames", action="store_true"), 853# preserve the user, requires relevant p4 permissions 854 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"), 855 optparse.make_option("--export-labels", dest="exportLabels", action="store_true"), 856 optparse.make_option("--dry-run","-n", dest="dry_run", action="store_true"), 857 optparse.make_option("--prepare-p4-only", dest="prepare_p4_only", action="store_true"), 858] 859 self.description ="Submit changes from git to the perforce depot." 860 self.usage +=" [name of git branch to submit into perforce depot]" 861 self.origin ="" 862 self.detectRenames =False 863 self.preserveUser =gitConfig("git-p4.preserveUser").lower() =="true" 864 self.dry_run =False 865 self.prepare_p4_only =False 866 self.isWindows = (platform.system() =="Windows") 867 self.exportLabels =False 868 self.p4HasMoveCommand =p4_has_command("move") 869 870defcheck(self): 871iflen(p4CmdList("opened ...")) >0: 872die("You have files opened with perforce! Close them before starting the sync.") 873 874defseparate_jobs_from_description(self, message): 875"""Extract and return a possible Jobs field in the commit 876 message. It goes into a separate section in the p4 change 877 specification. 878 879 A jobs line starts with "Jobs:" and looks like a new field 880 in a form. Values are white-space separated on the same 881 line or on following lines that start with a tab. 882 883 This does not parse and extract the full git commit message 884 like a p4 form. It just sees the Jobs: line as a marker 885 to pass everything from then on directly into the p4 form, 886 but outside the description section. 887 888 Return a tuple (stripped log message, jobs string).""" 889 890 m = re.search(r'^Jobs:', message, re.MULTILINE) 891if m is None: 892return(message,None) 893 894 jobtext = message[m.start():] 895 stripped_message = message[:m.start()].rstrip() 896return(stripped_message, jobtext) 897 898defprepareLogMessage(self, template, message, jobs): 899"""Edits the template returned from "p4 change -o" to insert 900 the message in the Description field, and the jobs text in 901 the Jobs field.""" 902 result ="" 903 904 inDescriptionSection =False 905 906for line in template.split("\n"): 907if line.startswith("#"): 908 result += line +"\n" 909continue 910 911if inDescriptionSection: 912if line.startswith("Files:")or line.startswith("Jobs:"): 913 inDescriptionSection =False 914# insert Jobs section 915if jobs: 916 result += jobs +"\n" 917else: 918continue 919else: 920if line.startswith("Description:"): 921 inDescriptionSection =True 922 line +="\n" 923for messageLine in message.split("\n"): 924 line +="\t"+ messageLine +"\n" 925 926 result += line +"\n" 927 928return result 929 930defpatchRCSKeywords(self,file, pattern): 931# Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern 932(handle, outFileName) = tempfile.mkstemp(dir='.') 933try: 934 outFile = os.fdopen(handle,"w+") 935 inFile =open(file,"r") 936 regexp = re.compile(pattern, re.VERBOSE) 937for line in inFile.readlines(): 938 line = regexp.sub(r'$\1$', line) 939 outFile.write(line) 940 inFile.close() 941 outFile.close() 942# Forcibly overwrite the original file 943 os.unlink(file) 944 shutil.move(outFileName,file) 945except: 946# cleanup our temporary file 947 os.unlink(outFileName) 948print"Failed to strip RCS keywords in%s"%file 949raise 950 951print"Patched up RCS keywords in%s"%file 952 953defp4UserForCommit(self,id): 954# Return the tuple (perforce user,git email) for a given git commit id 955 self.getUserMapFromPerforceServer() 956 gitEmail =read_pipe("git log --max-count=1 --format='%%ae'%s"%id) 957 gitEmail = gitEmail.strip() 958if not self.emails.has_key(gitEmail): 959return(None,gitEmail) 960else: 961return(self.emails[gitEmail],gitEmail) 962 963defcheckValidP4Users(self,commits): 964# check if any git authors cannot be mapped to p4 users 965foridin commits: 966(user,email) = self.p4UserForCommit(id) 967if not user: 968 msg ="Cannot find p4 user for email%sin commit%s."% (email,id) 969ifgitConfig('git-p4.allowMissingP4Users').lower() =="true": 970print"%s"% msg 971else: 972die("Error:%s\nSet git-p4.allowMissingP4Users to true to allow this."% msg) 973 974deflastP4Changelist(self): 975# Get back the last changelist number submitted in this client spec. This 976# then gets used to patch up the username in the change. If the same 977# client spec is being used by multiple processes then this might go 978# wrong. 979 results =p4CmdList("client -o")# find the current client 980 client =None 981for r in results: 982if r.has_key('Client'): 983 client = r['Client'] 984break 985if not client: 986die("could not get client spec") 987 results =p4CmdList(["changes","-c", client,"-m","1"]) 988for r in results: 989if r.has_key('change'): 990return r['change'] 991die("Could not get changelist number for last submit - cannot patch up user details") 992 993defmodifyChangelistUser(self, changelist, newUser): 994# fixup the user field of a changelist after it has been submitted. 995 changes =p4CmdList("change -o%s"% changelist) 996iflen(changes) !=1: 997die("Bad output from p4 change modifying%sto user%s"% 998(changelist, newUser)) 9991000 c = changes[0]1001if c['User'] == newUser:return# nothing to do1002 c['User'] = newUser1003input= marshal.dumps(c)10041005 result =p4CmdList("change -f -i", stdin=input)1006for r in result:1007if r.has_key('code'):1008if r['code'] =='error':1009die("Could not modify user field of changelist%sto%s:%s"% (changelist, newUser, r['data']))1010if r.has_key('data'):1011print("Updated user field for changelist%sto%s"% (changelist, newUser))1012return1013die("Could not modify user field of changelist%sto%s"% (changelist, newUser))10141015defcanChangeChangelists(self):1016# check to see if we have p4 admin or super-user permissions, either of1017# which are required to modify changelists.1018 results =p4CmdList(["protects", self.depotPath])1019for r in results:1020if r.has_key('perm'):1021if r['perm'] =='admin':1022return11023if r['perm'] =='super':1024return11025return010261027defprepareSubmitTemplate(self):1028"""Run "p4 change -o" to grab a change specification template.1029 This does not use "p4 -G", as it is nice to keep the submission1030 template in original order, since a human might edit it.10311032 Remove lines in the Files section that show changes to files1033 outside the depot path we're committing into."""10341035 template =""1036 inFilesSection =False1037for line inp4_read_pipe_lines(['change','-o']):1038if line.endswith("\r\n"):1039 line = line[:-2] +"\n"1040if inFilesSection:1041if line.startswith("\t"):1042# path starts and ends with a tab1043 path = line[1:]1044 lastTab = path.rfind("\t")1045if lastTab != -1:1046 path = path[:lastTab]1047if notp4PathStartsWith(path, self.depotPath):1048continue1049else:1050 inFilesSection =False1051else:1052if line.startswith("Files:"):1053 inFilesSection =True10541055 template += line10561057return template10581059defedit_template(self, template_file):1060"""Invoke the editor to let the user change the submission1061 message. Return true if okay to continue with the submit."""10621063# if configured to skip the editing part, just submit1064ifgitConfig("git-p4.skipSubmitEdit") =="true":1065return True10661067# look at the modification time, to check later if the user saved1068# the file1069 mtime = os.stat(template_file).st_mtime10701071# invoke the editor1072if os.environ.has_key("P4EDITOR")and(os.environ.get("P4EDITOR") !=""):1073 editor = os.environ.get("P4EDITOR")1074else:1075 editor =read_pipe("git var GIT_EDITOR").strip()1076system(editor +" "+ template_file)10771078# If the file was not saved, prompt to see if this patch should1079# be skipped. But skip this verification step if configured so.1080ifgitConfig("git-p4.skipSubmitEditCheck") =="true":1081return True10821083# modification time updated means user saved the file1084if os.stat(template_file).st_mtime > mtime:1085return True10861087while True:1088 response =raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")1089if response =='y':1090return True1091if response =='n':1092return False10931094defapplyCommit(self,id):1095"""Apply one commit, return True if it succeeded."""10961097print"Applying",read_pipe(["git","show","-s",1098"--format=format:%h%s",id])10991100(p4User, gitEmail) = self.p4UserForCommit(id)11011102 diff =read_pipe_lines("git diff-tree -r%s\"%s^\" \"%s\""% (self.diffOpts,id,id))1103 filesToAdd =set()1104 filesToDelete =set()1105 editedFiles =set()1106 pureRenameCopy =set()1107 filesToChangeExecBit = {}11081109for line in diff:1110 diff =parseDiffTreeEntry(line)1111 modifier = diff['status']1112 path = diff['src']1113if modifier =="M":1114p4_edit(path)1115ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1116 filesToChangeExecBit[path] = diff['dst_mode']1117 editedFiles.add(path)1118elif modifier =="A":1119 filesToAdd.add(path)1120 filesToChangeExecBit[path] = diff['dst_mode']1121if path in filesToDelete:1122 filesToDelete.remove(path)1123elif modifier =="D":1124 filesToDelete.add(path)1125if path in filesToAdd:1126 filesToAdd.remove(path)1127elif modifier =="C":1128 src, dest = diff['src'], diff['dst']1129p4_integrate(src, dest)1130 pureRenameCopy.add(dest)1131if diff['src_sha1'] != diff['dst_sha1']:1132p4_edit(dest)1133 pureRenameCopy.discard(dest)1134ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1135p4_edit(dest)1136 pureRenameCopy.discard(dest)1137 filesToChangeExecBit[dest] = diff['dst_mode']1138 os.unlink(dest)1139 editedFiles.add(dest)1140elif modifier =="R":1141 src, dest = diff['src'], diff['dst']1142if self.p4HasMoveCommand:1143p4_edit(src)# src must be open before move1144p4_move(src, dest)# opens for (move/delete, move/add)1145else:1146p4_integrate(src, dest)1147if diff['src_sha1'] != diff['dst_sha1']:1148p4_edit(dest)1149else:1150 pureRenameCopy.add(dest)1151ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1152if not self.p4HasMoveCommand:1153p4_edit(dest)# with move: already open, writable1154 filesToChangeExecBit[dest] = diff['dst_mode']1155if not self.p4HasMoveCommand:1156 os.unlink(dest)1157 filesToDelete.add(src)1158 editedFiles.add(dest)1159else:1160die("unknown modifier%sfor%s"% (modifier, path))11611162 diffcmd ="git format-patch -k --stdout\"%s^\"..\"%s\""% (id,id)1163 patchcmd = diffcmd +" | git apply "1164 tryPatchCmd = patchcmd +"--check -"1165 applyPatchCmd = patchcmd +"--check --apply -"1166 patch_succeeded =True11671168if os.system(tryPatchCmd) !=0:1169 fixed_rcs_keywords =False1170 patch_succeeded =False1171print"Unfortunately applying the change failed!"11721173# Patch failed, maybe it's just RCS keyword woes. Look through1174# the patch to see if that's possible.1175ifgitConfig("git-p4.attemptRCSCleanup","--bool") =="true":1176file=None1177 pattern =None1178 kwfiles = {}1179forfilein editedFiles | filesToDelete:1180# did this file's delta contain RCS keywords?1181 pattern =p4_keywords_regexp_for_file(file)11821183if pattern:1184# this file is a possibility...look for RCS keywords.1185 regexp = re.compile(pattern, re.VERBOSE)1186for line inread_pipe_lines(["git","diff","%s^..%s"% (id,id),file]):1187if regexp.search(line):1188if verbose:1189print"got keyword match on%sin%sin%s"% (pattern, line,file)1190 kwfiles[file] = pattern1191break11921193forfilein kwfiles:1194if verbose:1195print"zapping%swith%s"% (line,pattern)1196 self.patchRCSKeywords(file, kwfiles[file])1197 fixed_rcs_keywords =True11981199if fixed_rcs_keywords:1200print"Retrying the patch with RCS keywords cleaned up"1201if os.system(tryPatchCmd) ==0:1202 patch_succeeded =True12031204if not patch_succeeded:1205for f in editedFiles:1206p4_revert(f)1207return False12081209#1210# Apply the patch for real, and do add/delete/+x handling.1211#1212system(applyPatchCmd)12131214for f in filesToAdd:1215p4_add(f)1216for f in filesToDelete:1217p4_revert(f)1218p4_delete(f)12191220# Set/clear executable bits1221for f in filesToChangeExecBit.keys():1222 mode = filesToChangeExecBit[f]1223setP4ExecBit(f, mode)12241225#1226# Build p4 change description, starting with the contents1227# of the git commit message.1228#1229 logMessage =extractLogMessageFromGitCommit(id)1230 logMessage = logMessage.strip()1231(logMessage, jobs) = self.separate_jobs_from_description(logMessage)12321233 template = self.prepareSubmitTemplate()1234 submitTemplate = self.prepareLogMessage(template, logMessage, jobs)12351236if self.preserveUser:1237 submitTemplate +="\n######## Actual user%s, modified after commit\n"% p4User12381239if self.checkAuthorship and not self.p4UserIsMe(p4User):1240 submitTemplate +="######## git author%sdoes not match your p4 account.\n"% gitEmail1241 submitTemplate +="######## Use option --preserve-user to modify authorship.\n"1242 submitTemplate +="######## Variable git-p4.skipUserNameCheck hides this message.\n"12431244 separatorLine ="######## everything below this line is just the diff #######\n"12451246# diff1247if os.environ.has_key("P4DIFF"):1248del(os.environ["P4DIFF"])1249 diff =""1250for editedFile in editedFiles:1251 diff +=p4_read_pipe(['diff','-du',1252wildcard_encode(editedFile)])12531254# new file diff1255 newdiff =""1256for newFile in filesToAdd:1257 newdiff +="==== new file ====\n"1258 newdiff +="--- /dev/null\n"1259 newdiff +="+++%s\n"% newFile1260 f =open(newFile,"r")1261for line in f.readlines():1262 newdiff +="+"+ line1263 f.close()12641265# change description file: submitTemplate, separatorLine, diff, newdiff1266(handle, fileName) = tempfile.mkstemp()1267 tmpFile = os.fdopen(handle,"w+")1268if self.isWindows:1269 submitTemplate = submitTemplate.replace("\n","\r\n")1270 separatorLine = separatorLine.replace("\n","\r\n")1271 newdiff = newdiff.replace("\n","\r\n")1272 tmpFile.write(submitTemplate + separatorLine + diff + newdiff)1273 tmpFile.close()12741275if self.prepare_p4_only:1276#1277# Leave the p4 tree prepared, and the submit template around1278# and let the user decide what to do next1279#1280print1281print"P4 workspace prepared for submission."1282print"To submit or revert, go to client workspace"1283print" "+ self.clientPath1284print1285print"To submit, use\"p4 submit\"to write a new description,"1286print"or\"p4 submit -i%s\"to use the one prepared by" \1287"\"git p4\"."% fileName1288print"You can delete the file\"%s\"when finished."% fileName12891290if self.preserveUser and p4User and not self.p4UserIsMe(p4User):1291print"To preserve change ownership by user%s, you must\n" \1292"do\"p4 change -f <change>\"after submitting and\n" \1293"edit the User field."1294if pureRenameCopy:1295print"After submitting, renamed files must be re-synced."1296print"Invoke\"p4 sync -f\"on each of these files:"1297for f in pureRenameCopy:1298print" "+ f12991300print1301print"To revert the changes, use\"p4 revert ...\", and delete"1302print"the submit template file\"%s\""% fileName1303if filesToAdd:1304print"Since the commit adds new files, they must be deleted:"1305for f in filesToAdd:1306print" "+ f1307print1308return True13091310#1311# Let the user edit the change description, then submit it.1312#1313if self.edit_template(fileName):1314# read the edited message and submit1315 ret =True1316 tmpFile =open(fileName,"rb")1317 message = tmpFile.read()1318 tmpFile.close()1319 submitTemplate = message[:message.index(separatorLine)]1320if self.isWindows:1321 submitTemplate = submitTemplate.replace("\r\n","\n")1322p4_write_pipe(['submit','-i'], submitTemplate)13231324if self.preserveUser:1325if p4User:1326# Get last changelist number. Cannot easily get it from1327# the submit command output as the output is1328# unmarshalled.1329 changelist = self.lastP4Changelist()1330 self.modifyChangelistUser(changelist, p4User)13311332# The rename/copy happened by applying a patch that created a1333# new file. This leaves it writable, which confuses p4.1334for f in pureRenameCopy:1335p4_sync(f,"-f")13361337else:1338# skip this patch1339 ret =False1340print"Submission cancelled, undoing p4 changes."1341for f in editedFiles:1342p4_revert(f)1343for f in filesToAdd:1344p4_revert(f)1345 os.remove(f)1346for f in filesToDelete:1347p4_revert(f)13481349 os.remove(fileName)1350return ret13511352# Export git tags as p4 labels. Create a p4 label and then tag1353# with that.1354defexportGitTags(self, gitTags):1355 validLabelRegexp =gitConfig("git-p4.labelExportRegexp")1356iflen(validLabelRegexp) ==0:1357 validLabelRegexp = defaultLabelRegexp1358 m = re.compile(validLabelRegexp)13591360for name in gitTags:13611362if not m.match(name):1363if verbose:1364print"tag%sdoes not match regexp%s"% (name, validLabelRegexp)1365continue13661367# Get the p4 commit this corresponds to1368 logMessage =extractLogMessageFromGitCommit(name)1369 values =extractSettingsGitLog(logMessage)13701371if not values.has_key('change'):1372# a tag pointing to something not sent to p4; ignore1373if verbose:1374print"git tag%sdoes not give a p4 commit"% name1375continue1376else:1377 changelist = values['change']13781379# Get the tag details.1380 inHeader =True1381 isAnnotated =False1382 body = []1383for l inread_pipe_lines(["git","cat-file","-p", name]):1384 l = l.strip()1385if inHeader:1386if re.match(r'tag\s+', l):1387 isAnnotated =True1388elif re.match(r'\s*$', l):1389 inHeader =False1390continue1391else:1392 body.append(l)13931394if not isAnnotated:1395 body = ["lightweight tag imported by git p4\n"]13961397# Create the label - use the same view as the client spec we are using1398 clientSpec =getClientSpec()13991400 labelTemplate ="Label:%s\n"% name1401 labelTemplate +="Description:\n"1402for b in body:1403 labelTemplate +="\t"+ b +"\n"1404 labelTemplate +="View:\n"1405for mapping in clientSpec.mappings:1406 labelTemplate +="\t%s\n"% mapping.depot_side.path14071408if self.dry_run:1409print"Would create p4 label%sfor tag"% name1410elif self.prepare_p4_only:1411print"Not creating p4 label%sfor tag due to option" \1412" --prepare-p4-only"% name1413else:1414p4_write_pipe(["label","-i"], labelTemplate)14151416# Use the label1417p4_system(["tag","-l", name] +1418["%s@%s"% (mapping.depot_side.path, changelist)for mapping in clientSpec.mappings])14191420if verbose:1421print"created p4 label for tag%s"% name14221423defrun(self, args):1424iflen(args) ==0:1425 self.master =currentGitBranch()1426iflen(self.master) ==0or notgitBranchExists("refs/heads/%s"% self.master):1427die("Detecting current git branch failed!")1428eliflen(args) ==1:1429 self.master = args[0]1430if notbranchExists(self.master):1431die("Branch%sdoes not exist"% self.master)1432else:1433return False14341435 allowSubmit =gitConfig("git-p4.allowSubmit")1436iflen(allowSubmit) >0and not self.master in allowSubmit.split(","):1437die("%sis not in git-p4.allowSubmit"% self.master)14381439[upstream, settings] =findUpstreamBranchPoint()1440 self.depotPath = settings['depot-paths'][0]1441iflen(self.origin) ==0:1442 self.origin = upstream14431444if self.preserveUser:1445if not self.canChangeChangelists():1446die("Cannot preserve user names without p4 super-user or admin permissions")14471448if self.verbose:1449print"Origin branch is "+ self.origin14501451iflen(self.depotPath) ==0:1452print"Internal error: cannot locate perforce depot path from existing branches"1453 sys.exit(128)14541455 self.useClientSpec =False1456ifgitConfig("git-p4.useclientspec","--bool") =="true":1457 self.useClientSpec =True1458if self.useClientSpec:1459 self.clientSpecDirs =getClientSpec()14601461if self.useClientSpec:1462# all files are relative to the client spec1463 self.clientPath =getClientRoot()1464else:1465 self.clientPath =p4Where(self.depotPath)14661467if self.clientPath =="":1468die("Error: Cannot locate perforce checkout of%sin client view"% self.depotPath)14691470print"Perforce checkout for depot path%slocated at%s"% (self.depotPath, self.clientPath)1471 self.oldWorkingDirectory = os.getcwd()14721473# ensure the clientPath exists1474 new_client_dir =False1475if not os.path.exists(self.clientPath):1476 new_client_dir =True1477 os.makedirs(self.clientPath)14781479chdir(self.clientPath)1480if self.dry_run:1481print"Would synchronize p4 checkout in%s"% self.clientPath1482else:1483print"Synchronizing p4 checkout..."1484if new_client_dir:1485# old one was destroyed, and maybe nobody told p41486p4_sync("...","-f")1487else:1488p4_sync("...")1489 self.check()14901491 commits = []1492for line inread_pipe_lines("git rev-list --no-merges%s..%s"% (self.origin, self.master)):1493 commits.append(line.strip())1494 commits.reverse()14951496if self.preserveUser or(gitConfig("git-p4.skipUserNameCheck") =="true"):1497 self.checkAuthorship =False1498else:1499 self.checkAuthorship =True15001501if self.preserveUser:1502 self.checkValidP4Users(commits)15031504#1505# Build up a set of options to be passed to diff when1506# submitting each commit to p4.1507#1508if self.detectRenames:1509# command-line -M arg1510 self.diffOpts ="-M"1511else:1512# If not explicitly set check the config variable1513 detectRenames =gitConfig("git-p4.detectRenames")15141515if detectRenames.lower() =="false"or detectRenames =="":1516 self.diffOpts =""1517elif detectRenames.lower() =="true":1518 self.diffOpts ="-M"1519else:1520 self.diffOpts ="-M%s"% detectRenames15211522# no command-line arg for -C or --find-copies-harder, just1523# config variables1524 detectCopies =gitConfig("git-p4.detectCopies")1525if detectCopies.lower() =="false"or detectCopies =="":1526pass1527elif detectCopies.lower() =="true":1528 self.diffOpts +=" -C"1529else:1530 self.diffOpts +=" -C%s"% detectCopies15311532ifgitConfig("git-p4.detectCopiesHarder","--bool") =="true":1533 self.diffOpts +=" --find-copies-harder"15341535#1536# Apply the commits, one at a time. On failure, ask if should1537# continue to try the rest of the patches, or quit.1538#1539if self.dry_run:1540print"Would apply"1541 applied = []1542 last =len(commits) -11543for i, commit inenumerate(commits):1544if self.dry_run:1545print" ",read_pipe(["git","show","-s",1546"--format=format:%h%s", commit])1547 ok =True1548else:1549 ok = self.applyCommit(commit)1550if ok:1551 applied.append(commit)1552else:1553if self.prepare_p4_only and i < last:1554print"Processing only the first commit due to option" \1555" --prepare-p4-only"1556break1557if i < last:1558 quit =False1559while True:1560print"What do you want to do?"1561 response =raw_input("[s]kip this commit but apply"1562" the rest, or [q]uit? ")1563if not response:1564continue1565if response[0] =="s":1566print"Skipping this commit, but applying the rest"1567break1568if response[0] =="q":1569print"Quitting"1570 quit =True1571break1572if quit:1573break15741575chdir(self.oldWorkingDirectory)15761577if self.dry_run:1578pass1579elif self.prepare_p4_only:1580pass1581eliflen(commits) ==len(applied):1582print"All commits applied!"15831584 sync =P4Sync()1585 sync.run([])15861587 rebase =P4Rebase()1588 rebase.rebase()15891590else:1591iflen(applied) ==0:1592print"No commits applied."1593else:1594print"Applied only the commits marked with '*':"1595for c in commits:1596if c in applied:1597 star ="*"1598else:1599 star =" "1600print star,read_pipe(["git","show","-s",1601"--format=format:%h%s", c])1602print"You will have to do 'git p4 sync' and rebase."16031604ifgitConfig("git-p4.exportLabels","--bool") =="true":1605 self.exportLabels =True16061607if self.exportLabels:1608 p4Labels =getP4Labels(self.depotPath)1609 gitTags =getGitTags()16101611 missingGitTags = gitTags - p4Labels1612 self.exportGitTags(missingGitTags)16131614# exit with error unless everything applied perfecly1615iflen(commits) !=len(applied):1616 sys.exit(1)16171618return True16191620classView(object):1621"""Represent a p4 view ("p4 help views"), and map files in a1622 repo according to the view."""16231624classPath(object):1625"""A depot or client path, possibly containing wildcards.1626 The only one supported is ... at the end, currently.1627 Initialize with the full path, with //depot or //client."""16281629def__init__(self, path, is_depot):1630 self.path = path1631 self.is_depot = is_depot1632 self.find_wildcards()1633# remember the prefix bit, useful for relative mappings1634 m = re.match("(//[^/]+/)", self.path)1635if not m:1636die("Path%sdoes not start with //prefix/"% self.path)1637 prefix = m.group(1)1638if not self.is_depot:1639# strip //client/ on client paths1640 self.path = self.path[len(prefix):]16411642deffind_wildcards(self):1643"""Make sure wildcards are valid, and set up internal1644 variables."""16451646 self.ends_triple_dot =False1647# There are three wildcards allowed in p4 views1648# (see "p4 help views"). This code knows how to1649# handle "..." (only at the end), but cannot deal with1650# "%%n" or "*". Only check the depot_side, as p4 should1651# validate that the client_side matches too.1652if re.search(r'%%[1-9]', self.path):1653die("Can't handle%%n wildcards in view:%s"% self.path)1654if self.path.find("*") >=0:1655die("Can't handle * wildcards in view:%s"% self.path)1656 triple_dot_index = self.path.find("...")1657if triple_dot_index >=0:1658if triple_dot_index !=len(self.path) -3:1659die("Can handle only single ... wildcard, at end:%s"%1660 self.path)1661 self.ends_triple_dot =True16621663defensure_compatible(self, other_path):1664"""Make sure the wildcards agree."""1665if self.ends_triple_dot != other_path.ends_triple_dot:1666die("Both paths must end with ... if either does;\n"+1667"paths:%s %s"% (self.path, other_path.path))16681669defmatch_wildcards(self, test_path):1670"""See if this test_path matches us, and fill in the value1671 of the wildcards if so. Returns a tuple of1672 (True|False, wildcards[]). For now, only the ... at end1673 is supported, so at most one wildcard."""1674if self.ends_triple_dot:1675 dotless = self.path[:-3]1676if test_path.startswith(dotless):1677 wildcard = test_path[len(dotless):]1678return(True, [ wildcard ])1679else:1680if test_path == self.path:1681return(True, [])1682return(False, [])16831684defmatch(self, test_path):1685"""Just return if it matches; don't bother with the wildcards."""1686 b, _ = self.match_wildcards(test_path)1687return b16881689deffill_in_wildcards(self, wildcards):1690"""Return the relative path, with the wildcards filled in1691 if there are any."""1692if self.ends_triple_dot:1693return self.path[:-3] + wildcards[0]1694else:1695return self.path16961697classMapping(object):1698def__init__(self, depot_side, client_side, overlay, exclude):1699# depot_side is without the trailing /... if it had one1700 self.depot_side = View.Path(depot_side, is_depot=True)1701 self.client_side = View.Path(client_side, is_depot=False)1702 self.overlay = overlay # started with "+"1703 self.exclude = exclude # started with "-"1704assert not(self.overlay and self.exclude)1705 self.depot_side.ensure_compatible(self.client_side)17061707def__str__(self):1708 c =" "1709if self.overlay:1710 c ="+"1711if self.exclude:1712 c ="-"1713return"View.Mapping:%s%s->%s"% \1714(c, self.depot_side.path, self.client_side.path)17151716defmap_depot_to_client(self, depot_path):1717"""Calculate the client path if using this mapping on the1718 given depot path; does not consider the effect of other1719 mappings in a view. Even excluded mappings are returned."""1720 matches, wildcards = self.depot_side.match_wildcards(depot_path)1721if not matches:1722return""1723 client_path = self.client_side.fill_in_wildcards(wildcards)1724return client_path17251726#1727# View methods1728#1729def__init__(self):1730 self.mappings = []17311732defappend(self, view_line):1733"""Parse a view line, splitting it into depot and client1734 sides. Append to self.mappings, preserving order."""17351736# Split the view line into exactly two words. P4 enforces1737# structure on these lines that simplifies this quite a bit.1738#1739# Either or both words may be double-quoted.1740# Single quotes do not matter.1741# Double-quote marks cannot occur inside the words.1742# A + or - prefix is also inside the quotes.1743# There are no quotes unless they contain a space.1744# The line is already white-space stripped.1745# The two words are separated by a single space.1746#1747if view_line[0] =='"':1748# First word is double quoted. Find its end.1749 close_quote_index = view_line.find('"',1)1750if close_quote_index <=0:1751die("No first-word closing quote found:%s"% view_line)1752 depot_side = view_line[1:close_quote_index]1753# skip closing quote and space1754 rhs_index = close_quote_index +1+11755else:1756 space_index = view_line.find(" ")1757if space_index <=0:1758die("No word-splitting space found:%s"% view_line)1759 depot_side = view_line[0:space_index]1760 rhs_index = space_index +117611762if view_line[rhs_index] =='"':1763# Second word is double quoted. Make sure there is a1764# double quote at the end too.1765if not view_line.endswith('"'):1766die("View line with rhs quote should end with one:%s"%1767 view_line)1768# skip the quotes1769 client_side = view_line[rhs_index+1:-1]1770else:1771 client_side = view_line[rhs_index:]17721773# prefix + means overlay on previous mapping1774 overlay =False1775if depot_side.startswith("+"):1776 overlay =True1777 depot_side = depot_side[1:]17781779# prefix - means exclude this path1780 exclude =False1781if depot_side.startswith("-"):1782 exclude =True1783 depot_side = depot_side[1:]17841785 m = View.Mapping(depot_side, client_side, overlay, exclude)1786 self.mappings.append(m)17871788defmap_in_client(self, depot_path):1789"""Return the relative location in the client where this1790 depot file should live. Returns "" if the file should1791 not be mapped in the client."""17921793 paths_filled = []1794 client_path =""17951796# look at later entries first1797for m in self.mappings[::-1]:17981799# see where will this path end up in the client1800 p = m.map_depot_to_client(depot_path)18011802if p =="":1803# Depot path does not belong in client. Must remember1804# this, as previous items should not cause files to1805# exist in this path either. Remember that the list is1806# being walked from the end, which has higher precedence.1807# Overlap mappings do not exclude previous mappings.1808if not m.overlay:1809 paths_filled.append(m.client_side)18101811else:1812# This mapping matched; no need to search any further.1813# But, the mapping could be rejected if the client path1814# has already been claimed by an earlier mapping (i.e.1815# one later in the list, which we are walking backwards).1816 already_mapped_in_client =False1817for f in paths_filled:1818# this is View.Path.match1819if f.match(p):1820 already_mapped_in_client =True1821break1822if not already_mapped_in_client:1823# Include this file, unless it is from a line that1824# explicitly said to exclude it.1825if not m.exclude:1826 client_path = p18271828# a match, even if rejected, always stops the search1829break18301831return client_path18321833classP4Sync(Command, P4UserMap):1834 delete_actions = ("delete","move/delete","purge")18351836def__init__(self):1837 Command.__init__(self)1838 P4UserMap.__init__(self)1839 self.options = [1840 optparse.make_option("--branch", dest="branch"),1841 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),1842 optparse.make_option("--changesfile", dest="changesFile"),1843 optparse.make_option("--silent", dest="silent", action="store_true"),1844 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),1845 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),1846 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",1847help="Import into refs/heads/ , not refs/remotes"),1848 optparse.make_option("--max-changes", dest="maxChanges"),1849 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',1850help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),1851 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',1852help="Only sync files that are included in the Perforce Client Spec")1853]1854 self.description ="""Imports from Perforce into a git repository.\n1855 example:1856 //depot/my/project/ -- to import the current head1857 //depot/my/project/@all -- to import everything1858 //depot/my/project/@1,6 -- to import only from revision 1 to 618591860 (a ... is not needed in the path p4 specification, it's added implicitly)"""18611862 self.usage +=" //depot/path[@revRange]"1863 self.silent =False1864 self.createdBranches =set()1865 self.committedChanges =set()1866 self.branch =""1867 self.detectBranches =False1868 self.detectLabels =False1869 self.importLabels =False1870 self.changesFile =""1871 self.syncWithOrigin =True1872 self.importIntoRemotes =True1873 self.maxChanges =""1874 self.isWindows = (platform.system() =="Windows")1875 self.keepRepoPath =False1876 self.depotPaths =None1877 self.p4BranchesInGit = []1878 self.cloneExclude = []1879 self.useClientSpec =False1880 self.useClientSpec_from_options =False1881 self.clientSpecDirs =None1882 self.tempBranches = []1883 self.tempBranchLocation ="git-p4-tmp"18841885ifgitConfig("git-p4.syncFromOrigin") =="false":1886 self.syncWithOrigin =False18871888# Force a checkpoint in fast-import and wait for it to finish1889defcheckpoint(self):1890 self.gitStream.write("checkpoint\n\n")1891 self.gitStream.write("progress checkpoint\n\n")1892 out = self.gitOutput.readline()1893if self.verbose:1894print"checkpoint finished: "+ out18951896defextractFilesFromCommit(self, commit):1897 self.cloneExclude = [re.sub(r"\.\.\.$","", path)1898for path in self.cloneExclude]1899 files = []1900 fnum =01901while commit.has_key("depotFile%s"% fnum):1902 path = commit["depotFile%s"% fnum]19031904if[p for p in self.cloneExclude1905ifp4PathStartsWith(path, p)]:1906 found =False1907else:1908 found = [p for p in self.depotPaths1909ifp4PathStartsWith(path, p)]1910if not found:1911 fnum = fnum +11912continue19131914file= {}1915file["path"] = path1916file["rev"] = commit["rev%s"% fnum]1917file["action"] = commit["action%s"% fnum]1918file["type"] = commit["type%s"% fnum]1919 files.append(file)1920 fnum = fnum +11921return files19221923defstripRepoPath(self, path, prefixes):1924if self.useClientSpec:1925return self.clientSpecDirs.map_in_client(path)19261927if self.keepRepoPath:1928 prefixes = [re.sub("^(//[^/]+/).*", r'\1', prefixes[0])]19291930for p in prefixes:1931ifp4PathStartsWith(path, p):1932 path = path[len(p):]19331934return path19351936defsplitFilesIntoBranches(self, commit):1937 branches = {}1938 fnum =01939while commit.has_key("depotFile%s"% fnum):1940 path = commit["depotFile%s"% fnum]1941 found = [p for p in self.depotPaths1942ifp4PathStartsWith(path, p)]1943if not found:1944 fnum = fnum +11945continue19461947file= {}1948file["path"] = path1949file["rev"] = commit["rev%s"% fnum]1950file["action"] = commit["action%s"% fnum]1951file["type"] = commit["type%s"% fnum]1952 fnum = fnum +119531954 relPath = self.stripRepoPath(path, self.depotPaths)1955 relPath =wildcard_decode(relPath)19561957for branch in self.knownBranches.keys():19581959# add a trailing slash so that a commit into qt/4.2foo doesn't end up in qt/4.21960if relPath.startswith(branch +"/"):1961if branch not in branches:1962 branches[branch] = []1963 branches[branch].append(file)1964break19651966return branches19671968# output one file from the P4 stream1969# - helper for streamP4Files19701971defstreamOneP4File(self,file, contents):1972 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)1973 relPath =wildcard_decode(relPath)1974if verbose:1975 sys.stderr.write("%s\n"% relPath)19761977(type_base, type_mods) =split_p4_type(file["type"])19781979 git_mode ="100644"1980if"x"in type_mods:1981 git_mode ="100755"1982if type_base =="symlink":1983 git_mode ="120000"1984# p4 print on a symlink contains "target\n"; remove the newline1985 data =''.join(contents)1986 contents = [data[:-1]]19871988if type_base =="utf16":1989# p4 delivers different text in the python output to -G1990# than it does when using "print -o", or normal p4 client1991# operations. utf16 is converted to ascii or utf8, perhaps.1992# But ascii text saved as -t utf16 is completely mangled.1993# Invoke print -o to get the real contents.1994 text =p4_read_pipe(['print','-q','-o','-',file['depotFile']])1995 contents = [ text ]19961997if type_base =="apple":1998# Apple filetype files will be streamed as a concatenation of1999# its appledouble header and the contents. This is useless2000# on both macs and non-macs. If using "print -q -o xx", it2001# will create "xx" with the data, and "%xx" with the header.2002# This is also not very useful.2003#2004# Ideally, someday, this script can learn how to generate2005# appledouble files directly and import those to git, but2006# non-mac machines can never find a use for apple filetype.2007print"\nIgnoring apple filetype file%s"%file['depotFile']2008return20092010# Perhaps windows wants unicode, utf16 newlines translated too;2011# but this is not doing it.2012if self.isWindows and type_base =="text":2013 mangled = []2014for data in contents:2015 data = data.replace("\r\n","\n")2016 mangled.append(data)2017 contents = mangled20182019# Note that we do not try to de-mangle keywords on utf16 files,2020# even though in theory somebody may want that.2021 pattern =p4_keywords_regexp_for_type(type_base, type_mods)2022if pattern:2023 regexp = re.compile(pattern, re.VERBOSE)2024 text =''.join(contents)2025 text = regexp.sub(r'$\1$', text)2026 contents = [ text ]20272028 self.gitStream.write("M%sinline%s\n"% (git_mode, relPath))20292030# total length...2031 length =02032for d in contents:2033 length = length +len(d)20342035 self.gitStream.write("data%d\n"% length)2036for d in contents:2037 self.gitStream.write(d)2038 self.gitStream.write("\n")20392040defstreamOneP4Deletion(self,file):2041 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)2042 relPath =wildcard_decode(relPath)2043if verbose:2044 sys.stderr.write("delete%s\n"% relPath)2045 self.gitStream.write("D%s\n"% relPath)20462047# handle another chunk of streaming data2048defstreamP4FilesCb(self, marshalled):20492050if marshalled.has_key('depotFile')and self.stream_have_file_info:2051# start of a new file - output the old one first2052 self.streamOneP4File(self.stream_file, self.stream_contents)2053 self.stream_file = {}2054 self.stream_contents = []2055 self.stream_have_file_info =False20562057# pick up the new file information... for the2058# 'data' field we need to append to our array2059for k in marshalled.keys():2060if k =='data':2061 self.stream_contents.append(marshalled['data'])2062else:2063 self.stream_file[k] = marshalled[k]20642065 self.stream_have_file_info =True20662067# Stream directly from "p4 files" into "git fast-import"2068defstreamP4Files(self, files):2069 filesForCommit = []2070 filesToRead = []2071 filesToDelete = []20722073for f in files:2074# if using a client spec, only add the files that have2075# a path in the client2076if self.clientSpecDirs:2077if self.clientSpecDirs.map_in_client(f['path']) =="":2078continue20792080 filesForCommit.append(f)2081if f['action']in self.delete_actions:2082 filesToDelete.append(f)2083else:2084 filesToRead.append(f)20852086# deleted files...2087for f in filesToDelete:2088 self.streamOneP4Deletion(f)20892090iflen(filesToRead) >0:2091 self.stream_file = {}2092 self.stream_contents = []2093 self.stream_have_file_info =False20942095# curry self argument2096defstreamP4FilesCbSelf(entry):2097 self.streamP4FilesCb(entry)20982099 fileArgs = ['%s#%s'% (f['path'], f['rev'])for f in filesToRead]21002101p4CmdList(["-x","-","print"],2102 stdin=fileArgs,2103 cb=streamP4FilesCbSelf)21042105# do the last chunk2106if self.stream_file.has_key('depotFile'):2107 self.streamOneP4File(self.stream_file, self.stream_contents)21082109defmake_email(self, userid):2110if userid in self.users:2111return self.users[userid]2112else:2113return"%s<a@b>"% userid21142115# Stream a p4 tag2116defstreamTag(self, gitStream, labelName, labelDetails, commit, epoch):2117if verbose:2118print"writing tag%sfor commit%s"% (labelName, commit)2119 gitStream.write("tag%s\n"% labelName)2120 gitStream.write("from%s\n"% commit)21212122if labelDetails.has_key('Owner'):2123 owner = labelDetails["Owner"]2124else:2125 owner =None21262127# Try to use the owner of the p4 label, or failing that,2128# the current p4 user id.2129if owner:2130 email = self.make_email(owner)2131else:2132 email = self.make_email(self.p4UserId())2133 tagger ="%s %s %s"% (email, epoch, self.tz)21342135 gitStream.write("tagger%s\n"% tagger)21362137print"labelDetails=",labelDetails2138if labelDetails.has_key('Description'):2139 description = labelDetails['Description']2140else:2141 description ='Label from git p4'21422143 gitStream.write("data%d\n"%len(description))2144 gitStream.write(description)2145 gitStream.write("\n")21462147defcommit(self, details, files, branch, branchPrefixes, parent =""):2148 epoch = details["time"]2149 author = details["user"]2150 self.branchPrefixes = branchPrefixes21512152if self.verbose:2153print"commit into%s"% branch21542155# start with reading files; if that fails, we should not2156# create a commit.2157 new_files = []2158for f in files:2159if[p for p in branchPrefixes ifp4PathStartsWith(f['path'], p)]:2160 new_files.append(f)2161else:2162 sys.stderr.write("Ignoring file outside of prefix:%s\n"% f['path'])21632164 self.gitStream.write("commit%s\n"% branch)2165# gitStream.write("mark :%s\n" % details["change"])2166 self.committedChanges.add(int(details["change"]))2167 committer =""2168if author not in self.users:2169 self.getUserMapFromPerforceServer()2170 committer ="%s %s %s"% (self.make_email(author), epoch, self.tz)21712172 self.gitStream.write("committer%s\n"% committer)21732174 self.gitStream.write("data <<EOT\n")2175 self.gitStream.write(details["desc"])2176 self.gitStream.write("\n[git-p4: depot-paths =\"%s\": change =%s"2177% (','.join(branchPrefixes), details["change"]))2178iflen(details['options']) >0:2179 self.gitStream.write(": options =%s"% details['options'])2180 self.gitStream.write("]\nEOT\n\n")21812182iflen(parent) >0:2183if self.verbose:2184print"parent%s"% parent2185 self.gitStream.write("from%s\n"% parent)21862187 self.streamP4Files(new_files)2188 self.gitStream.write("\n")21892190 change =int(details["change"])21912192if self.labels.has_key(change):2193 label = self.labels[change]2194 labelDetails = label[0]2195 labelRevisions = label[1]2196if self.verbose:2197print"Change%sis labelled%s"% (change, labelDetails)21982199 files =p4CmdList(["files"] + ["%s...@%s"% (p, change)2200for p in branchPrefixes])22012202iflen(files) ==len(labelRevisions):22032204 cleanedFiles = {}2205for info in files:2206if info["action"]in self.delete_actions:2207continue2208 cleanedFiles[info["depotFile"]] = info["rev"]22092210if cleanedFiles == labelRevisions:2211 self.streamTag(self.gitStream,'tag_%s'% labelDetails['label'], labelDetails, branch, epoch)22122213else:2214if not self.silent:2215print("Tag%sdoes not match with change%s: files do not match."2216% (labelDetails["label"], change))22172218else:2219if not self.silent:2220print("Tag%sdoes not match with change%s: file count is different."2221% (labelDetails["label"], change))22222223# Build a dictionary of changelists and labels, for "detect-labels" option.2224defgetLabels(self):2225 self.labels = {}22262227 l =p4CmdList(["labels"] + ["%s..."% p for p in self.depotPaths])2228iflen(l) >0and not self.silent:2229print"Finding files belonging to labels in%s"% `self.depotPaths`22302231for output in l:2232 label = output["label"]2233 revisions = {}2234 newestChange =02235if self.verbose:2236print"Querying files for label%s"% label2237forfileinp4CmdList(["files"] +2238["%s...@%s"% (p, label)2239for p in self.depotPaths]):2240 revisions[file["depotFile"]] =file["rev"]2241 change =int(file["change"])2242if change > newestChange:2243 newestChange = change22442245 self.labels[newestChange] = [output, revisions]22462247if self.verbose:2248print"Label changes:%s"% self.labels.keys()22492250# Import p4 labels as git tags. A direct mapping does not2251# exist, so assume that if all the files are at the same revision2252# then we can use that, or it's something more complicated we should2253# just ignore.2254defimportP4Labels(self, stream, p4Labels):2255if verbose:2256print"import p4 labels: "+' '.join(p4Labels)22572258 ignoredP4Labels =gitConfigList("git-p4.ignoredP4Labels")2259 validLabelRegexp =gitConfig("git-p4.labelImportRegexp")2260iflen(validLabelRegexp) ==0:2261 validLabelRegexp = defaultLabelRegexp2262 m = re.compile(validLabelRegexp)22632264for name in p4Labels:2265 commitFound =False22662267if not m.match(name):2268if verbose:2269print"label%sdoes not match regexp%s"% (name,validLabelRegexp)2270continue22712272if name in ignoredP4Labels:2273continue22742275 labelDetails =p4CmdList(['label',"-o", name])[0]22762277# get the most recent changelist for each file in this label2278 change =p4Cmd(["changes","-m","1"] + ["%s...@%s"% (p, name)2279for p in self.depotPaths])22802281if change.has_key('change'):2282# find the corresponding git commit; take the oldest commit2283 changelist =int(change['change'])2284 gitCommit =read_pipe(["git","rev-list","--max-count=1",2285"--reverse",":/\[git-p4:.*change =%d\]"% changelist])2286iflen(gitCommit) ==0:2287print"could not find git commit for changelist%d"% changelist2288else:2289 gitCommit = gitCommit.strip()2290 commitFound =True2291# Convert from p4 time format2292try:2293 tmwhen = time.strptime(labelDetails['Update'],"%Y/%m/%d%H:%M:%S")2294exceptValueError:2295print"Could not convert label time%s"% labelDetail['Update']2296 tmwhen =122972298 when =int(time.mktime(tmwhen))2299 self.streamTag(stream, name, labelDetails, gitCommit, when)2300if verbose:2301print"p4 label%smapped to git commit%s"% (name, gitCommit)2302else:2303if verbose:2304print"Label%shas no changelists - possibly deleted?"% name23052306if not commitFound:2307# We can't import this label; don't try again as it will get very2308# expensive repeatedly fetching all the files for labels that will2309# never be imported. If the label is moved in the future, the2310# ignore will need to be removed manually.2311system(["git","config","--add","git-p4.ignoredP4Labels", name])23122313defguessProjectName(self):2314for p in self.depotPaths:2315if p.endswith("/"):2316 p = p[:-1]2317 p = p[p.strip().rfind("/") +1:]2318if not p.endswith("/"):2319 p +="/"2320return p23212322defgetBranchMapping(self):2323 lostAndFoundBranches =set()23242325 user =gitConfig("git-p4.branchUser")2326iflen(user) >0:2327 command ="branches -u%s"% user2328else:2329 command ="branches"23302331for info inp4CmdList(command):2332 details =p4Cmd(["branch","-o", info["branch"]])2333 viewIdx =02334while details.has_key("View%s"% viewIdx):2335 paths = details["View%s"% viewIdx].split(" ")2336 viewIdx = viewIdx +12337# require standard //depot/foo/... //depot/bar/... mapping2338iflen(paths) !=2or not paths[0].endswith("/...")or not paths[1].endswith("/..."):2339continue2340 source = paths[0]2341 destination = paths[1]2342## HACK2343ifp4PathStartsWith(source, self.depotPaths[0])andp4PathStartsWith(destination, self.depotPaths[0]):2344 source = source[len(self.depotPaths[0]):-4]2345 destination = destination[len(self.depotPaths[0]):-4]23462347if destination in self.knownBranches:2348if not self.silent:2349print"p4 branch%sdefines a mapping from%sto%s"% (info["branch"], source, destination)2350print"but there exists another mapping from%sto%salready!"% (self.knownBranches[destination], destination)2351continue23522353 self.knownBranches[destination] = source23542355 lostAndFoundBranches.discard(destination)23562357if source not in self.knownBranches:2358 lostAndFoundBranches.add(source)23592360# Perforce does not strictly require branches to be defined, so we also2361# check git config for a branch list.2362#2363# Example of branch definition in git config file:2364# [git-p4]2365# branchList=main:branchA2366# branchList=main:branchB2367# branchList=branchA:branchC2368 configBranches =gitConfigList("git-p4.branchList")2369for branch in configBranches:2370if branch:2371(source, destination) = branch.split(":")2372 self.knownBranches[destination] = source23732374 lostAndFoundBranches.discard(destination)23752376if source not in self.knownBranches:2377 lostAndFoundBranches.add(source)237823792380for branch in lostAndFoundBranches:2381 self.knownBranches[branch] = branch23822383defgetBranchMappingFromGitBranches(self):2384 branches =p4BranchesInGit(self.importIntoRemotes)2385for branch in branches.keys():2386if branch =="master":2387 branch ="main"2388else:2389 branch = branch[len(self.projectName):]2390 self.knownBranches[branch] = branch23912392deflistExistingP4GitBranches(self):2393# branches holds mapping from name to commit2394 branches =p4BranchesInGit(self.importIntoRemotes)2395 self.p4BranchesInGit = branches.keys()2396for branch in branches.keys():2397 self.initialParents[self.refPrefix + branch] = branches[branch]23982399defupdateOptionDict(self, d):2400 option_keys = {}2401if self.keepRepoPath:2402 option_keys['keepRepoPath'] =124032404 d["options"] =' '.join(sorted(option_keys.keys()))24052406defreadOptions(self, d):2407 self.keepRepoPath = (d.has_key('options')2408and('keepRepoPath'in d['options']))24092410defgitRefForBranch(self, branch):2411if branch =="main":2412return self.refPrefix +"master"24132414iflen(branch) <=0:2415return branch24162417return self.refPrefix + self.projectName + branch24182419defgitCommitByP4Change(self, ref, change):2420if self.verbose:2421print"looking in ref "+ ref +" for change%susing bisect..."% change24222423 earliestCommit =""2424 latestCommit =parseRevision(ref)24252426while True:2427if self.verbose:2428print"trying: earliest%slatest%s"% (earliestCommit, latestCommit)2429 next =read_pipe("git rev-list --bisect%s %s"% (latestCommit, earliestCommit)).strip()2430iflen(next) ==0:2431if self.verbose:2432print"argh"2433return""2434 log =extractLogMessageFromGitCommit(next)2435 settings =extractSettingsGitLog(log)2436 currentChange =int(settings['change'])2437if self.verbose:2438print"current change%s"% currentChange24392440if currentChange == change:2441if self.verbose:2442print"found%s"% next2443return next24442445if currentChange < change:2446 earliestCommit ="^%s"% next2447else:2448 latestCommit ="%s"% next24492450return""24512452defimportNewBranch(self, branch, maxChange):2453# make fast-import flush all changes to disk and update the refs using the checkpoint2454# command so that we can try to find the branch parent in the git history2455 self.gitStream.write("checkpoint\n\n");2456 self.gitStream.flush();2457 branchPrefix = self.depotPaths[0] + branch +"/"2458range="@1,%s"% maxChange2459#print "prefix" + branchPrefix2460 changes =p4ChangesForPaths([branchPrefix],range)2461iflen(changes) <=0:2462return False2463 firstChange = changes[0]2464#print "first change in branch: %s" % firstChange2465 sourceBranch = self.knownBranches[branch]2466 sourceDepotPath = self.depotPaths[0] + sourceBranch2467 sourceRef = self.gitRefForBranch(sourceBranch)2468#print "source " + sourceBranch24692470 branchParentChange =int(p4Cmd(["changes","-m","1","%s...@1,%s"% (sourceDepotPath, firstChange)])["change"])2471#print "branch parent: %s" % branchParentChange2472 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)2473iflen(gitParent) >0:2474 self.initialParents[self.gitRefForBranch(branch)] = gitParent2475#print "parent git commit: %s" % gitParent24762477 self.importChanges(changes)2478return True24792480defsearchParent(self, parent, branch, target):2481 parentFound =False2482for blob inread_pipe_lines(["git","rev-list","--reverse","--no-merges", parent]):2483 blob = blob.strip()2484iflen(read_pipe(["git","diff-tree", blob, target])) ==0:2485 parentFound =True2486if self.verbose:2487print"Found parent of%sin commit%s"% (branch, blob)2488break2489if parentFound:2490return blob2491else:2492return None24932494defimportChanges(self, changes):2495 cnt =12496for change in changes:2497 description =p4Cmd(["describe",str(change)])2498 self.updateOptionDict(description)24992500if not self.silent:2501 sys.stdout.write("\rImporting revision%s(%s%%)"% (change, cnt *100/len(changes)))2502 sys.stdout.flush()2503 cnt = cnt +125042505try:2506if self.detectBranches:2507 branches = self.splitFilesIntoBranches(description)2508for branch in branches.keys():2509## HACK --hwn2510 branchPrefix = self.depotPaths[0] + branch +"/"25112512 parent =""25132514 filesForCommit = branches[branch]25152516if self.verbose:2517print"branch is%s"% branch25182519 self.updatedBranches.add(branch)25202521if branch not in self.createdBranches:2522 self.createdBranches.add(branch)2523 parent = self.knownBranches[branch]2524if parent == branch:2525 parent =""2526else:2527 fullBranch = self.projectName + branch2528if fullBranch not in self.p4BranchesInGit:2529if not self.silent:2530print("\nImporting new branch%s"% fullBranch);2531if self.importNewBranch(branch, change -1):2532 parent =""2533 self.p4BranchesInGit.append(fullBranch)2534if not self.silent:2535print("\nResuming with change%s"% change);25362537if self.verbose:2538print"parent determined through known branches:%s"% parent25392540 branch = self.gitRefForBranch(branch)2541 parent = self.gitRefForBranch(parent)25422543if self.verbose:2544print"looking for initial parent for%s; current parent is%s"% (branch, parent)25452546iflen(parent) ==0and branch in self.initialParents:2547 parent = self.initialParents[branch]2548del self.initialParents[branch]25492550 blob =None2551iflen(parent) >0:2552 tempBranch = os.path.join(self.tempBranchLocation,"%d"% (change))2553if self.verbose:2554print"Creating temporary branch: "+ tempBranch2555 self.commit(description, filesForCommit, tempBranch, [branchPrefix])2556 self.tempBranches.append(tempBranch)2557 self.checkpoint()2558 blob = self.searchParent(parent, branch, tempBranch)2559if blob:2560 self.commit(description, filesForCommit, branch, [branchPrefix], blob)2561else:2562if self.verbose:2563print"Parent of%snot found. Committing into head of%s"% (branch, parent)2564 self.commit(description, filesForCommit, branch, [branchPrefix], parent)2565else:2566 files = self.extractFilesFromCommit(description)2567 self.commit(description, files, self.branch, self.depotPaths,2568 self.initialParent)2569 self.initialParent =""2570exceptIOError:2571print self.gitError.read()2572 sys.exit(1)25732574defimportHeadRevision(self, revision):2575print"Doing initial import of%sfrom revision%sinto%s"% (' '.join(self.depotPaths), revision, self.branch)25762577 details = {}2578 details["user"] ="git perforce import user"2579 details["desc"] = ("Initial import of%sfrom the state at revision%s\n"2580% (' '.join(self.depotPaths), revision))2581 details["change"] = revision2582 newestRevision =025832584 fileCnt =02585 fileArgs = ["%s...%s"% (p,revision)for p in self.depotPaths]25862587for info inp4CmdList(["files"] + fileArgs):25882589if'code'in info and info['code'] =='error':2590 sys.stderr.write("p4 returned an error:%s\n"2591% info['data'])2592if info['data'].find("must refer to client") >=0:2593 sys.stderr.write("This particular p4 error is misleading.\n")2594 sys.stderr.write("Perhaps the depot path was misspelled.\n");2595 sys.stderr.write("Depot path:%s\n"%" ".join(self.depotPaths))2596 sys.exit(1)2597if'p4ExitCode'in info:2598 sys.stderr.write("p4 exitcode:%s\n"% info['p4ExitCode'])2599 sys.exit(1)260026012602 change =int(info["change"])2603if change > newestRevision:2604 newestRevision = change26052606if info["action"]in self.delete_actions:2607# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!2608#fileCnt = fileCnt + 12609continue26102611for prop in["depotFile","rev","action","type"]:2612 details["%s%s"% (prop, fileCnt)] = info[prop]26132614 fileCnt = fileCnt +126152616 details["change"] = newestRevision26172618# Use time from top-most change so that all git p4 clones of2619# the same p4 repo have the same commit SHA1s.2620 res =p4CmdList("describe -s%d"% newestRevision)2621 newestTime =None2622for r in res:2623if r.has_key('time'):2624 newestTime =int(r['time'])2625if newestTime is None:2626die("\"describe -s\"on newest change%ddid not give a time")2627 details["time"] = newestTime26282629 self.updateOptionDict(details)2630try:2631 self.commit(details, self.extractFilesFromCommit(details), self.branch, self.depotPaths)2632exceptIOError:2633print"IO error with git fast-import. Is your git version recent enough?"2634print self.gitError.read()263526362637defrun(self, args):2638 self.depotPaths = []2639 self.changeRange =""2640 self.initialParent =""2641 self.previousDepotPaths = []26422643# map from branch depot path to parent branch2644 self.knownBranches = {}2645 self.initialParents = {}2646 self.hasOrigin =originP4BranchesExist()2647if not self.syncWithOrigin:2648 self.hasOrigin =False26492650if self.importIntoRemotes:2651 self.refPrefix ="refs/remotes/p4/"2652else:2653 self.refPrefix ="refs/heads/p4/"26542655if self.syncWithOrigin and self.hasOrigin:2656if not self.silent:2657print"Syncing with origin first by calling git fetch origin"2658system("git fetch origin")26592660iflen(self.branch) ==0:2661 self.branch = self.refPrefix +"master"2662ifgitBranchExists("refs/heads/p4")and self.importIntoRemotes:2663system("git update-ref%srefs/heads/p4"% self.branch)2664system("git branch -D p4");2665# create it /after/ importing, when master exists2666if notgitBranchExists(self.refPrefix +"HEAD")and self.importIntoRemotes andgitBranchExists(self.branch):2667system("git symbolic-ref%sHEAD%s"% (self.refPrefix, self.branch))26682669# accept either the command-line option, or the configuration variable2670if self.useClientSpec:2671# will use this after clone to set the variable2672 self.useClientSpec_from_options =True2673else:2674ifgitConfig("git-p4.useclientspec","--bool") =="true":2675 self.useClientSpec =True2676if self.useClientSpec:2677 self.clientSpecDirs =getClientSpec()26782679# TODO: should always look at previous commits,2680# merge with previous imports, if possible.2681if args == []:2682if self.hasOrigin:2683createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)2684 self.listExistingP4GitBranches()26852686iflen(self.p4BranchesInGit) >1:2687if not self.silent:2688print"Importing from/into multiple branches"2689 self.detectBranches =True26902691if self.verbose:2692print"branches:%s"% self.p4BranchesInGit26932694 p4Change =02695for branch in self.p4BranchesInGit:2696 logMsg =extractLogMessageFromGitCommit(self.refPrefix + branch)26972698 settings =extractSettingsGitLog(logMsg)26992700 self.readOptions(settings)2701if(settings.has_key('depot-paths')2702and settings.has_key('change')):2703 change =int(settings['change']) +12704 p4Change =max(p4Change, change)27052706 depotPaths =sorted(settings['depot-paths'])2707if self.previousDepotPaths == []:2708 self.previousDepotPaths = depotPaths2709else:2710 paths = []2711for(prev, cur)inzip(self.previousDepotPaths, depotPaths):2712 prev_list = prev.split("/")2713 cur_list = cur.split("/")2714for i inrange(0,min(len(cur_list),len(prev_list))):2715if cur_list[i] <> prev_list[i]:2716 i = i -12717break27182719 paths.append("/".join(cur_list[:i +1]))27202721 self.previousDepotPaths = paths27222723if p4Change >0:2724 self.depotPaths =sorted(self.previousDepotPaths)2725 self.changeRange ="@%s,#head"% p4Change2726if not self.detectBranches:2727 self.initialParent =parseRevision(self.branch)2728if not self.silent and not self.detectBranches:2729print"Performing incremental import into%sgit branch"% self.branch27302731if not self.branch.startswith("refs/"):2732 self.branch ="refs/heads/"+ self.branch27332734iflen(args) ==0and self.depotPaths:2735if not self.silent:2736print"Depot paths:%s"%' '.join(self.depotPaths)2737else:2738if self.depotPaths and self.depotPaths != args:2739print("previous import used depot path%sand now%swas specified. "2740"This doesn't work!"% (' '.join(self.depotPaths),2741' '.join(args)))2742 sys.exit(1)27432744 self.depotPaths =sorted(args)27452746 revision =""2747 self.users = {}27482749# Make sure no revision specifiers are used when --changesfile2750# is specified.2751 bad_changesfile =False2752iflen(self.changesFile) >0:2753for p in self.depotPaths:2754if p.find("@") >=0or p.find("#") >=0:2755 bad_changesfile =True2756break2757if bad_changesfile:2758die("Option --changesfile is incompatible with revision specifiers")27592760 newPaths = []2761for p in self.depotPaths:2762if p.find("@") != -1:2763 atIdx = p.index("@")2764 self.changeRange = p[atIdx:]2765if self.changeRange =="@all":2766 self.changeRange =""2767elif','not in self.changeRange:2768 revision = self.changeRange2769 self.changeRange =""2770 p = p[:atIdx]2771elif p.find("#") != -1:2772 hashIdx = p.index("#")2773 revision = p[hashIdx:]2774 p = p[:hashIdx]2775elif self.previousDepotPaths == []:2776# pay attention to changesfile, if given, else import2777# the entire p4 tree at the head revision2778iflen(self.changesFile) ==0:2779 revision ="#head"27802781 p = re.sub("\.\.\.$","", p)2782if not p.endswith("/"):2783 p +="/"27842785 newPaths.append(p)27862787 self.depotPaths = newPaths27882789 self.loadUserMapFromCache()2790 self.labels = {}2791if self.detectLabels:2792 self.getLabels();27932794if self.detectBranches:2795## FIXME - what's a P4 projectName ?2796 self.projectName = self.guessProjectName()27972798if self.hasOrigin:2799 self.getBranchMappingFromGitBranches()2800else:2801 self.getBranchMapping()2802if self.verbose:2803print"p4-git branches:%s"% self.p4BranchesInGit2804print"initial parents:%s"% self.initialParents2805for b in self.p4BranchesInGit:2806if b !="master":28072808## FIXME2809 b = b[len(self.projectName):]2810 self.createdBranches.add(b)28112812 self.tz ="%+03d%02d"% (- time.timezone /3600, ((- time.timezone %3600) /60))28132814 importProcess = subprocess.Popen(["git","fast-import"],2815 stdin=subprocess.PIPE, stdout=subprocess.PIPE,2816 stderr=subprocess.PIPE);2817 self.gitOutput = importProcess.stdout2818 self.gitStream = importProcess.stdin2819 self.gitError = importProcess.stderr28202821if revision:2822 self.importHeadRevision(revision)2823else:2824 changes = []28252826iflen(self.changesFile) >0:2827 output =open(self.changesFile).readlines()2828 changeSet =set()2829for line in output:2830 changeSet.add(int(line))28312832for change in changeSet:2833 changes.append(change)28342835 changes.sort()2836else:2837# catch "git p4 sync" with no new branches, in a repo that2838# does not have any existing p4 branches2839iflen(args) ==0and not self.p4BranchesInGit:2840die("No remote p4 branches. Perhaps you never did\"git p4 clone\"in here.");2841if self.verbose:2842print"Getting p4 changes for%s...%s"% (', '.join(self.depotPaths),2843 self.changeRange)2844 changes =p4ChangesForPaths(self.depotPaths, self.changeRange)28452846iflen(self.maxChanges) >0:2847 changes = changes[:min(int(self.maxChanges),len(changes))]28482849iflen(changes) ==0:2850if not self.silent:2851print"No changes to import!"2852else:2853if not self.silent and not self.detectBranches:2854print"Import destination:%s"% self.branch28552856 self.updatedBranches =set()28572858 self.importChanges(changes)28592860if not self.silent:2861print""2862iflen(self.updatedBranches) >0:2863 sys.stdout.write("Updated branches: ")2864for b in self.updatedBranches:2865 sys.stdout.write("%s"% b)2866 sys.stdout.write("\n")28672868ifgitConfig("git-p4.importLabels","--bool") =="true":2869 self.importLabels =True28702871if self.importLabels:2872 p4Labels =getP4Labels(self.depotPaths)2873 gitTags =getGitTags()28742875 missingP4Labels = p4Labels - gitTags2876 self.importP4Labels(self.gitStream, missingP4Labels)28772878 self.gitStream.close()2879if importProcess.wait() !=0:2880die("fast-import failed:%s"% self.gitError.read())2881 self.gitOutput.close()2882 self.gitError.close()28832884# Cleanup temporary branches created during import2885if self.tempBranches != []:2886for branch in self.tempBranches:2887read_pipe("git update-ref -d%s"% branch)2888 os.rmdir(os.path.join(os.environ.get("GIT_DIR",".git"), self.tempBranchLocation))28892890return True28912892classP4Rebase(Command):2893def__init__(self):2894 Command.__init__(self)2895 self.options = [2896 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),2897]2898 self.importLabels =False2899 self.description = ("Fetches the latest revision from perforce and "2900+"rebases the current work (branch) against it")29012902defrun(self, args):2903 sync =P4Sync()2904 sync.importLabels = self.importLabels2905 sync.run([])29062907return self.rebase()29082909defrebase(self):2910if os.system("git update-index --refresh") !=0:2911die("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.");2912iflen(read_pipe("git diff-index HEAD --")) >0:2913die("You have uncommited changes. Please commit them before rebasing or stash them away with git stash.");29142915[upstream, settings] =findUpstreamBranchPoint()2916iflen(upstream) ==0:2917die("Cannot find upstream branchpoint for rebase")29182919# the branchpoint may be p4/foo~3, so strip off the parent2920 upstream = re.sub("~[0-9]+$","", upstream)29212922print"Rebasing the current branch onto%s"% upstream2923 oldHead =read_pipe("git rev-parse HEAD").strip()2924system("git rebase%s"% upstream)2925system("git diff-tree --stat --summary -M%sHEAD"% oldHead)2926return True29272928classP4Clone(P4Sync):2929def__init__(self):2930 P4Sync.__init__(self)2931 self.description ="Creates a new git repository and imports from Perforce into it"2932 self.usage ="usage: %prog [options] //depot/path[@revRange]"2933 self.options += [2934 optparse.make_option("--destination", dest="cloneDestination",2935 action='store', default=None,2936help="where to leave result of the clone"),2937 optparse.make_option("-/", dest="cloneExclude",2938 action="append",type="string",2939help="exclude depot path"),2940 optparse.make_option("--bare", dest="cloneBare",2941 action="store_true", default=False),2942]2943 self.cloneDestination =None2944 self.needsGit =False2945 self.cloneBare =False29462947# This is required for the "append" cloneExclude action2948defensure_value(self, attr, value):2949if nothasattr(self, attr)orgetattr(self, attr)is None:2950setattr(self, attr, value)2951returngetattr(self, attr)29522953defdefaultDestination(self, args):2954## TODO: use common prefix of args?2955 depotPath = args[0]2956 depotDir = re.sub("(@[^@]*)$","", depotPath)2957 depotDir = re.sub("(#[^#]*)$","", depotDir)2958 depotDir = re.sub(r"\.\.\.$","", depotDir)2959 depotDir = re.sub(r"/$","", depotDir)2960return os.path.split(depotDir)[1]29612962defrun(self, args):2963iflen(args) <1:2964return False29652966if self.keepRepoPath and not self.cloneDestination:2967 sys.stderr.write("Must specify destination for --keep-path\n")2968 sys.exit(1)29692970 depotPaths = args29712972if not self.cloneDestination andlen(depotPaths) >1:2973 self.cloneDestination = depotPaths[-1]2974 depotPaths = depotPaths[:-1]29752976 self.cloneExclude = ["/"+p for p in self.cloneExclude]2977for p in depotPaths:2978if not p.startswith("//"):2979return False29802981if not self.cloneDestination:2982 self.cloneDestination = self.defaultDestination(args)29832984print"Importing from%sinto%s"% (', '.join(depotPaths), self.cloneDestination)29852986if not os.path.exists(self.cloneDestination):2987 os.makedirs(self.cloneDestination)2988chdir(self.cloneDestination)29892990 init_cmd = ["git","init"]2991if self.cloneBare:2992 init_cmd.append("--bare")2993 subprocess.check_call(init_cmd)29942995if not P4Sync.run(self, depotPaths):2996return False2997if self.branch !="master":2998if self.importIntoRemotes:2999 masterbranch ="refs/remotes/p4/master"3000else:3001 masterbranch ="refs/heads/p4/master"3002ifgitBranchExists(masterbranch):3003system("git branch master%s"% masterbranch)3004if not self.cloneBare:3005system("git checkout -f")3006else:3007print"Could not detect main branch. No checkout/master branch created."30083009# auto-set this variable if invoked with --use-client-spec3010if self.useClientSpec_from_options:3011system("git config --bool git-p4.useclientspec true")30123013return True30143015classP4Branches(Command):3016def__init__(self):3017 Command.__init__(self)3018 self.options = [ ]3019 self.description = ("Shows the git branches that hold imports and their "3020+"corresponding perforce depot paths")3021 self.verbose =False30223023defrun(self, args):3024iforiginP4BranchesExist():3025createOrUpdateBranchesFromOrigin()30263027 cmdline ="git rev-parse --symbolic "3028 cmdline +=" --remotes"30293030for line inread_pipe_lines(cmdline):3031 line = line.strip()30323033if not line.startswith('p4/')or line =="p4/HEAD":3034continue3035 branch = line30363037 log =extractLogMessageFromGitCommit("refs/remotes/%s"% branch)3038 settings =extractSettingsGitLog(log)30393040print"%s<=%s(%s)"% (branch,",".join(settings["depot-paths"]), settings["change"])3041return True30423043classHelpFormatter(optparse.IndentedHelpFormatter):3044def__init__(self):3045 optparse.IndentedHelpFormatter.__init__(self)30463047defformat_description(self, description):3048if description:3049return description +"\n"3050else:3051return""30523053defprintUsage(commands):3054print"usage:%s<command> [options]"% sys.argv[0]3055print""3056print"valid commands:%s"%", ".join(commands)3057print""3058print"Try%s<command> --help for command specific help."% sys.argv[0]3059print""30603061commands = {3062"debug": P4Debug,3063"submit": P4Submit,3064"commit": P4Submit,3065"sync": P4Sync,3066"rebase": P4Rebase,3067"clone": P4Clone,3068"rollback": P4RollBack,3069"branches": P4Branches3070}307130723073defmain():3074iflen(sys.argv[1:]) ==0:3075printUsage(commands.keys())3076 sys.exit(2)30773078 cmd =""3079 cmdName = sys.argv[1]3080try:3081 klass = commands[cmdName]3082 cmd =klass()3083exceptKeyError:3084print"unknown command%s"% cmdName3085print""3086printUsage(commands.keys())3087 sys.exit(2)30883089 options = cmd.options3090 cmd.gitdir = os.environ.get("GIT_DIR",None)30913092 args = sys.argv[2:]30933094 options.append(optparse.make_option("--verbose","-v", dest="verbose", action="store_true"))3095if cmd.needsGit:3096 options.append(optparse.make_option("--git-dir", dest="gitdir"))30973098 parser = optparse.OptionParser(cmd.usage.replace("%prog","%prog "+ cmdName),3099 options,3100 description = cmd.description,3101 formatter =HelpFormatter())31023103(cmd, args) = parser.parse_args(sys.argv[2:], cmd);3104global verbose3105 verbose = cmd.verbose3106if cmd.needsGit:3107if cmd.gitdir ==None:3108 cmd.gitdir = os.path.abspath(".git")3109if notisValidGitDir(cmd.gitdir):3110 cmd.gitdir =read_pipe("git rev-parse --git-dir").strip()3111if os.path.exists(cmd.gitdir):3112 cdup =read_pipe("git rev-parse --show-cdup").strip()3113iflen(cdup) >0:3114chdir(cdup);31153116if notisValidGitDir(cmd.gitdir):3117ifisValidGitDir(cmd.gitdir +"/.git"):3118 cmd.gitdir +="/.git"3119else:3120die("fatal: cannot locate git repository at%s"% cmd.gitdir)31213122 os.environ["GIT_DIR"] = cmd.gitdir31233124if not cmd.run(args):3125 parser.print_help()3126 sys.exit(2)312731283129if __name__ =='__main__':3130main()