2007-05-23 00:07:17 +04:00
|
|
|
#!/usr/bin/python
|
2012-05-21 15:12:37 +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/.
|
|
|
|
|
2019-09-12 00:06:34 +03:00
|
|
|
from __future__ import absolute_import, print_function
|
2007-05-23 00:07:17 +04:00
|
|
|
|
2013-04-02 04:26:39 +04:00
|
|
|
HG_EXCLUSIONS = [".hg", ".hgignore", ".hgtags"]
|
2009-09-23 21:57:22 +04:00
|
|
|
|
2007-05-23 00:07:17 +04:00
|
|
|
import os
|
|
|
|
import sys
|
2008-06-06 16:34:40 +04:00
|
|
|
import shutil
|
2012-04-13 02:14:10 +04:00
|
|
|
import glob
|
2007-05-23 00:07:17 +04:00
|
|
|
from optparse import OptionParser
|
2011-04-14 17:44:13 +04:00
|
|
|
from subprocess import check_call
|
2007-05-23 00:07:17 +04:00
|
|
|
|
|
|
|
topsrcdir = os.path.dirname(__file__)
|
|
|
|
if topsrcdir == "":
|
|
|
|
topsrcdir = "."
|
|
|
|
|
2020-06-11 21:03:17 +03:00
|
|
|
|
2007-07-13 16:23:32 +04:00
|
|
|
def check_call_noisy(cmd, *args, **kwargs):
|
2019-09-12 00:06:34 +03:00
|
|
|
print("Executing command:", cmd)
|
2007-07-13 16:23:32 +04:00
|
|
|
check_call(cmd, *args, **kwargs)
|
|
|
|
|
2020-06-11 21:03:17 +03:00
|
|
|
|
2007-07-13 16:23:32 +04:00
|
|
|
def do_hg_pull(dir, repository, hg):
|
2007-05-23 00:07:17 +04:00
|
|
|
fulldir = os.path.join(topsrcdir, dir)
|
2007-05-24 08:05:33 +04:00
|
|
|
# clone if the dir doesn't exist, pull if it does
|
|
|
|
if not os.path.exists(fulldir):
|
2007-07-13 16:23:32 +04:00
|
|
|
check_call_noisy([hg, "clone", repository, fulldir])
|
2007-05-24 08:05:33 +04:00
|
|
|
else:
|
2007-07-13 16:23:32 +04:00
|
|
|
cmd = [hg, "pull", "-u", "-R", fulldir]
|
|
|
|
if repository is not None:
|
|
|
|
cmd.append(repository)
|
|
|
|
check_call_noisy(cmd)
|
2008-06-03 02:52:25 +04:00
|
|
|
check_call(
|
|
|
|
[hg, "parent", "-R", fulldir, "--template=Updated to revision {node}.\n"]
|
|
|
|
)
|
2007-05-23 00:07:17 +04:00
|
|
|
|
2020-06-11 21:03:17 +03:00
|
|
|
|
2012-04-13 02:14:10 +04:00
|
|
|
def do_hg_replace(dir, repository, tag, exclusions, hg):
|
|
|
|
"""
|
|
|
|
Replace the contents of dir with the contents of repository, except for
|
|
|
|
files matching exclusions.
|
|
|
|
"""
|
|
|
|
fulldir = os.path.join(topsrcdir, dir)
|
|
|
|
if os.path.exists(fulldir):
|
|
|
|
shutil.rmtree(fulldir)
|
|
|
|
|
|
|
|
assert not os.path.exists(fulldir)
|
|
|
|
check_call_noisy([hg, "clone", "-u", tag, repository, fulldir])
|
|
|
|
|
|
|
|
for thing in exclusions:
|
|
|
|
for excluded in glob.iglob(os.path.join(fulldir, thing)):
|
|
|
|
if os.path.isdir(excluded):
|
|
|
|
shutil.rmtree(excluded)
|
|
|
|
else:
|
|
|
|
os.remove(excluded)
|
|
|
|
|
2020-06-11 21:03:17 +03:00
|
|
|
|
2012-08-16 10:28:57 +04:00
|
|
|
def toggle_trailing_blank_line(depname):
|
2020-06-11 21:03:17 +03:00
|
|
|
"""If the trailing line is empty, then we'll delete it.
|
|
|
|
Otherwise we'll add a blank line."""
|
2021-05-05 19:59:09 +03:00
|
|
|
lines = open(depname, "rb").readlines()
|
2020-06-11 21:03:17 +03:00
|
|
|
if not lines:
|
|
|
|
print("unexpected short file", file=sys.stderr)
|
|
|
|
return
|
|
|
|
|
|
|
|
if not lines[-1].strip():
|
|
|
|
# trailing line is blank, removing it
|
|
|
|
open(depname, "wb").writelines(lines[:-1])
|
|
|
|
else:
|
|
|
|
# adding blank line
|
2020-06-30 06:43:22 +03:00
|
|
|
open(depname, "ab").write(b"\n")
|
2020-06-11 21:03:17 +03:00
|
|
|
|
2012-08-16 10:28:57 +04:00
|
|
|
|
2013-06-24 18:39:22 +04:00
|
|
|
def get_trailing_blank_line_state(depname):
|
2020-06-11 21:03:17 +03:00
|
|
|
lines = open(depname, "r").readlines()
|
|
|
|
if not lines:
|
|
|
|
print("unexpected short file", file=sys.stderr)
|
|
|
|
return "no blank line"
|
|
|
|
|
|
|
|
if not lines[-1].strip():
|
|
|
|
return "has blank line"
|
2020-07-08 12:24:49 +03:00
|
|
|
return "no blank line"
|
2013-06-24 18:39:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
def update_nspr_or_nss(tag, depfile, destination, hgpath):
|
2020-06-11 21:03:17 +03:00
|
|
|
destination = destination.rstrip("/")
|
|
|
|
permanent_patch_dir = destination + "/patches"
|
|
|
|
temporary_patch_dir = destination + ".patches"
|
|
|
|
if os.path.exists(temporary_patch_dir):
|
|
|
|
print("please clean up leftover directory " + temporary_patch_dir)
|
|
|
|
sys.exit(2)
|
|
|
|
warn_if_patch_exists(permanent_patch_dir)
|
|
|
|
# protect patch directory from being removed by do_hg_replace
|
|
|
|
if os.path.exists(permanent_patch_dir):
|
|
|
|
shutil.move(permanent_patch_dir, temporary_patch_dir)
|
|
|
|
# now update the destination
|
|
|
|
print("reverting to HG version of %s to get its blank line state" % depfile)
|
|
|
|
check_call_noisy([options.hg, "revert", depfile])
|
|
|
|
old_state = get_trailing_blank_line_state(depfile)
|
|
|
|
print("old state of %s is: %s" % (depfile, old_state))
|
|
|
|
do_hg_replace(destination, hgpath, tag, HG_EXCLUSIONS, options.hg)
|
|
|
|
new_state = get_trailing_blank_line_state(depfile)
|
|
|
|
print("new state of %s is: %s" % (depfile, new_state))
|
|
|
|
if old_state == new_state:
|
|
|
|
print("toggling blank line in: ", depfile)
|
|
|
|
toggle_trailing_blank_line(depfile)
|
|
|
|
tag_file = destination + "/TAG-INFO"
|
|
|
|
with open(tag_file, "w") as f:
|
|
|
|
f.write(tag)
|
|
|
|
# move patch directory back to a subdirectory
|
|
|
|
if os.path.exists(temporary_patch_dir):
|
|
|
|
shutil.move(temporary_patch_dir, permanent_patch_dir)
|
|
|
|
|
2017-09-18 20:05:45 +03:00
|
|
|
|
|
|
|
def warn_if_patch_exists(path):
|
2020-06-11 21:03:17 +03:00
|
|
|
# If the given patch directory exists and contains at least one file,
|
|
|
|
# then print warning and wait for the user to acknowledge.
|
|
|
|
if os.path.isdir(path) and os.listdir(path):
|
|
|
|
print("========================================")
|
|
|
|
print("WARNING: At least one patch file exists")
|
|
|
|
print("in directory: " + path)
|
|
|
|
print("You must manually re-apply all patches")
|
|
|
|
print("after this script has completed!")
|
|
|
|
print("========================================")
|
2020-06-11 18:23:10 +03:00
|
|
|
input("Press Enter to continue...")
|
2020-06-11 21:03:17 +03:00
|
|
|
return
|
|
|
|
|
|
|
|
|
2021-04-16 23:50:15 +03:00
|
|
|
o = OptionParser(usage="client.py [options] update_nspr tagname | update_nss tagname")
|
2007-12-22 00:49:52 +03:00
|
|
|
o.add_option(
|
|
|
|
"--skip-mozilla",
|
|
|
|
dest="skip_mozilla",
|
|
|
|
action="store_true",
|
|
|
|
default=False,
|
2008-06-06 16:34:40 +04:00
|
|
|
help="Obsolete",
|
|
|
|
)
|
2020-10-26 21:34:53 +03:00
|
|
|
|
2012-04-13 02:14:10 +04:00
|
|
|
o.add_option(
|
|
|
|
"--hg",
|
|
|
|
dest="hg",
|
|
|
|
default=os.environ.get("HG", "hg"),
|
|
|
|
help="The location of the hg binary",
|
|
|
|
)
|
2013-11-18 01:48:30 +04:00
|
|
|
o.add_option(
|
|
|
|
"--repo", dest="repo", help="the repo to update from (default: upstream repo)"
|
|
|
|
)
|
2007-05-23 00:07:17 +04:00
|
|
|
|
|
|
|
try:
|
2008-06-06 16:34:40 +04:00
|
|
|
options, args = o.parse_args()
|
|
|
|
action = args[0]
|
|
|
|
except IndexError:
|
2007-05-23 00:07:17 +04:00
|
|
|
o.print_help()
|
|
|
|
sys.exit(2)
|
|
|
|
|
|
|
|
if action in ("checkout", "co"):
|
2020-06-11 18:23:10 +03:00
|
|
|
print("Warning: client.py checkout is obsolete.", file=sys.stderr)
|
2008-06-06 16:34:40 +04:00
|
|
|
pass
|
|
|
|
elif action in ("update_nspr"):
|
|
|
|
(tag,) = args[1:]
|
2013-06-24 18:39:22 +04:00
|
|
|
depfile = "nsprpub/config/prdepend.h"
|
2013-11-18 01:48:30 +04:00
|
|
|
if not options.repo:
|
|
|
|
options.repo = "https://hg.mozilla.org/projects/nspr"
|
|
|
|
update_nspr_or_nss(tag, depfile, "nsprpub", options.repo)
|
2008-06-06 16:34:40 +04:00
|
|
|
elif action in ("update_nss"):
|
|
|
|
(tag,) = args[1:]
|
2013-06-24 18:39:22 +04:00
|
|
|
depfile = "security/nss/coreconf/coreconf.dep"
|
2013-11-18 01:48:30 +04:00
|
|
|
if not options.repo:
|
2020-06-11 21:03:17 +03:00
|
|
|
options.repo = "https://hg.mozilla.org/projects/nss"
|
2013-11-18 01:48:30 +04:00
|
|
|
update_nspr_or_nss(tag, depfile, "security/nss", options.repo)
|
2007-05-23 00:07:17 +04:00
|
|
|
else:
|
|
|
|
o.print_help()
|
|
|
|
sys.exit(2)
|