X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=miTask.icl;h=92fbff2de2f8acd40edfeddccee16556528c2e50;hb=3698f150b0c5e5ebed23b0885ced2711ef16d9f5;hp=2634ce8a6eae6d49da48cf4f09407bd6917a9292;hpb=ee5171fbc1c8e1ea7454e95b3e89c24338423523;p=mTask.git diff --git a/miTask.icl b/miTask.icl index 2634ce8..92fbff2 100644 --- a/miTask.icl +++ b/miTask.icl @@ -54,14 +54,15 @@ bc = sds \x=1 In sds \pinnetje=1 In {main = ) )} -deviceSelector :: (Shared ([MTaskMSGRecv],[MTaskMSGSend],Bool)) -> Task () -deviceSelector ch = enterInformation "Type" [] +withDevice :: ((Shared ([MTaskMSGRecv],[MTaskMSGSend],Bool)) -> Task a) -> Task a | iTask a +withDevice t = withShared ([], [], False) \ch-> + enterInformation "Type" [] >>= \ty->case ty of TCP = (enterInformation "Host" [] -&&- enterInformation "Port" []) - >>= \(port,host)->syncNetworkChannel host port ch + >>= \(port,host)->t ch -|| syncNetworkChannel host port ch Serial = accWorld getDevices >>= \dl->(enterChoice "Device" [] dl -&&- updateInformation "Settings" [] zero) - >>= \(dev,set)->syncSerialChannel dev set ch + >>= \(dev,set)->t ch -|| syncSerialChannel dev set ch where getDevices :: !*World -> *(![String], !*World) getDevices w = case readDirectory "/dev" w of @@ -73,8 +74,8 @@ deviceSelector ch = enterInformation "Type" [] mTaskTask :: Task () mTaskTask = let (msgs, sdsShares) = makeMsgs 1000 bc in - withShared ([], msgs, False) (\ch-> - deviceSelector ch + withDevice (\ch-> + sendMsg msgs ch ||- processMessages ch messageShare sdsShares ||- viewSharedInformation "channels" [ViewWith lens] ch ||- viewSharedInformation "messages" [] messageShare @@ -103,10 +104,10 @@ mTaskTask = let (msgs, sdsShares) = makeMsgs 1000 bc in updateSDSs :: [(Int, Shared Int)] (Shared [String]) MTaskMSGRecv -> Task () updateSDSs _ m (MTMessage s) = upd (\l->take 20 [s:l]) m @! () - updateSDSs _ _ MTEmpty = return () updateSDSs [(id, sh):xs] m n=:(MTPub i d) | id == i = set ((toInt d.[0])*265 + toInt d.[1]) sh @! () = updateSDSs xs m n + updateSDSs _ _ _ = return () lens :: ([MTaskMSGRecv], [MTaskMSGSend],Bool) -> ([String], [String]) lens (r,s,_) = (map toString r, map toString s)