manifest.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #
  2. # Copyright (C) 2009 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. import os
  16. from editor import Editor
  17. from git_config import GitConfig
  18. from project import MetaProject
  19. class Manifest(object):
  20. """any manifest format"""
  21. def __init__(self, repodir):
  22. self.repodir = os.path.abspath(repodir)
  23. self.topdir = os.path.dirname(self.repodir)
  24. self.globalConfig = GitConfig.ForUser()
  25. Editor.globalConfig = self.globalConfig
  26. self.repoProject = MetaProject(self, 'repo',
  27. gitdir = os.path.join(repodir, 'repo/.git'),
  28. worktree = os.path.join(repodir, 'repo'))
  29. @property
  30. def IsMirror(self):
  31. return self.manifestProject.config.GetBoolean('repo.mirror')
  32. @property
  33. def projects(self):
  34. return {}
  35. def SetMRefs(self, project):
  36. pass