blob: 1b87eb930a07b46e6364ff8075525cbb84c599e0 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
module DPut where
import Control.Monad.IO.Class
import Control.Concurrent.STM
import qualified Data.Map.Strict as Map
import System.IO (stderr,hPutStrLn)
import Data.Maybe
import System.IO.Unsafe (unsafePerformIO)
import System.Log.Logger
import qualified Data.ByteString.Char8 as B
import qualified Data.Text as T
import qualified Data.Text.Encoding as T
-- | Debug Tags, add more as needed, but ensure XAnnounce is always first, XMisc last
data DebugTag = XAnnounce | XBitTorrent | XDHT | XLan | XMan | XNetCrypto | XOnion | XRoutes | XPing | XRefresh | XJabber | XMisc
deriving (Eq,Ord,Show,Read,Enum,Bounded)
appName :: String
appName = "toxmpp"
(<.>) :: String -> String -> String
a <.> b = a ++ "." ++ b
dput :: MonadIO m => DebugTag -> String -> m ()
dput tag msg = liftIO $ debugM (appName <.> show tag) msg
dputB :: MonadIO m => DebugTag -> B.ByteString -> m ()
dputB tag msg = liftIO $ debugM (appName <.> show tag) (T.unpack . T.decodeUtf8 $ msg)
-- | Trace version of 'dput' works in arbitrary monad, using unsafePerformIO.
tput :: Applicative m => DebugTag -> String -> m ()
tput tag msg = (unsafePerformIO $ dput tag msg) `seq` pure ()
-- | like 'trace' but parameterized with 'DebugTag'
dtrace :: DebugTag -> String -> a -> a
dtrace tag msg result = (unsafePerformIO $ dput tag msg) `seq` result
setTagLevel :: Priority -> DebugTag -> IO ()
setTagLevel level tag = updateGlobalLogger (appName <.> show tag) (setLevel level)
setQuiet :: DebugTag -> IO ()
setQuiet = setTagLevel WARNING
setVerbose :: DebugTag -> IO ()
setVerbose = setTagLevel DEBUG
getVerbose tag = do
logger <- getLogger (appName <.> show tag)
case getLevel logger of
Just p | p <= DEBUG -> return True
_ -> return False
|