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 | |
| 16 | import os |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame^] | 17 | import re |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 18 | import shutil |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 19 | import sys |
| 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 |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -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 |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 26 | from git_command import git_require, MIN_GIT_VERSION |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 27 | |
Shawn O. Pearce | c95583b | 2009-03-03 17:47:06 -0800 | [diff] [blame] | 28 | class Init(InteractiveCommand, MirrorSafeCommand): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 29 | common = True |
| 30 | helpSummary = "Initialize repo in the current directory" |
| 31 | helpUsage = """ |
| 32 | %prog [options] |
| 33 | """ |
| 34 | helpDescription = """ |
| 35 | The '%prog' command is run once to install and initialize repo. |
| 36 | The latest repo source code and manifest collection is downloaded |
| 37 | from the server and is installed in the .repo/ directory in the |
| 38 | current working directory. |
| 39 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 40 | The optional -b argument can be used to select the manifest branch |
| 41 | to checkout and use. If no branch is specified, master is assumed. |
| 42 | |
| 43 | The optional -m argument can be used to specify an alternate manifest |
| 44 | to be used. If no manifest is specified, the manifest default.xml |
| 45 | will be used. |
| 46 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 47 | The --reference option can be used to point to a directory that |
| 48 | has the content of a --mirror sync. This will make the working |
| 49 | directory use as much data as possible from the local reference |
| 50 | directory when fetching from the server. This will make the sync |
| 51 | go a lot faster by reducing data traffic on the network. |
| 52 | |
| 53 | |
Shawn O. Pearce | 77bb4af | 2009-04-18 11:33:32 -0700 | [diff] [blame] | 54 | Switching Manifest Branches |
| 55 | --------------------------- |
| 56 | |
| 57 | To switch to another manifest branch, `repo init -b otherbranch` |
| 58 | may be used in an existing client. However, as this only updates the |
| 59 | manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary |
| 60 | to update the working directory files. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 61 | """ |
| 62 | |
| 63 | def _Options(self, p): |
| 64 | # Logging |
| 65 | g = p.add_option_group('Logging options') |
| 66 | g.add_option('-q', '--quiet', |
| 67 | dest="quiet", action="store_true", default=False, |
| 68 | help="be quiet") |
| 69 | |
| 70 | # Manifest |
| 71 | g = p.add_option_group('Manifest options') |
| 72 | g.add_option('-u', '--manifest-url', |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 73 | dest='manifest_url', |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 74 | help='manifest repository location', metavar='URL') |
| 75 | g.add_option('-b', '--manifest-branch', |
| 76 | dest='manifest_branch', |
| 77 | help='manifest branch or revision', metavar='REVISION') |
| 78 | g.add_option('-m', '--manifest-name', |
| 79 | dest='manifest_name', default='default.xml', |
| 80 | help='initial manifest file', metavar='NAME.xml') |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 81 | g.add_option('--mirror', |
| 82 | dest='mirror', action='store_true', |
| 83 | help='mirror the forrest') |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 84 | g.add_option('--reference', |
| 85 | dest='reference', |
| 86 | help='location of mirror directory', metavar='DIR') |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 87 | g.add_option('--depth', type='int', default=None, |
| 88 | dest='depth', |
| 89 | help='create a shallow clone with given depth; see git clone') |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 90 | g.add_option('-g', '--groups', |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame^] | 91 | dest='groups', default='default', |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 92 | help='restrict manifest projects to ones with a specified group', |
| 93 | metavar='GROUP') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 94 | |
| 95 | # Tool |
Shawn O. Pearce | fd89b67 | 2009-04-18 11:28:57 -0700 | [diff] [blame] | 96 | g = p.add_option_group('repo Version options') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 97 | g.add_option('--repo-url', |
| 98 | dest='repo_url', |
| 99 | help='repo repository location', metavar='URL') |
| 100 | g.add_option('--repo-branch', |
| 101 | dest='repo_branch', |
| 102 | help='repo branch or revision', metavar='REVISION') |
| 103 | g.add_option('--no-repo-verify', |
| 104 | dest='no_repo_verify', action='store_true', |
| 105 | help='do not verify repo source code') |
| 106 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 107 | # Other |
| 108 | g = p.add_option_group('Other options') |
| 109 | g.add_option('--config-name', |
| 110 | dest='config_name', action="store_true", default=False, |
| 111 | help='Always prompt for name/e-mail') |
| 112 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 113 | def _SyncManifest(self, opt): |
| 114 | m = self.manifest.manifestProject |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 115 | is_new = not m.Exists |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 116 | |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 117 | if is_new: |
Shawn O. Pearce | 34fb20f | 2011-11-30 13:41:02 -0800 | [diff] [blame] | 118 | if not opt.manifest_url: |
| 119 | print >>sys.stderr, 'fatal: manifest url (-u) is required.' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 120 | sys.exit(1) |
| 121 | |
| 122 | if not opt.quiet: |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 123 | print >>sys.stderr, 'Get %s' \ |
| 124 | % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 125 | m._InitGitDir() |
| 126 | |
| 127 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 128 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 129 | else: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 130 | m.revisionExpr = 'refs/heads/master' |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 131 | else: |
| 132 | if opt.manifest_branch: |
Shawn O. Pearce | 3c8dea1 | 2009-05-29 18:38:17 -0700 | [diff] [blame] | 133 | m.revisionExpr = opt.manifest_branch |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 134 | else: |
| 135 | m.PreSync() |
| 136 | |
| 137 | if opt.manifest_url: |
| 138 | r = m.GetRemote(m.remote.name) |
| 139 | r.url = opt.manifest_url |
| 140 | r.ResetFetch() |
| 141 | r.Save() |
| 142 | |
Conley Owens | 971de8e | 2012-04-16 10:36:08 -0700 | [diff] [blame^] | 143 | groups = re.split('[,\s]+', opt.groups) |
| 144 | groups = [x for x in groups if x] |
| 145 | groupstr = ','.join(groups) |
| 146 | if groupstr == 'default': |
| 147 | groupstr = None |
| 148 | m.config.SetString('manifest.groups', groupstr) |
Colin Cross | 5acde75 | 2012-03-28 20:15:45 -0700 | [diff] [blame] | 149 | |
Shawn O. Pearce | 8844338 | 2010-10-08 10:02:09 +0200 | [diff] [blame] | 150 | if opt.reference: |
| 151 | m.config.SetString('repo.reference', opt.reference) |
| 152 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 153 | if opt.mirror: |
Shawn O. Pearce | 5470df6 | 2009-03-09 18:51:58 -0700 | [diff] [blame] | 154 | if is_new: |
| 155 | m.config.SetString('repo.mirror', 'true') |
| 156 | else: |
| 157 | print >>sys.stderr, 'fatal: --mirror not supported on existing client' |
| 158 | sys.exit(1) |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 159 | |
Shawn O. Pearce | f322b9a | 2011-09-19 14:50:58 -0700 | [diff] [blame] | 160 | if not m.Sync_NetworkHalf(is_new=is_new): |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 161 | r = m.GetRemote(m.remote.name) |
| 162 | print >>sys.stderr, 'fatal: cannot obtain manifest %s' % r.url |
Doug Anderson | 2630dd9 | 2011-04-07 13:36:30 -0700 | [diff] [blame] | 163 | |
| 164 | # Better delete the manifest git dir if we created it; otherwise next |
| 165 | # time (when user fixes problems) we won't go through the "is_new" logic. |
| 166 | if is_new: |
| 167 | shutil.rmtree(m.gitdir) |
Shawn O. Pearce | 1fc99f4 | 2009-03-17 08:06:18 -0700 | [diff] [blame] | 168 | sys.exit(1) |
| 169 | |
Shawn O. Pearce | 350cde4 | 2009-04-16 11:21:18 -0700 | [diff] [blame] | 170 | syncbuf = SyncBuffer(m.config) |
| 171 | m.Sync_LocalHalf(syncbuf) |
| 172 | syncbuf.Finish() |
| 173 | |
Shawn O. Pearce | df01883 | 2009-03-17 08:15:27 -0700 | [diff] [blame] | 174 | if is_new or m.CurrentBranch is None: |
Shawn O. Pearce | 0a389e9 | 2009-04-10 16:21:18 -0700 | [diff] [blame] | 175 | if not m.StartBranch('default'): |
| 176 | print >>sys.stderr, 'fatal: cannot create default in manifest' |
| 177 | sys.exit(1) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 178 | |
| 179 | def _LinkManifest(self, name): |
| 180 | if not name: |
| 181 | print >>sys.stderr, 'fatal: manifest name (-m) is required.' |
| 182 | sys.exit(1) |
| 183 | |
| 184 | try: |
| 185 | self.manifest.Link(name) |
| 186 | except ManifestParseError, e: |
| 187 | print >>sys.stderr, "fatal: manifest '%s' not available" % name |
| 188 | print >>sys.stderr, 'fatal: %s' % str(e) |
| 189 | sys.exit(1) |
| 190 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 191 | def _Prompt(self, prompt, value): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 192 | mp = self.manifest.manifestProject |
| 193 | |
| 194 | sys.stdout.write('%-10s [%s]: ' % (prompt, value)) |
| 195 | a = sys.stdin.readline().strip() |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 196 | if a == '': |
| 197 | return value |
| 198 | return a |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 199 | |
Victor Boivie | 841be34 | 2011-04-05 11:31:10 +0200 | [diff] [blame] | 200 | def _ShouldConfigureUser(self): |
| 201 | gc = self.manifest.globalConfig |
| 202 | mp = self.manifest.manifestProject |
| 203 | |
| 204 | # If we don't have local settings, get from global. |
| 205 | if not mp.config.Has('user.name') or not mp.config.Has('user.email'): |
| 206 | if not gc.Has('user.name') or not gc.Has('user.email'): |
| 207 | return True |
| 208 | |
| 209 | mp.config.SetString('user.name', gc.GetString('user.name')) |
| 210 | mp.config.SetString('user.email', gc.GetString('user.email')) |
| 211 | |
| 212 | print '' |
| 213 | print 'Your identity is: %s <%s>' % (mp.config.GetString('user.name'), |
| 214 | mp.config.GetString('user.email')) |
| 215 | print 'If you want to change this, please re-run \'repo init\' with --config-name' |
| 216 | return False |
| 217 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 218 | def _ConfigureUser(self): |
| 219 | mp = self.manifest.manifestProject |
| 220 | |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 221 | while True: |
| 222 | print '' |
| 223 | name = self._Prompt('Your Name', mp.UserName) |
| 224 | email = self._Prompt('Your Email', mp.UserEmail) |
| 225 | |
| 226 | print '' |
| 227 | print 'Your identity is: %s <%s>' % (name, email) |
Mike Frysinger | e931127 | 2011-08-11 15:46:43 -0400 | [diff] [blame] | 228 | sys.stdout.write('is this correct [y/N]? ') |
Nico Sallembien | 6d7508b | 2010-04-01 11:03:53 -0700 | [diff] [blame] | 229 | a = sys.stdin.readline().strip() |
| 230 | if a in ('yes', 'y', 't', 'true'): |
Shawn O. Pearce | 37dbf2b | 2009-07-02 10:53:04 -0700 | [diff] [blame] | 231 | break |
| 232 | |
| 233 | if name != mp.UserName: |
| 234 | mp.config.SetString('user.name', name) |
| 235 | if email != mp.UserEmail: |
| 236 | mp.config.SetString('user.email', email) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 237 | |
| 238 | def _HasColorSet(self, gc): |
| 239 | for n in ['ui', 'diff', 'status']: |
| 240 | if gc.Has('color.%s' % n): |
| 241 | return True |
| 242 | return False |
| 243 | |
| 244 | def _ConfigureColor(self): |
| 245 | gc = self.manifest.globalConfig |
| 246 | if self._HasColorSet(gc): |
| 247 | return |
| 248 | |
| 249 | class _Test(Coloring): |
| 250 | def __init__(self): |
| 251 | Coloring.__init__(self, gc, 'test color display') |
| 252 | self._on = True |
| 253 | out = _Test() |
| 254 | |
| 255 | print '' |
| 256 | print "Testing colorized output (for 'repo diff', 'repo status'):" |
| 257 | |
| 258 | for c in ['black','red','green','yellow','blue','magenta','cyan']: |
| 259 | out.write(' ') |
| 260 | out.printer(fg=c)(' %-6s ', c) |
| 261 | out.write(' ') |
| 262 | out.printer(fg='white', bg='black')(' %s ' % 'white') |
| 263 | out.nl() |
| 264 | |
| 265 | for c in ['bold','dim','ul','reverse']: |
| 266 | out.write(' ') |
| 267 | out.printer(fg='black', attr=c)(' %-6s ', c) |
| 268 | out.nl() |
| 269 | |
Mike Frysinger | e931127 | 2011-08-11 15:46:43 -0400 | [diff] [blame] | 270 | 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] | 271 | a = sys.stdin.readline().strip().lower() |
| 272 | if a in ('y', 'yes', 't', 'true', 'on'): |
| 273 | gc.SetString('color.ui', 'auto') |
| 274 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 275 | def _ConfigureDepth(self, opt): |
| 276 | """Configure the depth we'll sync down. |
| 277 | |
| 278 | Args: |
| 279 | opt: Options from optparse. We care about opt.depth. |
| 280 | """ |
| 281 | # Opt.depth will be non-None if user actually passed --depth to repo init. |
| 282 | if opt.depth is not None: |
| 283 | if opt.depth > 0: |
| 284 | # Positive values will set the depth. |
| 285 | depth = str(opt.depth) |
| 286 | else: |
| 287 | # Negative numbers will clear the depth; passing None to SetString |
| 288 | # will do that. |
| 289 | depth = None |
| 290 | |
| 291 | # We store the depth in the main manifest project. |
| 292 | self.manifest.manifestProject.config.SetString('repo.depth', depth) |
| 293 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 294 | def Execute(self, opt, args): |
Shawn O. Pearce | 2ec00b9 | 2009-06-12 09:32:50 -0700 | [diff] [blame] | 295 | git_require(MIN_GIT_VERSION, fail=True) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 296 | self._SyncManifest(opt) |
| 297 | self._LinkManifest(opt.manifest_name) |
| 298 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 299 | 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] | 300 | if opt.config_name or self._ShouldConfigureUser(): |
| 301 | self._ConfigureUser() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 302 | self._ConfigureColor() |
| 303 | |
Doug Anderson | 30d4529 | 2011-05-04 15:01:04 -0700 | [diff] [blame] | 304 | self._ConfigureDepth(opt) |
| 305 | |
Shawn O. Pearce | 8630f39 | 2009-03-19 10:17:12 -0700 | [diff] [blame] | 306 | if self.manifest.IsMirror: |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 307 | type = 'mirror ' |
| 308 | else: |
| 309 | type = '' |
| 310 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 311 | print '' |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 312 | print 'repo %sinitialized in %s' % (type, self.manifest.topdir) |