comparison mercurial/filelog.py @ 39232:0a5b20c107a6

repository: remove storedeltachains from ifilestorage The ifilestorage interface was bootstrapped from requirements of callers outside the storage implementation (revlogs). I believe we even made some members public so they could be part of the interface! Historically, the changegroup code was a gross offender when it came to accessing low-level storage primitives. There are a handful of members on the ifilestorage interface that are/were used only for changegroup code. With the recent refactor of changegroup code and the establishment of a formal API on the storage interface for producing revision deltas, the changegroup code is no longer accessing these low-level primitives related to delta generation directly. Instead, things are abstracted away in the storage implementation. This means we can remove elements from the storage interface that are no longer needed. We start with "storedeltachains." We remove it from the interface. Then we make it a private attribute and update all references. .. api:: storedeltachains has been dropped from ifilestorage interface .. api:: storedeltachains on revlog classes is now _storedeltachains Differential Revision: https://phab.mercurial-scm.org/D4227
author Gregory Szorc <gregory.szorc@gmail.com>
date Thu, 09 Aug 2018 16:11:24 -0700
parents b41d023a412a
children 3682b49e0213
comparison
equal deleted inserted replaced
39231:b41d023a412a 39232:0a5b20c107a6
24 censorable=True) 24 censorable=True)
25 # full name of the user visible file, relative to the repository root 25 # full name of the user visible file, relative to the repository root
26 self.filename = path 26 self.filename = path
27 self.index = self._revlog.index 27 self.index = self._revlog.index
28 self.version = self._revlog.version 28 self.version = self._revlog.version
29 self.storedeltachains = self._revlog.storedeltachains
30 self._generaldelta = self._revlog._generaldelta 29 self._generaldelta = self._revlog._generaldelta
31 30
32 def __len__(self): 31 def __len__(self):
33 return len(self._revlog) 32 return len(self._revlog)
34 33