X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=Devices%2FmTaskDevice.icl;h=4fff9ae4813499c32a39bbb6828f2beab889468c;hb=71787cb6678d7a0d2014d373af5e55447796f78d;hp=972aa7bebef259e416cb1a4242f26bbc494cb067;hpb=526e9fec79086ef2a701420736cf89a6191cc13c;p=mTask.git diff --git a/Devices/mTaskDevice.icl b/Devices/mTaskDevice.icl index 972aa7b..4fff9ae 100644 --- a/Devices/mTaskDevice.icl +++ b/Devices/mTaskDevice.icl @@ -1,5 +1,6 @@ implementation module Devices.mTaskDevice +from StdFunc import flip import Generics.gCons import mTaskInterpret import iTasks @@ -19,6 +20,9 @@ derive class iTask MTaskDevice, MTaskResource, MTaskMSGRecv, MTaskMSGSend derive conses MTaskResource, TTYSettings, BaudRate, Parity, ByteSize, TCPSettings derive consName MTaskResource, TTYSettings, BaudRate, Parity, ByteSize, TCPSettings +instance == MTaskDevice where + (==) a b = a.deviceChannels == b.deviceChannels + channels :: MTaskDevice -> Shared Channels channels d = memoryShare d.deviceChannels ([], [], False) @@ -60,7 +64,7 @@ manageDevices processFun ds = anyTask [ <<@ ArrangeWithTabs @! () viewDevice :: MTaskDevice -> Task () -viewDevice d = anyTask +viewDevice d = forever $ anyTask [viewInformation "Device settings" [] d @! () ,viewSharedInformation "Channels" [ViewAs dropEmpty] (channels d) @! () ,forever $ @@ -68,25 +72,31 @@ viewDevice d = anyTask >>* [OnAction (Action "Delete") $ ifValue (\t->t.ident <> -1) (deviceTaskDelete d)] @! () ] <<@ ArrangeHorizontal + >>* [OnAction (Action "Delete Device") (always $ deleteDevice d)] where dropEmpty (r,s,ss) = (filter ((=!=)MTEmpty) r,s,ss) -sendToDevice :: (Map String (Main (ByteCode () Stmt))) String (MTaskDevice, Int) -> Task () -sendToDevice tmap mTask (device, timeout) = - get bcStateStore @ createBytecode +deleteDevice :: MTaskDevice -> Task () +deleteDevice d = upd (\(r,s,ss)->(r,s,True)) (channels d) + >>| maybe (treturn ()) (flip removeTask topLevelTasks) d.deviceTask + >>| upd (filter ((==)d)) deviceStore + @! () + +sendToDevice :: String (Main (ByteCode () Stmt)) (MTaskDevice, Int) -> Task () +sendToDevice wta mTask (device, timeout) = + get bcStateStore @ toMessages timeout o toRealByteCode (unMain mTask) >>= \(msgs, st1)->set st1 bcStateStore @ toSDSRecords >>= \sdss->upd ((++)sdss) sdsStore//MTaskShareaddToSDSShare >>| makeShares sdss >>| sendMessage device msgs - >>| makeTask mTask -1 - >>= \task->withDevices device (addTask timeout task) + >>| makeTask wta -1 + >>= withDevices device o addTask timeout @! () where - createBytecode st = toMessages timeout $ toRealByteCode (unMain $ fromJust ('DM'.get mTask tmap)) st sharename i = device.deviceChannels +++ "-" +++ toString i toSDSRecords st = [{MTaskShare | initValue=toInt d1*265 + toInt d2, - withTask=mTask, + withTask=wta, identifier=i, realShare="mTaskSDS-" +++ toString i} \\(i,[d1,d2])<-st.sdss] @@ -99,8 +109,7 @@ sendMessage :: MTaskDevice [MTaskMSGSend] -> Task () sendMessage dev msgs = upd (\(r,s,ss)->(r,msgs++s,ss)) (channels dev) @! () withDevices :: MTaskDevice (MTaskDevice -> MTaskDevice) -> Task () -withDevices a trans = upd (map withDevice) deviceStore @! () - where withDevice b = if (a.deviceChannels == b.deviceChannels) (trans b) b +withDevices a trans = upd (map \b->if (b == a) (trans b) b) deviceStore @! () deviceTaskAcked :: MTaskDevice Int -> Task () deviceTaskAcked dev i