2019-07-16 03:01:45 +03:00
|
|
|
module UrbitPrelude
|
|
|
|
( module ClassyPrelude
|
2019-07-24 04:34:16 +03:00
|
|
|
, module Control.Arrow
|
2019-07-16 03:01:45 +03:00
|
|
|
, module Control.Lens
|
2019-07-20 06:00:23 +03:00
|
|
|
, module Data.Acquire
|
2019-08-28 14:45:49 +03:00
|
|
|
, module Data.RAcquire
|
2019-07-21 07:13:21 +03:00
|
|
|
, module Data.Void
|
|
|
|
, module Noun
|
|
|
|
, module Text.Show.Pretty
|
|
|
|
, module Text.Printf
|
2019-08-28 14:45:49 +03:00
|
|
|
, module RIO
|
|
|
|
, io, rio
|
|
|
|
, logTrace
|
2019-07-16 03:01:45 +03:00
|
|
|
) where
|
|
|
|
|
|
|
|
import ClassyPrelude
|
|
|
|
import Noun
|
2019-07-20 06:00:23 +03:00
|
|
|
|
2019-07-24 04:34:16 +03:00
|
|
|
import Control.Lens hiding (Index, cons, index, snoc, uncons, unsnoc, (<.>),
|
|
|
|
(<|))
|
|
|
|
|
|
|
|
import Control.Arrow ((<<<), (>>>))
|
2019-08-28 14:45:49 +03:00
|
|
|
import Data.RAcquire (RAcquire, mkRAcquire, rwith)
|
|
|
|
import Data.RAcquire (MonadRIO(..), MonadAcquire(..))
|
2019-07-21 07:13:21 +03:00
|
|
|
import Data.Acquire (Acquire, mkAcquire, with)
|
|
|
|
import Data.Void (Void, absurd)
|
|
|
|
import Text.Printf (printf)
|
2019-07-24 04:34:16 +03:00
|
|
|
import Text.Show.Pretty (pPrint, ppShow)
|
2019-08-28 14:45:49 +03:00
|
|
|
|
|
|
|
import RIO (RIO, runRIO)
|
|
|
|
import RIO (Utf8Builder, display, displayShow)
|
|
|
|
import RIO (threadDelay)
|
|
|
|
|
|
|
|
import RIO ( HasLogFunc
|
|
|
|
, LogFunc
|
|
|
|
, logError
|
|
|
|
, logInfo
|
|
|
|
, logWarn
|
|
|
|
, logDebug
|
|
|
|
, logOther
|
|
|
|
, logFuncL
|
|
|
|
, logOptionsHandle
|
|
|
|
, withLogFunc
|
|
|
|
, setLogUseTime
|
|
|
|
, setLogUseLoc
|
|
|
|
)
|
|
|
|
|
|
|
|
io :: MonadIO m => IO a -> m a
|
|
|
|
io = liftIO
|
|
|
|
|
|
|
|
rio :: MonadRIO m => RIO e a -> m e a
|
|
|
|
rio = liftRIO
|
|
|
|
|
|
|
|
logTrace :: HasLogFunc e => Utf8Builder -> RIO e ()
|
|
|
|
logTrace = logOther "trace"
|