2009-06-20 00:32:16 +04:00
#!/usr/bin/env python
2012-05-30 20:48:24 +04:00
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
2010-06-14 10:22:16 +04:00
# Repo Defaults
# 'REV' controls the default rev for All the various repo's
# Define x_REV to override. Where x can be one of:
2015-04-20 06:20:45 +03:00
# "COMM", "MOZILLA", "CHATZILLA", "INSPECTOR"
2010-06-14 10:22:16 +04:00
DEFAULTS = {
2014-12-19 14:18:34 +03:00
# Global Default Revision
' REV ' : " default " ,
2008-07-22 16:27:55 +04:00
2014-12-19 14:18:34 +03:00
# URL of the default hg repository to clone for ChatZilla.
' CHATZILLA_REPO ' : ' https://hg.mozilla.org/chatzilla/ ' ,
# The stable revision to use for the next branch
2017-01-08 20:12:55 +03:00
# 'CHATZILLA_REV': 'SEA2_48_RELBRANCH',
2008-07-22 16:27:55 +04:00
2014-12-19 14:18:34 +03:00
# URL of the default hg repository to clone for DOM Inspector.
' INSPECTOR_REPO ' : ' https://hg.mozilla.org/dom-inspector/ ' ,
# The stable revision to use for the next branch
2017-01-08 20:12:55 +03:00
# 'INSPECTOR_REV': 'DOMI_2_0_17',
2008-07-22 16:27:55 +04:00
2014-12-19 14:18:34 +03:00
# URL of the default hg repository to clone for Mozilla.
2018-04-23 04:08:29 +03:00
' MOZILLA_REPO ' : ' https://hg.mozilla.org/mozilla-central/ ' ,
2010-06-14 10:22:16 +04:00
}
2011-06-20 23:40:02 +04:00
REPO_SHORT_NAMES = {
2014-12-19 14:18:34 +03:00
' mozilla-central ' : ' moz ' ,
' dom-inspector ' : ' dom ' ,
2011-06-20 23:40:02 +04:00
}
2014-12-19 14:18:34 +03:00
2010-06-16 07:47:11 +04:00
def get_DEFAULT_tag ( index ) :
2014-12-19 14:18:34 +03:00
if index in DEFAULTS :
return DEFAULTS [ index ]
else :
return DEFAULTS [ ' REV ' ]
2008-12-01 20:27:18 +03:00
2009-10-22 19:05:39 +04:00
# The set of defaults below relate to the current switching mechanism between
# trunk or branches and back again if it is required.
# The current version expected in the .treestate file for nothing to happen.
# This reflects the "[treestate] src_update_version = ..." value.
#
# src_update_version values:
# '1' : mozilla/ may have been moved to mozilla-1.9.1 (or kept the same
# depending on set-up).
# '2' : mozilla/ may have been moved back to mozilla-central.
CURRENT_TREESTATE_VERSION = ' 2 '
2008-12-01 20:27:18 +03:00
# REGEX to match against, $1 should refer to protocol scheme
2009-10-22 19:05:39 +04:00
SWITCH_MOZILLA_REPO_REGEXP = ' (ssh|http|https): \ / \ /hg \ .mozilla \ .org \ /releases/mozilla-1.9.1 \ /?$ '
# The location to back-up the existing mozilla repo to, e.g. ".mozilla-trunk"
# or ".mozilla-1.9.1".
SWITCH_MOZILLA_REPO_BACKUP_LOCATION = " .mozilla-1.9.1 "
# This is the potential location for a repository from the last time we
# switched. Can be blank for no effect.
SWITCH_MOZILLA_REPO_OLD_REPO_LOCATION = " .mozilla-trunk "
2014-12-19 14:18:34 +03:00
# This should be the same as DEFAULTS['MOZILLA_REPO'] but using %s instead
# of http for the scheme.
2009-10-22 19:05:39 +04:00
SWITCH_MOZILLA_REPO_REPLACE = ' %s ://hg.mozilla.org/mozilla-central/ '
SWITCH_MOZILLA_BASE_REV = " GECKO_1_9_1_BASE "
2008-07-22 16:27:55 +04:00
2010-01-13 23:53:10 +03:00
import sys
pyver = sys . version_info
2017-07-29 01:17:09 +03:00
if pyver [ 0 ] < = 1 or ( pyver [ 0 ] == 2 and pyver [ 1 ] < 6 ) :
sys . exit ( " ERROR: Python 2.6 or newer required " )
2010-01-16 15:54:00 +03:00
elif pyver [ 0 ] > = 3 :
2014-12-19 14:18:34 +03:00
# Python series 3 will syntax error here, Hack needed per Bug 601649c#8
2017-07-13 22:27:58 +03:00
print " ERROR: Python series 3 is not supported, use python 2.7 "
2014-12-19 14:18:34 +03:00
sys . exit ( ) # Do an explicit sys.exit for code clarity.
2010-01-13 23:53:10 +03:00
del pyver
2009-03-19 18:35:42 +03:00
2008-07-22 16:27:55 +04:00
import os
2010-02-17 18:52:24 +03:00
from optparse import OptionParser , OptionValueError
2011-06-22 23:13:50 +04:00
import re
2008-07-22 16:27:55 +04:00
topsrcdir = os . path . dirname ( __file__ )
if topsrcdir == ' ' :
topsrcdir = ' . '
2008-12-01 20:27:18 +03:00
TREE_STATE_FILE = os . path . join ( topsrcdir , ' .treestate ' )
2017-07-13 22:27:58 +03:00
from subprocess import check_call , check_output
2011-06-20 23:40:02 +04:00
2014-12-19 14:18:34 +03:00
2011-06-20 23:40:02 +04:00
def check_call_output ( cmd , * args , * * kwargs ) :
return check_output ( cmd , * args , * * kwargs )
2014-12-19 14:18:34 +03:00
2010-02-17 18:52:24 +03:00
def check_call_noisy ( cmd , retryMax = 0 , * args , * * kwargs ) :
2014-12-19 14:18:34 +03:00
""" Wrapper around execute_check_call() to allow retries before failing.
2010-02-17 18:52:24 +03:00
2014-12-19 14:18:34 +03:00
| cmd | , is the command to try and execute .
| retryMax | , is the maximum number of retries to attempt , 0 by default .
"""
2010-02-17 18:52:24 +03:00
2014-12-19 14:18:34 +03:00
def execute_check_call ( cmd , * args , * * kwargs ) :
print " Executing command: " , cmd
check_call ( cmd , * args , * * kwargs )
2008-07-22 16:27:55 +04:00
2014-12-19 14:18:34 +03:00
# By default (= no retries), simply pass the call on.
if retryMax == 0 :
execute_check_call ( cmd , * args , * * kwargs )
return
# Loop (1 + retryMax) times, at most.
for r in range ( 0 , 1 + retryMax ) :
# Add a retry header, not for initial call.
if r != 0 :
print >> sys . stderr , " Retrying previous command: %d of %d time(s) " % ( r , retryMax )
try :
# (Re-)Try the call.
execute_check_call ( cmd , * args , * * kwargs )
# If the call succeeded then no more retries.
break
except :
# Print the exception without its traceback.
# This traceback starts in the try block, which should be low value.
print >> sys . stderr , " The exception was: "
sys . excepthook ( sys . exc_info ( ) [ 0 ] , sys . exc_info ( ) [ 1 ] , None )
# Add a blank line.
print >> sys . stderr
else :
# Raise our own exception.
# This traceback starts at (= reports) the initial caller line.
raise Exception ( " Command ' %s ' failed %d time(s). Giving up. " %
( cmd , retryMax + 1 ) )
2010-02-17 18:52:24 +03:00
2008-12-01 20:27:18 +03:00
def repo_config ( ) :
2009-04-26 17:25:08 +04:00
""" Create/Update TREE_STATE_FILE as needed.
2009-10-22 19:05:39 +04:00
switch_mozilla_repo ( ) may be called if the branch that the mozilla repo is
on needs changing
2009-04-26 17:25:08 +04:00
"""
2008-12-01 20:27:18 +03:00
import ConfigParser
2009-04-26 17:25:08 +04:00
2009-10-22 19:05:39 +04:00
config_version = CURRENT_TREESTATE_VERSION
2009-04-15 12:45:45 +04:00
2009-10-22 19:05:39 +04:00
config = ConfigParser . ConfigParser ( )
2008-12-01 20:27:18 +03:00
2009-10-22 19:05:39 +04:00
# If the file exists, see if we need to move to the stable branch.
# If it doesn't exist, we assume the user hasn't pulled before (or has
# done it manually) and therefore leave his mozilla/ repo as it is.
if os . path . exists ( TREE_STATE_FILE ) :
config . read ( [ TREE_STATE_FILE ] )
2008-12-01 20:27:18 +03:00
2009-10-22 19:05:39 +04:00
if config . has_option ( ' treestate ' , ' src_update_version ' ) :
config_version = config . get ( ' treestate ' , ' src_update_version ' )
else :
# If src_update_version doesn't exist, assume this to be '1' and
# apply the update. This was because the first version of this
# migration allowed the existence of the file to equate to '1'.
config_version = ' 1 '
2009-04-26 17:25:08 +04:00
2009-10-22 19:05:39 +04:00
# Do nothing if the current version is up to date.
if config_version < CURRENT_TREESTATE_VERSION :
switch_mozilla_repo ( )
if not os . path . exists ( TREE_STATE_FILE ) or config_version < CURRENT_TREESTATE_VERSION :
if not config . has_section ( ' treestate ' ) :
config . add_section ( ' treestate ' )
2014-12-19 14:18:34 +03:00
config . set ( ' treestate ' , ' src_update_version ' ,
CURRENT_TREESTATE_VERSION )
2009-10-22 19:05:39 +04:00
# Write this file out
f = open ( TREE_STATE_FILE , ' w ' )
try :
config . write ( f )
finally :
f . close ( )
2014-12-19 14:18:34 +03:00
2009-10-22 19:05:39 +04:00
def switch_mozilla_repo ( ) :
""" If the mozilla/ repo matches SWITCH_MOZILLA_REPO_REGEXP then:
1 ) Backup ( unused anymore ) checkout of mozilla / .
2 a ) If SWITCH_MOZILLA_REPO_OLD_REPO_LOCATION exists , move that to mozilla / .
2 b ) Else clone the backup of mozilla / up to the SWITCH_MOZILLA_BASE_REV
revision and set the pull location to SWITCH_MOZILLA_REPO_REPLACE .
It is expected that the normal pull / update functions in this script will
update the new mozilla / repo to the latest version .
2009-04-26 17:25:08 +04:00
"""
2008-12-01 20:27:18 +03:00
mozilla_path = os . path . join ( topsrcdir , ' mozilla ' )
2009-04-26 17:25:08 +04:00
# Do nothing if there is no Mozilla directory.
2008-12-01 20:27:18 +03:00
if not os . path . exists ( mozilla_path ) :
2014-12-19 14:18:34 +03:00
return
2008-12-01 20:27:18 +03:00
2014-12-19 14:18:34 +03:00
import ConfigParser
import re
2008-12-01 20:27:18 +03:00
config = ConfigParser . ConfigParser ( )
2012-06-15 16:28:31 +04:00
config_path = os . path . join ( mozilla_path , ' .hg ' , ' hgrc ' )
config . read ( [ config_path ] )
2008-12-01 20:27:18 +03:00
if not config . has_option ( ' paths ' , ' default ' ) :
2009-04-26 17:25:08 +04:00
# Abort, not to get into a possibly inconsistent state.
2012-06-15 16:28:31 +04:00
sys . exit ( " Error: default path in %s is undefined! " % config_path )
2008-12-01 20:27:18 +03:00
2009-10-22 19:05:39 +04:00
# Compile the Mozilla repository regex.
moz_old_regex = re . compile ( SWITCH_MOZILLA_REPO_REGEXP , re . I )
match = moz_old_regex . match ( config . get ( ' paths ' , ' default ' ) )
# Do nothing if not pulling from the one we're trying to switch from.
2008-12-01 20:27:18 +03:00
if not match :
2009-04-26 17:25:08 +04:00
return
2008-12-01 20:27:18 +03:00
config . set ( ' paths ' , ' default ' ,
2014-12-19 14:18:34 +03:00
SWITCH_MOZILLA_REPO_REPLACE % match . group ( 1 ) )
2008-12-01 20:27:18 +03:00
if config . has_option ( ' paths ' , ' default-push ' ) :
2014-12-19 14:18:34 +03:00
match = moz_old_regex . match ( config . get ( ' paths ' , ' default-push ' ) )
# Do not update this property if not pushing to Mozilla trunk.
if match :
config . set ( ' paths ' , ' default-push ' ,
SWITCH_MOZILLA_REPO_REPLACE % match . group ( 1 ) )
2008-12-01 20:27:18 +03:00
2010-02-05 19:08:45 +03:00
hgcloneopts = [ ]
if options . hgcloneopts :
hgcloneopts = options . hgcloneopts . split ( )
2010-03-17 16:59:43 +03:00
hgopts = [ ]
if options . hgopts :
hgopts = options . hgopts . split ( )
2014-12-19 14:18:34 +03:00
backup_mozilla_path = os . path . join ( topsrcdir ,
SWITCH_MOZILLA_REPO_BACKUP_LOCATION )
2009-10-22 19:05:39 +04:00
print " Moving mozilla to " + SWITCH_MOZILLA_REPO_BACKUP_LOCATION + " ... "
2009-04-26 17:25:08 +04:00
try :
2009-10-22 19:05:39 +04:00
os . rename ( mozilla_path , backup_mozilla_path )
2009-04-26 17:25:08 +04:00
except :
# Print the exception without its traceback.
sys . excepthook ( sys . exc_info ( ) [ 0 ] , sys . exc_info ( ) [ 1 ] , None )
sys . exit ( " Error: Mozilla directory renaming failed! " )
2009-10-22 19:05:39 +04:00
# Does the user have a pre-existing backup repository?
2014-12-19 14:18:34 +03:00
old_backup_repository = os . path . join ( topsrcdir ,
SWITCH_MOZILLA_REPO_OLD_REPO_LOCATION )
2009-10-22 19:05:39 +04:00
if SWITCH_MOZILLA_REPO_OLD_REPO_LOCATION != " " and \
os . path . exists ( old_backup_repository ) :
# Yes, so let's use that
print " Moving " + old_backup_repository + " to " + mozilla_path + " ... "
try :
os . rename ( old_backup_repository , mozilla_path )
except :
# Print the exception without its traceback.
sys . excepthook ( sys . exc_info ( ) [ 0 ] , sys . exc_info ( ) [ 1 ] , None )
sys . exit ( " Error: Renaming old backup directory failed! You must recover manually. " )
# Let's leave the hgrc as it was, so any repo specific config is left
# the same.
return
2009-04-26 17:25:08 +04:00
# Locally clone common repository history.
2014-12-19 14:18:34 +03:00
check_call_noisy ( [ options . hg , ' clone ' , ' -r ' , SWITCH_MOZILLA_BASE_REV ] +
hgcloneopts + hgopts + [ backup_mozilla_path , mozilla_path ] ,
2010-02-17 18:52:24 +03:00
retryMax = options . retries )
2008-12-01 20:27:18 +03:00
2009-10-22 19:05:39 +04:00
# Rewrite hgrc for new local mozilla repo based on pre-existing hgrc
2008-12-01 20:27:18 +03:00
# but with new values
f = open ( os . path . join ( topsrcdir , ' mozilla ' , ' .hg ' , ' hgrc ' ) , ' w ' )
try :
2014-12-19 14:18:34 +03:00
config . write ( f )
2008-12-01 20:27:18 +03:00
finally :
2014-12-19 14:18:34 +03:00
f . close ( )
2008-12-01 20:27:18 +03:00
2009-11-03 07:02:59 +03:00
def backup_cvs_extension ( extensionName , extensionDir , extensionPath ) :
""" Backup (obsolete) cvs checkout of extensionName.
2009-04-26 17:25:08 +04:00
"""
2009-11-03 07:02:59 +03:00
# Do nothing if there is no extensionName cvs directory.
if not os . path . exists ( os . path . join ( extensionPath , ' CVS ' ) ) :
2009-03-19 18:35:42 +03:00
return
2009-11-03 07:02:59 +03:00
extensionBackupPath = extensionPath + ' -cvs '
print " Moving %s to %s -cvs... " % ( extensionDir , extensionDir )
2009-04-26 17:25:08 +04:00
try :
2009-11-03 07:02:59 +03:00
os . rename ( extensionPath , extensionBackupPath )
2009-04-26 17:25:08 +04:00
except :
# Print the exception without its traceback.
sys . excepthook ( sys . exc_info ( ) [ 0 ] , sys . exc_info ( ) [ 1 ] , None )
2009-11-03 07:02:59 +03:00
sys . exit ( " Error: %s directory renaming failed! " % extensionName )
2009-03-19 18:35:42 +03:00
2014-12-19 14:18:34 +03:00
2014-04-22 17:31:32 +04:00
def do_hg_pull ( dir , repository , hg , rev , hgtool = None , hgtool1 = None ) :
2010-03-17 16:59:43 +03:00
""" Clone if the dir doesn ' t exist, pull if it does.
"""
2008-07-22 16:27:55 +04:00
fulldir = os . path . join ( topsrcdir , dir )
2010-03-17 16:59:43 +03:00
2010-02-05 19:08:45 +03:00
hgcloneopts = [ ]
if options . hgcloneopts :
hgcloneopts = options . hgcloneopts . split ( )
2010-03-17 16:59:43 +03:00
hgopts = [ ]
if options . hgopts :
hgopts = options . hgopts . split ( )
2010-03-17 21:27:07 +03:00
2014-04-22 17:31:32 +04:00
if hgtool or hgtool1 :
if not os . path . exists ( hgtool ) :
2014-12-19 14:18:34 +03:00
hgtool = hgtool1
2014-04-22 17:31:32 +04:00
2011-10-06 21:41:58 +04:00
if hgtool :
hgtoolcmd = hgtool . split ( )
2014-12-19 14:18:34 +03:00
# We need to strip the trailing slash from the repository url so that
# the hg tool gets a url that's consistent with the rest of the build
# automation.
2015-09-09 14:22:45 +03:00
repo = repository . rstrip ( ' / ' )
# Make sure to unset the PROPERTIES_FILE variable, otherwise hgtool
# might use this for the revisions and branches.
hgtoolenv = os . environ . copy ( )
if ' PROPERTIES_FILE ' in hgtoolenv :
del hgtoolenv [ ' PROPERTIES_FILE ' ]
# Set up the tool options, most importantly the revision
hgtoolopts = [ ' -r ' , rev ]
if options . verbose :
hgtoolopts . append ( ' -v ' )
2014-12-19 14:18:34 +03:00
check_call_noisy ( [ ' python ' ] + hgtoolcmd +
2015-09-09 14:22:45 +03:00
hgtoolopts +
[ repo , fulldir ] ,
env = hgtoolenv ,
2010-02-17 18:52:24 +03:00
retryMax = options . retries )
2008-07-22 16:27:55 +04:00
else :
2015-09-09 14:22:45 +03:00
if not os . path . exists ( fulldir ) :
fulldir = os . path . join ( topsrcdir , dir )
check_call_noisy ( [ hg , ' clone ' ] + hgcloneopts + hgopts +
[ repository , fulldir ] ,
retryMax = options . retries )
else :
cmd = [ hg , ' pull ' , ' -R ' , fulldir ] + hgopts
if repository is not None :
cmd . append ( repository )
check_call_noisy ( cmd , retryMax = options . retries )
# update to specific revision
cmd = [ hg , ' update ' , ' -r ' , rev , ' -R ' , fulldir ] + hgopts
if options . verbose :
cmd . append ( ' -v ' )
# Explicitly never retry 'hg update': otherwise any merge failures are
# ignored.
# This command is local: a failure can't be caused by a network error.
check_call_noisy ( cmd , retryMax = 0 )
2010-03-17 16:59:43 +03:00
2008-07-22 16:27:55 +04:00
check_call ( [ hg , ' parent ' , ' -R ' , fulldir ,
' --template=Updated to revision {node} . \n ' ] )
2011-06-20 23:40:02 +04:00
if options . tinderbox_print and dir != ' . ' :
got_rev = check_call_output ( [ hg , ' parent ' , ' -R ' , fulldir ,
2016-10-08 23:01:49 +03:00
' --template= {node} ' ] )
2011-06-20 23:40:02 +04:00
2014-12-19 14:18:34 +03:00
url = check_call_output ( [ hg , ' paths ' , ' default ' , ' -R ' , fulldir ] ) . rstrip ( ) . rstrip ( ' / ' )
2011-06-20 23:40:02 +04:00
repo_name = url . split ( ' / ' ) [ - 1 ]
repo_short_name = REPO_SHORT_NAMES . get ( repo_name , repo_name )
2014-12-19 14:18:34 +03:00
print " TinderboxPrint:<a href= %s /rev/ %s title= ' Built from %s revision %s ' > %s : %s </a> " % ( url , got_rev , repo_name , got_rev , repo_short_name , got_rev )
2011-06-20 23:40:02 +04:00
2010-02-17 18:52:24 +03:00
def check_retries_option ( option , opt_str , value , parser ) :
2014-12-19 14:18:34 +03:00
if value < 0 :
raise OptionValueError ( " %s option value needs to be positive (not ' %d ' ) " %
( opt_str , value ) )
setattr ( parser . values , option . dest , value )
2010-02-17 18:52:24 +03:00
2010-11-23 12:20:56 +03:00
def do_apply_patch ( hg , patch , repo ) :
2014-04-22 17:31:32 +04:00
check_call_noisy ( [ hg ,
2014-12-19 14:18:34 +03:00
' import ' ,
' -R ' , repo ,
' -m ' , " local patch from %s " % patch ,
' --no-commit ' , ' --force ' ,
patch ,
] ,
retryMax = 0
)
2010-11-23 12:20:56 +03:00
return
import glob
2014-12-19 14:18:34 +03:00
2010-11-23 12:20:56 +03:00
def do_apply_patches ( topsrcdir , hg ) :
prefix_map = {
' mozilla ' : ' mozilla ' ,
' chatzilla ' : os . path . join ( ' mozilla ' , ' extensions ' , ' irc ' ) ,
' inspector ' : os . path . join ( ' mozilla ' , ' extensions ' , ' inspector ' ) ,
}
for prefix in prefix_map . keys ( ) :
prefix_dir = prefix_map . get ( prefix )
files = glob . glob ( " %s *.patch " % prefix )
files . sort ( )
for file in files :
patch = os . path . join ( topsrcdir , file )
if os . path . exists ( patch ) :
2014-12-19 14:18:34 +03:00
do_apply_patch ( hg , patch , prefix_dir )
2010-11-23 12:20:56 +03:00
2010-02-17 18:52:24 +03:00
o = OptionParser ( usage = " % prog [options] checkout " )
2008-07-22 16:27:55 +04:00
o . add_option ( " -m " , " --comm-repo " , dest = " comm_repo " ,
default = None ,
help = " URL of comm (Calendar/Mail/Suite) repository to pull from (default: use hg default in .hg/hgrc) " )
o . add_option ( " --skip-comm " , dest = " skip_comm " ,
action = " store_true " , default = False ,
help = " Skip pulling the comm (Calendar/Mail/Suite) repository. " )
2008-08-29 18:40:21 +04:00
o . add_option ( " --comm-rev " , dest = " comm_rev " ,
2010-06-16 07:47:11 +04:00
default = None ,
2012-06-19 19:14:34 +04:00
help = " Revision of comm (Calendar/Mail/Suite) repository to update to. If not present, COMM_REV from the environment will be used. If that doesn ' t exist the default is: \" " + get_DEFAULT_tag ( ' COMM_REV ' ) + " \" " )
2008-07-22 16:27:55 +04:00
o . add_option ( " -z " , " --mozilla-repo " , dest = " mozilla_repo " ,
2012-06-15 14:19:25 +04:00
default = None ,
2010-06-14 10:22:16 +04:00
help = " URL of Mozilla repository to pull from (default: use hg default in mozilla/.hg/hgrc; or if that file doesn ' t exist, use \" " + DEFAULTS [ ' MOZILLA_REPO ' ] + " \" .) " )
2008-07-22 16:27:55 +04:00
o . add_option ( " --skip-mozilla " , dest = " skip_mozilla " ,
action = " store_true " , default = False ,
help = " Skip pulling the Mozilla repository. " )
2008-08-29 18:40:21 +04:00
o . add_option ( " --mozilla-rev " , dest = " mozilla_rev " ,
2010-06-16 07:47:11 +04:00
default = None ,
2012-06-19 19:14:34 +04:00
help = " Revision of Mozilla repository to update to. If not present, MOZILLA_REV from the environment will be used. If that doesn ' t exist the default is: \" " + get_DEFAULT_tag ( ' MOZILLA_REV ' ) + " \" " )
2008-07-22 16:27:55 +04:00
2008-08-16 03:47:02 +04:00
o . add_option ( " --inspector-repo " , dest = " inspector_repo " ,
default = None ,
2010-06-14 10:22:16 +04:00
help = " URL of DOM Inspector repository to pull from (default: use hg default in mozilla/extensions/inspector/.hg/hgrc; or if that file doesn ' t exist, use \" " + DEFAULTS [ ' INSPECTOR_REPO ' ] + " \" .) " )
2008-08-16 03:47:02 +04:00
o . add_option ( " --skip-inspector " , dest = " skip_inspector " ,
action = " store_true " , default = False ,
2009-11-03 07:02:59 +03:00
help = " Skip pulling the DOM Inspector repository. " )
2008-08-29 18:40:21 +04:00
o . add_option ( " --inspector-rev " , dest = " inspector_rev " ,
2010-06-16 07:47:11 +04:00
default = None ,
help = " Revision of DOM Inspector repository to update to. Default: \" " + get_DEFAULT_tag ( ' INSPECTOR_REV ' ) + " \" " )
2008-08-16 03:47:02 +04:00
2014-12-19 14:18:34 +03:00
o . add_option ( " --chatzilla-repo " , dest = " chatzilla_repo " ,
default = None ,
help = " URL of ChatZilla repository to pull from (default: use hg default in mozilla/extensions/irc/.hg/hgrc; or if that file doesn ' t exist, use \" " + DEFAULTS [ ' CHATZILLA_REPO ' ] + " \" .) " )
2008-07-22 16:27:55 +04:00
o . add_option ( " --skip-chatzilla " , dest = " skip_chatzilla " ,
action = " store_true " , default = False ,
help = " Skip pulling the ChatZilla repository. " )
2014-12-19 14:18:34 +03:00
o . add_option ( " --chatzilla-rev " , dest = " chatzilla_rev " ,
default = None ,
help = " Revision of ChatZilla repository to update to. Default: \" " + get_DEFAULT_tag ( ' CHATZILLA_REV ' ) + " \" " )
2009-11-03 07:02:59 +03:00
2014-07-29 01:01:30 +04:00
o . add_option ( " --skip-venkman " , dest = " skip_venkman " ,
action = " store_true " , default = False ,
help = " Obsolete option, supported for backwards compat. " )
o . add_option ( " --venkman-rev " , dest = " venkman_rev " ,
default = None ,
help = " Obsolete option, supported for backwards compat. " )
2008-07-22 16:27:55 +04:00
o . add_option ( " --hg " , dest = " hg " , default = os . environ . get ( ' HG ' , ' hg ' ) ,
help = " The location of the hg binary " )
2008-07-22 23:58:15 +04:00
o . add_option ( " -v " , " --verbose " , dest = " verbose " ,
action = " store_true " , default = False ,
help = " Enable verbose output on hg updates " )
2011-10-06 21:41:58 +04:00
o . add_option ( " --hgtool " , dest = " hgtool " ,
default = None ,
help = " Path to hgtool, if wanted " )
2014-04-22 17:31:32 +04:00
o . add_option ( " --hgtool1 " , dest = " hgtool1 " ,
default = None ,
help = " Alternative path to hgtool, if wanted " )
2008-10-02 21:19:48 +04:00
o . add_option ( " --hg-options " , dest = " hgopts " ,
help = " Pass arbitrary options to hg commands (i.e. --debug, --time) " )
2010-02-05 19:08:45 +03:00
o . add_option ( " --hg-clone-options " , dest = " hgcloneopts " ,
2010-03-17 16:59:43 +03:00
help = " Pass arbitrary options to hg clone commands (i.e. --uncompressed) " )
2008-07-22 16:27:55 +04:00
2010-02-17 18:52:24 +03:00
o . add_option ( " --retries " , dest = " retries " , type = " int " , metavar = " NUM " ,
default = 1 , help = " Number of times to retry a failed command before giving up. (default: 1) " ,
action = " callback " , callback = check_retries_option )
2014-12-19 14:18:34 +03:00
o . add_option ( " -r " , " --rev " , dest = " default_rev " ,
default = None ,
help = " Revision of all repositories to update to, unless otherwise specified. " )
2010-06-16 07:47:11 +04:00
2010-11-23 12:20:56 +03:00
o . add_option ( " --apply-patches " , dest = " apply_patches " ,
action = " store_true " , default = False ,
help = " Look for and apply local patches (repo*.patch) " )
2011-06-20 23:40:02 +04:00
o . add_option ( " --tinderbox-print " , dest = " tinderbox_print " ,
action = " store_true " , default = False ,
help = " Print repo revisions for Tinderbox " )
2017-12-13 00:39:09 +03:00
o . add_option ( " --fixup-rust-vendoring-bug-1424825 " , dest = " fixup_rust_vendoring " ,
action = " store_true " , default = False ,
help = " Remove checksums from vendored rust crates to work around Bug 1424825. " )
2014-12-19 14:18:34 +03:00
2009-04-15 12:45:45 +04:00
def fixup_comm_repo_options ( options ) :
""" Check options.comm_repo value.
2008-07-22 16:27:55 +04:00
2009-04-15 12:45:45 +04:00
options . comm_repo is normally None .
This is fine - - our " hg pull " command will omit the repo URL .
The exception is the initial checkout , which does an " hg clone " .
That command requires a repository URL .
2008-07-22 16:27:55 +04:00
"""
2009-04-26 17:25:08 +04:00
if options . comm_repo is None and \
not os . path . exists ( os . path . join ( topsrcdir , ' .hg ' ) ) :
2008-07-22 16:27:55 +04:00
o . print_help ( )
print
2009-04-26 17:25:08 +04:00
print " Error: the -m option is required for the initial checkout! "
2008-07-22 16:27:55 +04:00
sys . exit ( 2 )
2015-09-18 14:46:23 +03:00
# If COMM_REV is passed via environment, prefer that over the passed
# option so that automation can pass tagged versions while still defaulting
# to a certain revision via client.py-args.
envRev = os . environ . get ( " COMM_REV " )
if envRev :
if options . comm_rev and options . comm_rev != envRev :
print " Warning: Preferring COMM_REV ( %s ) over passed revision ( %s ) " % ( envRev , options . comm_rev )
2012-06-19 19:14:34 +04:00
else :
2015-09-18 14:46:23 +03:00
print " Using COMM_REV from environment ( %s ) " % envRev
options . comm_rev = envRev
# If no version was set before, use the default comm revision.
if options . comm_rev is None :
options . comm_rev = get_DEFAULT_tag ( " COMM_REV " )
2010-06-16 07:47:11 +04:00
2014-12-19 14:18:34 +03:00
2009-04-15 12:45:45 +04:00
def fixup_mozilla_repo_options ( options ) :
""" Handle special case: initial checkout of Mozilla.
See fixup_comm_repo_options ( ) .
"""
2012-06-15 14:19:25 +04:00
if options . mozilla_repo is None :
2017-10-13 02:12:58 +03:00
if ( os . environ . get ( ' MOZ_AUTOMATION ' ) == ' 1 '
or not os . path . exists ( os . path . join ( topsrcdir , ' mozilla ' ) ) ) :
2012-06-15 14:19:25 +04:00
options . mozilla_repo = DEFAULTS [ ' MOZILLA_REPO ' ]
else :
# Fallback to using .hgrc as hgtool/share needs the repo
2014-12-19 14:18:34 +03:00
import ConfigParser
2012-06-15 14:19:25 +04:00
config = ConfigParser . ConfigParser ( )
2012-06-15 16:28:31 +04:00
config_path = os . path . join ( topsrcdir , ' mozilla ' , ' .hg ' , ' hgrc ' )
config . read ( [ config_path ] )
2012-06-15 14:19:25 +04:00
if not config . has_option ( ' paths ' , ' default ' ) :
# Abort, not to get into a possibly inconsistent state.
2014-12-19 14:18:34 +03:00
sys . exit ( " Error: default path in %s is undefined! " %
config_path )
2012-06-15 14:19:25 +04:00
options . mozilla_repo = config . get ( ' paths ' , ' default ' )
2015-09-18 14:46:23 +03:00
# If MOZILLA_REV is passed via environment, prefer that over the passed
# option so that automation can pass tagged versions while still defaulting
# to a certain revision via client.py-args.
envRev = os . environ . get ( " MOZILLA_REV " )
if envRev :
if options . mozilla_rev and options . mozilla_rev != envRev :
print " Warning: Preferring MOZILLA_REV ( %s ) over passed revision ( %s ) " % ( envRev , options . mozilla_rev )
2012-06-19 19:14:34 +04:00
else :
2015-09-18 14:46:23 +03:00
print " Using MOZILLA_REV from environment ( %s ) " % envRev
options . mozilla_rev = envRev
# If no version was set before, use the default mozilla revision.
if options . mozilla_rev is None :
options . mozilla_rev = get_DEFAULT_tag ( " MOZILLA_REV " )
2008-07-22 16:27:55 +04:00
2014-12-19 14:18:34 +03:00
2009-11-03 07:02:59 +03:00
def fixup_chatzilla_repo_options ( options ) :
""" Handle special case: initial hg checkout of Chatzilla.
See fixup_comm_repo_options ( ) .
backup_cvs_extension ( ) is also called .
"""
extensionPath = os . path . join ( topsrcdir , ' mozilla ' , ' extensions ' , ' irc ' )
backup_cvs_extension ( ' Chatzilla ' , ' irc ' , extensionPath )
if options . chatzilla_repo is None and not os . path . exists ( extensionPath ) :
2010-06-14 10:22:16 +04:00
options . chatzilla_repo = DEFAULTS [ ' CHATZILLA_REPO ' ]
2009-11-03 07:02:59 +03:00
2010-06-16 07:47:11 +04:00
if options . chatzilla_rev is None :
options . chatzilla_rev = get_DEFAULT_tag ( " CHATZILLA_REV " )
2014-12-19 14:18:34 +03:00
2009-04-15 12:45:45 +04:00
def fixup_inspector_repo_options ( options ) :
2009-11-03 07:02:59 +03:00
""" Handle special case: initial checkout of DOM Inspector.
2009-04-15 12:45:45 +04:00
See fixup_comm_repo_options ( ) .
"""
2009-04-26 17:25:08 +04:00
# No cvs backup needed as DOM Inspector was part (and removed from)
# Mozilla hg repository.
if options . inspector_repo is None and \
2014-12-19 14:18:34 +03:00
not os . path . exists ( os . path . join ( topsrcdir , ' mozilla ' , ' extensions ' ,
' inspector ' ) ) :
2010-06-14 10:22:16 +04:00
options . inspector_repo = DEFAULTS [ ' INSPECTOR_REPO ' ]
2008-08-16 03:47:02 +04:00
2010-06-16 07:47:11 +04:00
if options . inspector_rev is None :
options . inspector_rev = get_DEFAULT_tag ( " INSPECTOR_REV " )
2014-12-19 14:18:34 +03:00
2017-12-13 00:39:09 +03:00
def fixup_rust_vendoring ( ) :
import json
print ( " Patching .cargo-checksum.json files to work around Bug 1424825. " )
files = glob . glob ( " mozilla/third_party/rust/*/.cargo-checksum.json " )
for file in files :
if options . verbose :
print ( " \t {file} " . format ( file ) )
with open ( file , " r " ) as fp :
cksum = json . load ( fp )
cksum [ ' files ' ] = { }
with open ( file , " w " ) as fp :
json . dump ( cksum , fp )
if options . verbose :
print ( " Done patching .cargo-checksum.json files. " )
2008-07-22 16:27:55 +04:00
try :
( options , ( action , ) ) = o . parse_args ( )
except ValueError :
o . print_help ( )
sys . exit ( 2 )
2010-06-16 07:47:11 +04:00
if options . default_rev :
2014-12-19 14:18:34 +03:00
# We now wish to override all the DEFAULTS.
DEFAULTS [ ' REV ' ] = options . default_rev
2015-04-20 06:20:45 +03:00
for index in [ ' CHATZILLA ' , ' INSPECTOR ' , ' COMM ' , ' MOZILLA ' ] :
2014-12-19 14:18:34 +03:00
index + = " _REV "
# Clear the rest from file-defaults
if index in DEFAULTS :
del DEFAULTS [ index ]
2010-06-16 07:47:11 +04:00
2008-07-22 16:27:55 +04:00
if action in ( ' checkout ' , ' co ' ) :
2009-04-26 17:25:08 +04:00
# Update Comm repository configuration.
repo_config ( )
2008-07-22 16:27:55 +04:00
if not options . skip_comm :
2009-04-15 12:45:45 +04:00
fixup_comm_repo_options ( options )
2008-08-29 18:40:21 +04:00
do_hg_pull ( ' . ' , options . comm_repo , options . hg , options . comm_rev )
2008-07-22 16:27:55 +04:00
if not options . skip_mozilla :
2009-04-15 12:45:45 +04:00
fixup_mozilla_repo_options ( options )
2014-12-19 14:18:34 +03:00
do_hg_pull ( ' mozilla ' , options . mozilla_repo , options . hg ,
options . mozilla_rev , options . hgtool , options . hgtool1 )
2008-07-22 16:27:55 +04:00
2009-03-19 18:35:42 +03:00
# Check whether destination directory exists for these extensions.
2014-07-15 06:02:18 +04:00
if ( not options . skip_chatzilla or not options . skip_inspector ) and \
2014-12-19 14:18:34 +03:00
not os . path . exists ( os . path . join ( topsrcdir , ' mozilla ' , ' extensions ' ) ) :
2009-03-19 18:35:42 +03:00
# Don't create the directory: Mozilla repository should provide it...
2014-12-19 14:18:34 +03:00
sys . exit ( " Error: mozilla/extensions directory does not exist; " +
2014-07-15 06:02:18 +04:00
" ChatZilla, and/or DOM Inspector cannot be checked out! " )
2009-03-19 18:35:42 +03:00
2009-11-03 07:02:59 +03:00
if not options . skip_chatzilla :
fixup_chatzilla_repo_options ( options )
2014-12-19 14:18:34 +03:00
do_hg_pull ( os . path . join ( ' mozilla ' , ' extensions ' , ' irc ' ) ,
options . chatzilla_repo , options . hg , options . chatzilla_rev )
2009-11-03 07:02:59 +03:00
2008-08-16 03:47:02 +04:00
if not options . skip_inspector :
2009-04-15 12:45:45 +04:00
fixup_inspector_repo_options ( options )
2014-12-19 14:18:34 +03:00
do_hg_pull ( os . path . join ( ' mozilla ' , ' extensions ' , ' inspector ' ) ,
options . inspector_repo , options . hg , options . inspector_rev )
2008-08-16 03:47:02 +04:00
2010-11-23 12:20:56 +03:00
if options . apply_patches :
do_apply_patches ( topsrcdir , options . hg )
2017-12-13 00:39:09 +03:00
if options . fixup_rust_vendoring :
fixup_rust_vendoring ( )
2008-07-22 16:27:55 +04:00
else :
o . print_help ( )
sys . exit ( 2 )