467d80101a
git-annex info was displaying a message that didn't make sense in
context.
In calcRepoSizes, it seems better to return the information from the
git-annex branch, rather than giving up. Especially since balanced
preferred content uses it, and we can't just give up evaluating a
preferred content expression if git-annex is to be usable in such a
readonly repo.
Commit 6d7ecd9e5d
nobly wanted git-annex
to behave the same with such unmerged branches as it does when it can
merge them. But for the purposes of preferred content, it seems to me
there's a sense that such an unmerged branch is the same as a remote we
have not pulled from. The balanced preferred content will either way
operate under outdated information, and so make not the best choices.
36 lines
1 KiB
Haskell
36 lines
1 KiB
Haskell
{- git-annex repo sizes
|
|
-
|
|
- Copyright 2024 Joey Hess <id@joeyh.name>
|
|
-
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
|
-}
|
|
|
|
module Annex.RepoSize where
|
|
|
|
import Annex.Common
|
|
import Annex.Branch (UnmergedBranches(..))
|
|
import Types.RepoSize
|
|
import Logs.Location
|
|
import Logs.UUID
|
|
|
|
import qualified Data.Map.Strict as M
|
|
|
|
{- Sum up the sizes of all keys in all repositories, from the information
|
|
- in the git-annex branch. Can be slow.
|
|
-
|
|
- The map includes the UUIDs of all known repositories, including
|
|
- repositories that are empty.
|
|
-}
|
|
calcRepoSizes :: Annex (M.Map UUID RepoSize)
|
|
calcRepoSizes = do
|
|
knownuuids <- M.keys <$> uuidDescMap
|
|
let startmap = M.fromList $ map (\u -> (u, RepoSize 0)) knownuuids
|
|
overLocationLogs startmap accum >>= \case
|
|
UnmergedBranches m -> return m
|
|
NoUnmergedBranches m -> return m
|
|
where
|
|
addksz ksz (Just (RepoSize sz)) = Just $ RepoSize $ sz + ksz
|
|
addksz ksz Nothing = Just $ RepoSize ksz
|
|
accum k locs m = return $
|
|
let sz = fromMaybe 0 $ fromKey keySize k
|
|
in foldl' (flip $ M.alter $ addksz sz) m locs
|