我在Haskell中有下一个代码,这对于读取文件的第一行是很好的,但我需要读取目录中文件的所有内容(递归多个文件)。我正在尝试更改firstLineE函数,我不明白如何更改行:EIO.enumFile 1024 filename $ joinI $((mapChunks B.pack)><> EC.enumLinesBS)。你有一些这方面的文件,或者你可以帮我一些例子吗?。
我正在审查文档,但Iteratee对我来说很新鲜:
http://www.mew.org/~kazu/proj/enumerator/
import Control.Monad
import Control.Monad.IO.Class
import Control.Applicative
import System.Environment
import System.Directory
import System.FilePath
import qualified Data.List as L
import qualified Data.ByteString.Char8 as B
import qualified Data.Iteratee as I
import Data.Iteratee.Iteratee
import qualified Data.Iteratee.Char as EC
import qualified Data.Iteratee.IO.Fd as EIO
import qualified Data.Iteratee.ListLike as EL
getValidContents :: FilePath -> IO [String]
getValidContents path =
filter (`notElem` [".", "..",".git", ".svn",".metadata",".idea",".project",".gitignore",".settings",".hsproject",".dist-scion",".dist-buildwrapper"])
<$> getDirectoryContents path
isSearchableDir :: FilePath -> IO Bool
isSearchableDir dir = doesDirectoryExist dir
-- (&&) <$> doesDirectoryExist dir
-- <*> (searchable <$> getPermissions dir)
doesFileExistAndFilter :: FilePath -> IO Bool
doesFileExistAndFilter dir =
(&&) <$> doesFileExist dir
<*> return (snd (splitExtension dir) == ".java" || snd (splitExtension dir) == ".mora")
printI :: Iteratee [B.ByteString] IO ()
printI = do
mx <- EL.tryHead
case mx of
Nothing -> return ()
Just l -> do
liftIO . B.putStrLn $ l
printI
firstLineE :: Enumeratee [FilePath] [B.ByteString] IO ()
firstLineE = mapChunksM $ \filenames -> do
forM filenames $ \filename -> do
i <- EIO.enumFile 1024 filename $ joinI $ ((mapChunks B.pack) ><> EC.enumLinesBS) EL.head
result <- run i
return result
enumDir :: FilePath -> Enumerator [FilePath] IO b
enumDir dir iter = runIter iter idoneM onCont
where
onCont k Nothing = do
(files, dirs) <- liftIO getFilesDirs
if null dirs
then return $ k (Chunk files)
else walk dirs $ k (Chunk files)
walk dirs = foldr1 (>>>) $ map enumDir dirs
getFilesDirs = do
cnts <- map (dir </>) <$> getValidContents dir
(,) <$> filterM doesFileExist cnts
<*> filterM isSearchableDir cnts
allFirstLines :: FilePath -> IO ()
allFirstLines dir = do
i' <- enumDir dir $ joinI $ firstLineE printI
run i'
main = do
dir:_ <- getArgs
allFirstLines dir
答案 0 :(得分:5)
我不知道如何使用iteratees,但这是基于pipes
的解决方案。此版本解决方案的一些优点是:
一次永远不会有多个字节串块进入内存
它会对文件列表进行流式处理,以便它不会阻塞有大量直接子项的目录
它递归遍历目录树,就像你问的那样
其中一些内容很快会出现在pipes
实用程序库中:
import Control.Monad (when, unless)
import Control.Proxy
import Control.Proxy.Safe hiding (readFileS)
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as B8
import System.Directory (readable, getPermissions, doesDirectoryExist)
import System.FilePath ((</>), takeFileName)
import System.Posix (openDirStream, readDirStream, closeDirStream)
import System.IO (openFile, hClose, IOMode(ReadMode), hIsEOF)
contents
:: (CheckP p)
=> FilePath -> () -> Producer (ExceptionP p) FilePath SafeIO ()
contents path () = do
canRead <- tryIO $ fmap readable $ getPermissions path
when canRead $ bracket id (openDirStream path) closeDirStream $ \dirp -> do
let loop = do
file <- tryIO $ readDirStream dirp
case file of
[] -> return ()
_ -> do
respond (path </> file)
loop
loop
contentsRecursive
:: (CheckP p)
=> FilePath -> () -> Producer (ExceptionP p) FilePath SafeIO ()
contentsRecursive path () = loop path
where
loop path = do
contents path () //> \newPath -> do
respond newPath
isDir <- tryIO $ doesDirectoryExist newPath
let isChild = not $ takeFileName newPath `elem` [".", ".."]
when (isDir && isChild) $ loop newPath
readFileS
:: (CheckP p)
=> Int -> FilePath -> () -> Producer (ExceptionP p) B.ByteString SafeIO ()
readFileS chunkSize path () =
bracket id (openFile path ReadMode) hClose $ \handle -> do
let loop = do
eof <- tryIO $ hIsEOF handle
unless eof $ do
bs <- tryIO $ B.hGetSome handle chunkSize
respond bs
loop
loop
firstLine :: (Proxy p) => () -> Consumer p B.ByteString IO ()
firstLine () = runIdentityP loop
where
loop = do
bs <- request ()
let (prefix, suffix) = B8.span (/= '\n') bs
lift $ B8.putStr prefix
if (B.null suffix) then loop else lift $ B8.putStr (B8.pack "\n")
handler :: (CheckP p) => FilePath -> Session (ExceptionP p) SafeIO ()
handler path = do
canRead <- tryIO $ fmap readable $ getPermissions path
isDir <- tryIO $ doesDirectoryExist path
when (not isDir && canRead) $
(readFileS 1024 path >-> try . firstLine) ()
main = runSafeIO $ runProxy $ runEitherK $
contentsRecursive "/home" />/ handler
如果您想了解有关pipes
的更多信息,可以从the tutorial开始。