mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Support/FileSystem: Add resize_file implementation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120819 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a50b98c517
commit
3920d3b4f4
@ -213,6 +213,16 @@ error_code rename(const Twine &from, const Twine &to) {
|
||||
return make_error_code(errc::success);
|
||||
}
|
||||
|
||||
error_code resize_file(const Twine &path, uint64_t size) {
|
||||
SmallString<128> path_storage;
|
||||
StringRef p = path.toNullTerminatedStringRef(path_storage);
|
||||
|
||||
if (::truncate(p.begin(), size) == -1)
|
||||
return error_code(errno, system_category());
|
||||
|
||||
return make_error_code(errc::success);
|
||||
}
|
||||
|
||||
error_code exists(const Twine &path, bool &result) {
|
||||
SmallString<128> path_storage;
|
||||
StringRef p = path.toNullTerminatedStringRef(path_storage);
|
||||
|
@ -18,7 +18,10 @@
|
||||
|
||||
#include "Windows.h"
|
||||
#include <WinCrypt.h>
|
||||
#include <fcntl.h>
|
||||
#include <io.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
@ -290,6 +293,22 @@ error_code rename(const Twine &from, const Twine &to) {
|
||||
return make_error_code(errc::success);
|
||||
}
|
||||
|
||||
error_code resize_file(const Twine &path, uint64_t size) {
|
||||
SmallString<128> path_storage;
|
||||
SmallVector<wchar_t, 128> path_utf16;
|
||||
|
||||
if (error_code ec = UTF8ToUTF16(path.toStringRef(path_storage),
|
||||
path_utf16))
|
||||
return ec;
|
||||
|
||||
int fd = ::_wopen(path_utf16.begin(), O_BINARY, S_IREAD | S_IWRITE);
|
||||
if (fd == -1)
|
||||
return error_code(errno, generic_category());
|
||||
errno_t error = ::_chsize_s(fd, size);
|
||||
::close(fd);
|
||||
return error_code(error, generic_category());
|
||||
}
|
||||
|
||||
error_code exists(const Twine &path, bool &result) {
|
||||
SmallString<128> path_storage;
|
||||
SmallVector<wchar_t, 128> path_utf16;
|
||||
|
Loading…
x
Reference in New Issue
Block a user