summaryrefslogtreecommitdiffstats
path: root/subcmds/gitc_init.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/gitc_init.py')
-rw-r--r--subcmds/gitc_init.py82
1 files changed, 82 insertions, 0 deletions
diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py
new file mode 100644
index 00000000..2726eaec
--- /dev/null
+++ b/subcmds/gitc_init.py
@@ -0,0 +1,82 @@
1#
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
18import sys
19
20import gitc_utils
21from command import GitcAvailableCommand
22from manifest_xml import GitcManifest
23from subcmds import init
24import wrapper
25
26
27class GitcInit(init.Init, GitcAvailableCommand):
28 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
39and installs it in the .repo/directory of the GITC client.
40
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',
59 help='The name of the gitc_client instance to create or modify.')
60
61 def Execute(self, opt, args):
62 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)
65 sys.exit(1)
66 self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
67 gitc_client)
68 super(GitcInit, self).Execute(opt, args)
69
70 manifest_file = self.manifest.manifestFile
71 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)
76 manifest_file = opt.manifest_file
77
78 manifest = GitcManifest(self.repodir, gitc_client)
79 manifest.Override(manifest_file)
80 gitc_utils.generate_gitc_manifest(None, manifest)
81 print('Please run `cd %s` to view your GITC client.' %
82 os.path.join(wrapper.Wrapper().GITC_FS_ROOT_DIR, gitc_client))