{-# LANGUAGE GADTs #-} {-# LANGUAGE RecordWildCards #-} -------------------------------------------------------------------------------- -- | Functions for handling dependencies module XMonad.Internal.Dependency ( MaybeAction , MaybeX , DepTree(..) , Action(..) , DBusDep(..) , FeatureX , FeatureIO , Feature(..) , Warning(..) , Dependency(..) , UnitType(..) , DBusMember(..) , ioFeature , evalFeature , systemUnit , userUnit , pathR , pathW , pathRW , featureDefault , featureExeArgs , featureExe , featureEndpoint , warnMissing , whenSatisfied , ifSatisfied , executeFeature , executeFeature_ , applyFeature , applyFeature_ , callMethod ) where import Control.Monad.IO.Class import Control.Monad.Identity import Data.Bifunctor (bimap, first) import Data.List (find) import Data.Maybe (catMaybes, fromMaybe, listToMaybe) import DBus import DBus.Client import qualified DBus.Introspection as I import System.Directory (findExecutable, readable, writable) import System.Environment import System.Exit import XMonad.Core (X, io) import XMonad.Internal.IO import XMonad.Internal.Process import XMonad.Internal.Shell -------------------------------------------------------------------------------- -- | 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 = Feature { ftrAction :: DepTree a , ftrName :: String , ftrWarning :: Warning } | ConstFeature a data DepTree a = GenTree (Action a) [Dependency] | DBusTree (Action (Client -> a)) (Maybe Client) [DBusDep] [Dependency] data Action a = Single a | forall b. Double (b -> a) (IO (Either [String] b)) instance Functor Action where fmap f (Single a) = Single (f a) fmap f (Double a b) = Double (f . a) b instance Functor DepTree where fmap f (GenTree a ds) = GenTree (f <$> a) ds fmap f (DBusTree a c es ds) = DBusTree (fmap (fmap f) a) c es ds -- TODO this is silly as is, and could be made more useful by representing -- loglevels data Warning = Silent | Default type FeatureX = Feature (X ()) type FeatureIO = Feature (IO ()) 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 {ftrAction = liftIO <$> ftrAction, ..} featureDefault :: String -> [Dependency] -> a -> Feature a featureDefault n ds x = Feature { ftrAction = GenTree (Single x) ds , ftrName = n , ftrWarning = Default } 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 { ftrAction = DBusTree (Single cmd) client deps [] , ftrName = "screensaver toggle" , ftrWarning = Default } where cmd = \c -> void $ callMethod c busname path iface mem deps = [Endpoint busname path iface $ Method_ mem] -------------------------------------------------------------------------------- -- | 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. type MaybeAction a = Either [String] a type MaybeX = MaybeAction (X ()) evalTree :: DepTree a -> IO (MaybeAction a) evalTree (GenTree action ds) = do es <- catMaybes <$> mapM evalDependency ds case es of [] -> do action' <- evalAction action return $ case action' of Right f -> Right f Left es' -> Left es' es' -> return $ Left es' evalTree (DBusTree _ Nothing _ _) = return $ Left ["client not available"] evalTree (DBusTree action (Just client) es ds) = do eperrors <- mapM (dbusDepSatisfied client) es dperrors <- mapM evalDependency ds case catMaybes (eperrors ++ dperrors) of [] -> do action' <- evalAction action return $ case action' of Right f -> Right $ f client Left es' -> Left es' es' -> return $ Left es' evalAction :: Action a -> IO (Either [String] a) evalAction (Single a) = return $ Right a evalAction (Double a b) = fmap a <$> b evalFeature :: Feature a -> IO (MaybeAction a) evalFeature (ConstFeature x) = return $ Right x evalFeature Feature { ftrAction = a , ftrName = n , ftrWarning = w } = do procName <- getProgName res <- evalTree a return $ first (fmtWarnings procName) res where fmtWarnings procName es = case w of Silent -> [] Default -> fmap (fmtMsg procName "WARNING" . ((n ++ " disabled; ") ++)) es 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)) | Systemd UnitType String data UnitType = SystemUnit | UserUnit deriving (Eq, Show) data DBusMember = Method_ MemberName | Signal_ MemberName | Property_ String deriving (Eq, Show) data DBusDep = Bus BusName | Endpoint BusName ObjectPath InterfaceName DBusMember deriving (Eq, Show) pathR :: String -> Dependency pathR n = AccessiblePath n True False pathW :: String -> Dependency pathW n = AccessiblePath n False True pathRW :: String -> Dependency pathRW n = AccessiblePath n True True systemUnit :: String -> Dependency systemUnit = Systemd SystemUnit userUnit :: String -> Dependency userUnit = Systemd UserUnit -------------------------------------------------------------------------------- -- | Dependency evaluation -- -- Test the existence of dependencies and return either Nothing (which actually -- means success) or Just . 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 exeSatisfied :: String -> IO (Maybe String) exeSatisfied x = do r <- findExecutable x return $ case r of (Just _) -> Nothing _ -> Just $ "executable '" ++ x ++ "' not found" unitSatisfied :: UnitType -> String -> IO (Maybe String) unitSatisfied u x = do (rc, _, _) <- readCreateProcessWithExitCode' (shell cmd) "" return $ case rc of ExitSuccess -> Nothing _ -> Just $ "systemd " ++ unitType u ++ " unit '" ++ x ++ "' not found" where cmd = fmtCmd "systemctl" $ ["--user" | u == UserUnit] ++ ["status", x] unitType SystemUnit = "system" unitType UserUnit = "user" 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 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 (Just False, Just False) -> Just "file not readable or writable" (Just False, _) -> Just "file not readable" (_, Just False) -> Just "file not writable" _ -> Nothing introspectInterface :: InterfaceName introspectInterface = interfaceName_ "org.freedesktop.DBus.Introspectable" introspectMethod :: MemberName introspectMethod = memberName_ "Introspect" -- TODO this belongs somewhere else, IDK where tho for now callMethod :: Client -> BusName -> ObjectPath -> InterfaceName -> MemberName -> IO (Either String [Variant]) callMethod client bus path iface mem = do reply <- call client (methodCall path iface mem) { methodCallDestination = Just bus } return $ bimap methodErrorMessage methodReturnBody reply dbusDepSatisfied :: Client -> DBusDep -> IO (Maybe String) dbusDepSatisfied client (Bus bus) = do ret <- callMethod client queryBus queryPath queryIface queryMem 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"] 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 _ = [] dbusDepSatisfied client (Endpoint busname objpath iface mem) = do ret <- callMethod client busname objpath introspectInterface introspectMethod 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 ] -------------------------------------------------------------------------------- -- | Logging functions warnMissing :: [MaybeAction a] -> IO () warnMissing xs = warnMissing' $ concat $ [ m | (Left m) <- xs ] 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 ++ "]"