gitc_init.py 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. from __future__ import print_function
  16. import os
  17. import sys
  18. import gitc_utils
  19. from command import RequiresGitcCommand
  20. from subcmds import init
  21. class GitcInit(init.Init, RequiresGitcCommand):
  22. common = True
  23. helpSummary = "Initialize a GITC Client."
  24. helpUsage = """
  25. %prog [options] [client name]
  26. """
  27. helpDescription = """
  28. The '%prog' command is ran to initialize a new GITC client for use
  29. with the GITC file system.
  30. This command will setup the client directory, initialize repo, just
  31. like repo init does, and then downloads the manifest collection
  32. and installs in in the .repo/directory of the GITC client.
  33. Once this is done, a GITC manifest is generated by pulling the HEAD
  34. SHA for each project and generates the properly formatted XML file
  35. and installs it as .manifest in the GITC client directory.
  36. The -c argument is required to specify the GITC client name.
  37. The optional -f argument can be used to specify the manifest file to
  38. use for this GITC client.
  39. """
  40. def _Options(self, p):
  41. super(GitcInit, self)._Options(p)
  42. g = p.add_option_group('GITC options')
  43. g.add_option('-f', '--manifest-file',
  44. dest='manifest_file',
  45. help='Optional manifest file to use for this GITC client.')
  46. g.add_option('-c', '--gitc-client',
  47. dest='gitc_client',
  48. help='The name for the new gitc_client instance.')
  49. def Execute(self, opt, args):
  50. if not opt.gitc_client:
  51. print('fatal: gitc client (-c) is required', file=sys.stderr)
  52. sys.exit(1)
  53. self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(),
  54. opt.gitc_client)
  55. if not os.path.exists(gitc_utils.get_gitc_manifest_dir()):
  56. os.makedirs(gitc_utils.get_gitc_manifest_dir())
  57. if not os.path.exists(self.client_dir):
  58. os.mkdir(self.client_dir)
  59. super(GitcInit, self).Execute(opt, args)
  60. for name, remote in self.manifest.remotes.iteritems():
  61. remote.fetchUrl = remote.resolvedFetchUrl
  62. if opt.manifest_file:
  63. if not os.path.exists(opt.manifest_file):
  64. print('fatal: Specified manifest file %s does not exist.' %
  65. opt.manifest_file)
  66. sys.exit(1)
  67. self.manifest.Override(opt.manifest_file)
  68. gitc_utils.generate_gitc_manifest(self.client_dir, self.manifest)
  69. print('Please run `cd %s` to view your GITC client.' %
  70. os.path.join(gitc_utils.GITC_FS_ROOT_DIR, opt.gitc_client))