git-annex/doc
Joey Hess 345ee4f37c Switch to MonadCatchIO-transformers for better handling of state while catching exceptions.
As seen in this bug report, the lifted exception handling using the StateT
monad throws away state changes when an action throws an exception.
http://git-annex.branchable.com/bugs/git_annex_fork_bombs_on_gpg_file/
  .. Which can result in cached values being redundantly calculated, or other
     possibly worse bugs when the annex state gets out of sync with reality.

This switches from a StateT AnnexState to a ReaderT (MVar AnnexState).
All changes to the state go via the MVar. So when an Annex action is
running inside an exception handler, and it makes some changes, they
immediately go into affect in the MVar. If it then throws an exception
(or even crashes its thread!), the state changes are still in effect.

The MonadCatchIO-transformers change is actually only incidental.
I could have kept on using lifted-base for the exception handling.
However, I'd have needed to write a new instance of MonadBaseControl
for the new monad.. and I didn't write the old instance.. I begged Bas
and he kindly sent it to me. Happily, MonadCatchIO-transformers is
able to derive a MonadCatchIO instance for my monad.

This is a deep level change. It passes the test suite! What could it break?

Well.. The most likely breakage would be to code that runs an Annex action
in an exception handler, and *wants* state changes to be thrown away.
Perhaps the state changes leaves the state inconsistent, or wrong. Since
there are relatively few places in git-annex that catch exceptions in the
Annex monad, and the AnnexState is generally just used to cache calculated
data, this is unlikely to be a problem.

Oh yeah, this change also makes Assistant.Types.ThreadedMonad a bit
redundant. It's now entirely possible to run concurrent Annex actions in
different threads, all sharing access to the same state! The ThreadedMonad
just adds some extra work on top of that, with its own MVar, and avoids
such actions possibly stepping on one-another's toes. I have not gotten
rid of it, but might try that later. Being able to run concurrent Annex
actions would simplify parts of the Assistant code.
2013-05-19 14:16:36 -04:00
..
Android Added a comment: Follow-up information on my system 2013-05-18 01:23:28 +00:00
android blog for the day 2013-05-06 18:09:46 -04:00
assistant update 2013-05-17 13:45:33 -04:00
backends
bare_repositories
bugs 2013-05-16 20:40:09 +00:00
design Fixed a typo 2013-05-17 22:39:50 +00:00
direct_mode
download
encryption
footer
forum 2013-05-17 21:20:42 +00:00
install Switch to MonadCatchIO-transformers for better handling of state while catching exceptions. 2013-05-19 14:16:36 -04:00
internals
license
links
news add news item for git-annex 4.20130516 2013-05-16 11:37:30 -04:00
not
preferred_content
special_remotes Added a comment 2013-05-17 08:35:15 +00:00
sync
templates shorter 2013-04-23 20:20:09 -04:00
tips Added a comment 2013-05-13 18:42:14 +00:00
todo Added a comment: Maybe using branches? 2013-05-16 10:22:48 +00:00
upgrades
use_case
users Add homepage and convert a few links to HTTPS 2013-04-28 22:17:45 +00:00
videos
walkthrough link direct mode 2013-04-18 15:59:57 -04:00
Android.mdwn added special camera repository to start screen for android 2013-05-03 15:21:31 -04:00
assistant.mdwn wording 2013-05-16 12:21:56 -04:00
backends.mdwn
bare_repositories.mdwn
bugs.mdwn header 2013-04-23 18:47:35 -04:00
coding_style.mdwn
comments.mdwn
contact.mdwn fix typo 2013-04-17 09:58:24 +00:00
copies.mdwn
design.mdwn
direct_mode.mdwn update for Windows 2013-05-13 13:46:03 -04:00
distributed_version_control.mdwn
download.mdwn
encryption.mdwn To enable an existing special remote, the new enableremote command must be used. The initremote command now is used only to create new special remotes. 2013-04-26 18:22:52 -04:00
favicon.ico
feeds.mdwn
forum.mdwn
future_proofing.mdwn
git-annex-shell.mdwn
git-annex.mdwn work around man format warning 2013-05-15 22:48:15 -04:00
git-union-merge.mdwn
how_it_works.mdwn
index.mdwn
install.mdwn update 2013-05-16 12:09:13 -04:00
internals.mdwn
license.mdwn
location_tracking.mdwn
logo-bw.svg
logo.png
logo.svg
logo_small.png
meta.mdwn
news.mdwn
not.mdwn
preferred_content.mdwn per-IA-item content directories 2013-04-25 23:44:55 -04:00
related_software.mdwn
repomap.png
scalability.mdwn
sidebar.mdwn
sitemap.mdwn
special_remotes.mdwn
summary.mdwn
sync.mdwn
testimonials.mdwn
tips.mdwn
todo.mdwn
transferring_data.mdwn
trust.mdwn
upgrades.mdwn
users.mdwn
videos.mdwn
walkthrough.mdwn