mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-18 08:42:11 +03:00
1e6314c4cc
HasIO interface for IO actions
320 lines
8.6 KiB
Idris
320 lines
8.6 KiB
Idris
module System.File
|
|
|
|
import Data.List
|
|
import Data.Strings
|
|
import System.Info
|
|
|
|
public export
|
|
data Mode = Read | WriteTruncate | Append | ReadWrite | ReadWriteTruncate | ReadAppend
|
|
|
|
public export
|
|
FilePtr : Type
|
|
FilePtr = AnyPtr
|
|
|
|
support : String -> String
|
|
support fn = "C:" ++ fn ++ ", libidris2_support"
|
|
|
|
libc : String -> String
|
|
libc fn = "C:" ++ fn ++ ", libc 6"
|
|
|
|
%foreign support "idris2_openFile"
|
|
prim__open : String -> String -> Int -> PrimIO FilePtr
|
|
%foreign support "idris2_closeFile"
|
|
prim__close : FilePtr -> PrimIO ()
|
|
|
|
%foreign support "idris2_fileError"
|
|
prim_error : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_fileErrno"
|
|
prim_fileErrno : PrimIO Int
|
|
|
|
%foreign support "idris2_readLine"
|
|
prim__readLine : FilePtr -> PrimIO (Ptr String)
|
|
%foreign support "idris2_readChars"
|
|
prim__readChars : Int -> FilePtr -> PrimIO (Ptr String)
|
|
%foreign "C:fgetc,libc 6"
|
|
prim__readChar : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_writeLine"
|
|
prim__writeLine : FilePtr -> String -> PrimIO Int
|
|
%foreign support "idris2_eof"
|
|
prim__eof : FilePtr -> PrimIO Int
|
|
%foreign "C:fflush,libc 6"
|
|
prim__flush : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_popen"
|
|
prim__popen : String -> String -> PrimIO FilePtr
|
|
%foreign support "idris2_pclose"
|
|
prim__pclose : FilePtr -> PrimIO ()
|
|
|
|
%foreign support "idris2_removeFile"
|
|
prim__removeFile : String -> PrimIO Int
|
|
%foreign support "idris2_fileSize"
|
|
prim__fileSize : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_fileSize"
|
|
prim__fPoll : FilePtr -> PrimIO Int
|
|
|
|
%foreign support "idris2_fileAccessTime"
|
|
prim__fileAccessTime : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_fileModifiedTime"
|
|
prim__fileModifiedTime : FilePtr -> PrimIO Int
|
|
%foreign support "idris2_fileStatusTime"
|
|
prim__fileStatusTime : FilePtr -> PrimIO Int
|
|
|
|
%foreign support "idris2_stdin"
|
|
prim__stdin : FilePtr
|
|
%foreign support "idris2_stdout"
|
|
prim__stdout : FilePtr
|
|
%foreign support "idris2_stderr"
|
|
prim__stderr : FilePtr
|
|
|
|
%foreign libc "chmod"
|
|
prim__chmod : String -> Int -> PrimIO Int
|
|
|
|
modeStr : Mode -> String
|
|
modeStr Read = if isWindows then "rb" else "r"
|
|
modeStr WriteTruncate = if isWindows then "wb" else "w"
|
|
modeStr Append = if isWindows then "ab" else "a"
|
|
modeStr ReadWrite = if isWindows then "rb+" else "r+"
|
|
modeStr ReadWriteTruncate = if isWindows then "wb+" else "w+"
|
|
modeStr ReadAppend = if isWindows then "ab+" else "a+"
|
|
|
|
public export
|
|
data FileError = GenericFileError Int -- errno
|
|
| FileReadError
|
|
| FileWriteError
|
|
| FileNotFound
|
|
| PermissionDenied
|
|
| FileExists
|
|
|
|
returnError : HasIO io => io (Either FileError a)
|
|
returnError
|
|
= do err <- primIO prim_fileErrno
|
|
case err of
|
|
0 => pure $ Left FileReadError
|
|
1 => pure $ Left FileWriteError
|
|
2 => pure $ Left FileNotFound
|
|
3 => pure $ Left PermissionDenied
|
|
4 => pure $ Left FileExists
|
|
_ => pure $ Left (GenericFileError (err-5))
|
|
|
|
export
|
|
Show FileError where
|
|
show (GenericFileError errno) = "File error: " ++ show errno
|
|
show FileReadError = "File Read Error"
|
|
show FileWriteError = "File Write Error"
|
|
show FileNotFound = "File Not Found"
|
|
show PermissionDenied = "Permission Denied"
|
|
show FileExists = "File Exists"
|
|
|
|
ok : HasIO io => a -> io (Either FileError a)
|
|
ok x = pure (Right x)
|
|
|
|
public export
|
|
data File : Type where
|
|
FHandle : FilePtr -> File
|
|
|
|
export
|
|
stdin : File
|
|
stdin = FHandle prim__stdin
|
|
|
|
export
|
|
stdout : File
|
|
stdout = FHandle prim__stdout
|
|
|
|
export
|
|
stderr : File
|
|
stderr = FHandle prim__stderr
|
|
|
|
export
|
|
openFile : HasIO io => String -> Mode -> io (Either FileError File)
|
|
openFile f m
|
|
= do res <- primIO (prim__open f (modeStr m) 0)
|
|
if prim__nullAnyPtr res /= 0
|
|
then returnError
|
|
else ok (FHandle res)
|
|
|
|
export
|
|
closeFile : HasIO io => File -> io ()
|
|
closeFile (FHandle f) = primIO (prim__close f)
|
|
|
|
export
|
|
fileError : HasIO io => File -> io Bool
|
|
fileError (FHandle f)
|
|
= do x <- primIO $ prim_error f
|
|
pure (x /= 0)
|
|
|
|
export
|
|
fGetLine : HasIO io => (h : File) -> io (Either FileError String)
|
|
fGetLine (FHandle f)
|
|
= do res <- primIO (prim__readLine f)
|
|
if prim__nullPtr res /= 0
|
|
then returnError
|
|
else ok (prim__getString res)
|
|
|
|
export
|
|
fGetChars : HasIO io => (h : File) -> Int -> io (Either FileError String)
|
|
fGetChars (FHandle f) max
|
|
= do res <- primIO (prim__readChars max f)
|
|
if prim__nullPtr res /= 0
|
|
then returnError
|
|
else ok (prim__getString res)
|
|
|
|
export
|
|
fGetChar : HasIO io => (h : File) -> io (Either FileError Char)
|
|
fGetChar (FHandle h)
|
|
= do c <- primIO (prim__readChar h)
|
|
ferr <- primIO (prim_error h)
|
|
if (ferr /= 0)
|
|
then returnError
|
|
else ok (cast c)
|
|
|
|
export
|
|
fPutStr : HasIO io => (h : File) -> String -> io (Either FileError ())
|
|
fPutStr (FHandle f) str
|
|
= do res <- primIO (prim__writeLine f str)
|
|
if res == 0
|
|
then returnError
|
|
else ok ()
|
|
|
|
export
|
|
fPutStrLn : HasIO io => (h : File) -> String -> io (Either FileError ())
|
|
fPutStrLn f str = fPutStr f (str ++ "\n")
|
|
|
|
export
|
|
fEOF : HasIO io => (h : File) -> io Bool
|
|
fEOF (FHandle f)
|
|
= do res <- primIO (prim__eof f)
|
|
pure (res /= 0)
|
|
|
|
export
|
|
fflush : HasIO io => (h : File) -> io ()
|
|
fflush (FHandle f)
|
|
= do primIO (prim__flush f)
|
|
pure ()
|
|
|
|
export
|
|
popen : HasIO io => String -> Mode -> io (Either FileError File)
|
|
popen f m = do
|
|
ptr <- primIO (prim__popen f (modeStr m))
|
|
if prim__nullAnyPtr ptr /= 0
|
|
then returnError
|
|
else pure (Right (FHandle ptr))
|
|
|
|
export
|
|
pclose : HasIO io => File -> io ()
|
|
pclose (FHandle h) = primIO (prim__pclose h)
|
|
|
|
export
|
|
fileAccessTime : HasIO io => (h : File) -> io (Either FileError Int)
|
|
fileAccessTime (FHandle f)
|
|
= do res <- primIO (prim__fileAccessTime f)
|
|
if res > 0
|
|
then ok res
|
|
else returnError
|
|
|
|
export
|
|
fileModifiedTime : HasIO io => (h : File) -> io (Either FileError Int)
|
|
fileModifiedTime (FHandle f)
|
|
= do res <- primIO (prim__fileModifiedTime f)
|
|
if res > 0
|
|
then ok res
|
|
else returnError
|
|
|
|
export
|
|
fileStatusTime : HasIO io => (h : File) -> io (Either FileError Int)
|
|
fileStatusTime (FHandle f)
|
|
= do res <- primIO (prim__fileStatusTime f)
|
|
if res > 0
|
|
then ok res
|
|
else returnError
|
|
|
|
export
|
|
removeFile : HasIO io => String -> io (Either FileError ())
|
|
removeFile fname
|
|
= do res <- primIO (prim__removeFile fname)
|
|
if res == 0
|
|
then ok ()
|
|
else returnError
|
|
|
|
export
|
|
fileSize : HasIO io => (h : File) -> io (Either FileError Int)
|
|
fileSize (FHandle f)
|
|
= do res <- primIO (prim__fileSize f)
|
|
if res >= 0
|
|
then ok res
|
|
else returnError
|
|
|
|
export
|
|
fPoll : HasIO io => File -> io Bool
|
|
fPoll (FHandle f)
|
|
= do p <- primIO (prim__fPoll f)
|
|
pure (p > 0)
|
|
|
|
export
|
|
readFile : HasIO io => String -> io (Either FileError String)
|
|
readFile file
|
|
= do Right h <- openFile file Read
|
|
| Left err => returnError
|
|
Right content <- read [] h
|
|
| Left err => do closeFile h
|
|
returnError
|
|
closeFile h
|
|
pure (Right (fastAppend content))
|
|
where
|
|
read : List String -> File -> io (Either FileError (List String))
|
|
read acc h
|
|
= do eof <- fEOF h
|
|
if eof
|
|
then pure (Right (reverse acc))
|
|
else
|
|
do Right str <- fGetLine h
|
|
| Left err => returnError
|
|
read (str :: acc) h
|
|
|
|
||| Write a string to a file
|
|
export
|
|
writeFile : HasIO io =>
|
|
(filepath : String) -> (contents : String) ->
|
|
io (Either FileError ())
|
|
writeFile fn contents = do
|
|
Right h <- openFile fn WriteTruncate
|
|
| Left err => pure (Left err)
|
|
Right () <- fPutStr h contents
|
|
| Left err => do closeFile h
|
|
pure (Left err)
|
|
closeFile h
|
|
pure (Right ())
|
|
|
|
namespace FileMode
|
|
public export
|
|
data FileMode = Read | Write | Execute
|
|
|
|
public export
|
|
record Permissions where
|
|
constructor MkPermissions
|
|
user : List FileMode
|
|
group : List FileMode
|
|
others : List FileMode
|
|
|
|
mkMode : Permissions -> Int
|
|
mkMode p
|
|
= getMs (user p) * 64 + getMs (group p) * 8 + getMs (others p)
|
|
where
|
|
getM : FileMode -> Int
|
|
getM Read = 4
|
|
getM Write = 2
|
|
getM Execute = 1
|
|
|
|
getMs : List FileMode -> Int
|
|
getMs = sum . map getM
|
|
|
|
export
|
|
chmodRaw : HasIO io => String -> Int -> io (Either FileError ())
|
|
chmodRaw fname p
|
|
= do ok <- primIO $ prim__chmod fname p
|
|
if ok == 0
|
|
then pure (Right ())
|
|
else returnError
|
|
|
|
export
|
|
chmod : HasIO io => String -> Permissions -> io (Either FileError ())
|
|
chmod fname p = chmodRaw fname (mkMode p)
|