mirror of https://github.com/trapexit/mergerfs.git
Browse Source
Merge pull request #420 from trapexit/mkstemp-movefile
Merge pull request #420 from trapexit/mkstemp-movefile
use temp files (then rename) when moving files for moveonenospcpull/421/head
Antonio SJ Musumeci
7 years ago
committed by
GitHub
4 changed files with 86 additions and 7 deletions
@ -0,0 +1,50 @@ |
|||
/*
|
|||
ISC License |
|||
|
|||
Copyright (c) 2016, Antonio SJ Musumeci <trapexit@spawn.link> |
|||
|
|||
Permission to use, copy, modify, and/or distribute this software for any |
|||
purpose with or without fee is hereby granted, provided that the above |
|||
copyright notice and this permission notice appear in all copies. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES |
|||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF |
|||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR |
|||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES |
|||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
|||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
|||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
|||
*/ |
|||
|
|||
#ifndef __FS_BASE_MKSTEMP_HPP__
|
|||
#define __FS_BASE_MKSTEMP_HPP__
|
|||
|
|||
#include <stdlib.h>
|
|||
#include <string.h>
|
|||
|
|||
#include <string>
|
|||
|
|||
namespace fs |
|||
{ |
|||
static |
|||
inline |
|||
int |
|||
mkstemp(std::string &filepath) |
|||
{ |
|||
int fd; |
|||
char buf[filepath.size()+8]; |
|||
|
|||
strcpy(buf,filepath.c_str()); |
|||
strcpy(buf+filepath.size(),".XXXXXX"); |
|||
|
|||
fd = ::mkstemp(buf); |
|||
if(fd == -1) |
|||
return -1; |
|||
|
|||
filepath = buf; |
|||
|
|||
return fd; |
|||
} |
|||
} |
|||
|
|||
#endif
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue