Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
unix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Rinat Striungis
unix
Commits
4b867e26
Commit
4b867e26
authored
13 years ago
by
dterei
Browse files
Options
Downloads
Patches
Plain Diff
Code cleaning for recent changes
parent
bf46721d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
System/Posix/Temp.hsc
+34
-27
34 additions, 27 deletions
System/Posix/Temp.hsc
System/Posix/Temp/ByteString.hsc
+25
-26
25 additions, 26 deletions
System/Posix/Temp/ByteString.hsc
with
59 additions
and
53 deletions
System/Posix/Temp.hsc
+
34
−
27
View file @
4b867e26
...
...
@@ -23,14 +23,16 @@ module System.Posix.Temp (
#include "HsUnix.h"
#if !HAVE_MKSTEMPS
import Control.Exception (throwIO)
#endif
import Foreign.C
import System.IO
import System.Posix.IO
import System.Posix.Types
#if !defined(__GLASGOW_HASKELL__) && !defined(__HUGS__)
#if !HAVE_MKDTEMP
import System.Posix.Directory (createDirectory)
#endif
import Foreign.C
import System.Posix.IO
import System.Posix.Types
#if __GLASGOW_HASKELL__ > 700
import System.Posix.Internals (withFilePath, peekFilePath)
...
...
@@ -49,6 +51,11 @@ peekFilePath :: CString -> IO FilePath
peekFilePath = peekCString
#endif
#if defined(__GLASGOW_HASKELL__) || defined(__HUGS__)
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp"
c_mkstemp :: CString -> IO CInt
#endif
-- | 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
...
...
@@ -71,22 +78,25 @@ mkstemp template' = do
return (name, h)
#endif
#if
defined(__GLASGOW_HASKELL__) || defined(__HUGS__)
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp"
c_mkstemp :: CString -> IO CInt
#if
HAVE_MKSTEMPS
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp
s
"
c_mkstemp
s
:: CString ->
CInt ->
IO CInt
#endif
-- |'mkstemps' - make a unique filename with a given prefix and suffix
-- and open it for reading\/writing (only safe on GHC & Hugs).
-- The returned 'FilePath' is the (possibly relative) path of
-- the created file, which contains 6 random characters in between
-- the prefix and suffix.
-- | 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)
mkstemps prefix suffix = do
#if HAVE_MKSTEMPS
let template = prefix ++ "XXXXXX" ++ suffix
lenOfsuf :: CInt
lenOfsuf = fromIntegral $ length suffix
lenOfsuf = (fromIntegral $ length suffix) :: CInt
withFilePath template $ \ ptr -> do
fd <- throwErrnoIfMinus1 "mkstemps" (c_mkstemps ptr lenOfsuf)
name <- peekFilePath ptr
...
...
@@ -96,17 +106,18 @@ mkstemps prefix suffix = do
throwIO . userError $ "mkstemps: System does not have a mkstemp C function."
#endif
#if HAVE_MK
S
TEMP
S
foreign import ccall unsafe "HsUnix.h __hscore_mk
s
temp
s
"
c_mk
s
temp
s
:: CString ->
CInt -> IO CInt
#if HAVE_MK
D
TEMP
foreign import ccall unsafe "HsUnix.h __hscore_mk
d
temp"
c_mk
d
temp :: CString ->
IO CString
#endif
-- | 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.
--
-- If you aren't using GHC or Hugs then this function simply wraps mktemp and
-- so shouldn't be considered safe.
-- If you are using as system that doesn't support the mkdtemp glibc function
-- (supported in glibc > 2.1.91) then this function uses mktemp and so
-- shouldn't be considered safe.
mkdtemp :: String -> IO FilePath
mkdtemp template' = do
let template = template' ++ "XXXXXX"
...
...
@@ -121,12 +132,11 @@ mkdtemp template' = do
return name
#endif
#if HAVE_MKDTEMP
foreign import ccall unsafe "HsUnix.h __hscore_mkdtemp"
c_mkdtemp :: CString -> IO CString
#endif
#if (!defined(__GLASGOW_HASKELL__) && !defined(__HUGS__)) || !HAVE_MKDTEMP
foreign import ccall unsafe "mktemp"
c_mktemp :: CString -> IO CString
-- | Make a unique file name It is required that the template have six trailing
-- \'X\'s. This function should be considered deprecated.
{-# WARNING mktemp "This function is unsafe; use mkstemp instead" #-}
...
...
@@ -135,8 +145,5 @@ mktemp template = do
withFilePath template $ \ ptr -> do
ptr <- throwErrnoIfNull "mktemp" (c_mktemp ptr)
peekFilePath ptr
foreign import ccall unsafe "mktemp"
c_mktemp :: CString -> IO CString
#endif
This diff is collapsed.
Click to expand it.
System/Posix/Temp/ByteString.hsc
+
25
−
26
View file @
4b867e26
...
...
@@ -23,23 +23,27 @@ module System.Posix.Temp.ByteString (
#include "HsUnix.h"
#if !HAVE_MKSTEMPS
import Control.Exception (throwIO)
import System.IO
import System.Posix.IO
import System.Posix.Types
#if !defined(__GLASGOW_HASKELL__) && !defined(__HUGS__)
import System.Posix.Directory (createDirectory)
#endif
import Data.ByteString (ByteString)
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as BC
import Foreign.C
import System.IO
import System.Posix.ByteString.FilePath
#if !HAVE_MKDTEMP
import System.Posix.Directory (createDirectory)
#endif
import System.Posix.IO
import System.Posix.Types
import Data.ByteString (ByteString
)
import qualified Data.ByteString as B
import qualified Data.ByteString.Char8 as BC
#if defined(__GLASGOW_HASKELL__) || defined(__HUGS__
)
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp"
c_mkstemp :: CString -> IO CInt
#endif
-- | Make a unique filename and open it for reading\/writing. The returned
-- 'RawFilePath' is the (possibly relative) path of the created file, which is
...
...
@@ -63,9 +67,9 @@ mkstemp template' = do
return (name, h)
#endif
#if
defined(__GLASGOW_HASKELL__) || defined(__HUGS__)
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp"
c_mkstemp :: CString -> IO CInt
#if
HAVE_MKSTEMPS
foreign import ccall unsafe "HsUnix.h __hscore_mkstemp
s
"
c_mkstemp
s
:: CString ->
CInt ->
IO CInt
#endif
-- |'mkstemps' - make a unique filename with a given prefix and suffix
...
...
@@ -77,8 +81,7 @@ mkstemps :: ByteString -> ByteString -> IO (RawFilePath, Handle)
mkstemps prefix suffix = do
#if HAVE_MKSTEMPS
let template = prefix `B.append` (BC.pack "XXXXXX") `B.append` suffix
lenOfsuf :: CInt
lenOfsuf = fromIntegral $ B.length suffix
lenOfsuf = (fromIntegral $ B.length suffix) :: CInt
withFilePath template $ \ ptr -> do
fd <- throwErrnoIfMinus1 "mkstemps" (c_mkstemps ptr lenOfsuf)
name <- peekFilePath ptr
...
...
@@ -88,9 +91,9 @@ mkstemps prefix suffix = do
throwIO . userError $ "mkstemps: System does not have a mkstemp C function."
#endif
#if HAVE_MK
S
TEMP
S
foreign import ccall unsafe "HsUnix.h __hscore_mk
s
temp
s
"
c_mk
s
temp
s
:: CString ->
CInt -> IO CInt
#if HAVE_MK
D
TEMP
foreign import ccall unsafe "HsUnix.h __hscore_mk
d
temp"
c_mk
d
temp :: CString ->
IO CString
#endif
-- | Make a unique directory. The returned 'RawFilePath' is the path of the
...
...
@@ -113,12 +116,11 @@ mkdtemp template' = do
return name
#endif
#if HAVE_MKDTEMP
foreign import ccall unsafe "HsUnix.h __hscore_mkdtemp"
c_mkdtemp :: CString -> IO CString
#endif
#if (!defined(__GLASGOW_HASKELL__) && !defined(__HUGS__)) || !HAVE_MKDTEMP
foreign import ccall unsafe "mktemp"
c_mktemp :: CString -> IO CString
-- | Make a unique file name It is required that the template have six trailing
-- \'X\'s. This function should be considered deprecated.
{-# WARNING mktemp "This function is unsafe; use mkstemp instead" #-}
...
...
@@ -127,8 +129,5 @@ mktemp template = do
withFilePath template $ \ ptr -> do
ptr <- throwErrnoIfNull "mktemp" (c_mktemp ptr)
peekFilePath ptr
foreign import ccall unsafe "mktemp"
c_mktemp :: CString -> IO CString
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment