2019-09-04 01:17:20 +03:00
|
|
|
module Vere.Term (initializeLocalTerminal, term, TerminalSystem(..)) where
|
2019-08-28 01:29:11 +03:00
|
|
|
|
2019-09-13 21:02:41 +03:00
|
|
|
import Arvo hiding (Term)
|
2019-09-16 23:34:55 +03:00
|
|
|
import Urbit.Time
|
|
|
|
import UrbitPrelude hiding (getCurrentTime)
|
2019-08-28 01:29:11 +03:00
|
|
|
import Vere.Pier.Types
|
|
|
|
|
2019-08-29 23:19:06 +03:00
|
|
|
import Data.Char
|
2019-09-16 23:34:55 +03:00
|
|
|
import Data.List ((!!))
|
2019-08-28 23:17:01 +03:00
|
|
|
import Foreign.Marshal.Alloc
|
2019-08-29 23:19:06 +03:00
|
|
|
import Foreign.Ptr
|
2019-08-29 21:12:50 +03:00
|
|
|
import Foreign.Storable
|
2019-08-28 01:29:11 +03:00
|
|
|
import System.Posix.IO
|
|
|
|
import System.Posix.Terminal
|
|
|
|
|
2019-09-13 21:02:41 +03:00
|
|
|
import RIO.Directory (createDirectoryIfMissing)
|
2019-09-10 23:14:43 +03:00
|
|
|
import RIO.FilePath
|
2019-09-13 21:02:41 +03:00
|
|
|
import System.Console.Terminfo.Base
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-08-29 21:12:50 +03:00
|
|
|
import Data.ByteString.Internal
|
2019-08-28 01:29:11 +03:00
|
|
|
|
2019-09-13 21:46:03 +03:00
|
|
|
import qualified Data.ByteString as B
|
|
|
|
import qualified Data.ByteString.UTF8 as UTF8
|
|
|
|
|
2019-08-28 01:29:11 +03:00
|
|
|
-- Types -----------------------------------------------------------------------
|
|
|
|
|
2019-08-29 03:08:47 +03:00
|
|
|
-- Output to the attached terminal is either a series of vere blits, or it is an
|
|
|
|
-- injected printf line from the interpreter.
|
|
|
|
data VereOutput = VereBlitOutput [Blit]
|
|
|
|
| VerePrintOutput String
|
2019-08-30 02:35:52 +03:00
|
|
|
| VereBlankLine
|
2019-09-16 23:34:55 +03:00
|
|
|
| VereShowSpinner (Maybe String)
|
|
|
|
| VereHideSpinner
|
|
|
|
|
|
|
|
-- All stateful data in the printing to stdOutput.
|
|
|
|
data LineState = LineState
|
|
|
|
{ lsLine :: String
|
|
|
|
, lsCurPos :: Int
|
|
|
|
, lsSpinTimer :: Maybe (Async ())
|
|
|
|
, lsSpinCause :: Maybe String
|
|
|
|
, lsSpinFirstRender :: Bool
|
|
|
|
, lsSpinFrame :: Int
|
|
|
|
, lsPrevEndTime :: Wen
|
|
|
|
}
|
2019-08-29 03:08:47 +03:00
|
|
|
|
2019-08-29 23:19:06 +03:00
|
|
|
-- A record used in reading data from stdInput.
|
|
|
|
data ReadData = ReadData
|
2019-09-13 21:46:03 +03:00
|
|
|
{ rdBuf :: Ptr Word8
|
|
|
|
, rdEscape :: Bool
|
|
|
|
, rdBracket :: Bool
|
|
|
|
, rdUTF8 :: ByteString
|
|
|
|
, rdUTF8width :: Int
|
2019-08-29 23:19:06 +03:00
|
|
|
}
|
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- Minimal terminal interface.
|
|
|
|
--
|
|
|
|
-- A Terminal can either be local or remote. Either way, the Terminal, from the
|
|
|
|
-- view of the caller, a terminal has a thread which when exits indicates that
|
|
|
|
-- the session is over, and has a general in/out queue in the types of the
|
|
|
|
-- vere/arvo interface.
|
2019-09-04 01:17:20 +03:00
|
|
|
data TerminalSystem e = TerminalSystem
|
2019-09-16 23:34:55 +03:00
|
|
|
{ tsReadQueue :: TQueue Belt
|
|
|
|
, tsWriteQueue :: TQueue VereOutput
|
|
|
|
, tsStderr :: Text -> RIO e ()
|
|
|
|
, tsShowSpinner :: Maybe String -> STM ()
|
|
|
|
, tsHideSpinner :: STM ()
|
2019-08-30 02:35:52 +03:00
|
|
|
}
|
2019-08-28 01:29:11 +03:00
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- Private data to the TerminalSystem that we keep around for stop().
|
|
|
|
data Private = Private
|
2019-09-13 21:02:41 +03:00
|
|
|
{ pReaderThread :: Async ()
|
|
|
|
, pWriterThread :: Async ()
|
2019-09-17 23:37:41 +03:00
|
|
|
, pTerminal :: Terminal
|
|
|
|
, pPreviousConfiguration :: TerminalAttributes
|
2019-08-30 02:35:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
-- Utils -----------------------------------------------------------------------
|
2019-08-28 01:29:11 +03:00
|
|
|
|
2019-08-29 03:08:47 +03:00
|
|
|
initialBlew w h = EvBlip $ BlipEvTerm $ TermEvBlew (UD 1, ()) w h
|
2019-08-28 02:22:01 +03:00
|
|
|
|
2019-08-29 03:08:47 +03:00
|
|
|
initialHail = EvBlip $ BlipEvTerm $ TermEvHail (UD 1, ()) ()
|
2019-08-28 02:22:01 +03:00
|
|
|
|
2019-08-28 23:17:01 +03:00
|
|
|
-- Version one of this is punting on the ops_u.dem flag: whether we're running
|
2019-08-29 03:08:47 +03:00
|
|
|
-- in daemon mode.
|
|
|
|
|
2019-09-16 23:34:55 +03:00
|
|
|
spinners = ['|', '/', '-', '\\']
|
|
|
|
|
|
|
|
leftBracket = ['«']
|
|
|
|
rightBracket = ['»']
|
|
|
|
|
|
|
|
_spin_cool_us = 500000
|
|
|
|
_spin_warm_us = 50000
|
|
|
|
_spin_rate_us = 250000
|
|
|
|
_spin_idle_us = 500000
|
|
|
|
|
2019-08-29 03:08:47 +03:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
runMaybeTermOutput :: Terminal -> (Terminal -> Maybe TermOutput) -> RIO e ()
|
2019-08-29 03:08:47 +03:00
|
|
|
runMaybeTermOutput t getter = case (getter t) of
|
|
|
|
Nothing -> pure ()
|
2019-09-13 21:02:41 +03:00
|
|
|
Just x -> io $ runTermOutput t x
|
2019-09-03 21:02:54 +03:00
|
|
|
|
|
|
|
rioAllocaBytes :: (MonadIO m, MonadUnliftIO m)
|
|
|
|
=> Int -> (Ptr a -> m b) -> m b
|
|
|
|
rioAllocaBytes size action =
|
|
|
|
withRunInIO $ \run ->
|
|
|
|
allocaBytes size $ \x -> run (action x)
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-08-30 21:01:37 +03:00
|
|
|
-- Because of legacy reasons, some file operations are in the terminal
|
|
|
|
-- driver. These should be filtered out and handled locally instead of in any
|
|
|
|
-- abstractly connected terminal.
|
|
|
|
isTerminalBlit :: Blit -> Bool
|
|
|
|
isTerminalBlit (Sav _ _) = False
|
|
|
|
isTerminalBlit (Sag _ _) = False
|
|
|
|
isTerminalBlit _ = True
|
|
|
|
|
2019-08-28 01:29:11 +03:00
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- Initializes the generalized input/output parts of the terminal.
|
|
|
|
--
|
2019-09-16 23:34:55 +03:00
|
|
|
initializeLocalTerminal :: forall e. HasLogFunc e
|
|
|
|
=> RAcquire e (TerminalSystem e)
|
|
|
|
initializeLocalTerminal = fst <$> mkRAcquire start stop
|
2019-08-28 23:17:01 +03:00
|
|
|
where
|
2019-09-04 01:17:20 +03:00
|
|
|
start :: HasLogFunc e => RIO e (TerminalSystem e, Private)
|
2019-08-28 23:17:01 +03:00
|
|
|
start = do
|
2019-08-30 02:35:52 +03:00
|
|
|
-- Initialize the writing side of the terminal
|
|
|
|
--
|
2019-09-17 23:37:41 +03:00
|
|
|
pTerminal <- io $ setupTermFromEnv
|
2019-09-03 21:02:54 +03:00
|
|
|
-- TODO: We still need to actually get the size from the terminal somehow.
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
tsWriteQueue <- newTQueueIO
|
2019-09-16 23:34:55 +03:00
|
|
|
spinnerMVar <- newEmptyTMVarIO
|
2019-09-18 20:38:20 +03:00
|
|
|
pWriterThread <-
|
|
|
|
asyncBound (writeTerminal pTerminal tsWriteQueue spinnerMVar)
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
pPreviousConfiguration <- io $ getTerminalAttributes stdInput
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- Create a new configuration where we put the terminal in raw mode and
|
|
|
|
-- disable a bunch of preprocessing.
|
|
|
|
let newTermSettings =
|
|
|
|
flip withTime 0 .
|
|
|
|
flip withMinInput 1 $
|
|
|
|
foldl' withoutMode pPreviousConfiguration disabledFlags
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ setTerminalAttributes stdInput newTermSettings Immediately
|
2019-08-30 02:35:52 +03:00
|
|
|
|
|
|
|
tsReadQueue <- newTQueueIO
|
2019-09-13 21:02:41 +03:00
|
|
|
pReaderThread <- asyncBound
|
2019-09-16 23:34:55 +03:00
|
|
|
(readTerminal tsReadQueue tsWriteQueue (bell tsWriteQueue))
|
2019-08-30 02:35:52 +03:00
|
|
|
|
2019-09-04 01:17:20 +03:00
|
|
|
let tsStderr = \txt ->
|
|
|
|
atomically $ writeTQueue tsWriteQueue $ VerePrintOutput $ unpack txt
|
|
|
|
|
2019-09-16 23:34:55 +03:00
|
|
|
let tsShowSpinner = \str ->
|
|
|
|
writeTQueue tsWriteQueue $ VereShowSpinner str
|
|
|
|
let tsHideSpinner = writeTQueue tsWriteQueue $ VereHideSpinner
|
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
pure (TerminalSystem{..}, Private{..})
|
|
|
|
|
2019-09-04 01:17:20 +03:00
|
|
|
stop :: HasLogFunc e
|
|
|
|
=> (TerminalSystem e, Private) -> RIO e ()
|
2019-08-30 02:35:52 +03:00
|
|
|
stop (TerminalSystem{..}, Private{..}) = do
|
2019-09-06 22:59:56 +03:00
|
|
|
-- Note that we don't `cancel pReaderThread` here. This is a deliberate
|
|
|
|
-- decision because fdRead calls into a native function which the runtime
|
|
|
|
-- can't kill. If we were to cancel here, the internal `waitCatch` would
|
|
|
|
-- block until the next piece of keyboard input. Since this only happens
|
|
|
|
-- at shutdown, just leak the file descriptor.
|
2019-08-30 02:35:52 +03:00
|
|
|
cancel pWriterThread
|
2019-09-17 23:37:41 +03:00
|
|
|
|
|
|
|
-- inject one final newline, as we're usually on the prompt.
|
|
|
|
io $ runTermOutput pTerminal $ termText "\r\n"
|
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- take the terminal out of raw mode
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ setTerminalAttributes stdInput pPreviousConfiguration Immediately
|
2019-08-30 02:35:52 +03:00
|
|
|
|
|
|
|
-- A list of terminal flags that we disable
|
|
|
|
disabledFlags = [
|
|
|
|
-- lflag
|
|
|
|
StartStopOutput, KeyboardInterrupts, EnableEcho, EchoLF,
|
|
|
|
ProcessInput, ExtendedFunctions,
|
|
|
|
-- iflag
|
|
|
|
MapCRtoLF, CheckParity, StripHighBit,
|
|
|
|
-- cflag, todo: Terminal library missing CSIZE?
|
|
|
|
EnableParity,
|
|
|
|
-- oflag
|
|
|
|
ProcessOutput
|
|
|
|
]
|
2019-08-28 23:17:01 +03:00
|
|
|
|
|
|
|
getCap term cap =
|
|
|
|
getCapability term (tiGetOutput1 cap) :: Maybe TermOutput
|
|
|
|
|
2019-08-29 03:08:47 +03:00
|
|
|
vtClearScreen t = getCap t "clear"
|
|
|
|
vtClearToBegin t = getCap t "el"
|
|
|
|
vtSoundBell t = getCap t "bel"
|
|
|
|
vtParmLeft t = getCap t "cub1"
|
|
|
|
vtParmRight t = getCap t "cuf1"
|
|
|
|
|
2019-09-16 23:34:55 +03:00
|
|
|
-- An async which will put into an mvar after a delay. Used to spin the
|
|
|
|
-- spinner in writeTerminal.
|
|
|
|
spinnerHeartBeat :: Int -> Int -> TMVar () -> RIO e ()
|
|
|
|
spinnerHeartBeat first rest mvar = do
|
|
|
|
threadDelay first
|
|
|
|
loop
|
|
|
|
where
|
|
|
|
loop = do
|
|
|
|
atomically $ putTMVar mvar ()
|
|
|
|
threadDelay rest
|
|
|
|
loop
|
|
|
|
|
2019-08-28 23:17:01 +03:00
|
|
|
-- Writes data to the terminal. Both the terminal reading, normal logging,
|
|
|
|
-- and effect handling can all emit bytes which go to the terminal.
|
2019-09-16 23:34:55 +03:00
|
|
|
writeTerminal :: Terminal -> TQueue VereOutput -> TMVar () -> RIO e ()
|
|
|
|
writeTerminal t q spinner = do
|
|
|
|
currentTime <- io $ now
|
|
|
|
loop (LineState "" 0 Nothing Nothing True 0 currentTime)
|
2019-08-29 03:08:47 +03:00
|
|
|
where
|
2019-09-16 23:34:55 +03:00
|
|
|
loop ls@LineState{..} = do
|
|
|
|
x <- atomically $
|
|
|
|
Right <$> readTQueue q <|>
|
|
|
|
Left <$> takeTMVar spinner
|
2019-08-29 03:08:47 +03:00
|
|
|
case x of
|
2019-09-16 23:34:55 +03:00
|
|
|
Right (VereBlitOutput blits) -> do
|
|
|
|
ls <- foldM (writeBlit t) ls blits
|
|
|
|
loop ls
|
|
|
|
Right (VerePrintOutput p) -> do
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText "\r"
|
2019-08-29 03:08:47 +03:00
|
|
|
runMaybeTermOutput t vtClearToBegin
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText p
|
2019-09-16 23:34:55 +03:00
|
|
|
ls <- termRefreshLine t ls
|
|
|
|
loop ls
|
|
|
|
Right VereBlankLine -> do
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText "\r\n"
|
2019-09-16 23:34:55 +03:00
|
|
|
loop ls
|
|
|
|
Right (VereShowSpinner txt) -> do
|
|
|
|
current <- io $ now
|
|
|
|
-- Figure out how long to wait to show the spinner. When we don't
|
|
|
|
-- have a vane name to display, we assume its a user action and
|
|
|
|
-- trigger immediately. Otherwise, if we receive an event shortly
|
|
|
|
-- after a previous spin, use a shorter delay to avoid giving the
|
|
|
|
-- impression of a half-idle system.
|
|
|
|
let delay = case txt of
|
|
|
|
Nothing -> 0
|
|
|
|
Just _ ->
|
|
|
|
if (gap current lsPrevEndTime ^. microSecs) <
|
|
|
|
_spin_idle_us
|
|
|
|
then _spin_warm_us
|
|
|
|
else _spin_cool_us
|
|
|
|
|
|
|
|
spinTimer <- async $ spinnerHeartBeat delay _spin_rate_us spinner
|
|
|
|
loop ls { lsSpinTimer = Just spinTimer,
|
|
|
|
lsSpinCause = txt,
|
|
|
|
lsSpinFirstRender = True }
|
|
|
|
Right VereHideSpinner -> do
|
|
|
|
maybe (pure ()) cancel lsSpinTimer
|
|
|
|
-- We do a final flush of the spinner mvar to ensure we don't
|
|
|
|
-- have a lingering signal which will redisplay the spinner after
|
|
|
|
-- we call termRefreshLine below.
|
|
|
|
atomically $ tryTakeTMVar spinner
|
|
|
|
|
|
|
|
-- If we ever actually ran the spinner display callback, we need
|
|
|
|
-- to force a redisplay of the command prompt.
|
|
|
|
ls <- if not lsSpinFirstRender
|
|
|
|
then termRefreshLine t ls
|
|
|
|
else pure ls
|
|
|
|
|
|
|
|
endTime <- io $ now
|
|
|
|
loop ls { lsSpinTimer = Nothing, lsPrevEndTime = endTime }
|
|
|
|
Left () -> do
|
|
|
|
let spinner = [spinners !! lsSpinFrame] ++ case lsSpinCause of
|
|
|
|
Nothing -> []
|
|
|
|
Just str -> leftBracket ++ str ++ rightBracket
|
|
|
|
|
|
|
|
io $ runTermOutput t $ termText spinner
|
|
|
|
termSpinnerMoveLeft t (length spinner)
|
|
|
|
|
|
|
|
loop ls { lsSpinFirstRender = False,
|
|
|
|
lsSpinFrame = (lsSpinFrame + 1) `mod` (length spinners)
|
|
|
|
}
|
2019-08-29 03:08:47 +03:00
|
|
|
|
|
|
|
-- Writes an individual blit to the screen
|
2019-09-03 21:02:54 +03:00
|
|
|
writeBlit :: Terminal -> LineState -> Blit -> RIO e LineState
|
2019-08-29 03:08:47 +03:00
|
|
|
writeBlit t ls = \case
|
|
|
|
Bel () -> do
|
|
|
|
runMaybeTermOutput t vtSoundBell
|
|
|
|
pure ls
|
|
|
|
Clr () -> do
|
|
|
|
runMaybeTermOutput t vtClearScreen
|
|
|
|
termRefreshLine t ls
|
|
|
|
(Hop w) -> do
|
|
|
|
termShowCursor t ls (fromIntegral w)
|
|
|
|
(Lin c) -> do
|
|
|
|
ls2 <- termShowClear t ls
|
|
|
|
termShowLine t ls2 (pack c)
|
|
|
|
(Mor ()) -> do
|
|
|
|
termShowMore t ls
|
|
|
|
(Sag path noun) -> pure ls
|
|
|
|
(Sav path atom) -> pure ls
|
|
|
|
(Url url) -> pure ls
|
|
|
|
|
|
|
|
-- Moves the cursor to the requested position
|
2019-09-03 21:02:54 +03:00
|
|
|
termShowCursor :: Terminal -> LineState -> Int -> RIO e LineState
|
2019-09-16 23:34:55 +03:00
|
|
|
termShowCursor t ls@LineState{..} {-line pos)-} newPos = do
|
|
|
|
if newPos < lsCurPos then do
|
|
|
|
replicateM_ (lsCurPos - newPos) (runMaybeTermOutput t vtParmLeft)
|
|
|
|
pure ls { lsCurPos = newPos }
|
|
|
|
else if newPos > lsCurPos then do
|
|
|
|
replicateM_ (newPos - lsCurPos) (runMaybeTermOutput t vtParmRight)
|
|
|
|
pure ls { lsCurPos = newPos }
|
2019-08-29 03:08:47 +03:00
|
|
|
else
|
2019-09-16 23:34:55 +03:00
|
|
|
pure ls
|
|
|
|
|
|
|
|
|
|
|
|
-- Moves the cursor left without any mutation of the LineState. Used only
|
|
|
|
-- in cursor spinning.
|
|
|
|
termSpinnerMoveLeft :: Terminal -> Int -> RIO e ()
|
|
|
|
termSpinnerMoveLeft t count =
|
|
|
|
replicateM_ count (runMaybeTermOutput t vtParmLeft)
|
2019-08-29 03:08:47 +03:00
|
|
|
|
|
|
|
-- Displays and sets the current line
|
2019-09-03 21:02:54 +03:00
|
|
|
termShowLine :: Terminal -> LineState -> String -> RIO e LineState
|
2019-08-29 03:08:47 +03:00
|
|
|
termShowLine t ls newStr = do
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText newStr
|
2019-09-16 23:34:55 +03:00
|
|
|
pure ls { lsLine = newStr, lsCurPos = (length newStr) }
|
2019-08-29 03:08:47 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
termShowClear :: Terminal -> LineState -> RIO e LineState
|
2019-08-29 03:08:47 +03:00
|
|
|
termShowClear t ls = do
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText "\r"
|
2019-08-29 03:08:47 +03:00
|
|
|
runMaybeTermOutput t vtClearToBegin
|
2019-09-16 23:34:55 +03:00
|
|
|
pure ls { lsLine = "", lsCurPos = 0 }
|
2019-08-29 03:08:47 +03:00
|
|
|
|
|
|
|
-- New Current Line
|
2019-09-03 21:02:54 +03:00
|
|
|
termShowMore :: Terminal -> LineState -> RIO e LineState
|
2019-08-29 03:08:47 +03:00
|
|
|
termShowMore t ls = do
|
2019-09-03 21:02:54 +03:00
|
|
|
io $ runTermOutput t $ termText "\r\n"
|
2019-09-16 23:34:55 +03:00
|
|
|
pure ls { lsLine = "", lsCurPos = 0 }
|
2019-08-29 03:08:47 +03:00
|
|
|
|
2019-09-16 23:34:55 +03:00
|
|
|
-- Redraw the current LineState, maintaining the current curpos
|
2019-09-03 21:02:54 +03:00
|
|
|
termRefreshLine :: Terminal -> LineState -> RIO e LineState
|
2019-09-16 23:34:55 +03:00
|
|
|
termRefreshLine t ls = do
|
|
|
|
let line = (lsLine ls)
|
|
|
|
curPos = (lsCurPos ls)
|
|
|
|
ls <- termShowClear t ls
|
|
|
|
ls <- termShowLine t ls line
|
|
|
|
termShowCursor t ls curPos
|
2019-08-28 23:17:01 +03:00
|
|
|
|
2019-08-30 02:35:52 +03:00
|
|
|
-- ring my bell
|
2019-09-03 21:02:54 +03:00
|
|
|
bell :: TQueue VereOutput -> RIO e ()
|
|
|
|
bell q = atomically $ writeTQueue q $ VereBlitOutput [Bel ()]
|
2019-08-29 23:19:06 +03:00
|
|
|
|
2019-08-28 01:29:11 +03:00
|
|
|
-- Reads data from stdInput and emit the proper effect
|
2019-08-28 23:17:01 +03:00
|
|
|
--
|
|
|
|
-- This entire path is a divergence from how term.c does things,
|
|
|
|
-- probably. First, the vtime is 0, not 1 in term.c. So (IIUC), we'll
|
|
|
|
-- always have a latency of 1/10 of a second.
|
|
|
|
--
|
|
|
|
-- A better way to do this would be to get some sort of epoll on stdInput,
|
|
|
|
-- since that's kinda closer to what libuv does?
|
2019-09-03 21:02:54 +03:00
|
|
|
readTerminal :: forall e. HasLogFunc e
|
|
|
|
=> TQueue Belt -> TQueue VereOutput -> (RIO e ()) -> RIO e ()
|
|
|
|
readTerminal rq wq bell =
|
2019-09-13 21:46:03 +03:00
|
|
|
rioAllocaBytes 1 $ \ buf -> loop (ReadData buf False False B.empty 0)
|
2019-08-29 23:19:06 +03:00
|
|
|
where
|
2019-09-03 21:02:54 +03:00
|
|
|
loop :: ReadData -> RIO e ()
|
2019-08-29 23:19:06 +03:00
|
|
|
loop rd@ReadData{..} = do
|
2019-09-13 21:46:03 +03:00
|
|
|
-- The problem with using fdRead raw is that it will text encode
|
|
|
|
-- things like \ESC instead of 27. That makes it broken for our
|
|
|
|
-- purposes.
|
2019-08-30 00:54:34 +03:00
|
|
|
--
|
2019-09-03 21:02:54 +03:00
|
|
|
t <- io $ try (fdReadBuf stdInput rdBuf 1)
|
2019-08-29 23:19:06 +03:00
|
|
|
case t of
|
2019-08-30 00:54:34 +03:00
|
|
|
Left (e :: IOException) -> do
|
2019-08-29 23:19:06 +03:00
|
|
|
-- Ignore EAGAINs when doing reads
|
|
|
|
loop rd
|
|
|
|
Right 0 -> loop rd
|
|
|
|
Right _ -> do
|
2019-09-03 21:02:54 +03:00
|
|
|
w <- io $ peek rdBuf
|
2019-08-30 00:54:34 +03:00
|
|
|
-- print ("{" ++ (show w) ++ "}")
|
2019-08-29 23:19:06 +03:00
|
|
|
let c = w2c w
|
2019-08-30 02:35:52 +03:00
|
|
|
if rdEscape then
|
|
|
|
if rdBracket then do
|
2019-08-29 23:19:06 +03:00
|
|
|
case c of
|
|
|
|
'A' -> sendBelt $ Aro U
|
|
|
|
'B' -> sendBelt $ Aro D
|
|
|
|
'C' -> sendBelt $ Aro R
|
|
|
|
'D' -> sendBelt $ Aro L
|
2019-08-30 00:54:34 +03:00
|
|
|
_ -> bell
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = False, rdBracket = False}
|
2019-08-30 00:54:34 +03:00
|
|
|
else if isAsciiLower c then do
|
|
|
|
sendBelt $ Met $ Cord $ pack [c]
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = False }
|
2019-08-30 00:54:34 +03:00
|
|
|
else if c == '.' then do
|
|
|
|
sendBelt $ Met $ Cord "dot"
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = False }
|
2019-08-30 00:54:34 +03:00
|
|
|
else if w == 8 || w == 127 then do
|
|
|
|
sendBelt $ Met $ Cord "bac"
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = False }
|
2019-08-30 00:54:34 +03:00
|
|
|
else if c == '[' || c == '0' then do
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdBracket = True }
|
2019-08-30 00:54:34 +03:00
|
|
|
else do
|
|
|
|
bell
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = False }
|
2019-09-13 21:46:03 +03:00
|
|
|
else if rdUTF8width /= 0 then do
|
|
|
|
-- continue reading into the utf8 accumulation buffer
|
|
|
|
rd@ReadData{..} <- pure rd { rdUTF8 = snoc rdUTF8 w }
|
|
|
|
if length rdUTF8 /= rdUTF8width then loop rd
|
|
|
|
else do
|
|
|
|
case UTF8.decode rdUTF8 of
|
|
|
|
Nothing ->
|
|
|
|
error "empty utf8 accumulation buffer"
|
|
|
|
Just (c, bytes) | bytes /= rdUTF8width ->
|
|
|
|
error "utf8 character size mismatch?!"
|
|
|
|
Just (c, bytes) -> sendBelt $ Txt $ Tour $ [c]
|
|
|
|
loop rd { rdUTF8 = B.empty, rdUTF8width = 0 }
|
2019-08-30 00:54:34 +03:00
|
|
|
else if w >= 32 && w < 127 then do
|
2019-08-29 23:19:06 +03:00
|
|
|
sendBelt $ Txt $ Tour $ [c]
|
2019-08-30 00:54:34 +03:00
|
|
|
loop rd
|
2019-08-29 23:19:06 +03:00
|
|
|
else if w == 0 then do
|
|
|
|
bell
|
2019-08-30 00:54:34 +03:00
|
|
|
loop rd
|
2019-08-29 23:19:06 +03:00
|
|
|
else if w == 8 || w == 127 then do
|
|
|
|
sendBelt $ Bac ()
|
|
|
|
loop rd
|
|
|
|
else if w == 13 then do
|
|
|
|
sendBelt $ Ret ()
|
|
|
|
loop rd
|
2019-08-30 00:54:34 +03:00
|
|
|
else if w == 3 then do
|
|
|
|
-- ETX (^C)
|
2019-09-03 21:02:54 +03:00
|
|
|
logDebug $ displayShow "Ctrl-c interrupt"
|
2019-08-30 01:05:01 +03:00
|
|
|
atomically $ do
|
2019-09-04 01:17:20 +03:00
|
|
|
writeTQueue wq $ VerePrintOutput "interrupt\r\n"
|
2019-08-30 02:35:52 +03:00
|
|
|
writeTQueue rq $ Ctl $ Cord "c"
|
2019-08-30 00:54:34 +03:00
|
|
|
loop rd
|
2019-08-29 23:19:06 +03:00
|
|
|
else if w <= 26 then do
|
|
|
|
sendBelt $ Ctl $ Cord $ pack [w2c (w + 97 - 1)]
|
|
|
|
loop rd
|
|
|
|
else if w == 27 then do
|
2019-08-30 02:35:52 +03:00
|
|
|
loop rd { rdEscape = True }
|
2019-08-30 00:54:34 +03:00
|
|
|
else do
|
2019-08-29 23:19:06 +03:00
|
|
|
-- start the utf8 accumulation buffer
|
2019-09-13 21:46:03 +03:00
|
|
|
loop rd { rdUTF8 = singleton w,
|
|
|
|
rdUTF8width = if w < 224 then 2
|
|
|
|
else if w < 240 then 3
|
|
|
|
else 4 }
|
2019-08-29 23:19:06 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
sendBelt :: HasLogFunc e => Belt -> RIO e ()
|
2019-08-29 23:19:06 +03:00
|
|
|
sendBelt b = do
|
2019-09-03 21:02:54 +03:00
|
|
|
logDebug $ displayShow ("terminalBelt", b)
|
2019-08-30 02:35:52 +03:00
|
|
|
atomically $ writeTQueue rq b
|
|
|
|
|
|
|
|
--------------------------------------------------------------------------------
|
|
|
|
|
2019-09-10 23:14:43 +03:00
|
|
|
term :: forall e. HasLogFunc e
|
2019-09-06 22:59:56 +03:00
|
|
|
=> TerminalSystem e -> (STM ()) -> FilePath -> KingId -> QueueEv
|
|
|
|
-> ([Ev], RAcquire e (EffCb e TermEf))
|
|
|
|
term TerminalSystem{..} shutdownSTM pierPath king enqueueEv =
|
2019-08-30 02:35:52 +03:00
|
|
|
(initialEvents, runTerm)
|
|
|
|
where
|
|
|
|
initialEvents = [(initialBlew 80 24), initialHail]
|
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
runTerm :: RAcquire e (EffCb e TermEf)
|
2019-08-30 02:35:52 +03:00
|
|
|
runTerm = do
|
2019-09-17 23:37:41 +03:00
|
|
|
tim <- mkRAcquire start cancel
|
2019-09-03 21:02:54 +03:00
|
|
|
pure handleEffect
|
2019-08-30 02:35:52 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
start :: RIO e (Async ())
|
2019-08-30 02:35:52 +03:00
|
|
|
start = async readBelt
|
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
readBelt :: RIO e ()
|
2019-08-30 02:35:52 +03:00
|
|
|
readBelt = forever $ do
|
|
|
|
b <- atomically $ readTQueue tsReadQueue
|
|
|
|
let blip = EvBlip $ BlipEvTerm $ TermEvBelt (UD 1, ()) $ b
|
|
|
|
atomically $ enqueueEv $ blip
|
2019-08-29 23:19:06 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
handleEffect :: TermEf -> RIO e ()
|
2019-08-30 02:35:52 +03:00
|
|
|
handleEffect = \case
|
2019-08-30 21:01:37 +03:00
|
|
|
TermEfBlit _ blits -> do
|
|
|
|
let (termBlits, fsWrites) = partition isTerminalBlit blits
|
|
|
|
atomically $ writeTQueue tsWriteQueue (VereBlitOutput termBlits)
|
|
|
|
for_ fsWrites handleFsWrite
|
2019-08-28 23:17:01 +03:00
|
|
|
TermEfInit _ _ -> pure ()
|
2019-08-30 21:01:37 +03:00
|
|
|
TermEfLogo path _ -> do
|
2019-09-06 22:59:56 +03:00
|
|
|
atomically $ shutdownSTM
|
2019-08-28 23:17:01 +03:00
|
|
|
TermEfMass _ _ -> pure ()
|
2019-08-30 21:01:37 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
handleFsWrite :: Blit -> RIO e ()
|
2019-08-30 23:25:50 +03:00
|
|
|
handleFsWrite (Sag path noun) = performPut path (jamBS noun)
|
2019-09-13 21:46:03 +03:00
|
|
|
handleFsWrite (Sav path atom) = performPut path (atom ^. atomBytes)
|
2019-09-13 21:02:41 +03:00
|
|
|
handleFsWrite _ = pure ()
|
2019-08-30 23:25:50 +03:00
|
|
|
|
2019-09-03 21:02:54 +03:00
|
|
|
performPut :: Path -> ByteString -> RIO e ()
|
2019-08-30 23:25:50 +03:00
|
|
|
performPut path bs = do
|
2019-09-10 23:14:43 +03:00
|
|
|
let putOutFile = pierPath </> ".urb" </> "put" </> (pathToFilePath path)
|
|
|
|
createDirectoryIfMissing True (takeDirectory putOutFile)
|
2019-08-30 23:25:50 +03:00
|
|
|
writeFile putOutFile bs
|