WindowsにSystem.Posixのようなものはありますか?
以下のコードを Windows で実行したいのですが、変更する必要がありますか?
import IO
import Control.Exception hiding (catch)
import Control.Concurrent
import Network
import System.Posix ---cannot be run on windows.
main = withSocketsDo (installHandler sigPIPE Ignore Nothing >> main')
--so the signal handler cannot be used
main' = listenOn (PortNumber 9900) >>= acceptConnections
acceptConnections sock = do
putStrLn "trying to accept" -- debug msg
conn@(h,host,port) <- accept sock
print conn -- debug msg
forkIO $ catch (talk conn `finally` hClose h) (\e -> print e)
acceptConnections sock
talk conn@(h,_,_) = hGetLine h >>= hPutStrLn h >> hFlush h >> talk conn
たとえば、ctrl+c でプログラムを終了させたい場合は、SIGINT のハンドラを追加する必要があるため、C++ では次のようなコードを記述します。
void callback(int sig)
{
// printf("catch\n");
}
...
signal(SIGINT,callback);
しかし、haskell でこれを行う方法がわかりません。FFI を使用しますか?