2009-04-13 18:51:15 +00:00
|
|
|
# Copyright (C) 2009 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2023-08-22 01:26:51 +00:00
|
|
|
import optparse
|
2009-04-13 18:51:15 +00:00
|
|
|
|
2023-08-22 01:20:32 +00:00
|
|
|
from command import Command
|
|
|
|
from command import MirrorSafeCommand
|
2023-08-08 21:12:53 +00:00
|
|
|
from error import RepoExitError
|
2023-09-14 08:46:44 +00:00
|
|
|
from repo_logging import RepoLogger
|
2023-08-22 01:20:32 +00:00
|
|
|
from subcmds.sync import _PostRepoFetch
|
|
|
|
from subcmds.sync import _PostRepoUpgrade
|
2023-08-08 21:12:53 +00:00
|
|
|
|
|
|
|
|
2023-09-14 08:46:44 +00:00
|
|
|
logger = RepoLogger(__file__)
|
|
|
|
|
|
|
|
|
2023-08-08 21:12:53 +00:00
|
|
|
class SelfupdateError(RepoExitError):
|
|
|
|
"""Exit error for failed selfupdate command."""
|
2009-04-13 18:51:15 +00:00
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2009-04-13 18:51:15 +00:00
|
|
|
class Selfupdate(Command, MirrorSafeCommand):
|
2023-03-11 06:46:20 +00:00
|
|
|
COMMON = False
|
|
|
|
helpSummary = "Update repo to the latest version"
|
|
|
|
helpUsage = """
|
2009-04-13 18:51:15 +00:00
|
|
|
%prog
|
|
|
|
"""
|
2023-03-11 06:46:20 +00:00
|
|
|
helpDescription = """
|
2009-04-13 18:51:15 +00:00
|
|
|
The '%prog' command upgrades repo to the latest version, if a
|
|
|
|
newer version is available.
|
|
|
|
|
|
|
|
Normally this is done automatically by 'repo sync' and does not
|
|
|
|
need to be performed by an end-user.
|
|
|
|
"""
|
|
|
|
|
2023-03-11 06:46:20 +00:00
|
|
|
def _Options(self, p):
|
|
|
|
g = p.add_option_group("repo Version options")
|
|
|
|
g.add_option(
|
|
|
|
"--no-repo-verify",
|
|
|
|
dest="repo_verify",
|
|
|
|
default=True,
|
|
|
|
action="store_false",
|
|
|
|
help="do not verify repo source code",
|
|
|
|
)
|
|
|
|
g.add_option(
|
|
|
|
"--repo-upgraded",
|
|
|
|
dest="repo_upgraded",
|
|
|
|
action="store_true",
|
2023-08-22 01:26:51 +00:00
|
|
|
help=optparse.SUPPRESS_HELP,
|
2023-03-11 06:46:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
def Execute(self, opt, args):
|
|
|
|
rp = self.manifest.repoProject
|
|
|
|
rp.PreSync()
|
|
|
|
|
|
|
|
if opt.repo_upgraded:
|
|
|
|
_PostRepoUpgrade(self.manifest)
|
|
|
|
|
|
|
|
else:
|
2023-08-08 21:12:53 +00:00
|
|
|
result = rp.Sync_NetworkHalf()
|
|
|
|
if result.error:
|
2023-09-14 08:46:44 +00:00
|
|
|
logger.error("error: can't update repo")
|
2023-08-08 21:12:53 +00:00
|
|
|
raise SelfupdateError(aggregate_errors=[result.error])
|
2023-03-11 06:46:20 +00:00
|
|
|
|
|
|
|
rp.bare_git.gc("--auto")
|
|
|
|
_PostRepoFetch(rp, repo_verify=opt.repo_verify, verbose=True)
|