The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 16 | from __future__ import print_function |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 17 | import os |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 18 | import platform |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 19 | import re |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 20 | import shutil |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 21 | import sys |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 22 | |
| 23 | from pyversion import is_python3 |
| 24 | if is_python3(): |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 25 | import urllib.parse |
David Pursehouse | 59bbb58 | 2013-05-17 10:49:33 +0900 | [diff] [blame] | 26 | else: |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 27 | import imp |
| 28 | import urlparse |
| 29 | urllib = imp.new_module('urllib') |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 30 | urllib.parse = urlparse |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 31 | |
| 32 | from color import Coloring |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 33 | from command import InteractiveCommand, MirrorSafeCommand |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 34 | from error import ManifestParseError |
Jonathan Nieder | 9371979 | 2015-03-17 11:29:58 -0700 | [diff] [blame] | 35 | from project import SyncBuffer |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 36 | from git_config import GitConfig |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 37 | from git_command import git_require, MIN_GIT_VERSION |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 38 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 39 | class Init(InteractiveCommand, MirrorSafeCommand): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 40 | common = True |
| 41 | helpSummary = "Initialize repo in the current directory" |
| 42 | helpUsage = """ |
| 43 | %prog [options] |
| 44 | """ |
| 45 | helpDescription = """ |
| 46 | The '%prog' command is run once to install and initialize repo. |
| 47 | The latest repo source code and manifest collection is downloaded |
| 48 | from the server and is installed in the .repo/ directory in the |
| 49 | current working directory. |
| 50 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 51 | The optional -b argument can be used to select the manifest branch |
| 52 | to checkout and use. If no branch is specified, master is assumed. |
| 53 | |
| 54 | The optional -m argument can be used to specify an alternate manifest |
| 55 | to be used. If no manifest is specified, the manifest default.xml |
| 56 | will be used. |
| 57 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 58 | The --reference option can be used to point to a directory that |
| 59 | has the content of a --mirror sync. This will make the working |
| 60 | directory use as much data as possible from the local reference |
| 61 | directory when fetching from the server. This will make the sync |
| 62 | go a lot faster by reducing data traffic on the network. |
| 63 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame^] | 64 | The --no-clone-bundle option disables any attempt to use |
| 65 | $URL/clone.bundle to bootstrap a new Git repository from a |
| 66 | resumeable bundle file on a content delivery network. This |
| 67 | may be necessary if there are problems with the local Python |
| 68 | HTTP client or proxy configuration, but the Git binary works. |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 69 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 70 | Switching Manifest Branches |
| 71 | --------------------------- |
| 72 | |
| 73 | To switch to another manifest branch, `repo init -b otherbranch` |
| 74 | may be used in an existing client. However, as this only updates the |
| 75 | manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary |
| 76 | to update the working directory files. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 77 | """ |
| 78 | |
| 79 | def _Options(self, p): |
| 80 | # Logging |
| 81 | g = p.add_option_group('Logging options') |
| 82 | g.add_option('-q', '--quiet', |
| 83 | dest="quiet", action="store_true", default=False, |
| 84 | help="be quiet") |
| 85 | |
| 86 | # Manifest |
| 87 | g = p.add_option_group('Manifest options') |
| 88 | g.add_option('-u', '--manifest-url', |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 89 | dest='manifest_url', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 90 | help='manifest repository location', metavar='URL') |
| 91 | g.add_option('-b', '--manifest-branch', |
| 92 | dest='manifest_branch', |
| 93 | help='manifest branch or revision', metavar='REVISION') |
| 94 | g.add_option('-m', '--manifest-name', |
| 95 | dest='manifest_name', default='default.xml', |
| 96 | help='initial manifest file', metavar='NAME.xml') |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 97 | g.add_option('--mirror', |
| 98 | dest='mirror', action='store_true', |
David Pursehouse | 3d07da8 | 2012-08-15 14:22:08 +0900 | [diff] [blame] | 99 | help='create a replica of the remote repositories ' |
| 100 | 'rather than a client working directory') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 101 | g.add_option('--reference', |
| 102 | dest='reference', |
| 103 | help='location of mirror directory', metavar='DIR') |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 104 | g.add_option('--depth', type='int', default=None, |
| 105 | dest='depth', |
| 106 | help='create a shallow clone with given depth; see git clone') |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 107 | g.add_option('--archive', |
| 108 | dest='archive', action='store_true', |
| 109 | help='checkout an archive instead of a git repository for ' |
| 110 | 'each project. See git archive.') |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 111 | g.add_option('-g', '--groups', |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 112 | dest='groups', default='default', |
| 113 | help='restrict manifest projects to ones with specified ' |
| 114 | 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]', |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 115 | metavar='GROUP') |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 116 | g.add_option('-p', '--platform', |
| 117 | dest='platform', default='auto', |
Conley Owens | bb1b5f5 | 2012-08-13 13:11:18 -0700 | [diff] [blame] | 118 | help='restrict manifest projects to ones with a specified ' |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 119 | 'platform group [auto|all|none|linux|darwin|...]', |
| 120 | metavar='PLATFORM') |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame^] | 121 | g.add_option('--no-clone-bundle', |
| 122 | dest='no_clone_bundle', action='store_true', |
| 123 | help='disable use of /clone.bundle on HTTP/HTTPS') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 124 | |
| 125 | # Tool |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 126 | g = p.add_option_group('repo Version options') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 127 | g.add_option('--repo-url', |
| 128 | dest='repo_url', |
| 129 | help='repo repository location', metavar='URL') |
| 130 | g.add_option('--repo-branch', |
| 131 | dest='repo_branch', |
| 132 | help='repo branch or revision', metavar='REVISION') |
| 133 | g.add_option('--no-repo-verify', |
| 134 | dest='no_repo_verify', action='store_true', |
| 135 | help='do not verify repo source code') |
| 136 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 137 | # Other |
| 138 | g = p.add_option_group('Other options') |
| 139 | g.add_option('--config-name', |
| 140 | dest='config_name', action="store_true", default=False, |
| 141 | help='Always prompt for name/e-mail') |
| 142 | |
David Pursehouse | 3f5ea0b | 2012-11-17 03:13:09 +0900 | [diff] [blame] | 143 | def _RegisteredEnvironmentOptions(self): |
| 144 | return {'REPO_MANIFEST_URL': 'manifest_url', |
| 145 | 'REPO_MIRROR_LOCATION': 'reference'} |
| 146 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 147 | def _SyncManifest(self, opt): |
| 148 | m = self.manifest.manifestProject |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 149 | is_new = not m.Exists |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 150 | |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 151 | if is_new: |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 152 | if not opt.manifest_url: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 153 | print('fatal: manifest url (-u) is required.', file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 154 | sys.exit(1) |
| 155 | |
| 156 | if not opt.quiet: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 157 | print('Get %s' % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url), |
| 158 | file=sys.stderr) |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 159 | |
| 160 | # The manifest project object doesn't keep track of the path on the |
| 161 | # server where this git is located, so let's save that here. |
| 162 | mirrored_manifest_git = None |
| 163 | if opt.reference: |
Anthony King | 7993f3c | 2015-06-03 17:21:56 +0100 | [diff] [blame] | 164 | manifest_git_path = urllib.parse.urlparse(opt.manifest_url).path[1:] |
Victor Boivie | 2b30e3a | 2012-10-05 12:37:58 +0200 | [diff] [blame] | 165 | mirrored_manifest_git = os.path.join(opt.reference, manifest_git_path) |
| 166 | if not mirrored_manifest_git.endswith(".git"): |
| 167 | mirrored_manifest_git += ".git" |
| 168 | if not os.path.exists(mirrored_manifest_git): |
| 169 | mirrored_manifest_git = os.path.join(opt.reference + '/.repo/manifests.git') |
| 170 | |
| 171 | m._InitGitDir(mirror_git=mirrored_manifest_git) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 172 | |
| 173 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 174 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 175 | else: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 176 | m.revisionExpr = 'refs/heads/master' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 177 | else: |
| 178 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 179 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 180 | else: |
| 181 | m.PreSync() |
| 182 | |
| 183 | if opt.manifest_url: |
| 184 | r = m.GetRemote(m.remote.name) |
| 185 | r.url = opt.manifest_url |
| 186 | r.ResetFetch() |
| 187 | r.Save() |
| 188 | |
David Pursehouse | 1d947b3 | 2012-10-25 12:23:11 +0900 | [diff] [blame] | 189 | groups = re.split(r'[,\s]+', opt.groups) |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 190 | all_platforms = ['linux', 'darwin', 'windows'] |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 191 | platformize = lambda x: 'platform-' + x |
| 192 | if opt.platform == 'auto': |
| 193 | if (not opt.mirror and |
| 194 | not m.config.GetString('repo.mirror') == 'true'): |
| 195 | groups.append(platformize(platform.system().lower())) |
| 196 | elif opt.platform == 'all': |
Colin Cross | 5465727 | 2012-04-23 13:39:48 -0700 | [diff] [blame] | 197 | groups.extend(map(platformize, all_platforms)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 198 | elif opt.platform in all_platforms: |
Pascal Muetschard | c2a64dd | 2015-10-22 13:26:36 -0700 | [diff] [blame] | 199 | groups.append(platformize(opt.platform)) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 200 | elif opt.platform != 'none': |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 201 | print('fatal: invalid platform flag', file=sys.stderr) |
Conley Owens | d21720d | 2012-04-16 11:02:21 -0700 | [diff] [blame] | 202 | sys.exit(1) |
| 203 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 204 | groups = [x for x in groups if x] |
| 205 | groupstr = ','.join(groups) |
David Holmer | 0a1c6a1 | 2012-11-14 19:19:00 -0500 | [diff] [blame] | 206 | if opt.platform == 'auto' and groupstr == 'default,platform-' + platform.system().lower(): |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame] | 207 | groupstr = None |
| 208 | m.config.SetString('manifest.groups', groupstr) |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 209 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 210 | if opt.reference: |
| 211 | m.config.SetString('repo.reference', opt.reference) |
| 212 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 213 | if opt.archive: |
| 214 | if is_new: |
| 215 | m.config.SetString('repo.archive', 'true') |
| 216 | else: |
| 217 | print('fatal: --archive is only supported when initializing a new ' |
| 218 | 'workspace.', file=sys.stderr) |
| 219 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 220 | 'in another location.', file=sys.stderr) |
| 221 | sys.exit(1) |
| 222 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 223 | if opt.mirror: |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 224 | if is_new: |
| 225 | m.config.SetString('repo.mirror', 'true') |
| 226 | else: |
David Pursehouse | 2547098 | 2012-11-21 14:41:58 +0900 | [diff] [blame] | 227 | print('fatal: --mirror is only supported when initializing a new ' |
| 228 | 'workspace.', file=sys.stderr) |
| 229 | print('Either delete the .repo folder in this workspace, or initialize ' |
| 230 | 'in another location.', file=sys.stderr) |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 231 | sys.exit(1) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 232 | |
Hu xiuyun | 9711a98 | 2015-12-11 11:16:41 +0800 | [diff] [blame^] | 233 | if not m.Sync_NetworkHalf(is_new=is_new, quiet=opt.quiet, |
| 234 | clone_bundle=not opt.no_clone_bundle): |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 235 | r = m.GetRemote(m.remote.name) |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 236 | print('fatal: cannot obtain manifest %s' % r.url, file=sys.stderr) |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 237 | |
| 238 | # Better delete the manifest git dir if we created it; otherwise next |
| 239 | # time (when user fixes problems) we won't go through the "is_new" logic. |
| 240 | if is_new: |
| 241 | shutil.rmtree(m.gitdir) |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 242 | sys.exit(1) |
| 243 | |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 244 | if opt.manifest_branch: |
Anthony King | 7bdac71 | 2014-07-16 12:56:40 +0100 | [diff] [blame] | 245 | m.MetaBranchSwitch() |
Florian Vallee | 5d01650 | 2012-06-07 17:19:26 +0200 | [diff] [blame] | 246 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 247 | syncbuf = SyncBuffer(m.config) |
| 248 | m.Sync_LocalHalf(syncbuf) |
| 249 | syncbuf.Finish() |
| 250 | |
Shawn O. Pearce | df01883 | 2009-03-17 08:15:27 -0700 | [diff] [blame] | 251 | if is_new or m.CurrentBranch is None: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 252 | if not m.StartBranch('default'): |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 253 | print('fatal: cannot create default in manifest', file=sys.stderr) |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 254 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 255 | |
| 256 | def _LinkManifest(self, name): |
| 257 | if not name: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 258 | 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] | 259 | sys.exit(1) |
| 260 | |
| 261 | try: |
| 262 | self.manifest.Link(name) |
Sarah Owens | a5be53f | 2012-09-09 15:37:57 -0700 | [diff] [blame] | 263 | except ManifestParseError as e: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 264 | print("fatal: manifest '%s' not available" % name, file=sys.stderr) |
| 265 | print('fatal: %s' % str(e), file=sys.stderr) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 266 | sys.exit(1) |
| 267 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 268 | def _Prompt(self, prompt, value): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 269 | sys.stdout.write('%-10s [%s]: ' % (prompt, value)) |
| 270 | a = sys.stdin.readline().strip() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 271 | if a == '': |
| 272 | return value |
| 273 | return a |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 274 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 275 | def _ShouldConfigureUser(self): |
| 276 | gc = self.manifest.globalConfig |
| 277 | mp = self.manifest.manifestProject |
| 278 | |
| 279 | # If we don't have local settings, get from global. |
| 280 | if not mp.config.Has('user.name') or not mp.config.Has('user.email'): |
| 281 | if not gc.Has('user.name') or not gc.Has('user.email'): |
| 282 | return True |
| 283 | |
| 284 | mp.config.SetString('user.name', gc.GetString('user.name')) |
| 285 | mp.config.SetString('user.email', gc.GetString('user.email')) |
| 286 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 287 | print() |
| 288 | print('Your identity is: %s <%s>' % (mp.config.GetString('user.name'), |
| 289 | mp.config.GetString('user.email'))) |
| 290 | 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] | 291 | return False |
| 292 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 293 | def _ConfigureUser(self): |
| 294 | mp = self.manifest.manifestProject |
| 295 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 296 | while True: |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 297 | print() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 298 | name = self._Prompt('Your Name', mp.UserName) |
| 299 | email = self._Prompt('Your Email', mp.UserEmail) |
| 300 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 301 | print() |
| 302 | print('Your identity is: %s <%s>' % (name, email)) |
Mike Frysinger | e931127 | 2011-08-11 15:46:43 -0400 | [diff] [blame] | 303 | sys.stdout.write('is this correct [y/N]? ') |
David Pursehouse | fc24124 | 2012-11-14 09:19:39 +0900 | [diff] [blame] | 304 | a = sys.stdin.readline().strip().lower() |
Nico Sallembien | 6d7508b | 2010-04-01 11:03:53 -0700 | [diff] [blame] | 305 | if a in ('yes', 'y', 't', 'true'): |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 306 | break |
| 307 | |
| 308 | if name != mp.UserName: |
| 309 | mp.config.SetString('user.name', name) |
| 310 | if email != mp.UserEmail: |
| 311 | mp.config.SetString('user.email', email) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 312 | |
| 313 | def _HasColorSet(self, gc): |
| 314 | for n in ['ui', 'diff', 'status']: |
| 315 | if gc.Has('color.%s' % n): |
| 316 | return True |
| 317 | return False |
| 318 | |
| 319 | def _ConfigureColor(self): |
| 320 | gc = self.manifest.globalConfig |
| 321 | if self._HasColorSet(gc): |
| 322 | return |
| 323 | |
| 324 | class _Test(Coloring): |
| 325 | def __init__(self): |
| 326 | Coloring.__init__(self, gc, 'test color display') |
| 327 | self._on = True |
| 328 | out = _Test() |
| 329 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 330 | print() |
| 331 | print("Testing colorized output (for 'repo diff', 'repo status'):") |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 332 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 333 | 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] | 334 | out.write(' ') |
| 335 | out.printer(fg=c)(' %-6s ', c) |
| 336 | out.write(' ') |
| 337 | out.printer(fg='white', bg='black')(' %s ' % 'white') |
| 338 | out.nl() |
| 339 | |
David Pursehouse | 8f62fb7 | 2012-11-14 12:09:38 +0900 | [diff] [blame] | 340 | for c in ['bold', 'dim', 'ul', 'reverse']: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 341 | out.write(' ') |
| 342 | out.printer(fg='black', attr=c)(' %-6s ', c) |
| 343 | out.nl() |
| 344 | |
Mike Frysinger | e931127 | 2011-08-11 15:46:43 -0400 | [diff] [blame] | 345 | sys.stdout.write('Enable color display in this user account (y/N)? ') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 346 | a = sys.stdin.readline().strip().lower() |
| 347 | if a in ('y', 'yes', 't', 'true', 'on'): |
| 348 | gc.SetString('color.ui', 'auto') |
| 349 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 350 | def _ConfigureDepth(self, opt): |
| 351 | """Configure the depth we'll sync down. |
| 352 | |
| 353 | Args: |
| 354 | opt: Options from optparse. We care about opt.depth. |
| 355 | """ |
| 356 | # Opt.depth will be non-None if user actually passed --depth to repo init. |
| 357 | if opt.depth is not None: |
| 358 | if opt.depth > 0: |
| 359 | # Positive values will set the depth. |
| 360 | depth = str(opt.depth) |
| 361 | else: |
| 362 | # Negative numbers will clear the depth; passing None to SetString |
| 363 | # will do that. |
| 364 | depth = None |
| 365 | |
| 366 | # We store the depth in the main manifest project. |
| 367 | self.manifest.manifestProject.config.SetString('repo.depth', depth) |
| 368 | |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 369 | def _DisplayResult(self): |
| 370 | if self.manifest.IsMirror: |
| 371 | init_type = 'mirror ' |
| 372 | else: |
| 373 | init_type = '' |
| 374 | |
Sarah Owens | cecd1d8 | 2012-11-01 22:59:27 -0700 | [diff] [blame] | 375 | print() |
| 376 | print('repo %shas been initialized in %s' |
| 377 | % (init_type, self.manifest.topdir)) |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 378 | |
| 379 | current_dir = os.getcwd() |
| 380 | if current_dir != self.manifest.topdir: |
David Pursehouse | 3576596 | 2013-01-29 09:49:48 +0900 | [diff] [blame] | 381 | 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] | 382 | 'repo, please run:') |
| 383 | print(' rm -r %s/.repo' % self.manifest.topdir) |
| 384 | print('and try again.') |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 385 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 386 | def Execute(self, opt, args): |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 387 | git_require(MIN_GIT_VERSION, fail=True) |
Victor Boivie | 297e7c6 | 2012-10-05 14:50:05 +0200 | [diff] [blame] | 388 | |
| 389 | if opt.reference: |
| 390 | opt.reference = os.path.expanduser(opt.reference) |
| 391 | |
Julien Campergue | 335f5ef | 2013-10-16 11:02:35 +0200 | [diff] [blame] | 392 | # Check this here, else manifest will be tagged "not new" and init won't be |
| 393 | # possible anymore without removing the .repo/manifests directory. |
| 394 | if opt.archive and opt.mirror: |
| 395 | print('fatal: --mirror and --archive cannot be used together.', |
| 396 | file=sys.stderr) |
| 397 | sys.exit(1) |
| 398 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 399 | self._SyncManifest(opt) |
| 400 | self._LinkManifest(opt.manifest_name) |
| 401 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 402 | if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror: |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 403 | if opt.config_name or self._ShouldConfigureUser(): |
| 404 | self._ConfigureUser() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 405 | self._ConfigureColor() |
| 406 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 407 | self._ConfigureDepth(opt) |
| 408 | |
Yang Zhenhui | 75cc353 | 2012-10-23 15:41:54 +0800 | [diff] [blame] | 409 | self._DisplayResult() |