{-# LANGUAGE CPP #-}
{-# LANGUAGE OverloadedStrings #-}

-- |
-- Formatting time is slow.
-- This package provides mechanisms to cache formatted date.
module System.Log.FastLogger.Date (
    -- * Date cacher
    newTimeCache,
    simpleTimeFormat,
    simpleTimeFormat',
) where

import Control.AutoUpdate (defaultUpdateSettings, mkAutoUpdate, updateAction, updateThreadName)
import Data.UnixTime (formatUnixTime, fromEpochTime)
import System.Log.FastLogger.Types (FormattedTime, TimeFormat)
import System.PosixCompat.Time (epochTime)
import System.PosixCompat.Types (EpochTime)

----------------------------------------------------------------

-- | Get date using UnixTime.
getTime :: IO EpochTime
getTime :: IO EpochTime
getTime = IO EpochTime
epochTime

-- | Format unix EpochTime date.
formatDate :: TimeFormat -> EpochTime -> IO FormattedTime
formatDate :: TimeFormat -> EpochTime -> IO TimeFormat
formatDate TimeFormat
fmt = TimeFormat -> UnixTime -> IO TimeFormat
formatUnixTime TimeFormat
fmt (UnixTime -> IO TimeFormat)
-> (EpochTime -> UnixTime) -> EpochTime -> IO TimeFormat
forall b c a. (b -> c) -> (a -> b) -> a -> c
. EpochTime -> UnixTime
fromEpochTime

----------------------------------------------------------------

-- |  Make 'IO' action which get cached formatted local time.
-- Use this to avoid the cost of frequently time formatting by caching an
-- auto updating formatted time, this cache update every 1 second.
-- more detail in "Control.AutoUpdate"
newTimeCache :: TimeFormat -> IO (IO FormattedTime)
newTimeCache :: TimeFormat -> IO (IO TimeFormat)
newTimeCache TimeFormat
fmt =
    UpdateSettings TimeFormat -> IO (IO TimeFormat)
forall a. UpdateSettings a -> IO (IO a)
mkAutoUpdate
        UpdateSettings ()
defaultUpdateSettings
            { updateAction = getTime >>= formatDate fmt
            , updateThreadName = "Date string cacher of FastLogger (AutoUpdate)"
            }

-- | A simple time cache using format @"%d/%b/%Y:%T %z"@
simpleTimeFormat :: TimeFormat
simpleTimeFormat :: TimeFormat
simpleTimeFormat = TimeFormat
"%d/%b/%Y:%T %z"

-- | A simple time cache using format @"%d-%b-%Y %T"@
simpleTimeFormat' :: TimeFormat
simpleTimeFormat' :: TimeFormat
simpleTimeFormat' = TimeFormat
"%d-%b-%Y %T"