On 2021-04-13, at 00:27, YueCompl via ghc-devs <ghc-devs@haskell.org> wrote:Thanks Erik,_______________________________________________```hsdata TypeableInstance a where-- data TypeableInstance :: forall k. k -> Type whereTypeableInstance :: Typeable a => TypeableInstance atypeableInstance :: forall (k :: Type) (a :: k). TypeRep a -> TypeableInstance atypeableInstance typeRep' = withTypeable typeRep' TypeableInstancepattern TypeRep :: forall k (a :: k). () => Typeable a => TypeRep apattern TypeRep <-(typeableInstance -> TypeableInstance)whereTypeRep = typeRepholdEvent :: Dynamic -> DynamicholdEvent !devs = case devs ofDynamic (App eventSink TypeRep) evs' ->case eqTypeRep (typeRep @EventSink) eventSink ofJust HRefl -> Dynamic TypeRep (hcHoldEvent evs')Nothing -> error "not an EventSink" -- to be handled properly_ -> error "even not a poly-type" -- to be handled properlywherehcHoldEvent :: forall a. EventSink a -> IO (TimeSeries a)hcHoldEvent !evs = do!holder <- newIORef NothinglistenEvents evs $ writeIORef holder . Justreturn $ TimeSeries $ readIORef holderdata EventSink a = EventSink{ listenEvents :: (a -> IO ()) -> IO (),closeStream :: IO ()}instance Functor EventSink wherefmap = undefinednewtype TimeSeries a = TimeSeries {readTimeSeries :: IO (Maybe a)}instance Functor TimeSeries wherefmap = undefined```I'm still wrapping my head around it, for how the `pattern TypeRep` works in this case.Or you think there exists a solution without using such a pattern?My function (hcHoldEvent) is polymorphic so not eligible to be wrapped as a Dynamic in the first place, or there also some way to specialize it at runtime? That'll be another interesting tool.Thanks with regards,ComplOn 2021-04-12, at 22:50, Erik Hesselink <hesselink@gmail.com> wrote:Your function is not `forall a. a -> f a`, as in your initial example, but requires its argument to be an `EventSink`. The value you unwrap from the `Dynamic` is any existential type, not necessarily an `EventSink`. You'll have to compare the TypeReps (with something like `eqTypeRep`[1], or wrap your function in a `Dynamic` and use `dynApply` [2], which does the comparison for you.Cheers,ErikOn Mon, 12 Apr 2021 at 16:15, YueCompl via ghc-devs <ghc-devs@haskell.org> wrote:_______________________________________________Thanks to Vlad and Jaro, your solution of `apD` compiles, I think it should work.But unfortunately my real case is a little different / more complex, a MWE appears like this:```hsholdEvent :: Dynamic -> DynamicholdEvent (Dynamic t evs') =withTypeable t $ Dynamic typeRep (hcHoldEvent evs')wherehcHoldEvent :: forall a. EventSink a -> IO (TimeSeries a)hcHoldEvent !evs = do!holder <- newIORef NothinglistenEvents evs $ writeIORef holder . Justreturn $ TimeSeries $ readIORef holderdata EventSink a = EventSink{ listenEvents :: (a -> IO ()) -> IO (),closeStream :: IO ()}instance Functor EventSink wherefmap = undefinednewtype TimeSeries a = TimeSeries {readTimeSeries :: IO (Maybe a)}instance Functor TimeSeries wherefmap = undefined```Now I'm clueless how to use the `withTypeable` trick to apply my polymorphic `hcHoldEvent` to `Dynamic`, naively written as in above, the error is:```logsrc/PoC/DynPoly.hs:20:49: error:• Couldn't match expected type ‘EventSink a0’ with actual type ‘a’‘a’ is a rigid type variable bound bya pattern with constructor:Dynamic :: forall a.base-4.13.0.0:Data.Typeable.Internal.TypeRep a -> a -> Dynamic,in an equation for ‘holdEvent’at src/PoC/DynPoly.hs:19:12-25• In the first argument of ‘hcHoldEvent’, namely ‘evs'’In the second argument of ‘Dynamic’, namely ‘(hcHoldEvent evs')’In the second argument of ‘($)’, namely‘Dynamic typeRep (hcHoldEvent evs')’• Relevant bindings includeevs' :: a (bound at src/PoC/DynPoly.hs:19:22)t :: base-4.13.0.0:Data.Typeable.Internal.TypeRep a(bound at src/PoC/DynPoly.hs:19:20)|20 | withTypeable t $ Dynamic typeRep (hcHoldEvent evs')| ^^^^```Thanks with best regards,ComplOn 2021-04-12, at 22:04, Jaro Reinders <jaro.reinders@gmail.com> wrote:I have no experience in this area, but this compiles:
```
{-# LANGUAGE RankNTypes, ScopedTypeVariables #-}
import Type.Reflection
import Data.Dynamic
appD :: forall f. Typeable f => (forall a. a -> f a) -> Dynamic -> Dynamic
appD f (Dynamic rep (x :: a)) = withTypeable rep (toDyn (f x))
```
Cheers,
JaroOn 2021-04-12, at 21:06, Vladislav Zavialov <vladislav@serokell.io> wrote:Would something like this work for you?
import Type.Reflection
import Data.Dynamic
apD :: Typeable f => (forall a. a -> f a) -> Dynamic -> Dynamic
apD f (Dynamic t a) = withTypeable t $ Dynamic typeRep (f a)
- VladOn 12 Apr 2021, at 14:34, YueCompl via ghc-devs <ghc-devs@haskell.org> wrote:
Dear Cafe and GHC devs,
There used to be a "principled way with pattern match on the constructor":
```hs
data Dynamic where
Dynamic :: Typeable a => a -> Dynamic
apD :: Typeable f => (forall a. a -> f a) -> Dynamic -> Dynamic
apD f (Dynamic a) = Dynamic $ f a
```
Source: https://www.reddit.com/r/haskell/comments/2kdcca/q_how_to_apply_a_polymorphic_function_to_a/
But now with GHC 8.8 as in my case, `Dynamic` constructor has changed its signature to:
```hs
Dynamic :: forall a. TypeRep a -> a -> Dynamic
```
Which renders the `apD` not working anymore.
And it seems missing dependencies now for an older solution Edward KMETT provides:
```hs
apD :: forall f. Typeable1 f => (forall a. a -> f a) -> Dynamic -> Dynamic
apD f a = dynApp df a
where t = dynTypeRep a
df = reify (mkFunTy t (typeOf1 (undefined :: f ()) `mkAppTy` t)) $
\(_ :: Proxy s) -> toDyn (WithRep f :: WithRep s (() -> f ()))
```
Source: https://stackoverflow.com/questions/10889682/how-to-apply-a-polymorphic-function-to-a-dynamic-value
So, how can I do that nowadays?
Thanks,
Compl
_______________________________________________
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs
ghc-devs mailing list
ghc-devs@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/ghc-devs