manifest.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 error import ManifestParseError
  17. from editor import Editor
  18. from git_config import GitConfig
  19. from project import MetaProject
  20. class Manifest(object):
  21. """any manifest format"""
  22. def __init__(self, repodir):
  23. self.repodir = os.path.abspath(repodir)
  24. self.topdir = os.path.dirname(self.repodir)
  25. self.globalConfig = GitConfig.ForUser()
  26. Editor.globalConfig = self.globalConfig
  27. self.repoProject = MetaProject(self, 'repo',
  28. gitdir = os.path.join(repodir, 'repo/.git'),
  29. worktree = os.path.join(repodir, 'repo'))
  30. @property
  31. def IsMirror(self):
  32. return self.manifestProject.config.GetBoolean('repo.mirror')
  33. @property
  34. def projects(self):
  35. return {}
  36. def InitBranch(self):
  37. pass
  38. def SetMRefs(self, project):
  39. pass
  40. def Upgrade_Local(self, old):
  41. raise ManifestParseError, 'unsupported upgrade path'