diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2022-10-07 11:38:01 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2022-10-07 18:27:33 +0200 |
commit | 23f206cf1fa9e4e9398aba47707024368c13ca60 (patch) | |
tree | 17906a3c679258f3a1da49c563a95a001051747c /src/Process.hs | |
parent | 2143eb381fc28e2d676a9c9a433426b1b2dbf737 (diff) |
Process node record accessor
Diffstat (limited to 'src/Process.hs')
-rw-r--r-- | src/Process.hs | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Process.hs b/src/Process.hs index 04c5076..0a2c861 100644 --- a/src/Process.hs +++ b/src/Process.hs @@ -7,6 +7,7 @@ module Process ( closeProcess, ) where +import Control.Arrow import Control.Concurrent.STM import Control.Monad.Except @@ -20,6 +21,7 @@ import System.IO import System.Posix.Signals import System.Process +import Network import Output import Test @@ -29,6 +31,7 @@ data Process = Process , procStdin :: Handle , procOutput :: TVar [Text] , procKillWith :: Maybe Signal + , procNode :: Node } instance Eq Process where @@ -37,7 +40,11 @@ instance Eq Process where instance ExprType Process where textExprType _ = T.pack "proc" textExprValue n = T.pack "p:" <> textProcName (procName n) - emptyVarValue = Process (ProcName T.empty) undefined undefined undefined undefined + emptyVarValue = Process (ProcName T.empty) undefined undefined undefined undefined emptyVarValue + + recordMembers = map (first T.pack) + [ ("node", RecordSelector $ procNode) + ] data ProcName = ProcName Text |