1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
%% gh -- a compiler for Generic Haskell.
%% Copyright (c) 2001 The Generic Haskell Team. Utrecht University
%%
%% This library is free software; you can redistribute it and/or modify
%% it under the terms of the GNU Lesser General Public License as
%% published by the Free Software Foundation; either version 2.1 of the
%% License, or (at your option) any later version.
%%
%% This library is distributed in the hope that it will be useful, but
%% WITHOUT ANY WARRANTY; without even the implied warranty of
%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
%% Lesser General Public License for more details.
%%
%% You should have received a copy of the GNU Lesser General Public
%% License along with this library; if not, write to the Free Software
%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
%%
%% $Id: FileNameUtils.lhs,v 1.2 2003/06/11 08:35:51 cvs-4 Exp $
%%
%% author: Jan de Wit (jwit@cs.uu.nl), Andres Loeh (andres@cs.uu.nl)
> module FileNameUtils ( extension
> , filename
> , basename
> , dirname
> , expandPath
> , chaseFile
> , searchPath
> , modifySearchPath
> ) where
>
> import IO
> import System
> import Directory
> import List
> import Monad (filterM)
> type FileName = String
> directorySeparators = "/"
> directorySeparator = '/'
> environmentSeparators = ";:"
> searchPath = [relPath ["."]
> ,deep (relPath [env "HOME","lhs2TeX"])
> ,deep (relPath [env "HOME",".lhs2TeX"])
> ,deep (relPath [env "LHS2TEX"])
> ,deep (absPath ["usr","local","share","lhs2tex"])
> ,deep (absPath ["usr","local","share","lhs2TeX"])
> ,deep (absPath ["usr","local","lib","lhs2tex"])
> ,deep (absPath ["usr","local","lib","lhs2TeX"])
> ,deep (absPath ["usr","share","lhs2tex"])
> ,deep (absPath ["usr","share","lhs2TeX"])
> ,deep (absPath ["usr","lib","lhs2tex"])
> ,deep (absPath ["usr","lib","lhs2TeX"])
> ]
A searchpath can be added to the front or to the back of the current path
by pre- or postfixing it with a path separator. Otherwise the new search
path replaces the current one.
> modifySearchPath :: [FileName] -> String -> [FileName]
> modifySearchPath p np
> | any (\x -> x == head np) environmentSeparators = p ++ split
> | any (\x -> x == last np) environmentSeparators = split ++ p
> | otherwise = split
> where split = splitOn environmentSeparators np
> relPath :: [String] -> FileName
> relPath ps = concat (intersperse [directorySeparator] ps)
> absPath :: [String] -> FileName
> absPath ps = directorySeparator : relPath ps
> isAbsolute :: FileName -> Bool
> isAbsolute [] = False
> isAbsolute xs = head xs `elem` directorySeparators
> isRelative :: FileName -> Bool
> isRelative = not . isAbsolute
> deep :: FileName -> FileName
> deep = (++(replicate 2 directorySeparator))
> env :: String -> FileName
> env x = "{" ++ x ++ "}"
> extension :: FileName -> Maybe String
> extension fn = f False [] fn
> where
> f found acc [] | found = Just (reverse acc)
> | not found = Nothing
> f found acc ('.':cs) = f True [] cs
> f found acc (c :cs) = f found (c:acc) cs
> dirname :: FileName -> String
> dirname fn = f [] [] fn
> where
> f res acc [] = reverse res
> f res acc (c:cs)
> | c `elem` directorySeparators
> = f (c : acc ++ res) [] cs
> | otherwise = f res (c : acc) cs
> filename :: FileName -> String
> filename fn = f [] fn
> where
> f acc [] = reverse acc
> f acc (c:cs)
> | c `elem` directorySeparators
> = f [] cs
> | otherwise = f (c:acc) cs
> basename :: FileName -> String
> basename fn = takeWhile (/= '.') (filename fn)
|expandPath| does two things: it replaces curly braced strings with
environment entries, if present; furthermore, if the path ends with
more than one directory separator, all subpaths are added ...
> expandPath :: [String] -> IO [String]
> expandPath s = do let s' = concatMap (splitOn environmentSeparators) s
> s'' <- mapM expandEnvironment s'
> s''' <- mapM findSubPaths (concat s'')
> return (nub $ concat s''')
> findSubPaths :: String -> IO [String]
> findSubPaths "" = return []
> findSubPaths s = let rs = reverse s
> (sep,rs') = span (`elem` directorySeparators) rs
> s' = reverse rs'
> sep' = reverse sep
> in if null s'
> then return [[head sep']] {- we don't descend from root -}
> else if length sep < 2
> then return [s]
> else descendFrom s'
> descendFrom :: String -> IO [String]
> descendFrom s = catch (do d <- getDirectoryContents s
> {- no hidden files, no parents -}
> let d' = map (\x -> s ++ [directorySeparator] ++ x)
> . filter ((/='.') . head) . filter (not . null) $ d
> d'' <- filterM doesDirectoryExist d'
> d''' <- mapM descendFrom d''
> return (s : concat d''')
> )
> (const $ return [s])
> expandEnvironment :: String -> IO [String]
> expandEnvironment s = case break (=='{') s of
> (s',"") -> return [s]
> (s','{':r) -> case break (=='}') r of
> (e,"") -> return [s]
> (e,'}':r') -> findEnvironment e s' r'
> where findEnvironment :: String -> String -> String -> IO [String]
> findEnvironment e a o = do er <- try (getEnv e)
> return $ either (const [])
> (map (\x -> a ++ x ++ o) . splitOn environmentSeparators)
> er
> splitOn :: String -> String -> [String]
> splitOn b s = case dropWhile (`elem` b) s of
> "" -> []
> s' -> w : splitOn b s''
> where (w,s'') = break (`elem` b) s'
> chaseFile :: [String] {- search path -}
> -> FileName -> IO (String,FileName)
> chaseFile p fn | isAbsolute fn= t fn
> | p == [] = chaseFile ["."] fn
> | otherwise = s $ map (\d -> t (md d ++ fn)) p
> where
> md cs | last cs `elem` directorySeparators
> = cs
> | otherwise = cs ++ [directorySeparator]
> t f = catch (readFile f >>= \x -> return (x,f))
> (\_ -> ioError $ userError $ "File `" ++ fn ++ "' not found.\n")
> s [] = ioError
> $ userError $ "File `" ++ fn ++ "' not found in search path:\n" ++ showpath
> s (x:xs) = catch x (\_ -> s xs)
> showpath = concatMap (\x -> " " ++ x ++ "\n") p
|