summaryrefslogtreecommitdiff
path: root/Hsbot/Plugin.hs
blob: 9e34d92e702e96d81eb1cf317a5145a3265c2571 (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
module Hsbot.Plugin
    ( Plugin
    , PluginState (..)
    ) where

import Control.Concurrent
import Control.Concurrent.Chan ()
import Control.Monad.State
import qualified Data.Map as M
import IO (Handle)

import Hsbot.Message

-- | The Plugin monad
type Plugin = StateT PluginState IO

-- | A plugin state
data PluginState = PluginState
    { pluginName       :: String              -- The plugin's name
    , pluginThreadId   :: ThreadId            -- The plugin thread
    , pluginChan       :: Chan BotMsg         -- The plugin chan
    , pluginHandles    :: M.Map String Handle -- the plugins's handles
    }