forked from nim-lang/Nim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
close nim-lang#9372 add std/tempfile
- Loading branch information
Showing
1 changed file
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
import std/[os, random] | ||
|
||
|
||
const | ||
maxRetry = 10000 | ||
letters = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" | ||
nimTempPathLength {.intdefine.} = 8 | ||
|
||
|
||
when defined(windows): | ||
import std/winlean | ||
|
||
var O_RDWR {.importc: "_O_RDWR", header: "<fcntl.h>".}: cint | ||
|
||
proc c_fdopen( | ||
filehandle: cint, | ||
mode: cstring | ||
): File {.importc: "_fdopen",header: "<stdio.h>".} | ||
|
||
proc open_osfhandle(osh: Handle, mode: cint): cint {. | ||
importc: "_open_osfhandle", header: "<io.h>".} | ||
|
||
proc close_osfandle(fd: cint): cint {. | ||
importc: "_close", header: "<io.h>".} | ||
else: | ||
import std/posix | ||
|
||
proc c_fdopen( | ||
filehandle: cint, | ||
mode: cstring | ||
): File {.importc: "fdopen",header: "<stdio.h>".} | ||
|
||
|
||
proc safeOpen(filename: string): File = | ||
when defined(windows): | ||
let dwShareMode = FILE_SHARE_DELETE or FILE_SHARE_READ or FILE_SHARE_WRITE | ||
let dwCreation = CREATE_NEW | ||
let dwFlags = FILE_FLAG_BACKUP_SEMANTICS or FILE_ATTRIBUTE_NORMAL | ||
let handle = createFileW(newWideCString(filename), GENERIC_READ or GENERIC_WRITE, dwShareMode, | ||
nil, dwCreation, dwFlags, Handle(0)) | ||
|
||
if handle == INVALID_HANDLE_VALUE: | ||
raiseOSError(osLastError()) | ||
|
||
let fileHandle = open_osfhandle(handle, O_RDWR) | ||
if fileHandle == -1: | ||
discard closeHandle(handle) | ||
raiseOSError(osLastError()) | ||
|
||
result = c_fdopen(fileHandle, "w+") | ||
if result == nil: | ||
discard close_osfandle(fileHandle) | ||
raiseOSError(osLastError()) | ||
else: | ||
let flags = posix.O_RDWR or posix.O_CREAT or posix.O_EXCL | ||
|
||
let fileHandle = posix.open(filename, flags) | ||
if fileHandle == -1: | ||
raiseOsError(osLastError()) | ||
|
||
result = c_fdopen(fileHandle, "w+") | ||
if result == nil: | ||
discard posix.close(fileHandle) | ||
raiseOSError(osLastError()) | ||
|
||
template randomPathName(length: Natural): string = | ||
var res = newString(length) | ||
var state = initRand() | ||
for i in 0 ..< length: | ||
res[i] = letters[state.rand(61)] | ||
res | ||
|
||
proc mkstemp*(prefix, suffix: string, dir = ""): tuple[fd: File, name: string] = | ||
var dir = dir | ||
if dir.len == 0: | ||
dir = getTempDir() | ||
|
||
createDir(dir) | ||
|
||
result.name.setLen(dir.len + prefix.len + nimTempPathLength + suffix.len + 2) | ||
|
||
for i in 0 ..< maxRetry: | ||
result.name = joinPath(dir, prefix & randomPathName(nimTempPathLength) & suffix) | ||
try: | ||
result.fd = safeOpen(result.name) | ||
except OSError: | ||
continue | ||
return | ||
|
||
raise newException(IOError, "Failed to create temporary file") | ||
|
||
proc mkdtemp*(prefix, suffix: string, dir = ""): string = | ||
var dir = dir | ||
if dir.len == 0: | ||
dir = getTempDir() | ||
|
||
result.setlen(dir.len + prefix.len + nimTempPathLength + suffix.len + 2) | ||
|
||
createDir(dir) | ||
|
||
for i in 0 ..< maxRetry: | ||
result = joinPath(dir, prefix & randomPathName(nimTempPathLength) & suffix) | ||
try: | ||
if not existsOrCreateDir(result): | ||
return | ||
except OSError: | ||
continue | ||
|
||
raise newException(IOError, "Failed to create temporary directory") |