- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在尝试学习 Haskell 中的 Conduits。这听起来很有趣,但类型很快就会变得非常困惑。
到目前为止,我已经编写了以下文件:https://gist.github.com/anonymous/7991727
据推测,它会做的是,给定一系列股票代码,它会转到雅虎财经并下载相关的数据文件。听起来很简单。
getLink
和 extractLink
效果很好。那里没有问题。
downloadContent
给我各种编译问题。此源代码:
downloadContent manager = do
mx <- await
case mx of
Nothing -> return ()
Just (sym, Nothing) -> return ()
Just (sym, Just link) -> do
req <- parseUrl link
res <- http req manager
responseBody res $$+- sinkFile sym
我得到的确切错误是:
src/suckyahoo.hs:58:21:
No instance for (MonadBaseControl
IO
(ConduitM
[Char] ([Char], Maybe String) (ResourceT (ResourceT IO))))
arising from a use of `getLink'
Possible fix:
add an instance declaration for
(MonadBaseControl
IO
(ConduitM
[Char] ([Char], Maybe String) (ResourceT (ResourceT IO))))
In the second argument of `($=)', namely `getLink manager'
In the first argument of `($$)', namely
`sourceSyms $= getLink manager'
In a stmt of a 'do' block:
sourceSyms $= getLink manager $$ downloadContent manager
src/suckyahoo.hs:58:40:
No instance for (MonadBaseControl
IO
(ConduitM
(FilePath, Maybe String)
void-0.6.1:Data.Void.Void
(ResourceT (ResourceT IO))))
arising from a use of `downloadContent'
Possible fix:
add an instance declaration for
(MonadBaseControl
IO
(ConduitM
(FilePath, Maybe String)
void-0.6.1:Data.Void.Void
(ResourceT (ResourceT IO))))
In the second argument of `($$)', namely `downloadContent manager'
In a stmt of a 'do' block:
sourceSyms $= getLink manager $$ downloadContent manager
In the expression:
do { sourceSyms $= getLink manager $$ downloadContent manager }
Failed, modules loaded: none.
这里有什么洞察力可以让我实现代码的意图?
最佳答案
您必须将您的操作提升到管道的底层 monad:
downloadContent manager = do
mx <- await
case mx of
Nothing -> return ()
Just (sym, Nothing) -> return ()
Just (sym, Just link) -> lift $ do
req <- parseUrl link
res <- http req manager
responseBody res $$+- sinkFile sym
关于http - 在 Haskell 中学习 Conduits 时与 MonadBaseControl 错误混淆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20618076/
MonadBaseControl class提供很少的法律。获取something I want ,我还需要一个: forall f q. f liftBaseWith q = liftBase
我正在深入研究 Yesod 的 monad,并且遇到了 MonadBaseControl . 我看了一下hackage doc,然后迷路了。有人可以告诉我它试图解决的问题吗? 最佳答案 Michael
在模块threads中的Control.Concurrent.Thread.Group包中,有一个函数forkIO: forkIO :: ThreadGroup -> IO α -> IO (Thre
我目前正在玩 Bryan O'Sullivan 的 resource-pool图书馆并有关于扩展 withResource 的问题功能。 我想更改 withResource 的签名函数来自 (Mona
我想弄清楚如何实现 MonadBaseControl 的实例对于 Foo 类型,它是 StateT 实例的新型包装器。你会认为它会像 this 一样实现但情况似乎并非如此。我假设状态块是导致这里问题的
如何使用MonadBaseControl来自 monad-control抬起simpleHTTP happstack-server 中定义的函数? simpleHTTP 的当前类型: simpleHT
假设我有简单的 newtype 声明 newtype Foo a = Foo { unFoo :: ReaderT Int IO a } 我想制作 MonadBaseControl IO 的 Foo
我正在尝试学习 Haskell 中的 Conduits。这听起来很有趣,但类型很快就会变得非常困惑。 到目前为止,我已经编写了以下文件:https://gist.github.com/anonymou
我想用withResource :: MonadBaseControl IO m => Pool a -> (a -> m b) -> m b 来自 Data.Pool我的处理程序代码中的库。我想确定
我在沙盒中安装来自 Hackage 的最新 ghc-mod (5.2.1.1) 时遇到此错误: [15 of 38] Compiling Language.Haskell.GhcMod.CabalCo
我是一名优秀的程序员,十分优秀!