The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # Copyright (C) 2008 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | import os |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 16 | import platform |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 17 | import re |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 18 | import sys |
Mike Frysinger | acf63b2 | 2019-06-13 02:24:21 -0400 | [diff] [blame] | 19 | import urllib.parse |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | |
| 21 | from color import Coloring |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 22 | from command import InteractiveCommand, MirrorSafeCommand |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 23 | from error import ManifestParseError |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 24 | from project import SyncBuffer |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 25 | from git_config import GitConfig |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 26 | from git_command import git_require, MIN_GIT_VERSION_SOFT, MIN_GIT_VERSION_HARD |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 27 | import fetch |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 28 | import git_superproject |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 29 | import platform_utils |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 30 | from wrapper import Wrapper |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 31 | |
David Pursehouse | 819827a | 2020-02-12 15:20:19 +0900 | [diff] [blame] | 32 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 33 | class Init(InteractiveCommand, MirrorSafeCommand): |
Mike Frysinger | 4f21054 | 2021-06-14 16:05:19 -0400 | [diff] [blame] | 34 | COMMON = True |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 35 | helpSummary = "Initialize a repo client checkout in the current directory" |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 36 | helpUsage = """ |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 37 | %prog [options] [manifest url] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 38 | """ |
| 39 | helpDescription = """ |
| 40 | The '%prog' command is run once to install and initialize repo. |
| 41 | The latest repo source code and manifest collection is downloaded |
| 42 | from the server and is installed in the .repo/ directory in the |
| 43 | current working directory. |
| 44 | |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 45 | When creating a new checkout, the manifest URL is the only required setting. |
| 46 | It may be specified using the --manifest-url option, or as the first optional |
| 47 | argument. |
| 48 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 49 | The optional -b argument can be used to select the manifest branch |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 50 | to checkout and use. If no branch is specified, the remote's default |
Mike Frysinger | 23882b3 | 2021-02-23 15:43:07 -0500 | [diff] [blame] | 51 | branch is used. This is equivalent to using -b HEAD. |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 52 | |
| 53 | The optional -m argument can be used to specify an alternate manifest |
| 54 | to be used. If no manifest is specified, the manifest default.xml |
| 55 | will be used. |
| 56 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 57 | If the --standalone-manifest argument is set, the manifest will be downloaded |
| 58 | directly from the specified --manifest-url as a static file (rather than |
| 59 | setting up a manifest git checkout). With --standalone-manifest, the manifest |
| 60 | will be fully static and will not be re-downloaded during subsesquent |
| 61 | `repo init` and `repo sync` calls. |
| 62 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 63 | The --reference option can be used to point to a directory that |
| 64 | has the content of a --mirror sync. This will make the working |
| 65 | directory use as much data as possible from the local reference |
| 66 | directory when fetching from the server. This will make the sync |
| 67 | go a lot faster by reducing data traffic on the network. |
| 68 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 69 | The --dissociate option can be used to borrow the objects from |
| 70 | the directory specified with the --reference option only to reduce |
| 71 | network transfer, and stop borrowing from them after a first clone |
| 72 | is made by making necessary local copies of borrowed objects. |
| 73 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame] | 74 | The --no-clone-bundle option disables any attempt to use |
| 75 | $URL/clone.bundle to bootstrap a new Git repository from a |
| 76 | resumeable bundle file on a content delivery network. This |
| 77 | may be necessary if there are problems with the local Python |
| 78 | HTTP client or proxy configuration, but the Git binary works. |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 79 | |
Mike Frysinger | b8f7bb0 | 2018-10-10 01:05:11 -0400 | [diff] [blame] | 80 | # Switching Manifest Branches |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 81 | |
| 82 | To switch to another manifest branch, `repo init -b otherbranch` |
| 83 | may be used in an existing client. However, as this only updates the |
| 84 | manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary |
| 85 | to update the working directory files. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 86 | """ |
| 87 | |
Mike Frysinger | 9180a07 | 2021-04-13 14:57:40 -0400 | [diff] [blame] | 88 | def _CommonOptions(self, p): |
| 89 | """Disable due to re-use of Wrapper().""" |
| 90 | |
Mike Frysinger | 66098f7 | 2020-02-05 00:01:59 -0500 | [diff] [blame] | 91 | def _Options(self, p, gitc_init=False): |
Mike Frysinger | 9a734a3 | 2021-04-08 19:14:15 -0400 | [diff] [blame] | 92 | Wrapper().InitParser(p, gitc_init=gitc_init) |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 93 | |
David Pursehouse | 3f5ea0b | 2012-11-17 03:13:09 +0900 | [diff] [blame] | 94 | def _RegisteredEnvironmentOptions(self): |
| 95 | return {'REPO_MANIFEST_URL': 'manifest_url', |
| 96 | 'REPO_MIRROR_LOCATION': 'reference'} |
| 97 | |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 98 | def _CloneSuperproject(self, opt): |
| 99 | """Clone the superproject based on the superproject's url and branch. |
| 100 | |
| 101 | Args: |
| 102 | opt: Program options returned from optparse. See _Options(). |
| 103 | """ |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 104 | superproject = git_superproject.Superproject(self.manifest, |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 105 | self.repodir, |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 106 | self.git_event_log, |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 107 | quiet=opt.quiet) |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 108 | sync_result = superproject.Sync() |
| 109 | if not sync_result.success: |
Raman Tenneti | 8db30d6 | 2021-07-06 21:30:06 -0700 | [diff] [blame] | 110 | print('warning: git update of superproject failed, repo sync will not ' |
| 111 | 'use superproject to fetch source; while this error is not fatal, ' |
| 112 | 'and you can continue to run repo sync, please run repo init with ' |
| 113 | 'the --no-use-superproject option to stop seeing this warning', |
| 114 | file=sys.stderr) |
| 115 | if sync_result.fatal and opt.use_superproject is not None: |
Raman Tenneti | 784e16f | 2021-06-11 17:29:45 -0700 | [diff] [blame] | 116 | sys.exit(1) |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 117 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 118 | def _SyncManifest(self, opt): |
| 119 | m = self.manifest.manifestProject |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 120 | is_new = not m.Exists |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 121 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 122 | # If repo has already been initialized, we take -u with the absence of |
| 123 | # --standalone-manifest to mean "transition to a standard repo set up", |
| 124 | # which necessitates starting fresh. |
| 125 | # If --standalone-manifest is set, we always tear everything down and start |
| 126 | # anew. |
| 127 | if not is_new: |
| 128 | was_standalone_manifest = m.config.GetString('manifest.standalone') |
Jack Neus | 0f6f16e | 2021-10-11 18:14:35 +0000 | [diff] [blame] | 129 | if was_standalone_manifest and not opt.manifest_url: |
| 130 | print('fatal: repo was initialized with a standlone manifest, ' |
| 131 | 'cannot be re-initialized without --manifest-url/-u') |
| 132 | sys.exit(1) |
| 133 | |
Raman Tenneti | 4a478ed | 2021-11-17 18:38:24 -0800 | [diff] [blame] | 134 | if opt.standalone_manifest or (was_standalone_manifest and |
| 135 | opt.manifest_url): |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 136 | m.config.ClearCache() |
| 137 | if m.gitdir and os.path.exists(m.gitdir): |
| 138 | platform_utils.rmtree(m.gitdir) |
| 139 | if m.worktree and os.path.exists(m.worktree): |
| 140 | platform_utils.rmtree(m.worktree) |
| 141 | |
| 142 | is_new = not m.Exists |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 143 | if is_new: |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 144 | if not opt.manifest_url: |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 145 | print('fatal: manifest url is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 146 | sys.exit(1) |
| 147 | |
| 148 | if not opt.quiet: |
Mike Frysinger | dcbfadf | 2020-02-22 00:04:39 -0500 | [diff] [blame] | 149 | print('Downloading manifest from %s' % |
| 150 | (GitConfig.ForUser().UrlInsteadOf(opt.manifest_url),), |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 151 | file=sys.stderr) |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 152 | |
| 153 | # The manifest project object doesn't keep track of the path on the |
| 154 | # server where this git is located, so let's save that here. |
| 155 | mirrored_manifest_git = None |
| 156 | if opt.reference: |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 157 | manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:] |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 158 | mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path) |
| 159 | if not mirrored_manifest_git.endswith(".git"): |
| 160 | mirrored_manifest_git += ".git" |
| 161 | if not os.path.exists(mirrored_manifest_git): |
Samuel Holland | 5f0e57d | 2018-01-22 11:00:24 -0600 | [diff] [blame] | 162 | mirrored_manifest_git = os.path.join(opt.reference, |
| 163 | '.repo/manifests.git') |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 164 | |
| 165 | m._InitGitDir(mirror_git=mirrored_manifest_git) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 166 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 167 | # If standalone_manifest is set, mark the project as "standalone" -- we'll |
| 168 | # still do much of the manifests.git set up, but will avoid actual syncs to |
| 169 | # a remote. |
| 170 | standalone_manifest = False |
| 171 | if opt.standalone_manifest: |
| 172 | standalone_manifest = True |
Jack Neus | 7649159 | 2021-10-11 17:20:39 +0000 | [diff] [blame] | 173 | m.config.SetString('manifest.standalone', opt.manifest_url) |
| 174 | elif not opt.manifest_url and not opt.manifest_branch: |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 175 | # If -u is set and --standalone-manifest is not, then we're not in |
| 176 | # standalone mode. Otherwise, use config to infer what we were in the last |
| 177 | # init. |
| 178 | standalone_manifest = bool(m.config.GetString('manifest.standalone')) |
Jack Neus | 7649159 | 2021-10-11 17:20:39 +0000 | [diff] [blame] | 179 | if not standalone_manifest: |
| 180 | m.config.SetString('manifest.standalone', None) |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 181 | |
Nasser Grainawi | d92464e | 2019-05-21 10:41:35 -0600 | [diff] [blame] | 182 | self._ConfigureDepth(opt) |
| 183 | |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 184 | # Set the remote URL before the remote branch as we might need it below. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 185 | if opt.manifest_url: |
| 186 | r = m.GetRemote(m.remote.name) |
| 187 | r.url = opt.manifest_url |
| 188 | r.ResetFetch() |
| 189 | r.Save() |
| 190 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 191 | if not standalone_manifest: |
| 192 | if opt.manifest_branch: |
| 193 | if opt.manifest_branch == 'HEAD': |
| 194 | opt.manifest_branch = m.ResolveRemoteHead() |
| 195 | if opt.manifest_branch is None: |
| 196 | print('fatal: unable to resolve HEAD', file=sys.stderr) |
| 197 | sys.exit(1) |
| 198 | m.revisionExpr = opt.manifest_branch |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 199 | else: |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 200 | if is_new: |
| 201 | default_branch = m.ResolveRemoteHead() |
| 202 | if default_branch is None: |
| 203 | # If the remote doesn't have HEAD configured, default to master. |
| 204 | default_branch = 'refs/heads/master' |
| 205 | m.revisionExpr = default_branch |
| 206 | else: |
| 207 | m.PreSync() |
Mike Frysinger | 50a81de | 2020-09-06 15:51:21 -0400 | [diff] [blame] | 208 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 209 | groups = re.split(r'[,\s]+', opt.groups) |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 210 | all_platforms = ['linux', 'darwin', 'windows'] |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 211 | platformize = lambda x: 'platform-' + x |
| 212 | if opt.platform == 'auto': |
| 213 | if (not opt.mirror and |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 214 | not m.config.GetString('repo.mirror') == 'true'): |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 215 | groups.append(platformize(platform.system().lower())) |
| 216 | elif opt.platform == 'all': |
Colin Cross | 5465727 | 2012-04-23 13:39:48 -0700 | [diff] [blame] | 217 | groups.extend(map(platformize, all_platforms)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 218 | elif opt.platform in all_platforms: |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 219 | groups.append(platformize(opt.platform)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 220 | elif opt.platform != 'none': |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 221 | print('fatal: invalid platform flag', file=sys.stderr) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 222 | sys.exit(1) |
| 223 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 224 | groups = [x for x in groups if x] |
| 225 | groupstr = ','.join(groups) |
Raman Tenneti | 080877e | 2021-03-09 15:19:06 -0800 | [diff] [blame] | 226 | if opt.platform == 'auto' and groupstr == self.manifest.GetDefaultGroupsStr(): |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 227 | groupstr = None |
| 228 | m.config.SetString('manifest.groups', groupstr) |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 229 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 230 | if opt.reference: |
| 231 | m.config.SetString('repo.reference', opt.reference) |
| 232 | |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 233 | if opt.dissociate: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 234 | m.config.SetBoolean('repo.dissociate', opt.dissociate) |
Nikolai Merinov | 09f0abb | 2018-10-19 15:07:05 +0500 | [diff] [blame] | 235 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 236 | if opt.worktree: |
| 237 | if opt.mirror: |
| 238 | print('fatal: --mirror and --worktree are incompatible', |
| 239 | file=sys.stderr) |
| 240 | sys.exit(1) |
| 241 | if opt.submodules: |
| 242 | print('fatal: --submodules and --worktree are incompatible', |
| 243 | file=sys.stderr) |
| 244 | sys.exit(1) |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 245 | m.config.SetBoolean('repo.worktree', opt.worktree) |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 246 | if is_new: |
| 247 | m.use_git_worktrees = True |
| 248 | print('warning: --worktree is experimental!', file=sys.stderr) |
| 249 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 250 | if opt.archive: |
| 251 | if is_new: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 252 | m.config.SetBoolean('repo.archive', opt.archive) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 253 | else: |
| 254 | print('fatal: --archive is only supported when initializing a new ' |
| 255 | 'workspace.', file=sys.stderr) |
| 256 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 257 | 'in another location.', file=sys.stderr) |
| 258 | sys.exit(1) |
| 259 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 260 | if opt.mirror: |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 261 | if is_new: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 262 | m.config.SetBoolean('repo.mirror', opt.mirror) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 263 | else: |
David Pursehouse | 2547098 | 2012-11-21 14:41:58 +0900 | [diff] [blame] | 264 | print('fatal: --mirror is only supported when initializing a new ' |
| 265 | 'workspace.', file=sys.stderr) |
| 266 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 267 | 'in another location.', file=sys.stderr) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 268 | sys.exit(1) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 269 | |
Raman Tenneti | 6a2f4fb | 2021-04-02 10:55:33 -0700 | [diff] [blame] | 270 | if opt.partial_clone is not None: |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 271 | if opt.mirror: |
| 272 | print('fatal: --mirror and --partial-clone are mutually exclusive', |
| 273 | file=sys.stderr) |
| 274 | sys.exit(1) |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 275 | m.config.SetBoolean('repo.partialclone', opt.partial_clone) |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 276 | if opt.clone_filter: |
| 277 | m.config.SetString('repo.clonefilter', opt.clone_filter) |
Raman Tenneti | 6a2f4fb | 2021-04-02 10:55:33 -0700 | [diff] [blame] | 278 | elif m.config.GetBoolean('repo.partialclone'): |
| 279 | opt.clone_filter = m.config.GetString('repo.clonefilter') |
Xin Li | 745be2e | 2019-06-03 11:24:30 -0700 | [diff] [blame] | 280 | else: |
| 281 | opt.clone_filter = None |
| 282 | |
Raman Tenneti | f32f243 | 2021-04-12 20:57:25 -0700 | [diff] [blame] | 283 | if opt.partial_clone_exclude is not None: |
| 284 | m.config.SetString('repo.partialcloneexclude', opt.partial_clone_exclude) |
| 285 | |
Xin Li | d79a4bc | 2020-05-20 16:03:45 -0700 | [diff] [blame] | 286 | if opt.clone_bundle is None: |
| 287 | opt.clone_bundle = False if opt.partial_clone else True |
| 288 | else: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 289 | m.config.SetBoolean('repo.clonebundle', opt.clone_bundle) |
Xin Li | d79a4bc | 2020-05-20 16:03:45 -0700 | [diff] [blame] | 290 | |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 291 | if opt.submodules: |
Mike Frysinger | 38867fb | 2021-02-09 23:14:41 -0500 | [diff] [blame] | 292 | m.config.SetBoolean('repo.submodules', opt.submodules) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 293 | |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 294 | if opt.use_superproject is not None: |
| 295 | m.config.SetBoolean('repo.superproject', opt.use_superproject) |
| 296 | |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 297 | if standalone_manifest: |
| 298 | if is_new: |
| 299 | manifest_name = 'default.xml' |
Jack Neus | 1988385 | 2021-10-25 22:38:44 +0000 | [diff] [blame] | 300 | manifest_data = fetch.fetch_file(opt.manifest_url, verbose=opt.verbose) |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 301 | dest = os.path.join(m.worktree, manifest_name) |
| 302 | os.makedirs(os.path.dirname(dest), exist_ok=True) |
| 303 | with open(dest, 'wb') as f: |
| 304 | f.write(manifest_data) |
| 305 | return |
| 306 | |
Mike Frysinger | edd3d45 | 2020-02-21 23:55:07 -0500 | [diff] [blame] | 307 | if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, verbose=opt.verbose, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 308 | clone_bundle=opt.clone_bundle, |
David Pursehouse | abdf750 | 2020-02-12 14:58:39 +0900 | [diff] [blame] | 309 | current_branch_only=opt.current_branch_only, |
Mike Frysinger | c58ec4d | 2020-02-17 14:36:08 -0500 | [diff] [blame] | 310 | tags=opt.tags, submodules=opt.submodules, |
Raman Tenneti | f32f243 | 2021-04-12 20:57:25 -0700 | [diff] [blame] | 311 | clone_filter=opt.clone_filter, |
| 312 | partial_clone_exclude=self.manifest.PartialCloneExclude): |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 313 | r = m.GetRemote(m.remote.name) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 314 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 315 | |
| 316 | # Better delete the manifest git dir if we created it; otherwise next |
| 317 | # time (when user fixes problems) we won't go through the "is_new" logic. |
| 318 | if is_new: |
Renaud Paquay | a65adf7 | 2016-11-03 10:37:53 -0700 | [diff] [blame] | 319 | platform_utils.rmtree(m.gitdir) |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 320 | sys.exit(1) |
| 321 | |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 322 | if opt.manifest_branch: |
Martin Kelly | 224a31a | 2017-07-10 14:46:25 -0700 | [diff] [blame] | 323 | m.MetaBranchSwitch(submodules=opt.submodules) |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 324 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 325 | syncbuf = SyncBuffer(m.config) |
Martin Kelly | e4e94d2 | 2017-03-21 16:05:12 -0700 | [diff] [blame] | 326 | m.Sync_LocalHalf(syncbuf, submodules=opt.submodules) |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 327 | syncbuf.Finish() |
| 328 | |
Shawn O. Pearce | df01883 | 2009-03-17 08:15:27 -0700 | [diff] [blame] | 329 | if is_new or m.CurrentBranch is None: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 330 | if not m.StartBranch('default'): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 331 | print('fatal: cannot create default in manifest', file=sys.stderr) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 332 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 333 | |
| 334 | def _LinkManifest(self, name): |
| 335 | if not name: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 336 | print('fatal: manifest name (-m) is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 337 | sys.exit(1) |
| 338 | |
| 339 | try: |
| 340 | self.manifest.Link(name) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 341 | except ManifestParseError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 342 | print("fatal: manifest '%s' not available" % name, file=sys.stderr) |
| 343 | print('fatal: %s' % str(e), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 344 | sys.exit(1) |
| 345 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 346 | def _Prompt(self, prompt, value): |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 347 | print('%-10s [%s]: ' % (prompt, value), end='') |
| 348 | # TODO: When we require Python 3, use flush=True w/print above. |
| 349 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 350 | a = sys.stdin.readline().strip() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 351 | if a == '': |
| 352 | return value |
| 353 | return a |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 354 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 355 | def _ShouldConfigureUser(self, opt): |
Mike Frysinger | 8c1e9cb | 2020-09-06 14:53:18 -0400 | [diff] [blame] | 356 | gc = self.client.globalConfig |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 357 | mp = self.manifest.manifestProject |
| 358 | |
| 359 | # If we don't have local settings, get from global. |
| 360 | if not mp.config.Has('user.name') or not mp.config.Has('user.email'): |
| 361 | if not gc.Has('user.name') or not gc.Has('user.email'): |
| 362 | return True |
| 363 | |
| 364 | mp.config.SetString('user.name', gc.GetString('user.name')) |
| 365 | mp.config.SetString('user.email', gc.GetString('user.email')) |
| 366 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 367 | if not opt.quiet: |
| 368 | print() |
| 369 | print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'), |
| 370 | mp.config.GetString('user.email'))) |
| 371 | print("If you want to change this, please re-run 'repo init' with --config-name") |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 372 | return False |
| 373 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 374 | def _ConfigureUser(self, opt): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 375 | mp = self.manifest.manifestProject |
| 376 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 377 | while True: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 378 | if not opt.quiet: |
| 379 | print() |
David Pursehouse | 54a4e60 | 2020-02-12 14:31:05 +0900 | [diff] [blame] | 380 | name = self._Prompt('Your Name', mp.UserName) |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 381 | email = self._Prompt('Your Email', mp.UserEmail) |
| 382 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 383 | if not opt.quiet: |
| 384 | print() |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 385 | print('Your identity is: %s <%s>' % (name, email)) |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 386 | print('is this correct [y/N]? ', end='') |
| 387 | # TODO: When we require Python 3, use flush=True w/print above. |
| 388 | sys.stdout.flush() |
David Pursehouse | fc24124 | 2012-11-14 09:19:39 +0900 | [diff] [blame] | 389 | a = sys.stdin.readline().strip().lower() |
Nico Sallembien | 6d7508b | 2010-04-01 11:03:53 -0700 | [diff] [blame] | 390 | if a in ('yes', 'y', 't', 'true'): |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 391 | break |
| 392 | |
| 393 | if name != mp.UserName: |
| 394 | mp.config.SetString('user.name', name) |
| 395 | if email != mp.UserEmail: |
| 396 | mp.config.SetString('user.email', email) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 397 | |
| 398 | def _HasColorSet(self, gc): |
| 399 | for n in ['ui', 'diff', 'status']: |
| 400 | if gc.Has('color.%s' % n): |
| 401 | return True |
| 402 | return False |
| 403 | |
| 404 | def _ConfigureColor(self): |
Mike Frysinger | 8c1e9cb | 2020-09-06 14:53:18 -0400 | [diff] [blame] | 405 | gc = self.client.globalConfig |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 406 | if self._HasColorSet(gc): |
| 407 | return |
| 408 | |
| 409 | class _Test(Coloring): |
| 410 | def __init__(self): |
| 411 | Coloring.__init__(self, gc, 'test color display') |
| 412 | self._on = True |
| 413 | out = _Test() |
| 414 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 415 | print() |
| 416 | print("Testing colorized output (for 'repo diff', 'repo status'):") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 417 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 418 | for c in ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 419 | out.write(' ') |
| 420 | out.printer(fg=c)(' %-6s ', c) |
| 421 | out.write(' ') |
| 422 | out.printer(fg='white', bg='black')(' %s ' % 'white') |
| 423 | out.nl() |
| 424 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 425 | for c in ['bold', 'dim', 'ul', 'reverse']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 426 | out.write(' ') |
| 427 | out.printer(fg='black', attr=c)(' %-6s ', c) |
| 428 | out.nl() |
| 429 | |
Mike Frysinger | ab85fe7 | 2019-07-04 17:35:11 -0400 | [diff] [blame] | 430 | print('Enable color display in this user account (y/N)? ', end='') |
| 431 | # TODO: When we require Python 3, use flush=True w/print above. |
| 432 | sys.stdout.flush() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 433 | a = sys.stdin.readline().strip().lower() |
| 434 | if a in ('y', 'yes', 't', 'true', 'on'): |
| 435 | gc.SetString('color.ui', 'auto') |
| 436 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 437 | def _ConfigureDepth(self, opt): |
| 438 | """Configure the depth we'll sync down. |
| 439 | |
| 440 | Args: |
| 441 | opt: Options from optparse. We care about opt.depth. |
| 442 | """ |
| 443 | # Opt.depth will be non-None if user actually passed --depth to repo init. |
| 444 | if opt.depth is not None: |
| 445 | if opt.depth > 0: |
| 446 | # Positive values will set the depth. |
| 447 | depth = str(opt.depth) |
| 448 | else: |
| 449 | # Negative numbers will clear the depth; passing None to SetString |
| 450 | # will do that. |
| 451 | depth = None |
| 452 | |
| 453 | # We store the depth in the main manifest project. |
| 454 | self.manifest.manifestProject.config.SetString('repo.depth', depth) |
| 455 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 456 | def _DisplayResult(self, opt): |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 457 | if self.manifest.IsMirror: |
| 458 | init_type = 'mirror ' |
| 459 | else: |
| 460 | init_type = '' |
| 461 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 462 | if not opt.quiet: |
| 463 | print() |
| 464 | print('repo %shas been initialized in %s' % |
| 465 | (init_type, self.manifest.topdir)) |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 466 | |
| 467 | current_dir = os.getcwd() |
| 468 | if current_dir != self.manifest.topdir: |
David Pursehouse | 3576596 | 2013-01-29 09:49:48 +0900 | [diff] [blame] | 469 | print('If this is not the directory in which you want to initialize ' |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 470 | 'repo, please run:') |
| 471 | print(' rm -r %s/.repo' % self.manifest.topdir) |
| 472 | print('and try again.') |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 473 | |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 474 | def ValidateOptions(self, opt, args): |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 475 | if opt.reference: |
Samuel Holland | baa0009 | 2018-01-22 10:57:29 -0600 | [diff] [blame] | 476 | opt.reference = os.path.expanduser(opt.reference) |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 477 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 478 | # Check this here, else manifest will be tagged "not new" and init won't be |
| 479 | # possible anymore without removing the .repo/manifests directory. |
Raman Tenneti | 6bd89aa | 2021-11-16 11:48:09 -0800 | [diff] [blame] | 480 | if opt.mirror: |
| 481 | if opt.archive: |
| 482 | self.OptionParser.error('--mirror and --archive cannot be used ' |
| 483 | 'together.') |
| 484 | if opt.use_superproject is not None: |
| 485 | self.OptionParser.error('--mirror and --use-superproject cannot be ' |
| 486 | 'used together.') |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 487 | |
Raman Tenneti | 4a478ed | 2021-11-17 18:38:24 -0800 | [diff] [blame] | 488 | if opt.standalone_manifest and (opt.manifest_branch or |
| 489 | opt.manifest_name != 'default.xml'): |
Jack Neus | c474c9c | 2021-07-26 23:08:54 +0000 | [diff] [blame] | 490 | self.OptionParser.error('--manifest-branch and --manifest-name cannot' |
| 491 | ' be used with --standalone-manifest.') |
| 492 | |
Mike Frysinger | 0578ebf | 2020-08-27 01:50:12 -0400 | [diff] [blame] | 493 | if args: |
Mike Frysinger | 401c6f0 | 2021-02-18 15:20:15 -0500 | [diff] [blame] | 494 | if opt.manifest_url: |
| 495 | self.OptionParser.error( |
| 496 | '--manifest-url option and URL argument both specified: only use ' |
| 497 | 'one to select the manifest URL.') |
| 498 | |
| 499 | opt.manifest_url = args.pop(0) |
| 500 | |
| 501 | if args: |
| 502 | self.OptionParser.error('too many arguments to init') |
Mike Frysinger | 0578ebf | 2020-08-27 01:50:12 -0400 | [diff] [blame] | 503 | |
Mike Frysinger | ae6cb08 | 2019-08-27 01:10:59 -0400 | [diff] [blame] | 504 | def Execute(self, opt, args): |
Mike Frysinger | 82caef6 | 2020-02-11 18:51:08 -0500 | [diff] [blame] | 505 | git_require(MIN_GIT_VERSION_HARD, fail=True) |
| 506 | if not git_require(MIN_GIT_VERSION_SOFT): |
| 507 | print('repo: warning: git-%s+ will soon be required; please upgrade your ' |
| 508 | 'version of git to maintain support.' |
| 509 | % ('.'.join(str(x) for x in MIN_GIT_VERSION_SOFT),), |
| 510 | file=sys.stderr) |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 511 | |
Mike Frysinger | 7936ce8 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 512 | rp = self.manifest.repoProject |
| 513 | |
| 514 | # Handle new --repo-url requests. |
| 515 | if opt.repo_url: |
| 516 | remote = rp.GetRemote('origin') |
| 517 | remote.url = opt.repo_url |
| 518 | remote.Save() |
| 519 | |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 520 | # Handle new --repo-rev requests. |
| 521 | if opt.repo_rev: |
| 522 | wrapper = Wrapper() |
Mike Frysinger | 4aa8584 | 2022-01-25 02:10:28 -0500 | [diff] [blame^] | 523 | try: |
| 524 | remote_ref, rev = wrapper.check_repo_rev( |
| 525 | rp.gitdir, opt.repo_rev, repo_verify=opt.repo_verify, quiet=opt.quiet) |
| 526 | except wrapper.CloneFailure: |
| 527 | print('fatal: double check your --repo-rev setting.', file=sys.stderr) |
| 528 | sys.exit(1) |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 529 | branch = rp.GetBranch('default') |
| 530 | branch.merge = remote_ref |
Mike Frysinger | 5e2f32f | 2020-12-05 22:57:19 -0500 | [diff] [blame] | 531 | rp.work_git.reset('--hard', rev) |
Mike Frysinger | 3599cc3 | 2020-02-29 02:53:41 -0500 | [diff] [blame] | 532 | branch.Save() |
| 533 | |
Mike Frysinger | 979d5bd | 2020-02-09 02:28:34 -0500 | [diff] [blame] | 534 | if opt.worktree: |
| 535 | # Older versions of git supported worktree, but had dangerous gc bugs. |
| 536 | git_require((2, 15, 0), fail=True, msg='git gc worktree corruption') |
| 537 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 538 | self._SyncManifest(opt) |
| 539 | self._LinkManifest(opt.manifest_name) |
| 540 | |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 541 | if self.manifest.manifestProject.config.GetBoolean('repo.superproject'): |
Raman Tenneti | ef99ec0 | 2021-03-04 10:29:40 -0800 | [diff] [blame] | 542 | self._CloneSuperproject(opt) |
Raman Tenneti | 21dce3d | 2021-02-09 00:26:31 -0800 | [diff] [blame] | 543 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 544 | if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror: |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 545 | if opt.config_name or self._ShouldConfigureUser(opt): |
| 546 | self._ConfigureUser(opt) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 547 | self._ConfigureColor() |
| 548 | |
Mike Frysinger | 0b88891 | 2020-02-21 22:48:40 -0500 | [diff] [blame] | 549 | self._DisplayResult(opt) |