bundle.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. # bundle.py -- Bundle format support
  2. # Copyright (C) 2020 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Bundle format support.
  21. """
  22. from typing import Dict, List, Tuple, Optional, Union, Sequence
  23. from .pack import PackData, write_pack_data
  24. class Bundle:
  25. version: Optional[int] = None
  26. capabilities: Dict[str, str] = {}
  27. prerequisites: List[Tuple[bytes, str]] = []
  28. references: Dict[str, bytes] = {}
  29. pack_data: Union[PackData, Sequence[bytes]] = []
  30. def __repr__(self):
  31. return (f"<{type(self).__name__}(version={self.version}, "
  32. f"capabilities={self.capabilities}, "
  33. f"prerequisites={self.prerequisites}, "
  34. f"references={self.references})>")
  35. def __eq__(self, other):
  36. if not isinstance(other, type(self)):
  37. return False
  38. if self.version != other.version:
  39. return False
  40. if self.capabilities != other.capabilities:
  41. return False
  42. if self.prerequisites != other.prerequisites:
  43. return False
  44. if self.references != other.references:
  45. return False
  46. if self.pack_data != other.pack_data:
  47. return False
  48. return True
  49. def _read_bundle(f, version):
  50. capabilities = {}
  51. prerequisites = []
  52. references = {}
  53. line = f.readline()
  54. if version >= 3:
  55. while line.startswith(b"@"):
  56. line = line[1:].rstrip(b"\n")
  57. try:
  58. key, value = line.split(b"=", 1)
  59. except ValueError:
  60. key = line
  61. value = None
  62. else:
  63. value = value.decode("utf-8")
  64. capabilities[key.decode("utf-8")] = value
  65. line = f.readline()
  66. while line.startswith(b"-"):
  67. (obj_id, comment) = line[1:].rstrip(b"\n").split(b" ", 1)
  68. prerequisites.append((obj_id, comment.decode("utf-8")))
  69. line = f.readline()
  70. while line != b"\n":
  71. (obj_id, ref) = line.rstrip(b"\n").split(b" ", 1)
  72. references[ref] = obj_id
  73. line = f.readline()
  74. pack_data = PackData.from_file(f)
  75. ret = Bundle()
  76. ret.references = references
  77. ret.capabilities = capabilities
  78. ret.prerequisites = prerequisites
  79. ret.pack_data = pack_data
  80. ret.version = version
  81. return ret
  82. def read_bundle(f):
  83. """Read a bundle file."""
  84. firstline = f.readline()
  85. if firstline == b"# v2 git bundle\n":
  86. return _read_bundle(f, 2)
  87. if firstline == b"# v3 git bundle\n":
  88. return _read_bundle(f, 3)
  89. raise AssertionError("unsupported bundle format header: %r" % firstline)
  90. def write_bundle(f, bundle):
  91. version = bundle.version
  92. if version is None:
  93. if bundle.capabilities:
  94. version = 3
  95. else:
  96. version = 2
  97. if version == 2:
  98. f.write(b"# v2 git bundle\n")
  99. elif version == 3:
  100. f.write(b"# v3 git bundle\n")
  101. else:
  102. raise AssertionError("unknown version %d" % version)
  103. if version == 3:
  104. for key, value in bundle.capabilities.items():
  105. f.write(b"@" + key.encode("utf-8"))
  106. if value is not None:
  107. f.write(b"=" + value.encode("utf-8"))
  108. f.write(b"\n")
  109. for (obj_id, comment) in bundle.prerequisites:
  110. f.write(b"-%s %s\n" % (obj_id, comment.encode("utf-8")))
  111. for ref, obj_id in bundle.references.items():
  112. f.write(b"%s %s\n" % (obj_id, ref))
  113. f.write(b"\n")
  114. write_pack_data(f.write, num_records=len(bundle.pack_data), records=bundle.pack_data.iter_unpacked())