Creating a Behavior for a continuously measurable phenomenon

前端 未结 2 1490
天命终不由人
天命终不由人 2021-02-20 05:05

I would like to create a Behavior t a from an IO a, with the intended semantics that the IO action would be run every time the behavior is sample

2条回答
  •  爱一瞬间的悲伤
    2021-02-20 05:56

    Doing this in Spider looks impossible. Internal reasoning ahead.

    In the Spider implementation of Reflex, one of the possible Behaviors is to pull the value.

    data Behavior a
       = BehaviorHold !(Hold a)
       | BehaviorConst !a
       | BehaviorPull !(Pull a)
    

    A Pulled value consists of how to compute the value when needed, pullCompute, and a cached value to avoid unnecessary re-computation, pullValue.

    data Pull a
       = Pull { pullValue :: !(IORef (Maybe (PullSubscribed a)))
              , pullCompute :: !(BehaviorM a)
              }
    

    Ignoring the ugly environment of BehaviorM, liftIO lifts an IO computation the obvious way, it runs it when the BehaviorM needs to be sampled. In the Pull, your behavior is observed once but isn't re-observed because the cached value isn't invalidated.

    The cached value PullSubscribed a consists of the value a, a list of other values that need to be invalidated if this value is invalidated, and some boring memory management stuff.

    data PullSubscribed a
       = PullSubscribed { pullSubscribedValue :: !a
                        , pullSubscribedInvalidators :: !(IORef [Weak Invalidator])
                        -- ... boring memory stuff
                        }
    

    An Invalidator is a quantified Pull that's enough to get the memory reference to recursively read the invalidators to invalidate and write the cached value to Nothing.

    To pull constantly we'd like to be able to constantly invalidate our own BehaviorM. When executed, the environment passed to the BehaviorM has a copy of its own invalidator, which is used by dependencies of the BehaviorM to invalidate it when they themselves become invalid.

    From the internal implementation of readBehaviorTracked there seems to be no way that the behavior's own invalidator (wi) can ever end up in the list of subscribers that are invalidated when it is sampled (invsRef).

        a <- liftIO $ runReaderT (unBehaviorM $ pullCompute p) $ Just (wi, parentsRef)
        invsRef <- liftIO . newIORef . maybeToList =<< askInvalidator
        -- ...
        let subscribed = PullSubscribed
              { pullSubscribedValue = a
              , pullSubscribedInvalidators = invsRef
              -- ...
              }
    

    Outside of the internals, if there does exist a way to constantly sample a Behavior it would involve a MonadFix (PullM t) instance or mutual recursion through fixing of pull and sample:

    onDemand :: (Reflex t, MonadIO (PullM t)) => IO a -> Behavior t a
    onDemand read = b
        where
            b = pull go
            go = do
                 sample b
                 liftIO read
    

    I don't have a Reflex environment to try this in, but I don't think the results will be pretty.

提交回复
热议问题