system-filepath-0.3.4: lib/Filesystem/Path/Internal.hs
{-# LANGUAGE CPP #-}
{-# LANGUAGE DeriveDataTypeable #-}
-- |
-- Module: Filesystem.Path.Internal
-- Copyright: 2010 John Millikin
-- License: MIT
--
-- Maintainer: jmillikin@gmail.com
-- Portability: portable
--
module Filesystem.Path.Internal where
import Prelude hiding (FilePath)
import Control.DeepSeq (NFData, rnf)
import qualified Control.Exception as Exc
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as B8
import Data.Char (chr, ord)
import Data.Data (Data)
import Data.List (intersperse)
import Data.Ord (comparing)
import qualified Data.Text as T
import qualified Data.Text.Encoding as TE
import Data.Text.Encoding.Error (UnicodeException)
import Data.Typeable (Typeable)
import System.IO.Unsafe (unsafePerformIO)
-------------------------------------------------------------------------------
-- File Paths
-------------------------------------------------------------------------------
type Directory = T.Text
type Basename = T.Text
type Extension = T.Text
data Root
= RootPosix
| RootWindowsVolume Char
| RootWindowsCurrentVolume
deriving (Eq, Ord, Data, Typeable)
data FilePath = FilePath
{ pathRoot :: Maybe Root
, pathDirectories :: [Directory]
, pathBasename :: Maybe Basename
, pathExtensions :: [Extension]
}
deriving (Data, Typeable)
instance Eq FilePath where
x == y = compare x y == EQ
instance Ord FilePath where
compare = comparing (\p ->
(pathRoot p
, fmap unescape' (pathDirectories p)
, fmap unescape' (pathBasename p)
, fmap unescape' (pathExtensions p)
))
instance NFData Root where
rnf (RootWindowsVolume c) = rnf c
rnf _ = ()
instance NFData FilePath where
rnf p = rnf (pathRoot p) `seq` rnf (pathDirectories p) `seq` rnf (pathBasename p) `seq` rnf (pathExtensions p)
-- | A file path with no root, directory, or filename
empty :: FilePath
empty = FilePath Nothing [] Nothing []
dot :: T.Text
dot = T.pack "."
dots :: T.Text
dots = T.pack ".."
filenameText :: FilePath -> T.Text
filenameText p = T.concat (name:exts) where
name = maybe T.empty id (pathBasename p)
exts = case pathExtensions p of
[] -> []
exts' -> intersperse dot (T.empty:exts')
-------------------------------------------------------------------------------
-- Rules
-------------------------------------------------------------------------------
data Rules platformFormat = Rules
{ rulesName :: T.Text
-- | Check if a 'FilePath' is valid; it must not contain any illegal
-- characters, and must have a root appropriate to the current
-- 'Rules'.
, valid :: FilePath -> Bool
-- | Split a search path, such as @$PATH@ or @$PYTHONPATH@, into
-- a list of 'FilePath's.
, splitSearchPath :: platformFormat -> [FilePath]
-- | Attempt to convert a 'FilePath' to human‐readable text.
--
-- If the path is decoded successfully, the result is a 'Right'
-- containing the decoded text. Successfully decoded text can be
-- converted back to the original path using 'fromText'.
--
-- If the path cannot be decoded, the result is a 'Left' containing an
-- approximation of the original path. If displayed to the user, this
-- value should be accompanied by some warning that the path has an
-- invalid encoding. Approximated text cannot be converted back to the
-- original path.
--
-- This function ignores the user’s locale, and assumes all
-- file paths are encoded in UTF8. If you need to display file paths
-- with an unusual or obscure encoding, use 'encode' and then decode
-- them manually.
--
-- Since: 0.2
, toText :: FilePath -> Either T.Text T.Text
-- | Convert human‐readable text into a 'FilePath'.
--
-- This function ignores the user’s locale, and assumes all
-- file paths are encoded in UTF8. If you need to create file paths
-- with an unusual or obscure encoding, encode them manually and then
-- use 'decode'.
--
-- Since: 0.2
, fromText :: T.Text -> FilePath
-- | Convert a 'FilePath' to a platform‐specific format,
-- suitable for use with external OS functions.
--
-- Since: 0.3
, encode :: FilePath -> platformFormat
-- | Convert a 'FilePath' from a platform‐specific format,
-- suitable for use with external OS functions.
--
-- Since: 0.3
, decode :: platformFormat -> FilePath
-- | Attempt to convert a 'FilePath' to a string suitable for use with
-- functions in @System.IO@. The contents of this string are
-- platform‐dependent, and are not guaranteed to be
-- human‐readable. For converting 'FilePath's to a
-- human‐readable format, use 'toText'.
--
-- Since: 0.3.1
, encodeString :: FilePath -> String
-- | Attempt to parse a 'FilePath' from a string suitable for use
-- with functions in @System.IO@. Do not use this function for parsing
-- human‐readable paths, as the character set decoding is
-- platform‐dependent. For converting human‐readable
-- text to a 'FilePath', use 'fromText'.
--
-- Since: 0.3.1
, decodeString :: String -> FilePath
}
instance Show (Rules a) where
showsPrec d r = showParen (d > 10)
(showString "Rules " . shows (rulesName r))
textSplitBy :: (Char -> Bool) -> T.Text -> [T.Text]
#if MIN_VERSION_text(0,11,0)
textSplitBy = T.split
#else
textSplitBy = T.splitBy
#endif
unescape :: T.Text -> (T.Text, Bool)
unescape t = if T.any (\c -> ord c >= 0xEF00 && ord c <= 0xEFFF) t
then (T.map (\c -> if ord c >= 0xEF00 && ord c <= 0xEFFF
then chr (ord c - 0xEF00)
else c) t, False)
else (t, True)
unescape' :: T.Text -> T.Text
unescape' = fst . unescape
unescapeBytes' :: T.Text -> B8.ByteString
unescapeBytes' t = B8.concat (map (\c -> if ord c >= 0xEF00 && ord c <= 0xEFFF
then B8.singleton (chr (ord c - 0xEF00))
else TE.encodeUtf8 (T.singleton c)) (T.unpack t))
parseFilename :: T.Text -> (Maybe Basename, [Extension])
parseFilename filename = parsed where
parsed = if T.null filename
then (Nothing, [])
else case textSplitBy (== '.') filename of
[] -> (Nothing, [])
(name':exts') -> (Just (checkChunk name'), map checkChunk exts')
checkChunk t = if chunkGood t
then t
else case maybeDecodeUtf8 (unescapeBytes' t) of
Just text -> text
Nothing -> t
chunkGood t = not (T.any (\c -> ord c >= 0xEF00 && ord c <= 0xEFFF) t)
maybeDecodeUtf8 :: B.ByteString -> Maybe T.Text
maybeDecodeUtf8 = excToMaybe . TE.decodeUtf8 where
excToMaybe :: a -> Maybe a
excToMaybe x = unsafePerformIO $ Exc.catch
(fmap Just (Exc.evaluate x))
unicodeError
unicodeError :: UnicodeException -> IO (Maybe a)
unicodeError _ = return Nothing