blob: d1c497c1f285ed4e4b80577a92f98cb8c4a062b0 [file] [log] [blame]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07001#
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
16import os
Conley Owens971de8e2012-04-16 10:36:08 -070017import re
Doug Anderson2630dd92011-04-07 13:36:30 -070018import shutil
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070019import sys
20
21from color import Coloring
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080022from command import InteractiveCommand, MirrorSafeCommand
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070023from error import ManifestParseError
Shawn O. Pearce350cde42009-04-16 11:21:18 -070024from project import SyncBuffer
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -070025from git_config import GitConfig
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -070026from git_command import git_require, MIN_GIT_VERSION
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070027
Shawn O. Pearcec95583b2009-03-03 17:47:06 -080028class Init(InteractiveCommand, MirrorSafeCommand):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070029 common = True
30 helpSummary = "Initialize repo in the current directory"
31 helpUsage = """
32%prog [options]
33"""
34 helpDescription = """
35The '%prog' command is run once to install and initialize repo.
36The latest repo source code and manifest collection is downloaded
37from the server and is installed in the .repo/ directory in the
38current working directory.
39
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070040The optional -b argument can be used to select the manifest branch
41to checkout and use. If no branch is specified, master is assumed.
42
43The optional -m argument can be used to specify an alternate manifest
44to be used. If no manifest is specified, the manifest default.xml
45will be used.
46
Shawn O. Pearce88443382010-10-08 10:02:09 +020047The --reference option can be used to point to a directory that
48has the content of a --mirror sync. This will make the working
49directory use as much data as possible from the local reference
50directory when fetching from the server. This will make the sync
51go a lot faster by reducing data traffic on the network.
52
53
Shawn O. Pearce77bb4af2009-04-18 11:33:32 -070054Switching Manifest Branches
55---------------------------
56
57To switch to another manifest branch, `repo init -b otherbranch`
58may be used in an existing client. However, as this only updates the
59manifest, a subsequent `repo sync` (or `repo sync -d`) is necessary
60to update the working directory files.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070061"""
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. Pearce34fb20f2011-11-30 13:41:02 -080073 dest='manifest_url',
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070074 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. Pearcee284ad12008-11-04 07:37:10 -080081 g.add_option('--mirror',
82 dest='mirror', action='store_true',
83 help='mirror the forrest')
Shawn O. Pearce88443382010-10-08 10:02:09 +020084 g.add_option('--reference',
85 dest='reference',
86 help='location of mirror directory', metavar='DIR')
Doug Anderson30d45292011-05-04 15:01:04 -070087 g.add_option('--depth', type='int', default=None,
88 dest='depth',
89 help='create a shallow clone with given depth; see git clone')
Colin Cross5acde752012-03-28 20:15:45 -070090 g.add_option('-g', '--groups',
Conley Owens971de8e2012-04-16 10:36:08 -070091 dest='groups', default='default',
Colin Cross5acde752012-03-28 20:15:45 -070092 help='restrict manifest projects to ones with a specified group',
93 metavar='GROUP')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070094
95 # Tool
Shawn O. Pearcefd89b672009-04-18 11:28:57 -070096 g = p.add_option_group('repo Version options')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070097 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 Boivie841be342011-04-05 11:31:10 +0200107 # 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 Projectcf31fe92008-10-21 07:00:00 -0700113 def _SyncManifest(self, opt):
114 m = self.manifest.manifestProject
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700115 is_new = not m.Exists
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700116
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700117 if is_new:
Shawn O. Pearce34fb20f2011-11-30 13:41:02 -0800118 if not opt.manifest_url:
119 print >>sys.stderr, 'fatal: manifest url (-u) is required.'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120 sys.exit(1)
121
122 if not opt.quiet:
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -0700123 print >>sys.stderr, 'Get %s' \
124 % GitConfig.ForUser().UrlInsteadOf(opt.manifest_url)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700125 m._InitGitDir()
126
127 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700128 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700129 else:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700130 m.revisionExpr = 'refs/heads/master'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700131 else:
132 if opt.manifest_branch:
Shawn O. Pearce3c8dea12009-05-29 18:38:17 -0700133 m.revisionExpr = opt.manifest_branch
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700134 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 Owens971de8e2012-04-16 10:36:08 -0700143 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 Cross5acde752012-03-28 20:15:45 -0700149
Shawn O. Pearce88443382010-10-08 10:02:09 +0200150 if opt.reference:
151 m.config.SetString('repo.reference', opt.reference)
152
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800153 if opt.mirror:
Shawn O. Pearce5470df62009-03-09 18:51:58 -0700154 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. Pearcee284ad12008-11-04 07:37:10 -0800159
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -0700160 if not m.Sync_NetworkHalf(is_new=is_new):
Shawn O. Pearce1fc99f42009-03-17 08:06:18 -0700161 r = m.GetRemote(m.remote.name)
162 print >>sys.stderr, 'fatal: cannot obtain manifest %s' % r.url
Doug Anderson2630dd92011-04-07 13:36:30 -0700163
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. Pearce1fc99f42009-03-17 08:06:18 -0700168 sys.exit(1)
169
Shawn O. Pearce350cde42009-04-16 11:21:18 -0700170 syncbuf = SyncBuffer(m.config)
171 m.Sync_LocalHalf(syncbuf)
172 syncbuf.Finish()
173
Shawn O. Pearcedf018832009-03-17 08:15:27 -0700174 if is_new or m.CurrentBranch is None:
Shawn O. Pearce0a389e92009-04-10 16:21:18 -0700175 if not m.StartBranch('default'):
176 print >>sys.stderr, 'fatal: cannot create default in manifest'
177 sys.exit(1)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700178
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. Pearce37dbf2b2009-07-02 10:53:04 -0700191 def _Prompt(self, prompt, value):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700192 mp = self.manifest.manifestProject
193
194 sys.stdout.write('%-10s [%s]: ' % (prompt, value))
195 a = sys.stdin.readline().strip()
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700196 if a == '':
197 return value
198 return a
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700199
Victor Boivie841be342011-04-05 11:31:10 +0200200 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 Projectcf31fe92008-10-21 07:00:00 -0700218 def _ConfigureUser(self):
219 mp = self.manifest.manifestProject
220
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700221 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 Frysingere9311272011-08-11 15:46:43 -0400228 sys.stdout.write('is this correct [y/N]? ')
Nico Sallembien6d7508b2010-04-01 11:03:53 -0700229 a = sys.stdin.readline().strip()
230 if a in ('yes', 'y', 't', 'true'):
Shawn O. Pearce37dbf2b2009-07-02 10:53:04 -0700231 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 Projectcf31fe92008-10-21 07:00:00 -0700237
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 Frysingere9311272011-08-11 15:46:43 -0400270 sys.stdout.write('Enable color display in this user account (y/N)? ')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700271 a = sys.stdin.readline().strip().lower()
272 if a in ('y', 'yes', 't', 'true', 'on'):
273 gc.SetString('color.ui', 'auto')
274
Doug Anderson30d45292011-05-04 15:01:04 -0700275 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 Projectcf31fe92008-10-21 07:00:00 -0700294 def Execute(self, opt, args):
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700295 git_require(MIN_GIT_VERSION, fail=True)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700296 self._SyncManifest(opt)
297 self._LinkManifest(opt.manifest_name)
298
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700299 if os.isatty(0) and os.isatty(1) and not self.manifest.IsMirror:
Victor Boivie841be342011-04-05 11:31:10 +0200300 if opt.config_name or self._ShouldConfigureUser():
301 self._ConfigureUser()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700302 self._ConfigureColor()
303
Doug Anderson30d45292011-05-04 15:01:04 -0700304 self._ConfigureDepth(opt)
305
Shawn O. Pearce8630f392009-03-19 10:17:12 -0700306 if self.manifest.IsMirror:
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800307 type = 'mirror '
308 else:
309 type = ''
310
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700311 print ''
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800312 print 'repo %sinitialized in %s' % (type, self.manifest.topdir)