upgrade: drop a quick fix that is not longer necessary
We won't issue bad revlog from topfile anymore.
store: use StoreEntry API instead of parsing filename in largefile
This is more explicit and more robust.
store: use StoreEntry API instead of parsing filename when listing manifestlog
This is more explicit and more robust.
store: use StoreEntry API instead of parsing filename when fixing
issue6528
This is more explicit and more robust.
We also introduce a small output change as it make things simpler and this is a
affecting a debug-command.
store: use StoreEntry API instead of parsing filename in remotefilelog
This is more explicit and more robust.
store: use StoreEntry API instead of parsing filename in narrow
This is more explicit and more robust.
store: add a `target_id` attribute on RevlogStoreEntry
This hold the "target" (file, directory, etc) of a revlog. Having this
available will help a lot of code to avoid direct file path access.
store: actually tag tree manifest revlogs as manifest revlogs
It turn out we have been mislabeling these for a long while. This is now fixed.
store: also gather files per revlog in `topfiles`
This conclude out revlog gathering.
store: also group files by revlog in fncache version of datafiles
One more step.
store: add logic to group revlog file together
For now each file get its own entry, this will help stopping this, soon™.
We use such gathering in the `basicstore` code.
store: change `_walk` return to `(filename, (type, size))`
If we are to group file per revlog, having the filename as the "main key" will be useful. This change will make the following changes clearer.