aboutsummaryrefslogtreecommitdiff
path: root/Logs/File.hs
blob: 6676dbb7ef5edb0023cd1716787f94c5d1de4767 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{- git-annex log files
 -
 - Copyright 2018 Joey Hess <id@joeyh.name>
 -
 - Licensed under the GNU GPL version 3 or higher.
 -}

module Logs.File where

import Annex.Common
import Annex.Perms
import Utility.Tmp

-- | Writes content to a file, replacing the file atomically, and
-- making the new file have whatever permissions the git repository is
-- configured to use. Creates the parent directory when necessary.
writeLogFile :: FilePath -> String -> Annex ()
writeLogFile f c = go `catchNonAsync` \_e -> do
	-- Most of the time, the directory will exist, so this is only
	-- done if writing the file fails.
	createAnnexDirectory (parentDir f)
	go
  where
	go = viaTmp writelog f c
	writelog f' c' = do
		liftIO $ writeFile f' c'
		setAnnexFilePerm f'