{-# LINE 1 "System/Posix/Tmp.hsc" #-}
{-# LANGUAGE ForeignFunctionInterface #-}
{-# LINE 2 "System/Posix/Tmp.hsc" #-}

{-# LINE 3 "System/Posix/Tmp.hsc" #-}
{-# LANGUAGE Trustworthy #-}

{-# LINE 5 "System/Posix/Tmp.hsc" #-}
-----------------------------------------------------------------------------
-- |
-- Module      :  System.Posix.Tmp
-- Copyright   :  (c) Volker Stolz <vs@foldr.org>
--                    Deian Stefan <deian@cs.stanford.edu>
-- This is a copy of the /latest/ @System.Posix.Temp@ module. Because
-- @Temp@ will not be made available until GHC 7.6, we are including
-- the core functions here.
--
-----------------------------------------------------------------------------

module System.Posix.Tmp (
        mkstemp, mkstemps, mkdtemp
    ) where


{-# LINE 21 "System/Posix/Tmp.hsc" #-}

import Foreign.C
import System.IO
import System.Posix.IO
import System.Posix.Types


{-# LINE 28 "System/Posix/Tmp.hsc" #-}
import System.Posix.Internals (withFilePath, peekFilePath)


{-# LINE 43 "System/Posix/Tmp.hsc" #-}


{-# LINE 45 "System/Posix/Tmp.hsc" #-}
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp"
  c_mkstemp :: CString -> IO CInt

{-# LINE 48 "System/Posix/Tmp.hsc" #-}

-- | Make a unique filename and open it for reading\/writing. The returned
-- 'FilePath' is the (possibly relative) path of the created file, which is
-- padded with 6 random characters. The argument is the desired prefix of the
-- filepath of the temporary file to be created.
mkstemp :: String -> IO (FilePath, Handle)

{-# LINE 55 "System/Posix/Tmp.hsc" #-}
mkstemp template' = do
  let template = template' ++ "XXXXXX"
  withFilePath template $ \ ptr -> do
    fd <- throwErrnoIfMinus1 "mkstemp" (c_mkstemp ptr)
    name <- peekFilePath ptr
    h <- fdToHandle (Fd fd)
    return (name, h)

{-# LINE 65 "System/Posix/Tmp.hsc" #-}


{-# LINE 67 "System/Posix/Tmp.hsc" #-}
foreign import ccall unsafe "HsUnix.h __hscore_mkstemps"
  c_mkstemps :: CString -> CInt -> IO CInt

{-# LINE 70 "System/Posix/Tmp.hsc" #-}

-- | Make a unique filename with a given prefix and suffix and open it for
-- reading\/writing. The returned 'FilePath' is the (possibly relative) path of
-- the created file, which contains  6 random characters in between the prefix
-- and suffix. The first argument is the desired prefix of the filepath of the
-- temporary file to be created. The second argument is the suffix of the
-- temporary file to be created.
--
-- If you are using as system that doesn't support the mkstemps glibc function
-- (supported in glibc > 2.11) then this function simply throws an error.
mkstemps :: String -> String -> IO (FilePath, Handle)

{-# LINE 82 "System/Posix/Tmp.hsc" #-}
mkstemps prefix suffix = do
  let template = prefix ++ "XXXXXX" ++ suffix
      lenOfsuf = (fromIntegral $ length suffix) :: CInt
  withFilePath template $ \ ptr -> do
    fd <- throwErrnoIfMinus1 "mkstemps" (c_mkstemps ptr lenOfsuf)
    name <- peekFilePath ptr
    h <- fdToHandle (Fd fd)
    return (name, h)

{-# LINE 93 "System/Posix/Tmp.hsc" #-}


{-# LINE 95 "System/Posix/Tmp.hsc" #-}
foreign import ccall unsafe "HsUnix.h __hscore_mkdtemp"
  c_mkdtemp :: CString -> IO CString

{-# LINE 98 "System/Posix/Tmp.hsc" #-}

-- | Make a unique directory. The returned 'FilePath' is the path of the
-- created directory, which is padded with 6 random characters. The argument is
-- the desired prefix of the filepath of the temporary directory to be created.
mkdtemp :: String -> IO FilePath
mkdtemp template' = do

{-# LINE 105 "System/Posix/Tmp.hsc" #-}
  let template = template' ++ "XXXXXX"
  withFilePath template $ \ ptr -> do
    _ <- throwErrnoIfNull "mkdtemp" (c_mkdtemp ptr)
    name <- peekFilePath ptr
    return name

{-# LINE 113 "System/Posix/Tmp.hsc" #-}