wizard-wipeout/src-server/Server/Communication.hs
2023-12-09 13:58:59 +01:00

33 lines
687 B
Haskell

module Server.Communication where
import Control.Monad
import Network.Socket
import System.Posix.Signals
-- internal imports
import Server.Util
bindSocket :: FilePath -> IO Socket
bindSocket path = do
let sockAddr = SockAddrUnix path
unless (isSupportedSockAddr sockAddr)
(error $ "invalid socket path " <> path)
removeIfExists path
sock <- socket AF_UNIX Stream 0
bind sock sockAddr
pure sock
dropSocketOnSigint :: Socket -> IO ()
dropSocketOnSigint sock =
void $ installHandler
keyboardSignal
(CatchOnce $ do
(SockAddrUnix path) <- getSocketName sock
close' sock
removeIfExists path
raiseSignal keyboardSignal
)
Nothing