bundle.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. from typing import Dict, List, Optional, Sequence, Tuple, Union
  22. from .pack import PackData, write_pack_data
  23. class Bundle:
  24. version: Optional[int]
  25. capabilities: Dict[str, str]
  26. prerequisites: List[Tuple[bytes, str]]
  27. references: Dict[str, bytes]
  28. pack_data: Union[PackData, Sequence[bytes]]
  29. def __repr__(self) -> str:
  30. return (
  31. f"<{type(self).__name__}(version={self.version}, "
  32. f"capabilities={self.capabilities}, "
  33. f"prerequisites={self.prerequisites}, "
  34. f"references={self.references})>"
  35. )
  36. def __eq__(self, other):
  37. if not isinstance(other, type(self)):
  38. return False
  39. if self.version != other.version:
  40. return False
  41. if self.capabilities != other.capabilities:
  42. return False
  43. if self.prerequisites != other.prerequisites:
  44. return False
  45. if self.references != other.references:
  46. return False
  47. if self.pack_data != other.pack_data:
  48. return False
  49. return True
  50. def _read_bundle(f, version):
  51. capabilities = {}
  52. prerequisites = []
  53. references = {}
  54. line = f.readline()
  55. if version >= 3:
  56. while line.startswith(b"@"):
  57. line = line[1:].rstrip(b"\n")
  58. try:
  59. key, value = line.split(b"=", 1)
  60. except ValueError:
  61. key = line
  62. value = None
  63. else:
  64. value = value.decode("utf-8")
  65. capabilities[key.decode("utf-8")] = value
  66. line = f.readline()
  67. while line.startswith(b"-"):
  68. (obj_id, comment) = line[1:].rstrip(b"\n").split(b" ", 1)
  69. prerequisites.append((obj_id, comment.decode("utf-8")))
  70. line = f.readline()
  71. while line != b"\n":
  72. (obj_id, ref) = line.rstrip(b"\n").split(b" ", 1)
  73. references[ref] = obj_id
  74. line = f.readline()
  75. pack_data = PackData.from_file(f)
  76. ret = Bundle()
  77. ret.references = references
  78. ret.capabilities = capabilities
  79. ret.prerequisites = prerequisites
  80. ret.pack_data = pack_data
  81. ret.version = version
  82. return ret
  83. def read_bundle(f):
  84. """Read a bundle file."""
  85. firstline = f.readline()
  86. if firstline == b"# v2 git bundle\n":
  87. return _read_bundle(f, 2)
  88. if firstline == b"# v3 git bundle\n":
  89. return _read_bundle(f, 3)
  90. raise AssertionError(f"unsupported bundle format header: {firstline!r}")
  91. def write_bundle(f, bundle):
  92. version = bundle.version
  93. if version is None:
  94. if bundle.capabilities:
  95. version = 3
  96. else:
  97. version = 2
  98. if version == 2:
  99. f.write(b"# v2 git bundle\n")
  100. elif version == 3:
  101. f.write(b"# v3 git bundle\n")
  102. else:
  103. raise AssertionError("unknown version %d" % version)
  104. if version == 3:
  105. for key, value in bundle.capabilities.items():
  106. f.write(b"@" + key.encode("utf-8"))
  107. if value is not None:
  108. f.write(b"=" + value.encode("utf-8"))
  109. f.write(b"\n")
  110. for obj_id, comment in bundle.prerequisites:
  111. f.write(b"-%s %s\n" % (obj_id, comment.encode("utf-8")))
  112. for ref, obj_id in bundle.references.items():
  113. f.write(b"%s %s\n" % (obj_id, ref))
  114. f.write(b"\n")
  115. write_pack_data(
  116. f.write,
  117. num_records=len(bundle.pack_data),
  118. records=bundle.pack_data.iter_unpacked(),
  119. )