blob: 2726eaec6f56c870da6849ce2f1d46025b082eaf [file] [log] [blame]
Simran Basi1efc2b42015-08-05 15:04:22 -07001#
2# Copyright (C) 2015 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
16from __future__ import print_function
17import os
Simran Basi1efc2b42015-08-05 15:04:22 -070018import sys
19
Simran Basibdb52712015-08-10 13:23:23 -070020import gitc_utils
Dan Willemsen79360642015-08-31 15:45:06 -070021from command import GitcAvailableCommand
Dan Willemsen5ea32d12015-09-08 13:27:20 -070022from manifest_xml import GitcManifest
Simran Basi1efc2b42015-08-05 15:04:22 -070023from subcmds import init
Dan Willemsen745b4ad2015-10-06 15:23:19 -070024import wrapper
Simran Basi1efc2b42015-08-05 15:04:22 -070025
26
Dan Willemsen79360642015-08-31 15:45:06 -070027class GitcInit(init.Init, GitcAvailableCommand):
Simran Basi1efc2b42015-08-05 15:04:22 -070028 common = True
29 helpSummary = "Initialize a GITC Client."
30 helpUsage = """
31%prog [options] [client name]
32"""
33 helpDescription = """
34The '%prog' command is ran to initialize a new GITC client for use
35with the GITC file system.
36
37This command will setup the client directory, initialize repo, just
38like repo init does, and then downloads the manifest collection
Alexander Bird3c035802015-09-11 13:48:10 -040039and installs it in the .repo/directory of the GITC client.
Simran Basi1efc2b42015-08-05 15:04:22 -070040
41Once this is done, a GITC manifest is generated by pulling the HEAD
42SHA for each project and generates the properly formatted XML file
43and installs it as .manifest in the GITC client directory.
44
45The -c argument is required to specify the GITC client name.
46
47The optional -f argument can be used to specify the manifest file to
48use for this GITC client.
49"""
50
51 def _Options(self, p):
52 super(GitcInit, self)._Options(p)
53 g = p.add_option_group('GITC options')
54 g.add_option('-f', '--manifest-file',
55 dest='manifest_file',
56 help='Optional manifest file to use for this GITC client.')
57 g.add_option('-c', '--gitc-client',
58 dest='gitc_client',
Dan Willemsen745b4ad2015-10-06 15:23:19 -070059 help='The name of the gitc_client instance to create or modify.')
Simran Basi1efc2b42015-08-05 15:04:22 -070060
61 def Execute(self, opt, args):
Dan Willemsen745b4ad2015-10-06 15:23:19 -070062 gitc_client = gitc_utils.parse_clientdir(os.getcwd())
63 if not gitc_client or (opt.gitc_client and gitc_client != opt.gitc_client):
64 print('fatal: Please update your repo command. See go/gitc for instructions.', file=sys.stderr)
Simran Basi1efc2b42015-08-05 15:04:22 -070065 sys.exit(1)
Simran Basi8ce50412015-08-28 14:25:44 -070066 self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
Dan Willemsen745b4ad2015-10-06 15:23:19 -070067 gitc_client)
Simran Basi1efc2b42015-08-05 15:04:22 -070068 super(GitcInit, self).Execute(opt, args)
Simran Basif7a51892015-08-27 11:44:42 -070069
Dan Willemsen5ea32d12015-09-08 13:27:20 -070070 manifest_file = self.manifest.manifestFile
Simran Basi1efc2b42015-08-05 15:04:22 -070071 if opt.manifest_file:
72 if not os.path.exists(opt.manifest_file):
73 print('fatal: Specified manifest file %s does not exist.' %
74 opt.manifest_file)
75 sys.exit(1)
Dan Willemsen5ea32d12015-09-08 13:27:20 -070076 manifest_file = opt.manifest_file
77
Dan Willemsen745b4ad2015-10-06 15:23:19 -070078 manifest = GitcManifest(self.repodir, gitc_client)
Dan Willemsen5ea32d12015-09-08 13:27:20 -070079 manifest.Override(manifest_file)
80 gitc_utils.generate_gitc_manifest(None, manifest)
Simran Basi1efc2b42015-08-05 15:04:22 -070081 print('Please run `cd %s` to view your GITC client.' %
Dan Willemsen745b4ad2015-10-06 15:23:19 -070082 os.path.join(wrapper.Wrapper().GITC_FS_ROOT_DIR, gitc_client))