2012-06-11 04:39:09 +00:00
|
|
|
{- log files
|
|
|
|
-
|
2015-01-21 16:50:09 +00:00
|
|
|
- Copyright 2012 Joey Hess <id@joeyh.name>
|
2012-06-11 04:39:09 +00:00
|
|
|
-
|
2014-05-10 14:01:27 +00:00
|
|
|
- License: BSD-2-clause
|
2012-06-11 04:39:09 +00:00
|
|
|
-}
|
|
|
|
|
2013-05-10 21:29:59 +00:00
|
|
|
{-# LANGUAGE CPP #-}
|
|
|
|
|
2019-11-21 19:38:06 +00:00
|
|
|
module Utility.LogFile (
|
|
|
|
openLog,
|
|
|
|
listLogs,
|
|
|
|
maxLogs,
|
|
|
|
#ifndef mingw32_HOST_OS
|
|
|
|
redirLog,
|
|
|
|
redir,
|
|
|
|
#endif
|
|
|
|
) where
|
2012-06-11 04:39:09 +00:00
|
|
|
|
|
|
|
import Common
|
2022-07-12 18:53:32 +00:00
|
|
|
import Utility.RawFilePath
|
2012-06-11 04:39:09 +00:00
|
|
|
|
2014-02-25 18:09:39 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2013-05-11 20:03:00 +00:00
|
|
|
import System.Posix.Types
|
2017-12-31 20:08:31 +00:00
|
|
|
import System.Posix.IO
|
2014-02-25 18:09:39 +00:00
|
|
|
#endif
|
2012-06-11 04:39:09 +00:00
|
|
|
|
2014-06-17 23:10:51 +00:00
|
|
|
openLog :: FilePath -> IO Handle
|
2012-06-11 04:39:09 +00:00
|
|
|
openLog logfile = do
|
2013-03-01 17:30:48 +00:00
|
|
|
rotateLog logfile
|
2014-06-17 23:10:51 +00:00
|
|
|
openFile logfile AppendMode
|
2012-06-11 04:39:09 +00:00
|
|
|
|
2013-03-01 17:30:48 +00:00
|
|
|
rotateLog :: FilePath -> IO ()
|
|
|
|
rotateLog logfile = go 0
|
2012-12-13 04:24:19 +00:00
|
|
|
where
|
2013-03-01 17:30:48 +00:00
|
|
|
go num
|
|
|
|
| num > maxLogs = return ()
|
|
|
|
| otherwise = whenM (doesFileExist currfile) $ do
|
|
|
|
go (num + 1)
|
2022-07-12 18:53:32 +00:00
|
|
|
rename (toRawFilePath currfile) (toRawFilePath nextfile)
|
2013-03-01 17:30:48 +00:00
|
|
|
where
|
|
|
|
currfile = filename num
|
|
|
|
nextfile = filename (num + 1)
|
|
|
|
filename n
|
|
|
|
| n == 0 = logfile
|
|
|
|
| otherwise = rotatedLog logfile n
|
2013-01-15 17:52:35 +00:00
|
|
|
|
|
|
|
rotatedLog :: FilePath -> Int -> FilePath
|
|
|
|
rotatedLog logfile n = logfile ++ "." ++ show n
|
|
|
|
|
|
|
|
{- Lists most recent logs last. -}
|
|
|
|
listLogs :: FilePath -> IO [FilePath]
|
|
|
|
listLogs logfile = filterM doesFileExist $ reverse $
|
|
|
|
logfile : map (rotatedLog logfile) [1..maxLogs]
|
|
|
|
|
|
|
|
maxLogs :: Int
|
|
|
|
maxLogs = 9
|
2013-03-01 17:30:48 +00:00
|
|
|
|
2013-08-02 16:27:32 +00:00
|
|
|
#ifndef mingw32_HOST_OS
|
2014-02-11 17:18:59 +00:00
|
|
|
redirLog :: Fd -> IO ()
|
2013-03-01 17:30:48 +00:00
|
|
|
redirLog logfd = do
|
|
|
|
mapM_ (redir logfd) [stdOutput, stdError]
|
|
|
|
closeFd logfd
|
|
|
|
|
|
|
|
redir :: Fd -> Fd -> IO ()
|
|
|
|
redir newh h = do
|
|
|
|
closeFd h
|
|
|
|
void $ dupTo newh h
|
2013-05-11 20:03:00 +00:00
|
|
|
#endif
|