2020-12-22 18:06:40 +00:00
|
|
|
{- git-annex export log (also used to log imports)
|
2017-08-31 19:41:48 +00:00
|
|
|
-
|
2020-12-23 18:27:38 +00:00
|
|
|
- Copyright 2017-2020 Joey Hess <id@joeyh.name>
|
2017-08-31 19:41:48 +00:00
|
|
|
-
|
2019-03-13 19:48:14 +00:00
|
|
|
- Licensed under the GNU AGPL version 3 or higher.
|
2017-08-31 19:41:48 +00:00
|
|
|
-}
|
|
|
|
|
2019-12-09 17:49:05 +00:00
|
|
|
{-# LANGUAGE OverloadedStrings #-}
|
|
|
|
|
2019-01-30 16:36:30 +00:00
|
|
|
module Logs.Export (
|
|
|
|
Exported,
|
|
|
|
mkExported,
|
|
|
|
ExportParticipants,
|
|
|
|
ExportChange(..),
|
|
|
|
getExport,
|
|
|
|
exportedTreeishes,
|
|
|
|
incompleteExportedTreeishes,
|
|
|
|
recordExportBeginning,
|
2020-12-23 18:27:38 +00:00
|
|
|
recordExportUnderway,
|
|
|
|
recordExport,
|
2019-05-20 20:37:04 +00:00
|
|
|
logExportExcluded,
|
|
|
|
getExportExcluded,
|
2019-01-30 16:36:30 +00:00
|
|
|
) where
|
2017-08-31 19:41:48 +00:00
|
|
|
|
|
|
|
import qualified Data.Map as M
|
|
|
|
|
|
|
|
import Annex.Common
|
|
|
|
import qualified Annex.Branch
|
|
|
|
import qualified Git
|
2017-09-06 17:39:33 +00:00
|
|
|
import Git.Sha
|
2017-08-31 22:06:49 +00:00
|
|
|
import Git.FilePath
|
2017-08-31 19:41:48 +00:00
|
|
|
import Logs
|
2021-04-13 18:06:40 +00:00
|
|
|
import Logs.Export.Pure
|
2017-09-12 21:45:52 +00:00
|
|
|
import Logs.MapLog
|
2019-05-20 20:37:04 +00:00
|
|
|
import Logs.File
|
|
|
|
import qualified Git.LsTree
|
|
|
|
import qualified Git.Tree
|
2017-08-31 19:41:48 +00:00
|
|
|
import Annex.UUID
|
|
|
|
|
2019-01-10 17:23:42 +00:00
|
|
|
import qualified Data.ByteString.Lazy as L
|
2019-11-26 19:27:22 +00:00
|
|
|
import Data.Either
|
|
|
|
import Data.Char
|
2019-01-09 17:06:37 +00:00
|
|
|
|
2017-09-06 17:39:33 +00:00
|
|
|
-- | Get what's been exported to a special remote.
|
|
|
|
getExport :: UUID -> Annex [Exported]
|
2021-04-13 19:00:23 +00:00
|
|
|
getExport remoteuuid = nub . mapMaybe get . M.toList
|
|
|
|
. parseExportLogMap
|
2017-08-31 19:41:48 +00:00
|
|
|
<$> Annex.Branch.get exportLog
|
|
|
|
where
|
2017-09-12 21:45:52 +00:00
|
|
|
get (ep, exported)
|
|
|
|
| exportTo ep == remoteuuid = Just exported
|
2017-08-31 19:41:48 +00:00
|
|
|
| otherwise = Nothing
|
|
|
|
|
2020-12-23 18:27:38 +00:00
|
|
|
-- | Record the beginning of an export, to allow cleaning up from
|
|
|
|
-- interrupted exports.
|
|
|
|
--
|
|
|
|
-- This is called before any changes are made to the remote.
|
|
|
|
recordExportBeginning :: UUID -> Git.Ref -> Annex ()
|
|
|
|
recordExportBeginning remoteuuid newtree = do
|
2020-12-23 19:21:33 +00:00
|
|
|
c <- currentVectorClock
|
2020-12-23 18:27:38 +00:00
|
|
|
u <- getUUID
|
|
|
|
let ep = ExportParticipants { exportFrom = u, exportTo = remoteuuid }
|
2021-04-13 18:06:40 +00:00
|
|
|
old <- fromMaybe (mkExported emptyTree [])
|
2021-04-13 19:00:23 +00:00
|
|
|
. M.lookup ep
|
|
|
|
. parseExportLogMap
|
2020-12-23 18:27:38 +00:00
|
|
|
<$> Annex.Branch.get exportLog
|
2021-04-13 18:06:40 +00:00
|
|
|
let new = updateIncompleteExportedTreeish old (nub (newtree:incompleteExportedTreeishes [old]))
|
start implementing hidden git-annex repositories
This adds a separate journal, which does not currently get committed to
an index, but is planned to be committed to .git/annex/index-private.
Changes that are regarding a UUID that is private will get written to
this journal, and so will not be published into the git-annex branch.
All log writing should have been made to indicate the UUID it's
regarding, though I've not verified this yet.
Currently, no UUIDs are treated as private yet, a way to configure that
is needed.
The implementation is careful to not add any additional IO work when
privateUUIDsKnown is False. It will skip looking at the private journal
at all. So this should be free, or nearly so, unless the feature is
used. When it is used, all branch reads will be about twice as expensive.
It is very lucky -- or very prudent design -- that Annex.Branch.change
and maybeChange are the only ways to change a file on the branch,
and Annex.Branch.set is only internal use. That let Annex.Branch.get
always yield any private information that has been recorded, without
the risk that Annex.Branch.set might be called, with a non-private UUID,
and end up leaking the private information into the git-annex branch.
And, this relies on the way git-annex union merges the git-annex branch.
When reading a file, there can be a public and a private version, and
they are just concacenated together. That will be handled the same as if
there were two diverged git-annex branches that got union merged.
2021-04-20 18:32:41 +00:00
|
|
|
Annex.Branch.change
|
|
|
|
(Annex.Branch.RegardingUUID [remoteuuid, u])
|
|
|
|
exportLog
|
|
|
|
(buildExportLog . changeMapLog c ep new . parseExportLog)
|
2020-12-23 18:27:38 +00:00
|
|
|
recordExportTreeish newtree
|
|
|
|
|
2021-04-13 19:00:23 +00:00
|
|
|
-- Graft a tree ref into the git-annex branch. This is done
|
2020-12-23 18:27:38 +00:00
|
|
|
-- to ensure that it's available later, when getting exported files
|
|
|
|
-- from the remote. Since that could happen in another clone of the
|
|
|
|
-- repository, the tree has to be kept available, even if it
|
|
|
|
-- doesn't end up being merged into the master branch.
|
|
|
|
recordExportTreeish :: Git.Ref -> Annex ()
|
|
|
|
recordExportTreeish t =
|
2021-04-13 19:00:23 +00:00
|
|
|
Annex.Branch.rememberTreeish t (asTopFilePath exportTreeGraftPoint)
|
2020-12-23 18:27:38 +00:00
|
|
|
|
|
|
|
-- | Record that an export to a special remote is under way.
|
2017-08-31 19:41:48 +00:00
|
|
|
--
|
2017-09-06 17:39:33 +00:00
|
|
|
-- This is called before an export begins uploading new files to the
|
|
|
|
-- remote, but after it's cleaned up any files that need to be deleted
|
|
|
|
-- from the old treeish.
|
|
|
|
--
|
2017-08-31 19:41:48 +00:00
|
|
|
-- Any entries in the log for the oldTreeish will be updated to the
|
|
|
|
-- newTreeish. This way, when multiple repositories are exporting to
|
|
|
|
-- the same special remote, there's no conflict as long as they move
|
|
|
|
-- forward in lock-step.
|
2020-12-23 18:27:38 +00:00
|
|
|
recordExportUnderway :: UUID -> ExportChange -> Annex ()
|
|
|
|
recordExportUnderway remoteuuid ec = do
|
2020-12-23 19:21:33 +00:00
|
|
|
c <- currentVectorClock
|
2021-04-13 18:06:40 +00:00
|
|
|
hereuuid <- getUUID
|
|
|
|
let ep = ExportParticipants { exportFrom = hereuuid, exportTo = remoteuuid }
|
|
|
|
let exported = mkExported (newTreeish ec) []
|
start implementing hidden git-annex repositories
This adds a separate journal, which does not currently get committed to
an index, but is planned to be committed to .git/annex/index-private.
Changes that are regarding a UUID that is private will get written to
this journal, and so will not be published into the git-annex branch.
All log writing should have been made to indicate the UUID it's
regarding, though I've not verified this yet.
Currently, no UUIDs are treated as private yet, a way to configure that
is needed.
The implementation is careful to not add any additional IO work when
privateUUIDsKnown is False. It will skip looking at the private journal
at all. So this should be free, or nearly so, unless the feature is
used. When it is used, all branch reads will be about twice as expensive.
It is very lucky -- or very prudent design -- that Annex.Branch.change
and maybeChange are the only ways to change a file on the branch,
and Annex.Branch.set is only internal use. That let Annex.Branch.get
always yield any private information that has been recorded, without
the risk that Annex.Branch.set might be called, with a non-private UUID,
and end up leaking the private information into the git-annex branch.
And, this relies on the way git-annex union merges the git-annex branch.
When reading a file, there can be a public and a private version, and
they are just concacenated together. That will be handled the same as if
there were two diverged git-annex branches that got union merged.
2021-04-20 18:32:41 +00:00
|
|
|
Annex.Branch.change
|
|
|
|
(Annex.Branch.RegardingUUID [remoteuuid, hereuuid])
|
|
|
|
exportLog $
|
2019-01-09 17:06:37 +00:00
|
|
|
buildExportLog
|
2017-09-12 21:45:52 +00:00
|
|
|
. changeMapLog c ep exported
|
2021-04-13 18:06:40 +00:00
|
|
|
. M.mapWithKey (updateForExportChange remoteuuid ec c hereuuid)
|
2019-01-10 17:23:42 +00:00
|
|
|
. parseExportLog
|
2017-09-06 17:39:33 +00:00
|
|
|
|
2020-12-23 18:27:38 +00:00
|
|
|
-- Record information about the export to the git-annex branch.
|
2017-09-06 17:39:33 +00:00
|
|
|
--
|
2020-12-23 18:27:38 +00:00
|
|
|
-- This is equivilant to recordExportBeginning followed by
|
|
|
|
-- recordExportUnderway, but without the ability to clean up from
|
|
|
|
-- interrupted exports.
|
|
|
|
recordExport :: UUID -> Git.Ref -> ExportChange -> Annex ()
|
|
|
|
recordExport remoteuuid tree ec = do
|
2020-12-23 18:31:14 +00:00
|
|
|
when (oldTreeish ec /= [tree]) $
|
|
|
|
recordExportTreeish tree
|
2020-12-23 18:27:38 +00:00
|
|
|
recordExportUnderway remoteuuid ec
|
2017-08-31 19:41:48 +00:00
|
|
|
|
2019-05-20 20:37:04 +00:00
|
|
|
logExportExcluded :: UUID -> ((Git.Tree.TreeItem -> IO ()) -> Annex a) -> Annex a
|
|
|
|
logExportExcluded u a = do
|
|
|
|
logf <- fromRepo $ gitAnnexExportExcludeLog u
|
|
|
|
withLogHandle logf $ \logh -> do
|
|
|
|
liftIO $ hSetNewlineMode logh noNewlineTranslation
|
|
|
|
a (writer logh)
|
|
|
|
where
|
|
|
|
writer logh = hPutStrLn logh
|
|
|
|
. Git.LsTree.formatLsTree
|
|
|
|
. Git.Tree.treeItemToLsTreeItem
|
|
|
|
|
|
|
|
getExportExcluded :: UUID -> Annex [Git.Tree.TreeItem]
|
|
|
|
getExportExcluded u = do
|
|
|
|
logf <- fromRepo $ gitAnnexExportExcludeLog u
|
2021-01-28 16:36:37 +00:00
|
|
|
liftIO $ catchDefaultIO [] $ exportExcludedParser
|
2020-10-29 18:20:57 +00:00
|
|
|
<$> L.readFile (fromRawFilePath logf)
|
2019-05-20 20:37:04 +00:00
|
|
|
where
|
2021-01-28 16:36:37 +00:00
|
|
|
|
|
|
|
exportExcludedParser :: L.ByteString -> [Git.Tree.TreeItem]
|
|
|
|
exportExcludedParser = map Git.Tree.lsTreeItemToTreeItem
|
|
|
|
. rights
|
2021-03-23 16:44:29 +00:00
|
|
|
. map (Git.LsTree.parseLsTree (Git.LsTree.LsTreeLong False))
|
2021-01-28 16:36:37 +00:00
|
|
|
. L.split (fromIntegral $ ord '\n')
|