xmonad-config/lib/XMonad/Internal/Dependency.hs

407 lines
13 KiB
Haskell
Raw Normal View History

{-# LANGUAGE DeriveFunctor #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE RecordWildCards #-}
--------------------------------------------------------------------------------
-- | Functions for handling dependencies
module XMonad.Internal.Dependency
2021-11-21 10:26:28 -05:00
( MaybeAction
, MaybeX
, Parent(..)
-- , ConstFeature(..)
, Chain(..)
, DBusEndpoint_(..)
, DBusBus_(..)
2021-11-20 01:15:04 -05:00
, FeatureX
, FeatureIO
2021-11-11 00:11:15 -05:00
, Feature(..)
2021-11-21 10:26:28 -05:00
, Warning(..)
, Dependency(..)
, UnitType(..)
, Bus(..)
, Endpoint(..)
, DBusMember(..)
2021-11-20 01:15:04 -05:00
, ioFeature
2021-11-11 00:11:15 -05:00
, evalFeature
, systemUnit
, userUnit
, pathR
, pathW
, pathRW
2021-11-21 10:26:28 -05:00
, featureDefault
, featureExeArgs
, featureExe
, featureEndpoint
, warnMissing
2021-11-21 10:26:28 -05:00
, whenSatisfied
, ifSatisfied
2021-11-20 15:20:22 -05:00
, executeFeature
, executeFeature_
, applyFeature
, applyFeature_
2021-11-21 16:58:01 -05:00
, callMethod
) where
import Control.Monad (void)
import Control.Monad.IO.Class
import Data.Bifunctor (bimap, first, second)
2021-11-19 00:35:54 -05:00
import Data.List (find)
import Data.Maybe (catMaybes, fromMaybe, listToMaybe)
2021-11-07 20:16:53 -05:00
import DBus
import DBus.Client
2021-11-08 00:27:39 -05:00
import qualified DBus.Introspection as I
import System.Directory (findExecutable, readable, writable)
import System.Environment
import System.Exit
2021-11-20 15:20:22 -05:00
import XMonad.Core (X, io)
import XMonad.Internal.IO
import XMonad.Internal.Process
import XMonad.Internal.Shell
--------------------------------------------------------------------------------
2021-11-21 10:26:28 -05:00
-- | Features
--
-- A 'feature' is an 'action' (usually an IO ()) that requires one or more
-- 'dependencies'. Features also have a useful name and an error logging
-- protocol.
--
-- NOTE: there is no way to make a feature depend on another feature. This is
-- very complicated to implement and would only be applicable to a few instances
-- (notable the dbus interfaces). In order to implement a dependency tree, use
-- dependencies that target the output/state of another feature; this is more
-- robust anyways, at the cost of being a bit slower.
data Feature a = forall e. Evaluable e => Feature
{ ftrMaybeAction :: e a
2021-11-21 10:26:28 -05:00
, ftrName :: String
, ftrWarning :: Warning
-- , ftrChildren :: [Dependency]
2021-11-20 01:15:04 -05:00
}
| ConstFeature a
-- | BlankFeature
-- TODO this name sucks
data Parent a = Parent a [Dependency] deriving (Functor)
-- newtype ConstFeature a = ConstFeature a deriving (Functor)
data Chain a = forall b. Chain (b -> a) (IO (Either [String] b))
instance Functor Chain where
fmap f (Chain a b) = Chain (f . a) b
data DBusEndpoint_ a = DBusEndpoint_ (Client -> a) BusName (Maybe Client) [Endpoint]
instance Functor DBusEndpoint_ where
fmap f (DBusEndpoint_ a b c eps) = DBusEndpoint_ (f . a) b c eps
data DBusBus_ a = DBusBus_ (Client -> a) BusName (Maybe Client) [Dependency]
instance Functor DBusBus_ where
fmap f (DBusBus_ a b c eps) = DBusBus_ (f . a) b c eps
2021-11-20 01:15:04 -05:00
2021-11-21 10:26:28 -05:00
-- TODO this is silly as is, and could be made more useful by representing
-- loglevels
data Warning = Silent | Default
2021-11-20 11:48:05 -05:00
type FeatureX = Feature (X ())
2021-11-11 00:11:15 -05:00
2021-11-20 11:48:05 -05:00
type FeatureIO = Feature (IO ())
2021-11-20 01:15:04 -05:00
ioFeature :: MonadIO m => Feature (IO b) -> Feature (m b)
ioFeature (ConstFeature a) = ConstFeature $ liftIO a
ioFeature Feature {..} =
-- HACK just doing a normal record update here will make GHC complain about
-- an 'insufficiently polymorphic record update' ...I guess because my
-- GADT isn't polymorphic enough (which is obviously BS)
Feature {ftrMaybeAction = liftIO <$> ftrMaybeAction, ..}
2021-11-21 10:26:28 -05:00
featureDefault :: String -> [Dependency] -> a -> Feature a
featureDefault n ds x = Feature
-- { ftrMaybeAction = x
{ ftrMaybeAction = Parent x ds
2021-11-21 10:26:28 -05:00
, ftrName = n
, ftrWarning = Default
-- , ftrChildren = ds
2021-11-21 10:26:28 -05:00
}
featureExe :: MonadIO m => String -> String -> Feature (m ())
featureExe n cmd = featureExeArgs n cmd []
featureExeArgs :: MonadIO m => String -> String -> [String] -> Feature (m ())
featureExeArgs n cmd args =
featureDefault n [Executable cmd] $ spawnCmd cmd args
featureEndpoint :: BusName -> ObjectPath -> InterfaceName -> MemberName
-> Maybe Client -> FeatureIO
featureEndpoint busname path iface mem client = Feature
-- { ftrMaybeAction = cmd
{ ftrMaybeAction = DBusEndpoint_ cmd busname client deps
, ftrName = "screensaver toggle"
, ftrWarning = Default
-- , ftrChildren = [DBusEndpoint (Bus False busname) $ Endpoint path iface $ Method_ mem]
}
where
cmd = \c -> void $ callMethod c busname path iface mem
deps = [Endpoint path iface $ Method_ mem]
2021-11-21 10:26:28 -05:00
--------------------------------------------------------------------------------
-- | Feature evaluation
--
-- Evaluate a feature by testing if its dependencies are satisfied, and return
-- either the action of the feature or 0 or more error messages that signify
-- what dependencies are missing and why.
class Functor e => Evaluable e where
eval :: e a -> IO (MaybeAction a)
2021-11-21 10:26:28 -05:00
type MaybeAction a = Either [String] a
2021-11-19 00:35:54 -05:00
2021-11-21 10:26:28 -05:00
type MaybeX = MaybeAction (X ())
instance Evaluable Parent where
eval (Parent a ds) = do
es <- catMaybes <$> mapM evalDependency ds
return $ case es of
[] -> Right a
es' -> Left es'
-- instance Evaluable ConstFeature where
-- eval (ConstFeature a) = return $ Right a
instance Evaluable Chain where
eval (Chain a b) = second a <$> b
instance Evaluable DBusEndpoint_ where
eval (DBusEndpoint_ _ _ Nothing _) = return $ Left ["client not available"]
eval (DBusEndpoint_ action busname (Just client) deps) = do
es <- catMaybes <$> mapM (endpointSatisfied client busname) deps
return $ case es of
[] -> Right $ action client
es' -> Left es'
instance Evaluable DBusBus_ where
eval (DBusBus_ _ _ Nothing _) = return $ Left ["client not available"]
eval (DBusBus_ action busname (Just client) deps) = do
res <- busSatisfied client busname
es <- catMaybes . (res:) <$> mapM evalDependency deps
return $ case es of
[] -> Right $ action client
es' -> Left es'
-- instance Evaluable BlankFeature where
-- eval (BlankFeature a) = Left ["hopefully a useful error message"]
2021-11-21 10:26:28 -05:00
evalFeature :: Feature a -> IO (MaybeAction a)
2021-11-19 00:35:54 -05:00
evalFeature (ConstFeature x) = return $ Right x
-- evalFeature BlankFeature = return $ Left []
evalFeature Feature
2021-11-21 10:26:28 -05:00
{ ftrMaybeAction = a
, ftrName = n
, ftrWarning = w
-- , ftrChildren = c
} = do
procName <- getProgName
res <- eval a
return $ first (fmtWarnings procName) res
-- es <- catMaybes <$> mapM evalDependency c
-- return $ case res of
-- [] -> Right a
-- es' -> Left $ fmtWarnings procName es'
2021-11-11 00:11:15 -05:00
where
fmtWarnings procName es = case w of
Silent -> []
Default -> fmap (fmtMsg procName "WARNING" . ((n ++ " disabled; ") ++)) es
2021-11-21 10:26:28 -05:00
applyFeature :: MonadIO m => (m a -> m a) -> a -> Feature (IO a) -> m a
applyFeature iof def ftr = do
a <- io $ evalFeature ftr
either (\es -> io $ warnMissing' es >> return def) (iof . io) a
applyFeature_ :: MonadIO m => (m () -> m ()) -> Feature (IO ()) -> m ()
applyFeature_ iof = applyFeature iof ()
executeFeature :: MonadIO m => a -> Feature (IO a) -> m a
executeFeature = applyFeature id
executeFeature_ :: Feature (IO ()) -> IO ()
executeFeature_ = executeFeature ()
whenSatisfied :: Monad m => MaybeAction (m ()) -> m ()
whenSatisfied = flip ifSatisfied skip
ifSatisfied :: MaybeAction a -> a -> a
ifSatisfied (Right x) _ = x
ifSatisfied _ alt = alt
--------------------------------------------------------------------------------
-- | Dependencies
data Dependency = Executable String
| AccessiblePath FilePath Bool Bool
| IOTest (IO (Maybe String))
-- | DBusEndpoint Bus Endpoint
-- | DBusBus Bus
2021-11-21 10:26:28 -05:00
| Systemd UnitType String
2021-11-21 10:26:28 -05:00
data UnitType = SystemUnit | UserUnit deriving (Eq, Show)
data DBusMember = Method_ MemberName
| Signal_ MemberName
| Property_ String
deriving (Eq, Show)
data Bus = Bus Bool BusName deriving (Eq, Show)
data Endpoint = Endpoint ObjectPath InterfaceName DBusMember deriving (Eq, Show)
2021-11-20 11:48:05 -05:00
pathR :: String -> Dependency
pathR n = AccessiblePath n True False
2021-11-20 11:48:05 -05:00
pathW :: String -> Dependency
pathW n = AccessiblePath n False True
2021-11-20 11:48:05 -05:00
pathRW :: String -> Dependency
pathRW n = AccessiblePath n True True
2021-11-20 11:48:05 -05:00
systemUnit :: String -> Dependency
systemUnit = Systemd SystemUnit
2021-11-20 11:48:05 -05:00
userUnit :: String -> Dependency
userUnit = Systemd UserUnit
2021-11-21 10:26:28 -05:00
--------------------------------------------------------------------------------
-- | Dependency evaluation
--
-- Test the existence of dependencies and return either Nothing (which actually
-- means success) or Just <error message>.
2021-11-20 01:15:04 -05:00
2021-11-21 10:26:28 -05:00
evalDependency :: Dependency -> IO (Maybe String)
evalDependency (Executable n) = exeSatisfied n
evalDependency (IOTest t) = t
evalDependency (Systemd t n) = unitSatisfied t n
evalDependency (AccessiblePath p r w) = pathSatisfied p r w
-- evalDependency (DBusEndpoint b e) = endpointSatisfied b e
-- evalDependency (DBusBus b) = busSatisfied b
2021-11-20 01:15:04 -05:00
2021-11-21 10:26:28 -05:00
exeSatisfied :: String -> IO (Maybe String)
exeSatisfied x = do
2021-11-19 00:35:54 -05:00
r <- findExecutable x
return $ case r of
(Just _) -> Nothing
_ -> Just $ "executable '" ++ x ++ "' not found"
2021-11-21 10:26:28 -05:00
unitSatisfied :: UnitType -> String -> IO (Maybe String)
unitSatisfied u x = do
(rc, _, _) <- readCreateProcessWithExitCode' (shell cmd) ""
return $ case rc of
2021-11-19 00:35:54 -05:00
ExitSuccess -> Nothing
_ -> Just $ "systemd " ++ unitType u ++ " unit '" ++ x ++ "' not found"
where
cmd = fmtCmd "systemctl" $ ["--user" | u == UserUnit] ++ ["status", x]
2021-11-19 00:35:54 -05:00
unitType SystemUnit = "system"
unitType UserUnit = "user"
2021-11-21 10:26:28 -05:00
pathSatisfied :: FilePath -> Bool -> Bool -> IO (Maybe String)
pathSatisfied p testread testwrite = do
res <- getPermissionsSafe p
let msg = permMsg res
return msg
where
testPerm False _ _ = Nothing
testPerm True f r = Just $ f r
2021-11-19 00:35:54 -05:00
permMsg NotFoundError = Just "file not found"
permMsg PermError = Just "could not get permissions"
permMsg (PermResult r) =
case (testPerm testread readable r, testPerm testwrite writable r) of
2021-11-19 00:35:54 -05:00
(Just False, Just False) -> Just "file not readable or writable"
(Just False, _) -> Just "file not readable"
(_, Just False) -> Just "file not writable"
_ -> Nothing
2021-11-08 00:27:39 -05:00
introspectInterface :: InterfaceName
introspectInterface = interfaceName_ "org.freedesktop.DBus.Introspectable"
introspectMethod :: MemberName
introspectMethod = memberName_ "Introspect"
2021-11-21 16:58:01 -05:00
-- TODO this belongs somewhere else, IDK where tho for now
2021-11-21 17:54:00 -05:00
callMethod :: Client -> BusName -> ObjectPath -> InterfaceName -> MemberName
-> IO (Either String [Variant])
callMethod client bus path iface mem = do
reply <- call client (methodCall path iface mem)
2021-11-08 00:27:39 -05:00
{ methodCallDestination = Just bus }
return $ bimap methodErrorMessage methodReturnBody reply
busSatisfied :: Client -> BusName -> IO (Maybe String)
busSatisfied client bus = do
-- client <- if usesystem then connectSystem else connectSession
2021-11-21 17:54:00 -05:00
ret <- callMethod client queryBus queryPath queryIface queryMem
-- disconnect client
return $ case ret of
Left e -> Just e
Right b -> let ns = bodyGetNames b in
if bus' `elem` ns then Nothing
else Just $ unwords ["name", singleQuote bus', "not found on dbus"]
2021-11-07 20:16:53 -05:00
where
bus' = formatBusName bus
queryBus = busName_ "org.freedesktop.DBus"
queryIface = interfaceName_ "org.freedesktop.DBus"
queryPath = objectPath_ "/"
queryMem = memberName_ "ListNames"
bodyGetNames [v] = fromMaybe [] $ fromVariant v :: [String]
bodyGetNames _ = []
endpointSatisfied :: Client -> BusName -> Endpoint -> IO (Maybe String)
endpointSatisfied client busname (Endpoint objpath iface mem) = do
-- client <- if u then connectSystem else connectSession
ret <- callMethod client busname objpath introspectInterface introspectMethod
-- disconnect client
return $ case ret of
Left e -> Just e
Right body -> procBody body
where
procBody body = let res = findMem =<< I.parseXML objpath =<< fromVariant
=<< listToMaybe body in
case res of
Just True -> Nothing
_ -> Just $ fmtMsg' mem
findMem = fmap (matchMem mem)
. find (\i -> I.interfaceName i == iface)
. I.objectInterfaces
matchMem (Method_ n) = elemMember n I.methodName I.interfaceMethods
matchMem (Signal_ n) = elemMember n I.signalName I.interfaceSignals
matchMem (Property_ n) = elemMember n I.propertyName I.interfaceProperties
elemMember n fname fmember = elem n . fmap fname . fmember
fmtMem (Method_ n) = "method " ++ singleQuote (formatMemberName n)
fmtMem (Signal_ n) = "signal " ++ singleQuote (formatMemberName n)
fmtMem (Property_ n) = "property " ++ singleQuote n
fmtMsg' m = unwords
[ "could not find"
, fmtMem m
, "on interface"
, singleQuote $ formatInterfaceName iface
, "on bus"
, formatBusName busname
]
2021-11-21 10:26:28 -05:00
--------------------------------------------------------------------------------
-- | Logging functions
2021-11-21 10:26:28 -05:00
warnMissing :: [MaybeAction a] -> IO ()
warnMissing xs = warnMissing' $ concat $ [ m | (Left m) <- xs ]
2021-11-20 15:20:22 -05:00
warnMissing' :: [String] -> IO ()
warnMissing' = mapM_ putStrLn
fmtMsg :: String -> String -> String -> String
fmtMsg procName level msg = unwords [bracket procName, bracket level, msg]
where
bracket s = "[" ++ s ++ "]"