作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我要打开一个文件并解析其内容,我想懒惰地这样做:
parseFile :: FilePath -> IO [SomeData]
parseFile path = openBinaryFile path ReadMode >>= parse' where
parse' handle = hIsEOF handle >>= \eof -> do
if eof then hClose handle >> return []
else do
first <- parseFirst handle
rest <- unsafeInterleaveIO $ parse' handle
return (first : rest)
hClose
,并且 handle 将无法正确关闭。
catch
轻松解决。或
bracket
.但是在这种情况下,正常的异常处理方法将导致文件句柄在实际读取过程开始之前关闭。这当然不能接受。
最佳答案
而不是使用 openBinaryFile
, 你可以使用 withBinaryFile
:
parseFile :: FilePath -> ([SomeData] -> IO a) -> IO a
parseFile path f = withBinaryFile path ReadMode $ \h -> do
values <- parse' h
f values
where
parse' = ... -- same as now
parseFile :: MonadResource m => FilePath -> Producer m SomeData
parseFile path = bracketP
(openBinaryFile path ReadMode)
hClose
loop
where
loop handle = do
eof <- hIsEOF handle
if eof
then return ()
else parseFirst handle >>= yield >> loop handle
parseFirst
函数使用导管本身而不是下拉到
Handle
API,这个胶水代码会更短,你不会直接绑定(bind)到
Handle
,这使得使用其他数据源和执行测试变得更加容易。
withBinaryFile
的另一个原因或流式数据库。
关于exception - 如何使用 unsafeInterleaveIO 处理异常?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22280587/
假设我要打开一个文件并解析其内容,我想懒惰地这样做: parseFile :: FilePath -> IO [SomeData] parseFile path = openBinaryFile pa
我是一名优秀的程序员,十分优秀!