gpt4 book ai didi

haskell - 在 Haskell 中使用 Pipes 读写二进制数据

转载 作者:行者123 更新时间:2023-12-01 22:24:43 25 4
gpt4 key购买 nike

我正在尝试在常量内存中读取和写入非常多的整数。我已经弄清楚如何将整数写入内存,但还没有弄清楚如何读回它们。

import Control.Lens (zoom)
import System.IO (IOMode(..), withFile)
import Pipes
import qualified Pipes.Prelude as P
import qualified Pipes.ByteString as PB
import qualified Pipes.Parse as P
import qualified Pipes.Binary as P

intStream :: Monad m => Proxy x' x () Int m b
intStream = go (0 :: Int) where
go i = yield i >> go (i + 1)

decoder :: Monad m => Int -> P.Parser P.ByteString m [Int]
decoder n = zoom (P.decoded . P.splitAt n) P.drawAll

main :: IO ()
main = do
withFile "ints" WriteMode $ \h -> do
runEffect $ for intStream P.encode >-> P.take 10000 >-> PB.toHandle h
withFile "ints" ReadMode $ \h -> do
xs <- P.evalStateT (decoder 10000000) (PB.fromHandle h)
print xs

我从 Pipes.Binary 的文档中获得了解码器函数。然而,它使用了drawAll,根据documentation drawAll 不是管道的惯用用法,而是出于测试目的而提供的。

我的问题是如何修改decoder,使其不使用drawAll,从而不会将xs的所有值加载到内存。因此,我可以通过从文件中读取的解码ints流来P.map print来代替打印xs列表。

最佳答案

文档说 decoded是从字节流到解码值流的镜头。我们可以使用 lens 中的 view 从前者中得到后者:

decoder :: Monad m => Int -> Producer P.ByteString m a -> Producer Int m ()
decoder n p = void (view P.decoded p) >-> P.take n

main :: IO ()
main = do
withFile "ints" WriteMode $ \h -> do
runEffect $ for intStream P.encode >-> P.take 10000 >-> PB.toHandle h
withFile "ints" ReadMode $ \h -> do
runEffect $ decoder 10000 (PB.fromHandle h) >-> P.print

我对管道没有太多经验,我只是遵循这里的类型。该程序似乎按预期运行。

关于haskell - 在 Haskell 中使用 Pipes 读写二进制数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31567305/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com