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# 10import sys 11if sys.hexversion <0x02040000: 12# The limiter is the subprocess module 13 sys.stderr.write("git-p4: requires Python 2.4 or later.\n") 14 sys.exit(1) 15import os 16import optparse 17import marshal 18import subprocess 19import tempfile 20import time 21import platform 22import re 23import shutil 24import stat 25 26try: 27from subprocess import CalledProcessError 28exceptImportError: 29# from python2.7:subprocess.py 30# Exception classes used by this module. 31classCalledProcessError(Exception): 32"""This exception is raised when a process run by check_call() returns 33 a non-zero exit status. The exit status will be stored in the 34 returncode attribute.""" 35def__init__(self, returncode, cmd): 36 self.returncode = returncode 37 self.cmd = cmd 38def__str__(self): 39return"Command '%s' returned non-zero exit status%d"% (self.cmd, self.returncode) 40 41verbose =False 42 43# Only labels/tags matching this will be imported/exported 44defaultLabelRegexp = r'[a-zA-Z0-9_\-.]+$' 45 46# Grab changes in blocks of this many revisions, unless otherwise requested 47defaultBlockSize =512 48 49defp4_build_cmd(cmd): 50"""Build a suitable p4 command line. 51 52 This consolidates building and returning a p4 command line into one 53 location. It means that hooking into the environment, or other configuration 54 can be done more easily. 55 """ 56 real_cmd = ["p4"] 57 58 user =gitConfig("git-p4.user") 59iflen(user) >0: 60 real_cmd += ["-u",user] 61 62 password =gitConfig("git-p4.password") 63iflen(password) >0: 64 real_cmd += ["-P", password] 65 66 port =gitConfig("git-p4.port") 67iflen(port) >0: 68 real_cmd += ["-p", port] 69 70 host =gitConfig("git-p4.host") 71iflen(host) >0: 72 real_cmd += ["-H", host] 73 74 client =gitConfig("git-p4.client") 75iflen(client) >0: 76 real_cmd += ["-c", client] 77 78 79ifisinstance(cmd,basestring): 80 real_cmd =' '.join(real_cmd) +' '+ cmd 81else: 82 real_cmd += cmd 83return real_cmd 84 85defchdir(path, is_client_path=False): 86"""Do chdir to the given path, and set the PWD environment 87 variable for use by P4. It does not look at getcwd() output. 88 Since we're not using the shell, it is necessary to set the 89 PWD environment variable explicitly. 90 91 Normally, expand the path to force it to be absolute. This 92 addresses the use of relative path names inside P4 settings, 93 e.g. P4CONFIG=.p4config. P4 does not simply open the filename 94 as given; it looks for .p4config using PWD. 95 96 If is_client_path, the path was handed to us directly by p4, 97 and may be a symbolic link. Do not call os.getcwd() in this 98 case, because it will cause p4 to think that PWD is not inside 99 the client path. 100 """ 101 102 os.chdir(path) 103if not is_client_path: 104 path = os.getcwd() 105 os.environ['PWD'] = path 106 107defdie(msg): 108if verbose: 109raiseException(msg) 110else: 111 sys.stderr.write(msg +"\n") 112 sys.exit(1) 113 114defwrite_pipe(c, stdin): 115if verbose: 116 sys.stderr.write('Writing pipe:%s\n'%str(c)) 117 118 expand =isinstance(c,basestring) 119 p = subprocess.Popen(c, stdin=subprocess.PIPE, shell=expand) 120 pipe = p.stdin 121 val = pipe.write(stdin) 122 pipe.close() 123if p.wait(): 124die('Command failed:%s'%str(c)) 125 126return val 127 128defp4_write_pipe(c, stdin): 129 real_cmd =p4_build_cmd(c) 130returnwrite_pipe(real_cmd, stdin) 131 132defread_pipe(c, ignore_error=False): 133if verbose: 134 sys.stderr.write('Reading pipe:%s\n'%str(c)) 135 136 expand =isinstance(c,basestring) 137 p = subprocess.Popen(c, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=expand) 138(out, err) = p.communicate() 139if p.returncode !=0and not ignore_error: 140die('Command failed:%s\nError:%s'% (str(c), err)) 141return out 142 143defp4_read_pipe(c, ignore_error=False): 144 real_cmd =p4_build_cmd(c) 145returnread_pipe(real_cmd, ignore_error) 146 147defread_pipe_lines(c): 148if verbose: 149 sys.stderr.write('Reading pipe:%s\n'%str(c)) 150 151 expand =isinstance(c, basestring) 152 p = subprocess.Popen(c, stdout=subprocess.PIPE, shell=expand) 153 pipe = p.stdout 154 val = pipe.readlines() 155if pipe.close()or p.wait(): 156die('Command failed:%s'%str(c)) 157 158return val 159 160defp4_read_pipe_lines(c): 161"""Specifically invoke p4 on the command supplied. """ 162 real_cmd =p4_build_cmd(c) 163returnread_pipe_lines(real_cmd) 164 165defp4_has_command(cmd): 166"""Ask p4 for help on this command. If it returns an error, the 167 command does not exist in this version of p4.""" 168 real_cmd =p4_build_cmd(["help", cmd]) 169 p = subprocess.Popen(real_cmd, stdout=subprocess.PIPE, 170 stderr=subprocess.PIPE) 171 p.communicate() 172return p.returncode ==0 173 174defp4_has_move_command(): 175"""See if the move command exists, that it supports -k, and that 176 it has not been administratively disabled. The arguments 177 must be correct, but the filenames do not have to exist. Use 178 ones with wildcards so even if they exist, it will fail.""" 179 180if notp4_has_command("move"): 181return False 182 cmd =p4_build_cmd(["move","-k","@from","@to"]) 183 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 184(out, err) = p.communicate() 185# return code will be 1 in either case 186if err.find("Invalid option") >=0: 187return False 188if err.find("disabled") >=0: 189return False 190# assume it failed because @... was invalid changelist 191return True 192 193defsystem(cmd): 194 expand =isinstance(cmd,basestring) 195if verbose: 196 sys.stderr.write("executing%s\n"%str(cmd)) 197 retcode = subprocess.call(cmd, shell=expand) 198if retcode: 199raiseCalledProcessError(retcode, cmd) 200 201defp4_system(cmd): 202"""Specifically invoke p4 as the system command. """ 203 real_cmd =p4_build_cmd(cmd) 204 expand =isinstance(real_cmd, basestring) 205 retcode = subprocess.call(real_cmd, shell=expand) 206if retcode: 207raiseCalledProcessError(retcode, real_cmd) 208 209_p4_version_string =None 210defp4_version_string(): 211"""Read the version string, showing just the last line, which 212 hopefully is the interesting version bit. 213 214 $ p4 -V 215 Perforce - The Fast Software Configuration Management System. 216 Copyright 1995-2011 Perforce Software. All rights reserved. 217 Rev. P4/NTX86/2011.1/393975 (2011/12/16). 218 """ 219global _p4_version_string 220if not _p4_version_string: 221 a =p4_read_pipe_lines(["-V"]) 222 _p4_version_string = a[-1].rstrip() 223return _p4_version_string 224 225defp4_integrate(src, dest): 226p4_system(["integrate","-Dt",wildcard_encode(src),wildcard_encode(dest)]) 227 228defp4_sync(f, *options): 229p4_system(["sync"] +list(options) + [wildcard_encode(f)]) 230 231defp4_add(f): 232# forcibly add file names with wildcards 233ifwildcard_present(f): 234p4_system(["add","-f", f]) 235else: 236p4_system(["add", f]) 237 238defp4_delete(f): 239p4_system(["delete",wildcard_encode(f)]) 240 241defp4_edit(f): 242p4_system(["edit",wildcard_encode(f)]) 243 244defp4_revert(f): 245p4_system(["revert",wildcard_encode(f)]) 246 247defp4_reopen(type, f): 248p4_system(["reopen","-t",type,wildcard_encode(f)]) 249 250defp4_move(src, dest): 251p4_system(["move","-k",wildcard_encode(src),wildcard_encode(dest)]) 252 253defp4_last_change(): 254 results =p4CmdList(["changes","-m","1"]) 255returnint(results[0]['change']) 256 257defp4_describe(change): 258"""Make sure it returns a valid result by checking for 259 the presence of field "time". Return a dict of the 260 results.""" 261 262 ds =p4CmdList(["describe","-s",str(change)]) 263iflen(ds) !=1: 264die("p4 describe -s%ddid not return 1 result:%s"% (change,str(ds))) 265 266 d = ds[0] 267 268if"p4ExitCode"in d: 269die("p4 describe -s%dexited with%d:%s"% (change, d["p4ExitCode"], 270str(d))) 271if"code"in d: 272if d["code"] =="error": 273die("p4 describe -s%dreturned error code:%s"% (change,str(d))) 274 275if"time"not in d: 276die("p4 describe -s%dreturned no\"time\":%s"% (change,str(d))) 277 278return d 279 280# 281# Canonicalize the p4 type and return a tuple of the 282# base type, plus any modifiers. See "p4 help filetypes" 283# for a list and explanation. 284# 285defsplit_p4_type(p4type): 286 287 p4_filetypes_historical = { 288"ctempobj":"binary+Sw", 289"ctext":"text+C", 290"cxtext":"text+Cx", 291"ktext":"text+k", 292"kxtext":"text+kx", 293"ltext":"text+F", 294"tempobj":"binary+FSw", 295"ubinary":"binary+F", 296"uresource":"resource+F", 297"uxbinary":"binary+Fx", 298"xbinary":"binary+x", 299"xltext":"text+Fx", 300"xtempobj":"binary+Swx", 301"xtext":"text+x", 302"xunicode":"unicode+x", 303"xutf16":"utf16+x", 304} 305if p4type in p4_filetypes_historical: 306 p4type = p4_filetypes_historical[p4type] 307 mods ="" 308 s = p4type.split("+") 309 base = s[0] 310 mods ="" 311iflen(s) >1: 312 mods = s[1] 313return(base, mods) 314 315# 316# return the raw p4 type of a file (text, text+ko, etc) 317# 318defp4_type(f): 319 results =p4CmdList(["fstat","-T","headType",wildcard_encode(f)]) 320return results[0]['headType'] 321 322# 323# Given a type base and modifier, return a regexp matching 324# the keywords that can be expanded in the file 325# 326defp4_keywords_regexp_for_type(base, type_mods): 327if base in("text","unicode","binary"): 328 kwords =None 329if"ko"in type_mods: 330 kwords ='Id|Header' 331elif"k"in type_mods: 332 kwords ='Id|Header|Author|Date|DateTime|Change|File|Revision' 333else: 334return None 335 pattern = r""" 336 \$ # Starts with a dollar, followed by... 337 (%s) # one of the keywords, followed by... 338 (:[^$\n]+)? # possibly an old expansion, followed by... 339 \$ # another dollar 340 """% kwords 341return pattern 342else: 343return None 344 345# 346# Given a file, return a regexp matching the possible 347# RCS keywords that will be expanded, or None for files 348# with kw expansion turned off. 349# 350defp4_keywords_regexp_for_file(file): 351if not os.path.exists(file): 352return None 353else: 354(type_base, type_mods) =split_p4_type(p4_type(file)) 355returnp4_keywords_regexp_for_type(type_base, type_mods) 356 357defsetP4ExecBit(file, mode): 358# Reopens an already open file and changes the execute bit to match 359# the execute bit setting in the passed in mode. 360 361 p4Type ="+x" 362 363if notisModeExec(mode): 364 p4Type =getP4OpenedType(file) 365 p4Type = re.sub('^([cku]?)x(.*)','\\1\\2', p4Type) 366 p4Type = re.sub('(.*?\+.*?)x(.*?)','\\1\\2', p4Type) 367if p4Type[-1] =="+": 368 p4Type = p4Type[0:-1] 369 370p4_reopen(p4Type,file) 371 372defgetP4OpenedType(file): 373# Returns the perforce file type for the given file. 374 375 result =p4_read_pipe(["opened",wildcard_encode(file)]) 376 match = re.match(".*\((.+)\)( \*exclusive\*)?\r?$", result) 377if match: 378return match.group(1) 379else: 380die("Could not determine file type for%s(result: '%s')"% (file, result)) 381 382# Return the set of all p4 labels 383defgetP4Labels(depotPaths): 384 labels =set() 385ifisinstance(depotPaths,basestring): 386 depotPaths = [depotPaths] 387 388for l inp4CmdList(["labels"] + ["%s..."% p for p in depotPaths]): 389 label = l['label'] 390 labels.add(label) 391 392return labels 393 394# Return the set of all git tags 395defgetGitTags(): 396 gitTags =set() 397for line inread_pipe_lines(["git","tag"]): 398 tag = line.strip() 399 gitTags.add(tag) 400return gitTags 401 402defdiffTreePattern(): 403# This is a simple generator for the diff tree regex pattern. This could be 404# a class variable if this and parseDiffTreeEntry were a part of a class. 405 pattern = re.compile(':(\d+) (\d+) (\w+) (\w+) ([A-Z])(\d+)?\t(.*?)((\t(.*))|$)') 406while True: 407yield pattern 408 409defparseDiffTreeEntry(entry): 410"""Parses a single diff tree entry into its component elements. 411 412 See git-diff-tree(1) manpage for details about the format of the diff 413 output. This method returns a dictionary with the following elements: 414 415 src_mode - The mode of the source file 416 dst_mode - The mode of the destination file 417 src_sha1 - The sha1 for the source file 418 dst_sha1 - The sha1 fr the destination file 419 status - The one letter status of the diff (i.e. 'A', 'M', 'D', etc) 420 status_score - The score for the status (applicable for 'C' and 'R' 421 statuses). This is None if there is no score. 422 src - The path for the source file. 423 dst - The path for the destination file. This is only present for 424 copy or renames. If it is not present, this is None. 425 426 If the pattern is not matched, None is returned.""" 427 428 match =diffTreePattern().next().match(entry) 429if match: 430return{ 431'src_mode': match.group(1), 432'dst_mode': match.group(2), 433'src_sha1': match.group(3), 434'dst_sha1': match.group(4), 435'status': match.group(5), 436'status_score': match.group(6), 437'src': match.group(7), 438'dst': match.group(10) 439} 440return None 441 442defisModeExec(mode): 443# Returns True if the given git mode represents an executable file, 444# otherwise False. 445return mode[-3:] =="755" 446 447defisModeExecChanged(src_mode, dst_mode): 448returnisModeExec(src_mode) !=isModeExec(dst_mode) 449 450defp4CmdList(cmd, stdin=None, stdin_mode='w+b', cb=None): 451 452ifisinstance(cmd,basestring): 453 cmd ="-G "+ cmd 454 expand =True 455else: 456 cmd = ["-G"] + cmd 457 expand =False 458 459 cmd =p4_build_cmd(cmd) 460if verbose: 461 sys.stderr.write("Opening pipe:%s\n"%str(cmd)) 462 463# Use a temporary file to avoid deadlocks without 464# subprocess.communicate(), which would put another copy 465# of stdout into memory. 466 stdin_file =None 467if stdin is not None: 468 stdin_file = tempfile.TemporaryFile(prefix='p4-stdin', mode=stdin_mode) 469ifisinstance(stdin,basestring): 470 stdin_file.write(stdin) 471else: 472for i in stdin: 473 stdin_file.write(i +'\n') 474 stdin_file.flush() 475 stdin_file.seek(0) 476 477 p4 = subprocess.Popen(cmd, 478 shell=expand, 479 stdin=stdin_file, 480 stdout=subprocess.PIPE) 481 482 result = [] 483try: 484while True: 485 entry = marshal.load(p4.stdout) 486if cb is not None: 487cb(entry) 488else: 489 result.append(entry) 490exceptEOFError: 491pass 492 exitCode = p4.wait() 493if exitCode !=0: 494 entry = {} 495 entry["p4ExitCode"] = exitCode 496 result.append(entry) 497 498return result 499 500defp4Cmd(cmd): 501list=p4CmdList(cmd) 502 result = {} 503for entry inlist: 504 result.update(entry) 505return result; 506 507defp4Where(depotPath): 508if not depotPath.endswith("/"): 509 depotPath +="/" 510 depotPathLong = depotPath +"..." 511 outputList =p4CmdList(["where", depotPathLong]) 512 output =None 513for entry in outputList: 514if"depotFile"in entry: 515# Search for the base client side depot path, as long as it starts with the branch's P4 path. 516# The base path always ends with "/...". 517if entry["depotFile"].find(depotPath) ==0and entry["depotFile"][-4:] =="/...": 518 output = entry 519break 520elif"data"in entry: 521 data = entry.get("data") 522 space = data.find(" ") 523if data[:space] == depotPath: 524 output = entry 525break 526if output ==None: 527return"" 528if output["code"] =="error": 529return"" 530 clientPath ="" 531if"path"in output: 532 clientPath = output.get("path") 533elif"data"in output: 534 data = output.get("data") 535 lastSpace = data.rfind(" ") 536 clientPath = data[lastSpace +1:] 537 538if clientPath.endswith("..."): 539 clientPath = clientPath[:-3] 540return clientPath 541 542defcurrentGitBranch(): 543returnread_pipe("git name-rev HEAD").split(" ")[1].strip() 544 545defisValidGitDir(path): 546if(os.path.exists(path +"/HEAD") 547and os.path.exists(path +"/refs")and os.path.exists(path +"/objects")): 548return True; 549return False 550 551defparseRevision(ref): 552returnread_pipe("git rev-parse%s"% ref).strip() 553 554defbranchExists(ref): 555 rev =read_pipe(["git","rev-parse","-q","--verify", ref], 556 ignore_error=True) 557returnlen(rev) >0 558 559defextractLogMessageFromGitCommit(commit): 560 logMessage ="" 561 562## fixme: title is first line of commit, not 1st paragraph. 563 foundTitle =False 564for log inread_pipe_lines("git cat-file commit%s"% commit): 565if not foundTitle: 566iflen(log) ==1: 567 foundTitle =True 568continue 569 570 logMessage += log 571return logMessage 572 573defextractSettingsGitLog(log): 574 values = {} 575for line in log.split("\n"): 576 line = line.strip() 577 m = re.search(r"^ *\[git-p4: (.*)\]$", line) 578if not m: 579continue 580 581 assignments = m.group(1).split(':') 582for a in assignments: 583 vals = a.split('=') 584 key = vals[0].strip() 585 val = ('='.join(vals[1:])).strip() 586if val.endswith('\"')and val.startswith('"'): 587 val = val[1:-1] 588 589 values[key] = val 590 591 paths = values.get("depot-paths") 592if not paths: 593 paths = values.get("depot-path") 594if paths: 595 values['depot-paths'] = paths.split(',') 596return values 597 598defgitBranchExists(branch): 599 proc = subprocess.Popen(["git","rev-parse", branch], 600 stderr=subprocess.PIPE, stdout=subprocess.PIPE); 601return proc.wait() ==0; 602 603_gitConfig = {} 604 605defgitConfig(key): 606if not _gitConfig.has_key(key): 607 cmd = ["git","config", key ] 608 s =read_pipe(cmd, ignore_error=True) 609 _gitConfig[key] = s.strip() 610return _gitConfig[key] 611 612defgitConfigBool(key): 613"""Return a bool, using git config --bool. It is True only if the 614 variable is set to true, and False if set to false or not present 615 in the config.""" 616 617if not _gitConfig.has_key(key): 618 cmd = ["git","config","--bool", key ] 619 s =read_pipe(cmd, ignore_error=True) 620 v = s.strip() 621 _gitConfig[key] = v =="true" 622return _gitConfig[key] 623 624defgitConfigList(key): 625if not _gitConfig.has_key(key): 626 s =read_pipe(["git","config","--get-all", key], ignore_error=True) 627 _gitConfig[key] = s.strip().split(os.linesep) 628return _gitConfig[key] 629 630defp4BranchesInGit(branchesAreInRemotes=True): 631"""Find all the branches whose names start with "p4/", looking 632 in remotes or heads as specified by the argument. Return 633 a dictionary of{ branch: revision }for each one found. 634 The branch names are the short names, without any 635 "p4/" prefix.""" 636 637 branches = {} 638 639 cmdline ="git rev-parse --symbolic " 640if branchesAreInRemotes: 641 cmdline +="--remotes" 642else: 643 cmdline +="--branches" 644 645for line inread_pipe_lines(cmdline): 646 line = line.strip() 647 648# only import to p4/ 649if not line.startswith('p4/'): 650continue 651# special symbolic ref to p4/master 652if line =="p4/HEAD": 653continue 654 655# strip off p4/ prefix 656 branch = line[len("p4/"):] 657 658 branches[branch] =parseRevision(line) 659 660return branches 661 662defbranch_exists(branch): 663"""Make sure that the given ref name really exists.""" 664 665 cmd = ["git","rev-parse","--symbolic","--verify", branch ] 666 p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 667 out, _ = p.communicate() 668if p.returncode: 669return False 670# expect exactly one line of output: the branch name 671return out.rstrip() == branch 672 673deffindUpstreamBranchPoint(head ="HEAD"): 674 branches =p4BranchesInGit() 675# map from depot-path to branch name 676 branchByDepotPath = {} 677for branch in branches.keys(): 678 tip = branches[branch] 679 log =extractLogMessageFromGitCommit(tip) 680 settings =extractSettingsGitLog(log) 681if settings.has_key("depot-paths"): 682 paths =",".join(settings["depot-paths"]) 683 branchByDepotPath[paths] ="remotes/p4/"+ branch 684 685 settings =None 686 parent =0 687while parent <65535: 688 commit = head +"~%s"% parent 689 log =extractLogMessageFromGitCommit(commit) 690 settings =extractSettingsGitLog(log) 691if settings.has_key("depot-paths"): 692 paths =",".join(settings["depot-paths"]) 693if branchByDepotPath.has_key(paths): 694return[branchByDepotPath[paths], settings] 695 696 parent = parent +1 697 698return["", settings] 699 700defcreateOrUpdateBranchesFromOrigin(localRefPrefix ="refs/remotes/p4/", silent=True): 701if not silent: 702print("Creating/updating branch(es) in%sbased on origin branch(es)" 703% localRefPrefix) 704 705 originPrefix ="origin/p4/" 706 707for line inread_pipe_lines("git rev-parse --symbolic --remotes"): 708 line = line.strip() 709if(not line.startswith(originPrefix))or line.endswith("HEAD"): 710continue 711 712 headName = line[len(originPrefix):] 713 remoteHead = localRefPrefix + headName 714 originHead = line 715 716 original =extractSettingsGitLog(extractLogMessageFromGitCommit(originHead)) 717if(not original.has_key('depot-paths') 718or not original.has_key('change')): 719continue 720 721 update =False 722if notgitBranchExists(remoteHead): 723if verbose: 724print"creating%s"% remoteHead 725 update =True 726else: 727 settings =extractSettingsGitLog(extractLogMessageFromGitCommit(remoteHead)) 728if settings.has_key('change') >0: 729if settings['depot-paths'] == original['depot-paths']: 730 originP4Change =int(original['change']) 731 p4Change =int(settings['change']) 732if originP4Change > p4Change: 733print("%s(%s) is newer than%s(%s). " 734"Updating p4 branch from origin." 735% (originHead, originP4Change, 736 remoteHead, p4Change)) 737 update =True 738else: 739print("Ignoring:%swas imported from%swhile " 740"%swas imported from%s" 741% (originHead,','.join(original['depot-paths']), 742 remoteHead,','.join(settings['depot-paths']))) 743 744if update: 745system("git update-ref%s %s"% (remoteHead, originHead)) 746 747deforiginP4BranchesExist(): 748returngitBranchExists("origin")orgitBranchExists("origin/p4")orgitBranchExists("origin/p4/master") 749 750 751defp4ParseNumericChangeRange(parts): 752 changeStart =int(parts[0][1:]) 753if parts[1] =='#head': 754 changeEnd =p4_last_change() 755else: 756 changeEnd =int(parts[1]) 757 758return(changeStart, changeEnd) 759 760defchooseBlockSize(blockSize): 761if blockSize: 762return blockSize 763else: 764return defaultBlockSize 765 766defp4ChangesForPaths(depotPaths, changeRange, requestedBlockSize): 767assert depotPaths 768 769# Parse the change range into start and end. Try to find integer 770# revision ranges as these can be broken up into blocks to avoid 771# hitting server-side limits (maxrows, maxscanresults). But if 772# that doesn't work, fall back to using the raw revision specifier 773# strings, without using block mode. 774 775if changeRange is None or changeRange =='': 776 changeStart =1 777 changeEnd =p4_last_change() 778 block_size =chooseBlockSize(requestedBlockSize) 779else: 780 parts = changeRange.split(',') 781assertlen(parts) ==2 782try: 783(changeStart, changeEnd) =p4ParseNumericChangeRange(parts) 784 block_size =chooseBlockSize(requestedBlockSize) 785except: 786 changeStart = parts[0][1:] 787 changeEnd = parts[1] 788if requestedBlockSize: 789die("cannot use --changes-block-size with non-numeric revisions") 790 block_size =None 791 792# Accumulate change numbers in a dictionary to avoid duplicates 793 changes = {} 794 795for p in depotPaths: 796# Retrieve changes a block at a time, to prevent running 797# into a MaxResults/MaxScanRows error from the server. 798 799while True: 800 cmd = ['changes'] 801 802if block_size: 803 end =min(changeEnd, changeStart + block_size) 804 revisionRange ="%d,%d"% (changeStart, end) 805else: 806 revisionRange ="%s,%s"% (changeStart, changeEnd) 807 808 cmd += ["%s...@%s"% (p, revisionRange)] 809 810for line inp4_read_pipe_lines(cmd): 811 changeNum =int(line.split(" ")[1]) 812 changes[changeNum] =True 813 814if not block_size: 815break 816 817if end >= changeEnd: 818break 819 820 changeStart = end +1 821 822 changelist = changes.keys() 823 changelist.sort() 824return changelist 825 826defp4PathStartsWith(path, prefix): 827# This method tries to remedy a potential mixed-case issue: 828# 829# If UserA adds //depot/DirA/file1 830# and UserB adds //depot/dira/file2 831# 832# we may or may not have a problem. If you have core.ignorecase=true, 833# we treat DirA and dira as the same directory 834ifgitConfigBool("core.ignorecase"): 835return path.lower().startswith(prefix.lower()) 836return path.startswith(prefix) 837 838defgetClientSpec(): 839"""Look at the p4 client spec, create a View() object that contains 840 all the mappings, and return it.""" 841 842 specList =p4CmdList("client -o") 843iflen(specList) !=1: 844die('Output from "client -o" is%dlines, expecting 1'% 845len(specList)) 846 847# dictionary of all client parameters 848 entry = specList[0] 849 850# the //client/ name 851 client_name = entry["Client"] 852 853# just the keys that start with "View" 854 view_keys = [ k for k in entry.keys()if k.startswith("View") ] 855 856# hold this new View 857 view =View(client_name) 858 859# append the lines, in order, to the view 860for view_num inrange(len(view_keys)): 861 k ="View%d"% view_num 862if k not in view_keys: 863die("Expected view key%smissing"% k) 864 view.append(entry[k]) 865 866return view 867 868defgetClientRoot(): 869"""Grab the client directory.""" 870 871 output =p4CmdList("client -o") 872iflen(output) !=1: 873die('Output from "client -o" is%dlines, expecting 1'%len(output)) 874 875 entry = output[0] 876if"Root"not in entry: 877die('Client has no "Root"') 878 879return entry["Root"] 880 881# 882# P4 wildcards are not allowed in filenames. P4 complains 883# if you simply add them, but you can force it with "-f", in 884# which case it translates them into %xx encoding internally. 885# 886defwildcard_decode(path): 887# Search for and fix just these four characters. Do % last so 888# that fixing it does not inadvertently create new %-escapes. 889# Cannot have * in a filename in windows; untested as to 890# what p4 would do in such a case. 891if not platform.system() =="Windows": 892 path = path.replace("%2A","*") 893 path = path.replace("%23","#") \ 894.replace("%40","@") \ 895.replace("%25","%") 896return path 897 898defwildcard_encode(path): 899# do % first to avoid double-encoding the %s introduced here 900 path = path.replace("%","%25") \ 901.replace("*","%2A") \ 902.replace("#","%23") \ 903.replace("@","%40") 904return path 905 906defwildcard_present(path): 907 m = re.search("[*#@%]", path) 908return m is not None 909 910class Command: 911def__init__(self): 912 self.usage ="usage: %prog [options]" 913 self.needsGit =True 914 self.verbose =False 915 916class P4UserMap: 917def__init__(self): 918 self.userMapFromPerforceServer =False 919 self.myP4UserId =None 920 921defp4UserId(self): 922if self.myP4UserId: 923return self.myP4UserId 924 925 results =p4CmdList("user -o") 926for r in results: 927if r.has_key('User'): 928 self.myP4UserId = r['User'] 929return r['User'] 930die("Could not find your p4 user id") 931 932defp4UserIsMe(self, p4User): 933# return True if the given p4 user is actually me 934 me = self.p4UserId() 935if not p4User or p4User != me: 936return False 937else: 938return True 939 940defgetUserCacheFilename(self): 941 home = os.environ.get("HOME", os.environ.get("USERPROFILE")) 942return home +"/.gitp4-usercache.txt" 943 944defgetUserMapFromPerforceServer(self): 945if self.userMapFromPerforceServer: 946return 947 self.users = {} 948 self.emails = {} 949 950for output inp4CmdList("users"): 951if not output.has_key("User"): 952continue 953 self.users[output["User"]] = output["FullName"] +" <"+ output["Email"] +">" 954 self.emails[output["Email"]] = output["User"] 955 956 957 s ='' 958for(key, val)in self.users.items(): 959 s +="%s\t%s\n"% (key.expandtabs(1), val.expandtabs(1)) 960 961open(self.getUserCacheFilename(),"wb").write(s) 962 self.userMapFromPerforceServer =True 963 964defloadUserMapFromCache(self): 965 self.users = {} 966 self.userMapFromPerforceServer =False 967try: 968 cache =open(self.getUserCacheFilename(),"rb") 969 lines = cache.readlines() 970 cache.close() 971for line in lines: 972 entry = line.strip().split("\t") 973 self.users[entry[0]] = entry[1] 974exceptIOError: 975 self.getUserMapFromPerforceServer() 976 977classP4Debug(Command): 978def__init__(self): 979 Command.__init__(self) 980 self.options = [] 981 self.description ="A tool to debug the output of p4 -G." 982 self.needsGit =False 983 984defrun(self, args): 985 j =0 986for output inp4CmdList(args): 987print'Element:%d'% j 988 j +=1 989print output 990return True 991 992classP4RollBack(Command): 993def__init__(self): 994 Command.__init__(self) 995 self.options = [ 996 optparse.make_option("--local", dest="rollbackLocalBranches", action="store_true") 997] 998 self.description ="A tool to debug the multi-branch import. Don't use :)" 999 self.rollbackLocalBranches =False10001001defrun(self, args):1002iflen(args) !=1:1003return False1004 maxChange =int(args[0])10051006if"p4ExitCode"inp4Cmd("changes -m 1"):1007die("Problems executing p4");10081009if self.rollbackLocalBranches:1010 refPrefix ="refs/heads/"1011 lines =read_pipe_lines("git rev-parse --symbolic --branches")1012else:1013 refPrefix ="refs/remotes/"1014 lines =read_pipe_lines("git rev-parse --symbolic --remotes")10151016for line in lines:1017if self.rollbackLocalBranches or(line.startswith("p4/")and line !="p4/HEAD\n"):1018 line = line.strip()1019 ref = refPrefix + line1020 log =extractLogMessageFromGitCommit(ref)1021 settings =extractSettingsGitLog(log)10221023 depotPaths = settings['depot-paths']1024 change = settings['change']10251026 changed =False10271028iflen(p4Cmd("changes -m 1 "+' '.join(['%s...@%s'% (p, maxChange)1029for p in depotPaths]))) ==0:1030print"Branch%sdid not exist at change%s, deleting."% (ref, maxChange)1031system("git update-ref -d%s`git rev-parse%s`"% (ref, ref))1032continue10331034while change andint(change) > maxChange:1035 changed =True1036if self.verbose:1037print"%sis at%s; rewinding towards%s"% (ref, change, maxChange)1038system("git update-ref%s\"%s^\""% (ref, ref))1039 log =extractLogMessageFromGitCommit(ref)1040 settings =extractSettingsGitLog(log)104110421043 depotPaths = settings['depot-paths']1044 change = settings['change']10451046if changed:1047print"%srewound to%s"% (ref, change)10481049return True10501051classP4Submit(Command, P4UserMap):10521053 conflict_behavior_choices = ("ask","skip","quit")10541055def__init__(self):1056 Command.__init__(self)1057 P4UserMap.__init__(self)1058 self.options = [1059 optparse.make_option("--origin", dest="origin"),1060 optparse.make_option("-M", dest="detectRenames", action="store_true"),1061# preserve the user, requires relevant p4 permissions1062 optparse.make_option("--preserve-user", dest="preserveUser", action="store_true"),1063 optparse.make_option("--export-labels", dest="exportLabels", action="store_true"),1064 optparse.make_option("--dry-run","-n", dest="dry_run", action="store_true"),1065 optparse.make_option("--prepare-p4-only", dest="prepare_p4_only", action="store_true"),1066 optparse.make_option("--conflict", dest="conflict_behavior",1067 choices=self.conflict_behavior_choices),1068 optparse.make_option("--branch", dest="branch"),1069]1070 self.description ="Submit changes from git to the perforce depot."1071 self.usage +=" [name of git branch to submit into perforce depot]"1072 self.origin =""1073 self.detectRenames =False1074 self.preserveUser =gitConfigBool("git-p4.preserveUser")1075 self.dry_run =False1076 self.prepare_p4_only =False1077 self.conflict_behavior =None1078 self.isWindows = (platform.system() =="Windows")1079 self.exportLabels =False1080 self.p4HasMoveCommand =p4_has_move_command()1081 self.branch =None10821083defcheck(self):1084iflen(p4CmdList("opened ...")) >0:1085die("You have files opened with perforce! Close them before starting the sync.")10861087defseparate_jobs_from_description(self, message):1088"""Extract and return a possible Jobs field in the commit1089 message. It goes into a separate section in the p4 change1090 specification.10911092 A jobs line starts with "Jobs:" and looks like a new field1093 in a form. Values are white-space separated on the same1094 line or on following lines that start with a tab.10951096 This does not parse and extract the full git commit message1097 like a p4 form. It just sees the Jobs: line as a marker1098 to pass everything from then on directly into the p4 form,1099 but outside the description section.11001101 Return a tuple (stripped log message, jobs string)."""11021103 m = re.search(r'^Jobs:', message, re.MULTILINE)1104if m is None:1105return(message,None)11061107 jobtext = message[m.start():]1108 stripped_message = message[:m.start()].rstrip()1109return(stripped_message, jobtext)11101111defprepareLogMessage(self, template, message, jobs):1112"""Edits the template returned from "p4 change -o" to insert1113 the message in the Description field, and the jobs text in1114 the Jobs field."""1115 result =""11161117 inDescriptionSection =False11181119for line in template.split("\n"):1120if line.startswith("#"):1121 result += line +"\n"1122continue11231124if inDescriptionSection:1125if line.startswith("Files:")or line.startswith("Jobs:"):1126 inDescriptionSection =False1127# insert Jobs section1128if jobs:1129 result += jobs +"\n"1130else:1131continue1132else:1133if line.startswith("Description:"):1134 inDescriptionSection =True1135 line +="\n"1136for messageLine in message.split("\n"):1137 line +="\t"+ messageLine +"\n"11381139 result += line +"\n"11401141return result11421143defpatchRCSKeywords(self,file, pattern):1144# Attempt to zap the RCS keywords in a p4 controlled file matching the given pattern1145(handle, outFileName) = tempfile.mkstemp(dir='.')1146try:1147 outFile = os.fdopen(handle,"w+")1148 inFile =open(file,"r")1149 regexp = re.compile(pattern, re.VERBOSE)1150for line in inFile.readlines():1151 line = regexp.sub(r'$\1$', line)1152 outFile.write(line)1153 inFile.close()1154 outFile.close()1155# Forcibly overwrite the original file1156 os.unlink(file)1157 shutil.move(outFileName,file)1158except:1159# cleanup our temporary file1160 os.unlink(outFileName)1161print"Failed to strip RCS keywords in%s"%file1162raise11631164print"Patched up RCS keywords in%s"%file11651166defp4UserForCommit(self,id):1167# Return the tuple (perforce user,git email) for a given git commit id1168 self.getUserMapFromPerforceServer()1169 gitEmail =read_pipe(["git","log","--max-count=1",1170"--format=%ae",id])1171 gitEmail = gitEmail.strip()1172if not self.emails.has_key(gitEmail):1173return(None,gitEmail)1174else:1175return(self.emails[gitEmail],gitEmail)11761177defcheckValidP4Users(self,commits):1178# check if any git authors cannot be mapped to p4 users1179foridin commits:1180(user,email) = self.p4UserForCommit(id)1181if not user:1182 msg ="Cannot find p4 user for email%sin commit%s."% (email,id)1183ifgitConfigBool("git-p4.allowMissingP4Users"):1184print"%s"% msg1185else:1186die("Error:%s\nSet git-p4.allowMissingP4Users to true to allow this."% msg)11871188deflastP4Changelist(self):1189# Get back the last changelist number submitted in this client spec. This1190# then gets used to patch up the username in the change. If the same1191# client spec is being used by multiple processes then this might go1192# wrong.1193 results =p4CmdList("client -o")# find the current client1194 client =None1195for r in results:1196if r.has_key('Client'):1197 client = r['Client']1198break1199if not client:1200die("could not get client spec")1201 results =p4CmdList(["changes","-c", client,"-m","1"])1202for r in results:1203if r.has_key('change'):1204return r['change']1205die("Could not get changelist number for last submit - cannot patch up user details")12061207defmodifyChangelistUser(self, changelist, newUser):1208# fixup the user field of a changelist after it has been submitted.1209 changes =p4CmdList("change -o%s"% changelist)1210iflen(changes) !=1:1211die("Bad output from p4 change modifying%sto user%s"%1212(changelist, newUser))12131214 c = changes[0]1215if c['User'] == newUser:return# nothing to do1216 c['User'] = newUser1217input= marshal.dumps(c)12181219 result =p4CmdList("change -f -i", stdin=input)1220for r in result:1221if r.has_key('code'):1222if r['code'] =='error':1223die("Could not modify user field of changelist%sto%s:%s"% (changelist, newUser, r['data']))1224if r.has_key('data'):1225print("Updated user field for changelist%sto%s"% (changelist, newUser))1226return1227die("Could not modify user field of changelist%sto%s"% (changelist, newUser))12281229defcanChangeChangelists(self):1230# check to see if we have p4 admin or super-user permissions, either of1231# which are required to modify changelists.1232 results =p4CmdList(["protects", self.depotPath])1233for r in results:1234if r.has_key('perm'):1235if r['perm'] =='admin':1236return11237if r['perm'] =='super':1238return11239return012401241defprepareSubmitTemplate(self):1242"""Run "p4 change -o" to grab a change specification template.1243 This does not use "p4 -G", as it is nice to keep the submission1244 template in original order, since a human might edit it.12451246 Remove lines in the Files section that show changes to files1247 outside the depot path we're committing into."""12481249 template =""1250 inFilesSection =False1251for line inp4_read_pipe_lines(['change','-o']):1252if line.endswith("\r\n"):1253 line = line[:-2] +"\n"1254if inFilesSection:1255if line.startswith("\t"):1256# path starts and ends with a tab1257 path = line[1:]1258 lastTab = path.rfind("\t")1259if lastTab != -1:1260 path = path[:lastTab]1261if notp4PathStartsWith(path, self.depotPath):1262continue1263else:1264 inFilesSection =False1265else:1266if line.startswith("Files:"):1267 inFilesSection =True12681269 template += line12701271return template12721273defedit_template(self, template_file):1274"""Invoke the editor to let the user change the submission1275 message. Return true if okay to continue with the submit."""12761277# if configured to skip the editing part, just submit1278ifgitConfigBool("git-p4.skipSubmitEdit"):1279return True12801281# look at the modification time, to check later if the user saved1282# the file1283 mtime = os.stat(template_file).st_mtime12841285# invoke the editor1286if os.environ.has_key("P4EDITOR")and(os.environ.get("P4EDITOR") !=""):1287 editor = os.environ.get("P4EDITOR")1288else:1289 editor =read_pipe("git var GIT_EDITOR").strip()1290system(["sh","-c", ('%s"$@"'% editor), editor, template_file])12911292# If the file was not saved, prompt to see if this patch should1293# be skipped. But skip this verification step if configured so.1294ifgitConfigBool("git-p4.skipSubmitEditCheck"):1295return True12961297# modification time updated means user saved the file1298if os.stat(template_file).st_mtime > mtime:1299return True13001301while True:1302 response =raw_input("Submit template unchanged. Submit anyway? [y]es, [n]o (skip this patch) ")1303if response =='y':1304return True1305if response =='n':1306return False13071308defget_diff_description(self, editedFiles, filesToAdd):1309# diff1310if os.environ.has_key("P4DIFF"):1311del(os.environ["P4DIFF"])1312 diff =""1313for editedFile in editedFiles:1314 diff +=p4_read_pipe(['diff','-du',1315wildcard_encode(editedFile)])13161317# new file diff1318 newdiff =""1319for newFile in filesToAdd:1320 newdiff +="==== new file ====\n"1321 newdiff +="--- /dev/null\n"1322 newdiff +="+++%s\n"% newFile1323 f =open(newFile,"r")1324for line in f.readlines():1325 newdiff +="+"+ line1326 f.close()13271328return(diff + newdiff).replace('\r\n','\n')13291330defapplyCommit(self,id):1331"""Apply one commit, return True if it succeeded."""13321333print"Applying",read_pipe(["git","show","-s",1334"--format=format:%h%s",id])13351336(p4User, gitEmail) = self.p4UserForCommit(id)13371338 diff =read_pipe_lines("git diff-tree -r%s\"%s^\" \"%s\""% (self.diffOpts,id,id))1339 filesToAdd =set()1340 filesToDelete =set()1341 editedFiles =set()1342 pureRenameCopy =set()1343 filesToChangeExecBit = {}13441345for line in diff:1346 diff =parseDiffTreeEntry(line)1347 modifier = diff['status']1348 path = diff['src']1349if modifier =="M":1350p4_edit(path)1351ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1352 filesToChangeExecBit[path] = diff['dst_mode']1353 editedFiles.add(path)1354elif modifier =="A":1355 filesToAdd.add(path)1356 filesToChangeExecBit[path] = diff['dst_mode']1357if path in filesToDelete:1358 filesToDelete.remove(path)1359elif modifier =="D":1360 filesToDelete.add(path)1361if path in filesToAdd:1362 filesToAdd.remove(path)1363elif modifier =="C":1364 src, dest = diff['src'], diff['dst']1365p4_integrate(src, dest)1366 pureRenameCopy.add(dest)1367if diff['src_sha1'] != diff['dst_sha1']:1368p4_edit(dest)1369 pureRenameCopy.discard(dest)1370ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1371p4_edit(dest)1372 pureRenameCopy.discard(dest)1373 filesToChangeExecBit[dest] = diff['dst_mode']1374if self.isWindows:1375# turn off read-only attribute1376 os.chmod(dest, stat.S_IWRITE)1377 os.unlink(dest)1378 editedFiles.add(dest)1379elif modifier =="R":1380 src, dest = diff['src'], diff['dst']1381if self.p4HasMoveCommand:1382p4_edit(src)# src must be open before move1383p4_move(src, dest)# opens for (move/delete, move/add)1384else:1385p4_integrate(src, dest)1386if diff['src_sha1'] != diff['dst_sha1']:1387p4_edit(dest)1388else:1389 pureRenameCopy.add(dest)1390ifisModeExecChanged(diff['src_mode'], diff['dst_mode']):1391if not self.p4HasMoveCommand:1392p4_edit(dest)# with move: already open, writable1393 filesToChangeExecBit[dest] = diff['dst_mode']1394if not self.p4HasMoveCommand:1395if self.isWindows:1396 os.chmod(dest, stat.S_IWRITE)1397 os.unlink(dest)1398 filesToDelete.add(src)1399 editedFiles.add(dest)1400else:1401die("unknown modifier%sfor%s"% (modifier, path))14021403 diffcmd ="git diff-tree --full-index -p\"%s\""% (id)1404 patchcmd = diffcmd +" | git apply "1405 tryPatchCmd = patchcmd +"--check -"1406 applyPatchCmd = patchcmd +"--check --apply -"1407 patch_succeeded =True14081409if os.system(tryPatchCmd) !=0:1410 fixed_rcs_keywords =False1411 patch_succeeded =False1412print"Unfortunately applying the change failed!"14131414# Patch failed, maybe it's just RCS keyword woes. Look through1415# the patch to see if that's possible.1416ifgitConfigBool("git-p4.attemptRCSCleanup"):1417file=None1418 pattern =None1419 kwfiles = {}1420forfilein editedFiles | filesToDelete:1421# did this file's delta contain RCS keywords?1422 pattern =p4_keywords_regexp_for_file(file)14231424if pattern:1425# this file is a possibility...look for RCS keywords.1426 regexp = re.compile(pattern, re.VERBOSE)1427for line inread_pipe_lines(["git","diff","%s^..%s"% (id,id),file]):1428if regexp.search(line):1429if verbose:1430print"got keyword match on%sin%sin%s"% (pattern, line,file)1431 kwfiles[file] = pattern1432break14331434forfilein kwfiles:1435if verbose:1436print"zapping%swith%s"% (line,pattern)1437# File is being deleted, so not open in p4. Must1438# disable the read-only bit on windows.1439if self.isWindows andfilenot in editedFiles:1440 os.chmod(file, stat.S_IWRITE)1441 self.patchRCSKeywords(file, kwfiles[file])1442 fixed_rcs_keywords =True14431444if fixed_rcs_keywords:1445print"Retrying the patch with RCS keywords cleaned up"1446if os.system(tryPatchCmd) ==0:1447 patch_succeeded =True14481449if not patch_succeeded:1450for f in editedFiles:1451p4_revert(f)1452return False14531454#1455# Apply the patch for real, and do add/delete/+x handling.1456#1457system(applyPatchCmd)14581459for f in filesToAdd:1460p4_add(f)1461for f in filesToDelete:1462p4_revert(f)1463p4_delete(f)14641465# Set/clear executable bits1466for f in filesToChangeExecBit.keys():1467 mode = filesToChangeExecBit[f]1468setP4ExecBit(f, mode)14691470#1471# Build p4 change description, starting with the contents1472# of the git commit message.1473#1474 logMessage =extractLogMessageFromGitCommit(id)1475 logMessage = logMessage.strip()1476(logMessage, jobs) = self.separate_jobs_from_description(logMessage)14771478 template = self.prepareSubmitTemplate()1479 submitTemplate = self.prepareLogMessage(template, logMessage, jobs)14801481if self.preserveUser:1482 submitTemplate +="\n######## Actual user%s, modified after commit\n"% p4User14831484if self.checkAuthorship and not self.p4UserIsMe(p4User):1485 submitTemplate +="######## git author%sdoes not match your p4 account.\n"% gitEmail1486 submitTemplate +="######## Use option --preserve-user to modify authorship.\n"1487 submitTemplate +="######## Variable git-p4.skipUserNameCheck hides this message.\n"14881489 separatorLine ="######## everything below this line is just the diff #######\n"1490if not self.prepare_p4_only:1491 submitTemplate += separatorLine1492 submitTemplate += self.get_diff_description(editedFiles, filesToAdd)14931494(handle, fileName) = tempfile.mkstemp()1495 tmpFile = os.fdopen(handle,"w+b")1496if self.isWindows:1497 submitTemplate = submitTemplate.replace("\n","\r\n")1498 tmpFile.write(submitTemplate)1499 tmpFile.close()15001501if self.prepare_p4_only:1502#1503# Leave the p4 tree prepared, and the submit template around1504# and let the user decide what to do next1505#1506print1507print"P4 workspace prepared for submission."1508print"To submit or revert, go to client workspace"1509print" "+ self.clientPath1510print1511print"To submit, use\"p4 submit\"to write a new description,"1512print"or\"p4 submit -i <%s\"to use the one prepared by" \1513"\"git p4\"."% fileName1514print"You can delete the file\"%s\"when finished."% fileName15151516if self.preserveUser and p4User and not self.p4UserIsMe(p4User):1517print"To preserve change ownership by user%s, you must\n" \1518"do\"p4 change -f <change>\"after submitting and\n" \1519"edit the User field."1520if pureRenameCopy:1521print"After submitting, renamed files must be re-synced."1522print"Invoke\"p4 sync -f\"on each of these files:"1523for f in pureRenameCopy:1524print" "+ f15251526print1527print"To revert the changes, use\"p4 revert ...\", and delete"1528print"the submit template file\"%s\""% fileName1529if filesToAdd:1530print"Since the commit adds new files, they must be deleted:"1531for f in filesToAdd:1532print" "+ f1533print1534return True15351536#1537# Let the user edit the change description, then submit it.1538#1539if self.edit_template(fileName):1540# read the edited message and submit1541 ret =True1542 tmpFile =open(fileName,"rb")1543 message = tmpFile.read()1544 tmpFile.close()1545if self.isWindows:1546 message = message.replace("\r\n","\n")1547 submitTemplate = message[:message.index(separatorLine)]1548p4_write_pipe(['submit','-i'], submitTemplate)15491550if self.preserveUser:1551if p4User:1552# Get last changelist number. Cannot easily get it from1553# the submit command output as the output is1554# unmarshalled.1555 changelist = self.lastP4Changelist()1556 self.modifyChangelistUser(changelist, p4User)15571558# The rename/copy happened by applying a patch that created a1559# new file. This leaves it writable, which confuses p4.1560for f in pureRenameCopy:1561p4_sync(f,"-f")15621563else:1564# skip this patch1565 ret =False1566print"Submission cancelled, undoing p4 changes."1567for f in editedFiles:1568p4_revert(f)1569for f in filesToAdd:1570p4_revert(f)1571 os.remove(f)1572for f in filesToDelete:1573p4_revert(f)15741575 os.remove(fileName)1576return ret15771578# Export git tags as p4 labels. Create a p4 label and then tag1579# with that.1580defexportGitTags(self, gitTags):1581 validLabelRegexp =gitConfig("git-p4.labelExportRegexp")1582iflen(validLabelRegexp) ==0:1583 validLabelRegexp = defaultLabelRegexp1584 m = re.compile(validLabelRegexp)15851586for name in gitTags:15871588if not m.match(name):1589if verbose:1590print"tag%sdoes not match regexp%s"% (name, validLabelRegexp)1591continue15921593# Get the p4 commit this corresponds to1594 logMessage =extractLogMessageFromGitCommit(name)1595 values =extractSettingsGitLog(logMessage)15961597if not values.has_key('change'):1598# a tag pointing to something not sent to p4; ignore1599if verbose:1600print"git tag%sdoes not give a p4 commit"% name1601continue1602else:1603 changelist = values['change']16041605# Get the tag details.1606 inHeader =True1607 isAnnotated =False1608 body = []1609for l inread_pipe_lines(["git","cat-file","-p", name]):1610 l = l.strip()1611if inHeader:1612if re.match(r'tag\s+', l):1613 isAnnotated =True1614elif re.match(r'\s*$', l):1615 inHeader =False1616continue1617else:1618 body.append(l)16191620if not isAnnotated:1621 body = ["lightweight tag imported by git p4\n"]16221623# Create the label - use the same view as the client spec we are using1624 clientSpec =getClientSpec()16251626 labelTemplate ="Label:%s\n"% name1627 labelTemplate +="Description:\n"1628for b in body:1629 labelTemplate +="\t"+ b +"\n"1630 labelTemplate +="View:\n"1631for depot_side in clientSpec.mappings:1632 labelTemplate +="\t%s\n"% depot_side16331634if self.dry_run:1635print"Would create p4 label%sfor tag"% name1636elif self.prepare_p4_only:1637print"Not creating p4 label%sfor tag due to option" \1638" --prepare-p4-only"% name1639else:1640p4_write_pipe(["label","-i"], labelTemplate)16411642# Use the label1643p4_system(["tag","-l", name] +1644["%s@%s"% (depot_side, changelist)for depot_side in clientSpec.mappings])16451646if verbose:1647print"created p4 label for tag%s"% name16481649defrun(self, args):1650iflen(args) ==0:1651 self.master =currentGitBranch()1652iflen(self.master) ==0or notgitBranchExists("refs/heads/%s"% self.master):1653die("Detecting current git branch failed!")1654eliflen(args) ==1:1655 self.master = args[0]1656if notbranchExists(self.master):1657die("Branch%sdoes not exist"% self.master)1658else:1659return False16601661 allowSubmit =gitConfig("git-p4.allowSubmit")1662iflen(allowSubmit) >0and not self.master in allowSubmit.split(","):1663die("%sis not in git-p4.allowSubmit"% self.master)16641665[upstream, settings] =findUpstreamBranchPoint()1666 self.depotPath = settings['depot-paths'][0]1667iflen(self.origin) ==0:1668 self.origin = upstream16691670if self.preserveUser:1671if not self.canChangeChangelists():1672die("Cannot preserve user names without p4 super-user or admin permissions")16731674# if not set from the command line, try the config file1675if self.conflict_behavior is None:1676 val =gitConfig("git-p4.conflict")1677if val:1678if val not in self.conflict_behavior_choices:1679die("Invalid value '%s' for config git-p4.conflict"% val)1680else:1681 val ="ask"1682 self.conflict_behavior = val16831684if self.verbose:1685print"Origin branch is "+ self.origin16861687iflen(self.depotPath) ==0:1688print"Internal error: cannot locate perforce depot path from existing branches"1689 sys.exit(128)16901691 self.useClientSpec =False1692ifgitConfigBool("git-p4.useclientspec"):1693 self.useClientSpec =True1694if self.useClientSpec:1695 self.clientSpecDirs =getClientSpec()16961697# Check for the existance of P4 branches1698 branchesDetected = (len(p4BranchesInGit().keys()) >1)16991700if self.useClientSpec and not branchesDetected:1701# all files are relative to the client spec1702 self.clientPath =getClientRoot()1703else:1704 self.clientPath =p4Where(self.depotPath)17051706if self.clientPath =="":1707die("Error: Cannot locate perforce checkout of%sin client view"% self.depotPath)17081709print"Perforce checkout for depot path%slocated at%s"% (self.depotPath, self.clientPath)1710 self.oldWorkingDirectory = os.getcwd()17111712# ensure the clientPath exists1713 new_client_dir =False1714if not os.path.exists(self.clientPath):1715 new_client_dir =True1716 os.makedirs(self.clientPath)17171718chdir(self.clientPath, is_client_path=True)1719if self.dry_run:1720print"Would synchronize p4 checkout in%s"% self.clientPath1721else:1722print"Synchronizing p4 checkout..."1723if new_client_dir:1724# old one was destroyed, and maybe nobody told p41725p4_sync("...","-f")1726else:1727p4_sync("...")1728 self.check()17291730 commits = []1731for line inread_pipe_lines(["git","rev-list","--no-merges","%s..%s"% (self.origin, self.master)]):1732 commits.append(line.strip())1733 commits.reverse()17341735if self.preserveUser orgitConfigBool("git-p4.skipUserNameCheck"):1736 self.checkAuthorship =False1737else:1738 self.checkAuthorship =True17391740if self.preserveUser:1741 self.checkValidP4Users(commits)17421743#1744# Build up a set of options to be passed to diff when1745# submitting each commit to p4.1746#1747if self.detectRenames:1748# command-line -M arg1749 self.diffOpts ="-M"1750else:1751# If not explicitly set check the config variable1752 detectRenames =gitConfig("git-p4.detectRenames")17531754if detectRenames.lower() =="false"or detectRenames =="":1755 self.diffOpts =""1756elif detectRenames.lower() =="true":1757 self.diffOpts ="-M"1758else:1759 self.diffOpts ="-M%s"% detectRenames17601761# no command-line arg for -C or --find-copies-harder, just1762# config variables1763 detectCopies =gitConfig("git-p4.detectCopies")1764if detectCopies.lower() =="false"or detectCopies =="":1765pass1766elif detectCopies.lower() =="true":1767 self.diffOpts +=" -C"1768else:1769 self.diffOpts +=" -C%s"% detectCopies17701771ifgitConfigBool("git-p4.detectCopiesHarder"):1772 self.diffOpts +=" --find-copies-harder"17731774#1775# Apply the commits, one at a time. On failure, ask if should1776# continue to try the rest of the patches, or quit.1777#1778if self.dry_run:1779print"Would apply"1780 applied = []1781 last =len(commits) -11782for i, commit inenumerate(commits):1783if self.dry_run:1784print" ",read_pipe(["git","show","-s",1785"--format=format:%h%s", commit])1786 ok =True1787else:1788 ok = self.applyCommit(commit)1789if ok:1790 applied.append(commit)1791else:1792if self.prepare_p4_only and i < last:1793print"Processing only the first commit due to option" \1794" --prepare-p4-only"1795break1796if i < last:1797 quit =False1798while True:1799# prompt for what to do, or use the option/variable1800if self.conflict_behavior =="ask":1801print"What do you want to do?"1802 response =raw_input("[s]kip this commit but apply"1803" the rest, or [q]uit? ")1804if not response:1805continue1806elif self.conflict_behavior =="skip":1807 response ="s"1808elif self.conflict_behavior =="quit":1809 response ="q"1810else:1811die("Unknown conflict_behavior '%s'"%1812 self.conflict_behavior)18131814if response[0] =="s":1815print"Skipping this commit, but applying the rest"1816break1817if response[0] =="q":1818print"Quitting"1819 quit =True1820break1821if quit:1822break18231824chdir(self.oldWorkingDirectory)18251826if self.dry_run:1827pass1828elif self.prepare_p4_only:1829pass1830eliflen(commits) ==len(applied):1831print"All commits applied!"18321833 sync =P4Sync()1834if self.branch:1835 sync.branch = self.branch1836 sync.run([])18371838 rebase =P4Rebase()1839 rebase.rebase()18401841else:1842iflen(applied) ==0:1843print"No commits applied."1844else:1845print"Applied only the commits marked with '*':"1846for c in commits:1847if c in applied:1848 star ="*"1849else:1850 star =" "1851print star,read_pipe(["git","show","-s",1852"--format=format:%h%s", c])1853print"You will have to do 'git p4 sync' and rebase."18541855ifgitConfigBool("git-p4.exportLabels"):1856 self.exportLabels =True18571858if self.exportLabels:1859 p4Labels =getP4Labels(self.depotPath)1860 gitTags =getGitTags()18611862 missingGitTags = gitTags - p4Labels1863 self.exportGitTags(missingGitTags)18641865# exit with error unless everything applied perfectly1866iflen(commits) !=len(applied):1867 sys.exit(1)18681869return True18701871classView(object):1872"""Represent a p4 view ("p4 help views"), and map files in a1873 repo according to the view."""18741875def__init__(self, client_name):1876 self.mappings = []1877 self.client_prefix ="//%s/"% client_name1878# cache results of "p4 where" to lookup client file locations1879 self.client_spec_path_cache = {}18801881defappend(self, view_line):1882"""Parse a view line, splitting it into depot and client1883 sides. Append to self.mappings, preserving order. This1884 is only needed for tag creation."""18851886# Split the view line into exactly two words. P4 enforces1887# structure on these lines that simplifies this quite a bit.1888#1889# Either or both words may be double-quoted.1890# Single quotes do not matter.1891# Double-quote marks cannot occur inside the words.1892# A + or - prefix is also inside the quotes.1893# There are no quotes unless they contain a space.1894# The line is already white-space stripped.1895# The two words are separated by a single space.1896#1897if view_line[0] =='"':1898# First word is double quoted. Find its end.1899 close_quote_index = view_line.find('"',1)1900if close_quote_index <=0:1901die("No first-word closing quote found:%s"% view_line)1902 depot_side = view_line[1:close_quote_index]1903# skip closing quote and space1904 rhs_index = close_quote_index +1+11905else:1906 space_index = view_line.find(" ")1907if space_index <=0:1908die("No word-splitting space found:%s"% view_line)1909 depot_side = view_line[0:space_index]1910 rhs_index = space_index +119111912# prefix + means overlay on previous mapping1913if depot_side.startswith("+"):1914 depot_side = depot_side[1:]19151916# prefix - means exclude this path, leave out of mappings1917 exclude =False1918if depot_side.startswith("-"):1919 exclude =True1920 depot_side = depot_side[1:]19211922if not exclude:1923 self.mappings.append(depot_side)19241925defconvert_client_path(self, clientFile):1926# chop off //client/ part to make it relative1927if not clientFile.startswith(self.client_prefix):1928die("No prefix '%s' on clientFile '%s'"%1929(self.client_prefix, clientFile))1930return clientFile[len(self.client_prefix):]19311932defupdate_client_spec_path_cache(self, files):1933""" Caching file paths by "p4 where" batch query """19341935# List depot file paths exclude that already cached1936 fileArgs = [f['path']for f in files if f['path']not in self.client_spec_path_cache]19371938iflen(fileArgs) ==0:1939return# All files in cache19401941 where_result =p4CmdList(["-x","-","where"], stdin=fileArgs)1942for res in where_result:1943if"code"in res and res["code"] =="error":1944# assume error is "... file(s) not in client view"1945continue1946if"clientFile"not in res:1947die("No clientFile in 'p4 where' output")1948if"unmap"in res:1949# it will list all of them, but only one not unmap-ped1950continue1951ifgitConfigBool("core.ignorecase"):1952 res['depotFile'] = res['depotFile'].lower()1953 self.client_spec_path_cache[res['depotFile']] = self.convert_client_path(res["clientFile"])19541955# not found files or unmap files set to ""1956for depotFile in fileArgs:1957ifgitConfigBool("core.ignorecase"):1958 depotFile = depotFile.lower()1959if depotFile not in self.client_spec_path_cache:1960 self.client_spec_path_cache[depotFile] =""19611962defmap_in_client(self, depot_path):1963"""Return the relative location in the client where this1964 depot file should live. Returns "" if the file should1965 not be mapped in the client."""19661967ifgitConfigBool("core.ignorecase"):1968 depot_path = depot_path.lower()19691970if depot_path in self.client_spec_path_cache:1971return self.client_spec_path_cache[depot_path]19721973die("Error:%sis not found in client spec path"% depot_path )1974return""19751976classP4Sync(Command, P4UserMap):1977 delete_actions = ("delete","move/delete","purge")19781979def__init__(self):1980 Command.__init__(self)1981 P4UserMap.__init__(self)1982 self.options = [1983 optparse.make_option("--branch", dest="branch"),1984 optparse.make_option("--detect-branches", dest="detectBranches", action="store_true"),1985 optparse.make_option("--changesfile", dest="changesFile"),1986 optparse.make_option("--silent", dest="silent", action="store_true"),1987 optparse.make_option("--detect-labels", dest="detectLabels", action="store_true"),1988 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),1989 optparse.make_option("--import-local", dest="importIntoRemotes", action="store_false",1990help="Import into refs/heads/ , not refs/remotes"),1991 optparse.make_option("--max-changes", dest="maxChanges",1992help="Maximum number of changes to import"),1993 optparse.make_option("--changes-block-size", dest="changes_block_size",type="int",1994help="Internal block size to use when iteratively calling p4 changes"),1995 optparse.make_option("--keep-path", dest="keepRepoPath", action='store_true',1996help="Keep entire BRANCH/DIR/SUBDIR prefix during import"),1997 optparse.make_option("--use-client-spec", dest="useClientSpec", action='store_true',1998help="Only sync files that are included in the Perforce Client Spec"),1999 optparse.make_option("-/", dest="cloneExclude",2000 action="append",type="string",2001help="exclude depot path"),2002]2003 self.description ="""Imports from Perforce into a git repository.\n2004 example:2005 //depot/my/project/ -- to import the current head2006 //depot/my/project/@all -- to import everything2007 //depot/my/project/@1,6 -- to import only from revision 1 to 620082009 (a ... is not needed in the path p4 specification, it's added implicitly)"""20102011 self.usage +=" //depot/path[@revRange]"2012 self.silent =False2013 self.createdBranches =set()2014 self.committedChanges =set()2015 self.branch =""2016 self.detectBranches =False2017 self.detectLabels =False2018 self.importLabels =False2019 self.changesFile =""2020 self.syncWithOrigin =True2021 self.importIntoRemotes =True2022 self.maxChanges =""2023 self.changes_block_size =None2024 self.keepRepoPath =False2025 self.depotPaths =None2026 self.p4BranchesInGit = []2027 self.cloneExclude = []2028 self.useClientSpec =False2029 self.useClientSpec_from_options =False2030 self.clientSpecDirs =None2031 self.tempBranches = []2032 self.tempBranchLocation ="git-p4-tmp"20332034ifgitConfig("git-p4.syncFromOrigin") =="false":2035 self.syncWithOrigin =False20362037# This is required for the "append" cloneExclude action2038defensure_value(self, attr, value):2039if nothasattr(self, attr)orgetattr(self, attr)is None:2040setattr(self, attr, value)2041returngetattr(self, attr)20422043# Force a checkpoint in fast-import and wait for it to finish2044defcheckpoint(self):2045 self.gitStream.write("checkpoint\n\n")2046 self.gitStream.write("progress checkpoint\n\n")2047 out = self.gitOutput.readline()2048if self.verbose:2049print"checkpoint finished: "+ out20502051defextractFilesFromCommit(self, commit):2052 self.cloneExclude = [re.sub(r"\.\.\.$","", path)2053for path in self.cloneExclude]2054 files = []2055 fnum =02056while commit.has_key("depotFile%s"% fnum):2057 path = commit["depotFile%s"% fnum]20582059if[p for p in self.cloneExclude2060ifp4PathStartsWith(path, p)]:2061 found =False2062else:2063 found = [p for p in self.depotPaths2064ifp4PathStartsWith(path, p)]2065if not found:2066 fnum = fnum +12067continue20682069file= {}2070file["path"] = path2071file["rev"] = commit["rev%s"% fnum]2072file["action"] = commit["action%s"% fnum]2073file["type"] = commit["type%s"% fnum]2074 files.append(file)2075 fnum = fnum +12076return files20772078defstripRepoPath(self, path, prefixes):2079"""When streaming files, this is called to map a p4 depot path2080 to where it should go in git. The prefixes are either2081 self.depotPaths, or self.branchPrefixes in the case of2082 branch detection."""20832084if self.useClientSpec:2085# branch detection moves files up a level (the branch name)2086# from what client spec interpretation gives2087 path = self.clientSpecDirs.map_in_client(path)2088if self.detectBranches:2089for b in self.knownBranches:2090if path.startswith(b +"/"):2091 path = path[len(b)+1:]20922093elif self.keepRepoPath:2094# Preserve everything in relative path name except leading2095# //depot/; just look at first prefix as they all should2096# be in the same depot.2097 depot = re.sub("^(//[^/]+/).*", r'\1', prefixes[0])2098ifp4PathStartsWith(path, depot):2099 path = path[len(depot):]21002101else:2102for p in prefixes:2103ifp4PathStartsWith(path, p):2104 path = path[len(p):]2105break21062107 path =wildcard_decode(path)2108return path21092110defsplitFilesIntoBranches(self, commit):2111"""Look at each depotFile in the commit to figure out to what2112 branch it belongs."""21132114if self.clientSpecDirs:2115 files = self.extractFilesFromCommit(commit)2116 self.clientSpecDirs.update_client_spec_path_cache(files)21172118 branches = {}2119 fnum =02120while commit.has_key("depotFile%s"% fnum):2121 path = commit["depotFile%s"% fnum]2122 found = [p for p in self.depotPaths2123ifp4PathStartsWith(path, p)]2124if not found:2125 fnum = fnum +12126continue21272128file= {}2129file["path"] = path2130file["rev"] = commit["rev%s"% fnum]2131file["action"] = commit["action%s"% fnum]2132file["type"] = commit["type%s"% fnum]2133 fnum = fnum +121342135# start with the full relative path where this file would2136# go in a p4 client2137if self.useClientSpec:2138 relPath = self.clientSpecDirs.map_in_client(path)2139else:2140 relPath = self.stripRepoPath(path, self.depotPaths)21412142for branch in self.knownBranches.keys():2143# add a trailing slash so that a commit into qt/4.2foo2144# doesn't end up in qt/4.2, e.g.2145if relPath.startswith(branch +"/"):2146if branch not in branches:2147 branches[branch] = []2148 branches[branch].append(file)2149break21502151return branches21522153# output one file from the P4 stream2154# - helper for streamP4Files21552156defstreamOneP4File(self,file, contents):2157 relPath = self.stripRepoPath(file['depotFile'], self.branchPrefixes)2158if verbose:2159 sys.stderr.write("%s\n"% relPath)21602161(type_base, type_mods) =split_p4_type(file["type"])21622163 git_mode ="100644"2164if"x"in type_mods:2165 git_mode ="100755"2166if type_base =="symlink":2167 git_mode ="120000"2168# p4 print on a symlink sometimes contains "target\n";2169# if it does, remove the newline2170 data =''.join(contents)2171if not data:2172# Some version of p4 allowed creating a symlink that pointed2173# to nothing. This causes p4 errors when checking out such2174# a change, and errors here too. Work around it by ignoring2175# the bad symlink; hopefully a future change fixes it.2176print"\nIgnoring empty symlink in%s"%file['depotFile']2177return2178elif data[-1] =='\n':2179 contents = [data[:-1]]2180else:2181 contents = [data]21822183if type_base =="utf16":2184# p4 delivers different text in the python output to -G2185# than it does when using "print -o", or normal p4 client2186# operations. utf16 is converted to ascii or utf8, perhaps.2187# But ascii text saved as -t utf16 is completely mangled.2188# Invoke print -o to get the real contents.2189#2190# On windows, the newlines will always be mangled by print, so put2191# them back too. This is not needed to the cygwin windows version,2192# just the native "NT" type.2193#2194try:2195 text =p4_read_pipe(['print','-q','-o','-','%s@%s'% (file['depotFile'],file['change'])])2196exceptExceptionas e:2197if'Translation of file content failed'instr(e):2198 type_base ='binary'2199else:2200raise e2201else:2202ifp4_version_string().find('/NT') >=0:2203 text = text.replace('\r\n','\n')2204 contents = [ text ]22052206if type_base =="apple":2207# Apple filetype files will be streamed as a concatenation of2208# its appledouble header and the contents. This is useless2209# on both macs and non-macs. If using "print -q -o xx", it2210# will create "xx" with the data, and "%xx" with the header.2211# This is also not very useful.2212#2213# Ideally, someday, this script can learn how to generate2214# appledouble files directly and import those to git, but2215# non-mac machines can never find a use for apple filetype.2216print"\nIgnoring apple filetype file%s"%file['depotFile']2217return22182219# Note that we do not try to de-mangle keywords on utf16 files,2220# even though in theory somebody may want that.2221 pattern =p4_keywords_regexp_for_type(type_base, type_mods)2222if pattern:2223 regexp = re.compile(pattern, re.VERBOSE)2224 text =''.join(contents)2225 text = regexp.sub(r'$\1$', text)2226 contents = [ text ]22272228 self.gitStream.write("M%sinline%s\n"% (git_mode, relPath))22292230# total length...2231 length =02232for d in contents:2233 length = length +len(d)22342235 self.gitStream.write("data%d\n"% length)2236for d in contents:2237 self.gitStream.write(d)2238 self.gitStream.write("\n")22392240defstreamOneP4Deletion(self,file):2241 relPath = self.stripRepoPath(file['path'], self.branchPrefixes)2242if verbose:2243 sys.stderr.write("delete%s\n"% relPath)2244 self.gitStream.write("D%s\n"% relPath)22452246# handle another chunk of streaming data2247defstreamP4FilesCb(self, marshalled):22482249# catch p4 errors and complain2250 err =None2251if"code"in marshalled:2252if marshalled["code"] =="error":2253if"data"in marshalled:2254 err = marshalled["data"].rstrip()2255if err:2256 f =None2257if self.stream_have_file_info:2258if"depotFile"in self.stream_file:2259 f = self.stream_file["depotFile"]2260# force a failure in fast-import, else an empty2261# commit will be made2262 self.gitStream.write("\n")2263 self.gitStream.write("die-now\n")2264 self.gitStream.close()2265# ignore errors, but make sure it exits first2266 self.importProcess.wait()2267if f:2268die("Error from p4 print for%s:%s"% (f, err))2269else:2270die("Error from p4 print:%s"% err)22712272if marshalled.has_key('depotFile')and self.stream_have_file_info:2273# start of a new file - output the old one first2274 self.streamOneP4File(self.stream_file, self.stream_contents)2275 self.stream_file = {}2276 self.stream_contents = []2277 self.stream_have_file_info =False22782279# pick up the new file information... for the2280# 'data' field we need to append to our array2281for k in marshalled.keys():2282if k =='data':2283 self.stream_contents.append(marshalled['data'])2284else:2285 self.stream_file[k] = marshalled[k]22862287 self.stream_have_file_info =True22882289# Stream directly from "p4 files" into "git fast-import"2290defstreamP4Files(self, files):2291 filesForCommit = []2292 filesToRead = []2293 filesToDelete = []22942295for f in files:2296# if using a client spec, only add the files that have2297# a path in the client2298if self.clientSpecDirs:2299if self.clientSpecDirs.map_in_client(f['path']) =="":2300continue23012302 filesForCommit.append(f)2303if f['action']in self.delete_actions:2304 filesToDelete.append(f)2305else:2306 filesToRead.append(f)23072308# deleted files...2309for f in filesToDelete:2310 self.streamOneP4Deletion(f)23112312iflen(filesToRead) >0:2313 self.stream_file = {}2314 self.stream_contents = []2315 self.stream_have_file_info =False23162317# curry self argument2318defstreamP4FilesCbSelf(entry):2319 self.streamP4FilesCb(entry)23202321 fileArgs = ['%s#%s'% (f['path'], f['rev'])for f in filesToRead]23222323p4CmdList(["-x","-","print"],2324 stdin=fileArgs,2325 cb=streamP4FilesCbSelf)23262327# do the last chunk2328if self.stream_file.has_key('depotFile'):2329 self.streamOneP4File(self.stream_file, self.stream_contents)23302331defmake_email(self, userid):2332if userid in self.users:2333return self.users[userid]2334else:2335return"%s<a@b>"% userid23362337defstreamTag(self, gitStream, labelName, labelDetails, commit, epoch):2338""" Stream a p4 tag.2339 commit is either a git commit, or a fast-import mark, ":<p4commit>"2340 """23412342if verbose:2343print"writing tag%sfor commit%s"% (labelName, commit)2344 gitStream.write("tag%s\n"% labelName)2345 gitStream.write("from%s\n"% commit)23462347if labelDetails.has_key('Owner'):2348 owner = labelDetails["Owner"]2349else:2350 owner =None23512352# Try to use the owner of the p4 label, or failing that,2353# the current p4 user id.2354if owner:2355 email = self.make_email(owner)2356else:2357 email = self.make_email(self.p4UserId())2358 tagger ="%s %s %s"% (email, epoch, self.tz)23592360 gitStream.write("tagger%s\n"% tagger)23612362print"labelDetails=",labelDetails2363if labelDetails.has_key('Description'):2364 description = labelDetails['Description']2365else:2366 description ='Label from git p4'23672368 gitStream.write("data%d\n"%len(description))2369 gitStream.write(description)2370 gitStream.write("\n")23712372defcommit(self, details, files, branch, parent =""):2373 epoch = details["time"]2374 author = details["user"]23752376if self.verbose:2377print"commit into%s"% branch23782379# start with reading files; if that fails, we should not2380# create a commit.2381 new_files = []2382for f in files:2383if[p for p in self.branchPrefixes ifp4PathStartsWith(f['path'], p)]:2384 new_files.append(f)2385else:2386 sys.stderr.write("Ignoring file outside of prefix:%s\n"% f['path'])23872388if self.clientSpecDirs:2389 self.clientSpecDirs.update_client_spec_path_cache(files)23902391 self.gitStream.write("commit%s\n"% branch)2392 self.gitStream.write("mark :%s\n"% details["change"])2393 self.committedChanges.add(int(details["change"]))2394 committer =""2395if author not in self.users:2396 self.getUserMapFromPerforceServer()2397 committer ="%s %s %s"% (self.make_email(author), epoch, self.tz)23982399 self.gitStream.write("committer%s\n"% committer)24002401 self.gitStream.write("data <<EOT\n")2402 self.gitStream.write(details["desc"])2403 self.gitStream.write("\n[git-p4: depot-paths =\"%s\": change =%s"%2404(','.join(self.branchPrefixes), details["change"]))2405iflen(details['options']) >0:2406 self.gitStream.write(": options =%s"% details['options'])2407 self.gitStream.write("]\nEOT\n\n")24082409iflen(parent) >0:2410if self.verbose:2411print"parent%s"% parent2412 self.gitStream.write("from%s\n"% parent)24132414 self.streamP4Files(new_files)2415 self.gitStream.write("\n")24162417 change =int(details["change"])24182419if self.labels.has_key(change):2420 label = self.labels[change]2421 labelDetails = label[0]2422 labelRevisions = label[1]2423if self.verbose:2424print"Change%sis labelled%s"% (change, labelDetails)24252426 files =p4CmdList(["files"] + ["%s...@%s"% (p, change)2427for p in self.branchPrefixes])24282429iflen(files) ==len(labelRevisions):24302431 cleanedFiles = {}2432for info in files:2433if info["action"]in self.delete_actions:2434continue2435 cleanedFiles[info["depotFile"]] = info["rev"]24362437if cleanedFiles == labelRevisions:2438 self.streamTag(self.gitStream,'tag_%s'% labelDetails['label'], labelDetails, branch, epoch)24392440else:2441if not self.silent:2442print("Tag%sdoes not match with change%s: files do not match."2443% (labelDetails["label"], change))24442445else:2446if not self.silent:2447print("Tag%sdoes not match with change%s: file count is different."2448% (labelDetails["label"], change))24492450# Build a dictionary of changelists and labels, for "detect-labels" option.2451defgetLabels(self):2452 self.labels = {}24532454 l =p4CmdList(["labels"] + ["%s..."% p for p in self.depotPaths])2455iflen(l) >0and not self.silent:2456print"Finding files belonging to labels in%s"% `self.depotPaths`24572458for output in l:2459 label = output["label"]2460 revisions = {}2461 newestChange =02462if self.verbose:2463print"Querying files for label%s"% label2464forfileinp4CmdList(["files"] +2465["%s...@%s"% (p, label)2466for p in self.depotPaths]):2467 revisions[file["depotFile"]] =file["rev"]2468 change =int(file["change"])2469if change > newestChange:2470 newestChange = change24712472 self.labels[newestChange] = [output, revisions]24732474if self.verbose:2475print"Label changes:%s"% self.labels.keys()24762477# Import p4 labels as git tags. A direct mapping does not2478# exist, so assume that if all the files are at the same revision2479# then we can use that, or it's something more complicated we should2480# just ignore.2481defimportP4Labels(self, stream, p4Labels):2482if verbose:2483print"import p4 labels: "+' '.join(p4Labels)24842485 ignoredP4Labels =gitConfigList("git-p4.ignoredP4Labels")2486 validLabelRegexp =gitConfig("git-p4.labelImportRegexp")2487iflen(validLabelRegexp) ==0:2488 validLabelRegexp = defaultLabelRegexp2489 m = re.compile(validLabelRegexp)24902491for name in p4Labels:2492 commitFound =False24932494if not m.match(name):2495if verbose:2496print"label%sdoes not match regexp%s"% (name,validLabelRegexp)2497continue24982499if name in ignoredP4Labels:2500continue25012502 labelDetails =p4CmdList(['label',"-o", name])[0]25032504# get the most recent changelist for each file in this label2505 change =p4Cmd(["changes","-m","1"] + ["%s...@%s"% (p, name)2506for p in self.depotPaths])25072508if change.has_key('change'):2509# find the corresponding git commit; take the oldest commit2510 changelist =int(change['change'])2511if changelist in self.committedChanges:2512 gitCommit =":%d"% changelist # use a fast-import mark2513 commitFound =True2514else:2515 gitCommit =read_pipe(["git","rev-list","--max-count=1",2516"--reverse",":/\[git-p4:.*change =%d\]"% changelist], ignore_error=True)2517iflen(gitCommit) ==0:2518print"importing label%s: could not find git commit for changelist%d"% (name, changelist)2519else:2520 commitFound =True2521 gitCommit = gitCommit.strip()25222523if commitFound:2524# Convert from p4 time format2525try:2526 tmwhen = time.strptime(labelDetails['Update'],"%Y/%m/%d%H:%M:%S")2527exceptValueError:2528print"Could not convert label time%s"% labelDetails['Update']2529 tmwhen =125302531 when =int(time.mktime(tmwhen))2532 self.streamTag(stream, name, labelDetails, gitCommit, when)2533if verbose:2534print"p4 label%smapped to git commit%s"% (name, gitCommit)2535else:2536if verbose:2537print"Label%shas no changelists - possibly deleted?"% name25382539if not commitFound:2540# We can't import this label; don't try again as it will get very2541# expensive repeatedly fetching all the files for labels that will2542# never be imported. If the label is moved in the future, the2543# ignore will need to be removed manually.2544system(["git","config","--add","git-p4.ignoredP4Labels", name])25452546defguessProjectName(self):2547for p in self.depotPaths:2548if p.endswith("/"):2549 p = p[:-1]2550 p = p[p.strip().rfind("/") +1:]2551if not p.endswith("/"):2552 p +="/"2553return p25542555defgetBranchMapping(self):2556 lostAndFoundBranches =set()25572558 user =gitConfig("git-p4.branchUser")2559iflen(user) >0:2560 command ="branches -u%s"% user2561else:2562 command ="branches"25632564for info inp4CmdList(command):2565 details =p4Cmd(["branch","-o", info["branch"]])2566 viewIdx =02567while details.has_key("View%s"% viewIdx):2568 paths = details["View%s"% viewIdx].split(" ")2569 viewIdx = viewIdx +12570# require standard //depot/foo/... //depot/bar/... mapping2571iflen(paths) !=2or not paths[0].endswith("/...")or not paths[1].endswith("/..."):2572continue2573 source = paths[0]2574 destination = paths[1]2575## HACK2576ifp4PathStartsWith(source, self.depotPaths[0])andp4PathStartsWith(destination, self.depotPaths[0]):2577 source = source[len(self.depotPaths[0]):-4]2578 destination = destination[len(self.depotPaths[0]):-4]25792580if destination in self.knownBranches:2581if not self.silent:2582print"p4 branch%sdefines a mapping from%sto%s"% (info["branch"], source, destination)2583print"but there exists another mapping from%sto%salready!"% (self.knownBranches[destination], destination)2584continue25852586 self.knownBranches[destination] = source25872588 lostAndFoundBranches.discard(destination)25892590if source not in self.knownBranches:2591 lostAndFoundBranches.add(source)25922593# Perforce does not strictly require branches to be defined, so we also2594# check git config for a branch list.2595#2596# Example of branch definition in git config file:2597# [git-p4]2598# branchList=main:branchA2599# branchList=main:branchB2600# branchList=branchA:branchC2601 configBranches =gitConfigList("git-p4.branchList")2602for branch in configBranches:2603if branch:2604(source, destination) = branch.split(":")2605 self.knownBranches[destination] = source26062607 lostAndFoundBranches.discard(destination)26082609if source not in self.knownBranches:2610 lostAndFoundBranches.add(source)261126122613for branch in lostAndFoundBranches:2614 self.knownBranches[branch] = branch26152616defgetBranchMappingFromGitBranches(self):2617 branches =p4BranchesInGit(self.importIntoRemotes)2618for branch in branches.keys():2619if branch =="master":2620 branch ="main"2621else:2622 branch = branch[len(self.projectName):]2623 self.knownBranches[branch] = branch26242625defupdateOptionDict(self, d):2626 option_keys = {}2627if self.keepRepoPath:2628 option_keys['keepRepoPath'] =126292630 d["options"] =' '.join(sorted(option_keys.keys()))26312632defreadOptions(self, d):2633 self.keepRepoPath = (d.has_key('options')2634and('keepRepoPath'in d['options']))26352636defgitRefForBranch(self, branch):2637if branch =="main":2638return self.refPrefix +"master"26392640iflen(branch) <=0:2641return branch26422643return self.refPrefix + self.projectName + branch26442645defgitCommitByP4Change(self, ref, change):2646if self.verbose:2647print"looking in ref "+ ref +" for change%susing bisect..."% change26482649 earliestCommit =""2650 latestCommit =parseRevision(ref)26512652while True:2653if self.verbose:2654print"trying: earliest%slatest%s"% (earliestCommit, latestCommit)2655 next =read_pipe("git rev-list --bisect%s %s"% (latestCommit, earliestCommit)).strip()2656iflen(next) ==0:2657if self.verbose:2658print"argh"2659return""2660 log =extractLogMessageFromGitCommit(next)2661 settings =extractSettingsGitLog(log)2662 currentChange =int(settings['change'])2663if self.verbose:2664print"current change%s"% currentChange26652666if currentChange == change:2667if self.verbose:2668print"found%s"% next2669return next26702671if currentChange < change:2672 earliestCommit ="^%s"% next2673else:2674 latestCommit ="%s"% next26752676return""26772678defimportNewBranch(self, branch, maxChange):2679# make fast-import flush all changes to disk and update the refs using the checkpoint2680# command so that we can try to find the branch parent in the git history2681 self.gitStream.write("checkpoint\n\n");2682 self.gitStream.flush();2683 branchPrefix = self.depotPaths[0] + branch +"/"2684range="@1,%s"% maxChange2685#print "prefix" + branchPrefix2686 changes =p4ChangesForPaths([branchPrefix],range, self.changes_block_size)2687iflen(changes) <=0:2688return False2689 firstChange = changes[0]2690#print "first change in branch: %s" % firstChange2691 sourceBranch = self.knownBranches[branch]2692 sourceDepotPath = self.depotPaths[0] + sourceBranch2693 sourceRef = self.gitRefForBranch(sourceBranch)2694#print "source " + sourceBranch26952696 branchParentChange =int(p4Cmd(["changes","-m","1","%s...@1,%s"% (sourceDepotPath, firstChange)])["change"])2697#print "branch parent: %s" % branchParentChange2698 gitParent = self.gitCommitByP4Change(sourceRef, branchParentChange)2699iflen(gitParent) >0:2700 self.initialParents[self.gitRefForBranch(branch)] = gitParent2701#print "parent git commit: %s" % gitParent27022703 self.importChanges(changes)2704return True27052706defsearchParent(self, parent, branch, target):2707 parentFound =False2708for blob inread_pipe_lines(["git","rev-list","--reverse",2709"--no-merges", parent]):2710 blob = blob.strip()2711iflen(read_pipe(["git","diff-tree", blob, target])) ==0:2712 parentFound =True2713if self.verbose:2714print"Found parent of%sin commit%s"% (branch, blob)2715break2716if parentFound:2717return blob2718else:2719return None27202721defimportChanges(self, changes):2722 cnt =12723for change in changes:2724 description =p4_describe(change)2725 self.updateOptionDict(description)27262727if not self.silent:2728 sys.stdout.write("\rImporting revision%s(%s%%)"% (change, cnt *100/len(changes)))2729 sys.stdout.flush()2730 cnt = cnt +127312732try:2733if self.detectBranches:2734 branches = self.splitFilesIntoBranches(description)2735for branch in branches.keys():2736## HACK --hwn2737 branchPrefix = self.depotPaths[0] + branch +"/"2738 self.branchPrefixes = [ branchPrefix ]27392740 parent =""27412742 filesForCommit = branches[branch]27432744if self.verbose:2745print"branch is%s"% branch27462747 self.updatedBranches.add(branch)27482749if branch not in self.createdBranches:2750 self.createdBranches.add(branch)2751 parent = self.knownBranches[branch]2752if parent == branch:2753 parent =""2754else:2755 fullBranch = self.projectName + branch2756if fullBranch not in self.p4BranchesInGit:2757if not self.silent:2758print("\nImporting new branch%s"% fullBranch);2759if self.importNewBranch(branch, change -1):2760 parent =""2761 self.p4BranchesInGit.append(fullBranch)2762if not self.silent:2763print("\nResuming with change%s"% change);27642765if self.verbose:2766print"parent determined through known branches:%s"% parent27672768 branch = self.gitRefForBranch(branch)2769 parent = self.gitRefForBranch(parent)27702771if self.verbose:2772print"looking for initial parent for%s; current parent is%s"% (branch, parent)27732774iflen(parent) ==0and branch in self.initialParents:2775 parent = self.initialParents[branch]2776del self.initialParents[branch]27772778 blob =None2779iflen(parent) >0:2780 tempBranch ="%s/%d"% (self.tempBranchLocation, change)2781if self.verbose:2782print"Creating temporary branch: "+ tempBranch2783 self.commit(description, filesForCommit, tempBranch)2784 self.tempBranches.append(tempBranch)2785 self.checkpoint()2786 blob = self.searchParent(parent, branch, tempBranch)2787if blob:2788 self.commit(description, filesForCommit, branch, blob)2789else:2790if self.verbose:2791print"Parent of%snot found. Committing into head of%s"% (branch, parent)2792 self.commit(description, filesForCommit, branch, parent)2793else:2794 files = self.extractFilesFromCommit(description)2795 self.commit(description, files, self.branch,2796 self.initialParent)2797# only needed once, to connect to the previous commit2798 self.initialParent =""2799exceptIOError:2800print self.gitError.read()2801 sys.exit(1)28022803defimportHeadRevision(self, revision):2804print"Doing initial import of%sfrom revision%sinto%s"% (' '.join(self.depotPaths), revision, self.branch)28052806 details = {}2807 details["user"] ="git perforce import user"2808 details["desc"] = ("Initial import of%sfrom the state at revision%s\n"2809% (' '.join(self.depotPaths), revision))2810 details["change"] = revision2811 newestRevision =028122813 fileCnt =02814 fileArgs = ["%s...%s"% (p,revision)for p in self.depotPaths]28152816for info inp4CmdList(["files"] + fileArgs):28172818if'code'in info and info['code'] =='error':2819 sys.stderr.write("p4 returned an error:%s\n"2820% info['data'])2821if info['data'].find("must refer to client") >=0:2822 sys.stderr.write("This particular p4 error is misleading.\n")2823 sys.stderr.write("Perhaps the depot path was misspelled.\n");2824 sys.stderr.write("Depot path:%s\n"%" ".join(self.depotPaths))2825 sys.exit(1)2826if'p4ExitCode'in info:2827 sys.stderr.write("p4 exitcode:%s\n"% info['p4ExitCode'])2828 sys.exit(1)282928302831 change =int(info["change"])2832if change > newestRevision:2833 newestRevision = change28342835if info["action"]in self.delete_actions:2836# don't increase the file cnt, otherwise details["depotFile123"] will have gaps!2837#fileCnt = fileCnt + 12838continue28392840for prop in["depotFile","rev","action","type"]:2841 details["%s%s"% (prop, fileCnt)] = info[prop]28422843 fileCnt = fileCnt +128442845 details["change"] = newestRevision28462847# Use time from top-most change so that all git p4 clones of2848# the same p4 repo have the same commit SHA1s.2849 res =p4_describe(newestRevision)2850 details["time"] = res["time"]28512852 self.updateOptionDict(details)2853try:2854 self.commit(details, self.extractFilesFromCommit(details), self.branch)2855exceptIOError:2856print"IO error with git fast-import. Is your git version recent enough?"2857print self.gitError.read()285828592860defrun(self, args):2861 self.depotPaths = []2862 self.changeRange =""2863 self.previousDepotPaths = []2864 self.hasOrigin =False28652866# map from branch depot path to parent branch2867 self.knownBranches = {}2868 self.initialParents = {}28692870if self.importIntoRemotes:2871 self.refPrefix ="refs/remotes/p4/"2872else:2873 self.refPrefix ="refs/heads/p4/"28742875if self.syncWithOrigin:2876 self.hasOrigin =originP4BranchesExist()2877if self.hasOrigin:2878if not self.silent:2879print'Syncing with origin first, using "git fetch origin"'2880system("git fetch origin")28812882 branch_arg_given =bool(self.branch)2883iflen(self.branch) ==0:2884 self.branch = self.refPrefix +"master"2885ifgitBranchExists("refs/heads/p4")and self.importIntoRemotes:2886system("git update-ref%srefs/heads/p4"% self.branch)2887system("git branch -D p4")28882889# accept either the command-line option, or the configuration variable2890if self.useClientSpec:2891# will use this after clone to set the variable2892 self.useClientSpec_from_options =True2893else:2894ifgitConfigBool("git-p4.useclientspec"):2895 self.useClientSpec =True2896if self.useClientSpec:2897 self.clientSpecDirs =getClientSpec()28982899# TODO: should always look at previous commits,2900# merge with previous imports, if possible.2901if args == []:2902if self.hasOrigin:2903createOrUpdateBranchesFromOrigin(self.refPrefix, self.silent)29042905# branches holds mapping from branch name to sha12906 branches =p4BranchesInGit(self.importIntoRemotes)29072908# restrict to just this one, disabling detect-branches2909if branch_arg_given:2910 short = self.branch.split("/")[-1]2911if short in branches:2912 self.p4BranchesInGit = [ short ]2913else:2914 self.p4BranchesInGit = branches.keys()29152916iflen(self.p4BranchesInGit) >1:2917if not self.silent:2918print"Importing from/into multiple branches"2919 self.detectBranches =True2920for branch in branches.keys():2921 self.initialParents[self.refPrefix + branch] = \2922 branches[branch]29232924if self.verbose:2925print"branches:%s"% self.p4BranchesInGit29262927 p4Change =02928for branch in self.p4BranchesInGit:2929 logMsg =extractLogMessageFromGitCommit(self.refPrefix + branch)29302931 settings =extractSettingsGitLog(logMsg)29322933 self.readOptions(settings)2934if(settings.has_key('depot-paths')2935and settings.has_key('change')):2936 change =int(settings['change']) +12937 p4Change =max(p4Change, change)29382939 depotPaths =sorted(settings['depot-paths'])2940if self.previousDepotPaths == []:2941 self.previousDepotPaths = depotPaths2942else:2943 paths = []2944for(prev, cur)inzip(self.previousDepotPaths, depotPaths):2945 prev_list = prev.split("/")2946 cur_list = cur.split("/")2947for i inrange(0,min(len(cur_list),len(prev_list))):2948if cur_list[i] <> prev_list[i]:2949 i = i -12950break29512952 paths.append("/".join(cur_list[:i +1]))29532954 self.previousDepotPaths = paths29552956if p4Change >0:2957 self.depotPaths =sorted(self.previousDepotPaths)2958 self.changeRange ="@%s,#head"% p4Change2959if not self.silent and not self.detectBranches:2960print"Performing incremental import into%sgit branch"% self.branch29612962# accept multiple ref name abbreviations:2963# refs/foo/bar/branch -> use it exactly2964# p4/branch -> prepend refs/remotes/ or refs/heads/2965# branch -> prepend refs/remotes/p4/ or refs/heads/p4/2966if not self.branch.startswith("refs/"):2967if self.importIntoRemotes:2968 prepend ="refs/remotes/"2969else:2970 prepend ="refs/heads/"2971if not self.branch.startswith("p4/"):2972 prepend +="p4/"2973 self.branch = prepend + self.branch29742975iflen(args) ==0and self.depotPaths:2976if not self.silent:2977print"Depot paths:%s"%' '.join(self.depotPaths)2978else:2979if self.depotPaths and self.depotPaths != args:2980print("previous import used depot path%sand now%swas specified. "2981"This doesn't work!"% (' '.join(self.depotPaths),2982' '.join(args)))2983 sys.exit(1)29842985 self.depotPaths =sorted(args)29862987 revision =""2988 self.users = {}29892990# Make sure no revision specifiers are used when --changesfile2991# is specified.2992 bad_changesfile =False2993iflen(self.changesFile) >0:2994for p in self.depotPaths:2995if p.find("@") >=0or p.find("#") >=0:2996 bad_changesfile =True2997break2998if bad_changesfile:2999die("Option --changesfile is incompatible with revision specifiers")30003001 newPaths = []3002for p in self.depotPaths:3003if p.find("@") != -1:3004 atIdx = p.index("@")3005 self.changeRange = p[atIdx:]3006if self.changeRange =="@all":3007 self.changeRange =""3008elif','not in self.changeRange:3009 revision = self.changeRange3010 self.changeRange =""3011 p = p[:atIdx]3012elif p.find("#") != -1:3013 hashIdx = p.index("#")3014 revision = p[hashIdx:]3015 p = p[:hashIdx]3016elif self.previousDepotPaths == []:3017# pay attention to changesfile, if given, else import3018# the entire p4 tree at the head revision3019iflen(self.changesFile) ==0:3020 revision ="#head"30213022 p = re.sub("\.\.\.$","", p)3023if not p.endswith("/"):3024 p +="/"30253026 newPaths.append(p)30273028 self.depotPaths = newPaths30293030# --detect-branches may change this for each branch3031 self.branchPrefixes = self.depotPaths30323033 self.loadUserMapFromCache()3034 self.labels = {}3035if self.detectLabels:3036 self.getLabels();30373038if self.detectBranches:3039## FIXME - what's a P4 projectName ?3040 self.projectName = self.guessProjectName()30413042if self.hasOrigin:3043 self.getBranchMappingFromGitBranches()3044else:3045 self.getBranchMapping()3046if self.verbose:3047print"p4-git branches:%s"% self.p4BranchesInGit3048print"initial parents:%s"% self.initialParents3049for b in self.p4BranchesInGit:3050if b !="master":30513052## FIXME3053 b = b[len(self.projectName):]3054 self.createdBranches.add(b)30553056 self.tz ="%+03d%02d"% (- time.timezone /3600, ((- time.timezone %3600) /60))30573058 self.importProcess = subprocess.Popen(["git","fast-import"],3059 stdin=subprocess.PIPE,3060 stdout=subprocess.PIPE,3061 stderr=subprocess.PIPE);3062 self.gitOutput = self.importProcess.stdout3063 self.gitStream = self.importProcess.stdin3064 self.gitError = self.importProcess.stderr30653066if revision:3067 self.importHeadRevision(revision)3068else:3069 changes = []30703071iflen(self.changesFile) >0:3072 output =open(self.changesFile).readlines()3073 changeSet =set()3074for line in output:3075 changeSet.add(int(line))30763077for change in changeSet:3078 changes.append(change)30793080 changes.sort()3081else:3082# catch "git p4 sync" with no new branches, in a repo that3083# does not have any existing p4 branches3084iflen(args) ==0:3085if not self.p4BranchesInGit:3086die("No remote p4 branches. Perhaps you never did\"git p4 clone\"in here.")30873088# The default branch is master, unless --branch is used to3089# specify something else. Make sure it exists, or complain3090# nicely about how to use --branch.3091if not self.detectBranches:3092if notbranch_exists(self.branch):3093if branch_arg_given:3094die("Error: branch%sdoes not exist."% self.branch)3095else:3096die("Error: no branch%s; perhaps specify one with --branch."%3097 self.branch)30983099if self.verbose:3100print"Getting p4 changes for%s...%s"% (', '.join(self.depotPaths),3101 self.changeRange)3102 changes =p4ChangesForPaths(self.depotPaths, self.changeRange, self.changes_block_size)31033104iflen(self.maxChanges) >0:3105 changes = changes[:min(int(self.maxChanges),len(changes))]31063107iflen(changes) ==0:3108if not self.silent:3109print"No changes to import!"3110else:3111if not self.silent and not self.detectBranches:3112print"Import destination:%s"% self.branch31133114 self.updatedBranches =set()31153116if not self.detectBranches:3117if args:3118# start a new branch3119 self.initialParent =""3120else:3121# build on a previous revision3122 self.initialParent =parseRevision(self.branch)31233124 self.importChanges(changes)31253126if not self.silent:3127print""3128iflen(self.updatedBranches) >0:3129 sys.stdout.write("Updated branches: ")3130for b in self.updatedBranches:3131 sys.stdout.write("%s"% b)3132 sys.stdout.write("\n")31333134ifgitConfigBool("git-p4.importLabels"):3135 self.importLabels =True31363137if self.importLabels:3138 p4Labels =getP4Labels(self.depotPaths)3139 gitTags =getGitTags()31403141 missingP4Labels = p4Labels - gitTags3142 self.importP4Labels(self.gitStream, missingP4Labels)31433144 self.gitStream.close()3145if self.importProcess.wait() !=0:3146die("fast-import failed:%s"% self.gitError.read())3147 self.gitOutput.close()3148 self.gitError.close()31493150# Cleanup temporary branches created during import3151if self.tempBranches != []:3152for branch in self.tempBranches:3153read_pipe("git update-ref -d%s"% branch)3154 os.rmdir(os.path.join(os.environ.get("GIT_DIR",".git"), self.tempBranchLocation))31553156# Create a symbolic ref p4/HEAD pointing to p4/<branch> to allow3157# a convenient shortcut refname "p4".3158if self.importIntoRemotes:3159 head_ref = self.refPrefix +"HEAD"3160if notgitBranchExists(head_ref)andgitBranchExists(self.branch):3161system(["git","symbolic-ref", head_ref, self.branch])31623163return True31643165classP4Rebase(Command):3166def__init__(self):3167 Command.__init__(self)3168 self.options = [3169 optparse.make_option("--import-labels", dest="importLabels", action="store_true"),3170]3171 self.importLabels =False3172 self.description = ("Fetches the latest revision from perforce and "3173+"rebases the current work (branch) against it")31743175defrun(self, args):3176 sync =P4Sync()3177 sync.importLabels = self.importLabels3178 sync.run([])31793180return self.rebase()31813182defrebase(self):3183if os.system("git update-index --refresh") !=0:3184die("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.");3185iflen(read_pipe("git diff-index HEAD --")) >0:3186die("You have uncommitted changes. Please commit them before rebasing or stash them away with git stash.");31873188[upstream, settings] =findUpstreamBranchPoint()3189iflen(upstream) ==0:3190die("Cannot find upstream branchpoint for rebase")31913192# the branchpoint may be p4/foo~3, so strip off the parent3193 upstream = re.sub("~[0-9]+$","", upstream)31943195print"Rebasing the current branch onto%s"% upstream3196 oldHead =read_pipe("git rev-parse HEAD").strip()3197system("git rebase%s"% upstream)3198system("git diff-tree --stat --summary -M%sHEAD --"% oldHead)3199return True32003201classP4Clone(P4Sync):3202def__init__(self):3203 P4Sync.__init__(self)3204 self.description ="Creates a new git repository and imports from Perforce into it"3205 self.usage ="usage: %prog [options] //depot/path[@revRange]"3206 self.options += [3207 optparse.make_option("--destination", dest="cloneDestination",3208 action='store', default=None,3209help="where to leave result of the clone"),3210 optparse.make_option("--bare", dest="cloneBare",3211 action="store_true", default=False),3212]3213 self.cloneDestination =None3214 self.needsGit =False3215 self.cloneBare =False32163217defdefaultDestination(self, args):3218## TODO: use common prefix of args?3219 depotPath = args[0]3220 depotDir = re.sub("(@[^@]*)$","", depotPath)3221 depotDir = re.sub("(#[^#]*)$","", depotDir)3222 depotDir = re.sub(r"\.\.\.$","", depotDir)3223 depotDir = re.sub(r"/$","", depotDir)3224return os.path.split(depotDir)[1]32253226defrun(self, args):3227iflen(args) <1:3228return False32293230if self.keepRepoPath and not self.cloneDestination:3231 sys.stderr.write("Must specify destination for --keep-path\n")3232 sys.exit(1)32333234 depotPaths = args32353236if not self.cloneDestination andlen(depotPaths) >1:3237 self.cloneDestination = depotPaths[-1]3238 depotPaths = depotPaths[:-1]32393240 self.cloneExclude = ["/"+p for p in self.cloneExclude]3241for p in depotPaths:3242if not p.startswith("//"):3243 sys.stderr.write('Depot paths must start with "//":%s\n'% p)3244return False32453246if not self.cloneDestination:3247 self.cloneDestination = self.defaultDestination(args)32483249print"Importing from%sinto%s"% (', '.join(depotPaths), self.cloneDestination)32503251if not os.path.exists(self.cloneDestination):3252 os.makedirs(self.cloneDestination)3253chdir(self.cloneDestination)32543255 init_cmd = ["git","init"]3256if self.cloneBare:3257 init_cmd.append("--bare")3258 retcode = subprocess.call(init_cmd)3259if retcode:3260raiseCalledProcessError(retcode, init_cmd)32613262if not P4Sync.run(self, depotPaths):3263return False32643265# create a master branch and check out a work tree3266ifgitBranchExists(self.branch):3267system(["git","branch","master", self.branch ])3268if not self.cloneBare:3269system(["git","checkout","-f"])3270else:3271print'Not checking out any branch, use ' \3272'"git checkout -q -b master <branch>"'32733274# auto-set this variable if invoked with --use-client-spec3275if self.useClientSpec_from_options:3276system("git config --bool git-p4.useclientspec true")32773278return True32793280classP4Branches(Command):3281def__init__(self):3282 Command.__init__(self)3283 self.options = [ ]3284 self.description = ("Shows the git branches that hold imports and their "3285+"corresponding perforce depot paths")3286 self.verbose =False32873288defrun(self, args):3289iforiginP4BranchesExist():3290createOrUpdateBranchesFromOrigin()32913292 cmdline ="git rev-parse --symbolic "3293 cmdline +=" --remotes"32943295for line inread_pipe_lines(cmdline):3296 line = line.strip()32973298if not line.startswith('p4/')or line =="p4/HEAD":3299continue3300 branch = line33013302 log =extractLogMessageFromGitCommit("refs/remotes/%s"% branch)3303 settings =extractSettingsGitLog(log)33043305print"%s<=%s(%s)"% (branch,",".join(settings["depot-paths"]), settings["change"])3306return True33073308classHelpFormatter(optparse.IndentedHelpFormatter):3309def__init__(self):3310 optparse.IndentedHelpFormatter.__init__(self)33113312defformat_description(self, description):3313if description:3314return description +"\n"3315else:3316return""33173318defprintUsage(commands):3319print"usage:%s<command> [options]"% sys.argv[0]3320print""3321print"valid commands:%s"%", ".join(commands)3322print""3323print"Try%s<command> --help for command specific help."% sys.argv[0]3324print""33253326commands = {3327"debug": P4Debug,3328"submit": P4Submit,3329"commit": P4Submit,3330"sync": P4Sync,3331"rebase": P4Rebase,3332"clone": P4Clone,3333"rollback": P4RollBack,3334"branches": P4Branches3335}333633373338defmain():3339iflen(sys.argv[1:]) ==0:3340printUsage(commands.keys())3341 sys.exit(2)33423343 cmdName = sys.argv[1]3344try:3345 klass = commands[cmdName]3346 cmd =klass()3347exceptKeyError:3348print"unknown command%s"% cmdName3349print""3350printUsage(commands.keys())3351 sys.exit(2)33523353 options = cmd.options3354 cmd.gitdir = os.environ.get("GIT_DIR",None)33553356 args = sys.argv[2:]33573358 options.append(optparse.make_option("--verbose","-v", dest="verbose", action="store_true"))3359if cmd.needsGit:3360 options.append(optparse.make_option("--git-dir", dest="gitdir"))33613362 parser = optparse.OptionParser(cmd.usage.replace("%prog","%prog "+ cmdName),3363 options,3364 description = cmd.description,3365 formatter =HelpFormatter())33663367(cmd, args) = parser.parse_args(sys.argv[2:], cmd);3368global verbose3369 verbose = cmd.verbose3370if cmd.needsGit:3371if cmd.gitdir ==None:3372 cmd.gitdir = os.path.abspath(".git")3373if notisValidGitDir(cmd.gitdir):3374 cmd.gitdir =read_pipe("git rev-parse --git-dir").strip()3375if os.path.exists(cmd.gitdir):3376 cdup =read_pipe("git rev-parse --show-cdup").strip()3377iflen(cdup) >0:3378chdir(cdup);33793380if notisValidGitDir(cmd.gitdir):3381ifisValidGitDir(cmd.gitdir +"/.git"):3382 cmd.gitdir +="/.git"3383else:3384die("fatal: cannot locate git repository at%s"% cmd.gitdir)33853386 os.environ["GIT_DIR"] = cmd.gitdir33873388if not cmd.run(args):3389 parser.print_help()3390 sys.exit(2)339133923393if __name__ =='__main__':3394main()