Ran*_*ize 5 haskell frp reactive-programming reactive-banana
我在WX界面中使用Reactive-Banana.我需要在按下按钮时从外部服务API检索值.
我有一个Behavior基于数据类型的泛型,它基于AppState函数transformation(doSomeTransformation)"累积"转换的变化.变换后的值由事件传输,getRemoteValue当按下界面上的按钮时,它们来自远程API().我编写了代码的精简版,代表了必不可少的部分:
module Main where
{-# LANGUAGE ScopedTypeVariables #-} -- allows "forall t. Moment t"
import Graphics.UI.WX hiding (Event)
import Reactive.Banana
import Reactive.Banana.WX
{-----------------------------------------------------------------------------
Main
------------------------------------------------------------------------------}
data AppState = AppState {
count :: Int
} deriving (Show)
type String = [Char]
main :: IO ()
main = start $ do
f <- frame [text := "AppState"]
myButton <- button f [text := "Go"]
output <- staticText f []
set f [layout := margin 10 $
column 5 [widget myButton, widget output]]
let networkDescription :: forall t. Frameworks t => Moment t ()
networkDescription = do
ebt <- event0 myButton command
remoteValueB <- fromPoll getRemoteApiValue
myRemoteValue <- changes remoteValueB
let
doSomeTransformation :: AppState -> AppState
doSomeTransformation ast = ast { count = count ast }
coreOfTheApp :: Behavior t AppState
coreOfTheApp = accumB initialState $ (doSomeTransformation to combine with myRemoteValue) <$ ebt
sink output [text :== show <$> coreOfTheApp]
network <- compile networkDescription
actuate network
getRemoteApiValue :: IO Int
getRemoteApiValue = return 5
Run Code Online (Sandbox Code Playgroud)
和cabal conf:
name: brg
version: 0.1.0.0
synopsis: sample frp gui
-- description:
license: PublicDomain
license-file: LICENSE
author: me
maintainer: me@gmail.com
-- copyright:
category: fun
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable bgr
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
, text
, wx ==0.92.0.0
, wxcore ==0.92.0.0
, transformers-base
, reactive-banana >=0.9 && <0.10
, reactive-banana-wx ==0.9.0.2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2
Run Code Online (Sandbox Code Playgroud)
我的问题是如何编写doSomeTransformation并myRemoteValue以某种方式使用远程API值作为正常事件值.
changes来自香蕉反应的具有以下特征:
changes :: Frameworks t => Behavior t a -> Moment t (Event t (Future a))
Run Code Online (Sandbox Code Playgroud)
它会缠上了我IO Int的getRemoteApiValue.
所以基本上我怎么能去:
IO Int -> Moment t (Event t (Future AppState)) -> AppState
Run Code Online (Sandbox Code Playgroud)
?
BTW我不确定这个不同的函数签名是否更清晰:
doSomeTransformation :: Int -> AppState -> AppState其中Int值由API返回值表示.听起来像是两个Behavior流和一个流.也许是一个解决问题的坏方法?
简短回答:转换函数需要再接受一个参数,即来自 API 的值:
transformState v (AppState x) = AppState $ x + v
Run Code Online (Sandbox Code Playgroud)
并且您需要使用<$>(即应用函数)而不是<$(即用常量值覆盖):
accumB (AppState 0) $ transformState <$> remoteValueB <@ ebt
Run Code Online (Sandbox Code Playgroud)
长答案:
注意:我已经重命名/更改了一些内容,因此请相应地阅读我的解释
需要改变的是使用 折叠传入值的方式accumB。其工作原理accumB是将一系列函数应用于a -> a种子值a,以计算 type 的最终值a。当前折叠 API 值的方式是始终将应用程序状态计数增量函数应用于初始状态,完全丢弃传入值(通过使用<$)。相反,您需要使用映射传入值而不是替换它<$>。您需要将值映射到什么?一个函数(根据 的类型accumB)!这个函数是transformValue eventValue :: AppState -> AppState.
基于列表和折叠的示例:
*Frp> data State = State Int deriving Show
*Frp> let transform x (State c) = State $ x + c
*Frp> let xs = [1, 2, 3, 4, 5] -- the API values
*Frp> let xsE = transform <$> xs :: [State -> State] -- the event stream
*Frp> let accumB = foldr ($)
*Frp> accumB (State 0) xsE
State 15
Run Code Online (Sandbox Code Playgroud)
(不要忘记它a <$> b与 相同fmap a b,或者仅map a b在列表的情况下)
现在考虑当前如何使用remoteValueB <@ ebt(function) 常量“覆盖”任何事件transformState,这意味着到达的所有被覆盖事件始终保留相同的内容:函数transformState。
相反,您想要的是将传入值映射到一些实际函数,例如采用旧状态并将其与到达值组合并产生新状态值的函数:
remoteValueE :: Event t Int
remoteValueE = remoteValueB <@ ebt
transformsE :: Event t (AppState -> AppState)
transformsE = transformState <$> remoteValueE
coreOfTheApp :: Behavior t AppState
coreOfTheApp = accumB initialState $ transformsE
Run Code Online (Sandbox Code Playgroud)
我还更改getRemoteApiValue为返回变化的值来模仿真实的 API。因此,通过对代码进行一些修改,可以得到以下效果:
import System.Random
type RemoteValue = Int
-- generate a random value within [0, 10)
getRemoteApiValue :: IO RemoteValue
getRemoteApiValue = (`mod` 10) <$> randomIO
data AppState = AppState { count :: Int } deriving Show
transformState :: RemoteValue -> AppState -> AppState
transformState v (AppState x) = AppState $ x + v
main :: IO ()
main = start $ do
f <- frame [text := "AppState"]
myButton <- button f [text := "Go"]
output <- staticText f []
set f [layout := minsize (sz 300 200)
$ margin 10
$ column 5 [widget myButton, widget output]]
let networkDescription :: forall t. Frameworks t => Moment t ()
networkDescription = do
ebt <- event0 myButton command
remoteValueB <- fromPoll getRemoteApiValue
myRemoteValue <- changes remoteValueB
let
events = transformState <$> remoteValueB <@ ebt
coreOfTheApp :: Behavior t AppState
coreOfTheApp = accumB (AppState 0) events
sink output [text :== show <$> coreOfTheApp]
network <- compile networkDescription
actuate network
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
169 次 |
| 最近记录: |