mirror of
https://github.com/reanimate/reanimate.git
synced 2026-09-18 03:12:40 +00:00
80 lines
3.4 KiB
Haskell
80 lines
3.4 KiB
Haskell
module Reanimate.Driver ( reanimate ) where
|
|
|
|
import Control.Concurrent (MVar, forkIO, killThread, modifyMVar_,
|
|
newEmptyMVar, putMVar)
|
|
import Control.Monad.Fix (fix)
|
|
import qualified Data.Text as T
|
|
import Network.WebSockets
|
|
import System.Directory (findFile, listDirectory)
|
|
import System.Environment (getArgs, getProgName)
|
|
import System.INotify (EventVariety (..), addWatch, withINotify)
|
|
import System.IO (BufferMode (..), hPutStrLn, hSetBuffering,
|
|
stderr, stdin)
|
|
|
|
import Reanimate.Misc (runCmdLazy, runCmd, runCmd_, withTempDir, withTempFile)
|
|
import Reanimate.Monad (Animation)
|
|
import Reanimate.Render (renderSvgs)
|
|
|
|
import Paths_reanimate
|
|
|
|
opts = defaultConnectionOptions
|
|
{ connectionCompressionOptions = PermessageDeflateCompression defaultPermessageDeflate }
|
|
|
|
reanimate :: Animation -> IO ()
|
|
reanimate animation = do
|
|
args <- getArgs
|
|
hSetBuffering stdin NoBuffering
|
|
case args of
|
|
["once"] -> renderSvgs animation
|
|
_ -> withTempDir $ \tmpDir -> do
|
|
url <- getDataFileName "viewer/build/index.html"
|
|
runCmd "xdg-open" [url]
|
|
runServerWith "127.0.0.1" 9161 opts $ \pending -> do
|
|
putStrLn "Server pending."
|
|
prog <- getProgName
|
|
lst <- listDirectory "."
|
|
mbSelf <- findFile ("." : lst) prog
|
|
blocker <- newEmptyMVar :: IO (MVar ())
|
|
case mbSelf of
|
|
Nothing -> do
|
|
hPutStrLn stderr "Failed to find own source code."
|
|
Just self -> withINotify $ \notify -> do
|
|
conn <- acceptRequest pending
|
|
slave <- newEmptyMVar
|
|
let handler = modifyMVar_ slave $ \tid -> do
|
|
sendTextData conn (T.pack "Compiling")
|
|
putStrLn "Kill and respawn."
|
|
killThread tid
|
|
tid <- forkIO $ withTempFile ".exe" $ \tmpExecutable -> do
|
|
ret <- runCmd_ "stack" $ ["ghc", "--"] ++ ghcOptions tmpDir ++ [self, "-o", tmpExecutable]
|
|
case ret of
|
|
Left err ->
|
|
sendTextData conn $ T.pack $ "Error" ++ unlines (drop 3 (lines err))
|
|
Right{} -> do
|
|
getFrame <- runCmdLazy tmpExecutable ["once", "+RTS", "-N", "-M200M", "-RTS"]
|
|
flip fix [] $ \loop acc -> do
|
|
frame <- getFrame
|
|
case frame of
|
|
Left "" -> do
|
|
sendTextData conn (T.pack "Done")
|
|
-- insertCache msg (reverse acc)
|
|
Left err -> do
|
|
-- _ <- getChanContents queue
|
|
sendTextData conn $ T.pack $ "Error" ++ err
|
|
Right frame -> do
|
|
sendTextData conn frame
|
|
loop (frame : acc)
|
|
return tid
|
|
putStrLn "Found self. Listening."
|
|
addWatch notify [Modify] self (const handler)
|
|
putMVar slave =<< forkIO (return ())
|
|
let loop = do
|
|
fps <- receiveData conn :: IO T.Text
|
|
handler
|
|
loop
|
|
loop
|
|
|
|
ghcOptions :: FilePath -> [String]
|
|
ghcOptions tmpDir =
|
|
["-rtsopts", "--make", "-threaded", "-O2"] ++
|
|
["-odir", tmpDir, "-hidir", tmpDir]
|