782
777
self._ensure_real()
783
778
self._real_repository.create_bundle(target, base, fileobj, format)
786
def control_weaves(self):
788
return self._real_repository.control_weaves
791
781
def get_ancestry(self, revision_id, topo_sorted=True):
792
782
self._ensure_real()
793
783
return self._real_repository.get_ancestry(revision_id, topo_sorted)
796
def get_inventory_weave(self):
798
return self._real_repository.get_inventory_weave()
800
785
def fileids_altered_by_revision_ids(self, revision_ids):
801
786
self._ensure_real()
802
787
return self._real_repository.fileids_altered_by_revision_ids(revision_ids)
1038
1033
self._ensure_real()
1039
1034
return self._real_repository.pack()
1037
def revisions(self):
1038
"""Decorate the real repository for now.
1040
In the short term this should become a real object to intercept graph
1043
In the long term a full blown network facility is needed.
1046
return self._real_repository.revisions
1041
1048
def set_make_working_trees(self, new_value):
1042
1049
self._ensure_real()
1043
1050
self._real_repository.set_make_working_trees(new_value)
1053
def signatures(self):
1054
"""Decorate the real repository for now.
1056
In the long term a full blown network facility is needed to avoid
1057
creating a real repository object locally.
1060
return self._real_repository.signatures
1045
1062
@needs_write_lock
1046
1063
def sign_revision(self, revision_id, gpg_strategy):
1047
1064
self._ensure_real()
1048
1065
return self._real_repository.sign_revision(revision_id, gpg_strategy)
1069
"""Decorate the real repository for now.
1071
In the long term a full blown network facility is needed to avoid
1072
creating a real repository object locally.
1075
return self._real_repository.texts
1050
1077
@needs_read_lock
1051
1078
def get_revisions(self, revision_ids):
1052
1079
self._ensure_real()
1078
1105
self._ensure_real()
1079
1106
return self._real_repository.has_signature_for_revision_id(revision_id)
1081
def get_data_stream_for_search(self, search):
1082
medium = self._client._medium
1083
if medium._is_remote_before((1, 2)):
1085
return self._real_repository.get_data_stream_for_search(search)
1086
REQUEST_NAME = 'Repository.stream_revisions_chunked'
1087
path = self.bzrdir._path_for_remote_call(self._client)
1088
body = self._serialise_search_recipe(search.get_recipe())
1090
result = self._client.call_with_body_bytes_expecting_body(
1091
REQUEST_NAME, (path,), body)
1092
response, protocol = result
1093
except errors.UnknownSmartMethod:
1094
# Server does not support this method, so fall back to VFS.
1095
# Worse, we have to force a disconnection, because the server now
1096
# doesn't realise it has a body on the wire to consume, so the
1097
# only way to recover is to abandon the connection.
1099
'Server is too old for streaming pull, reconnecting. '
1100
'(Upgrade the server to Bazaar 1.2 to avoid this)')
1102
# To avoid having to disconnect repeatedly, we keep track of the
1103
# fact the server doesn't understand this remote method.
1104
medium._remember_remote_is_before((1, 2))
1106
return self._real_repository.get_data_stream_for_search(search)
1108
if response == ('ok',):
1109
return self._deserialise_stream(protocol)
1110
if response == ('NoSuchRevision', ):
1111
# We cannot easily identify the revision that is missing in this
1112
# situation without doing much more network IO. For now, bail.
1113
raise NoSuchRevision(self, "unknown")
1115
raise errors.UnexpectedSmartServerResponse(response)
1117
def _deserialise_stream(self, protocol):
1118
stream = protocol.read_streamed_body()
1119
container_parser = ContainerPushParser()
1120
for bytes in stream:
1121
container_parser.accept_bytes(bytes)
1122
records = container_parser.read_pending_records()
1123
for record_names, record_bytes in records:
1124
if len(record_names) != 1:
1125
# These records should have only one name, and that name
1126
# should be a one-element tuple.
1127
raise errors.SmartProtocolError(
1128
'Repository data stream had invalid record name %r'
1130
name_tuple = record_names[0]
1131
yield name_tuple, record_bytes
1133
def insert_data_stream(self, stream):
1135
self._real_repository.insert_data_stream(stream)
1137
1108
def item_keys_introduced_by(self, revision_ids, _files_pb=None):
1138
1109
self._ensure_real()
1139
1110
return self._real_repository.item_keys_introduced_by(revision_ids,