2014-11-15 17:24:07 +01:00
|
|
|
#include "FilesystemImpl.h"
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../fs_interface/Device.h"
|
|
|
|
#include "../fs_interface/Dir.h"
|
2015-04-22 16:00:14 +02:00
|
|
|
#include "../fs_interface/Symlink.h"
|
2014-11-15 17:24:07 +01:00
|
|
|
|
2015-02-17 00:48:49 +01:00
|
|
|
#include "../fuse/FuseErrnoException.h"
|
|
|
|
#include "../fs_interface/File.h"
|
2014-11-15 17:24:07 +01:00
|
|
|
|
|
|
|
|
2015-06-21 17:44:30 +02:00
|
|
|
#include <messmer/cpp-utils/pointer/unique_ref.h>
|
2014-11-15 17:24:07 +01:00
|
|
|
|
2014-11-16 00:05:28 +01:00
|
|
|
using namespace fspp;
|
2015-02-17 00:48:49 +01:00
|
|
|
using cpputils::dynamic_pointer_move;
|
2015-06-18 19:30:52 +02:00
|
|
|
using cpputils::unique_ref;
|
|
|
|
using cpputils::make_unique_ref;
|
2014-11-15 17:24:07 +01:00
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
2015-06-18 19:30:52 +02:00
|
|
|
using boost::none;
|
2014-11-15 17:24:07 +01:00
|
|
|
|
|
|
|
namespace bf = boost::filesystem;
|
|
|
|
|
2015-09-29 21:47:50 +02:00
|
|
|
#ifdef FSPP_PROFILE
|
|
|
|
#include "Profiler.h"
|
|
|
|
#include <iomanip>
|
|
|
|
#include <ios>
|
|
|
|
#define PROFILE(name) Profiler profiler_##name(&name);
|
|
|
|
#else
|
|
|
|
#define PROFILE(name)
|
|
|
|
#endif
|
|
|
|
|
2014-11-15 23:47:38 +01:00
|
|
|
FilesystemImpl::FilesystemImpl(Device *device)
|
2015-09-29 21:47:50 +02:00
|
|
|
:
|
|
|
|
#ifdef FSPP_PROFILE
|
|
|
|
_loadFileNanosec(0), _loadDirNanosec(0), _loadSymlinkNanosec(0), _openFileNanosec(0), _flushNanosec(0),
|
|
|
|
_closeFileNanosec(0), _lstatNanosec(0), _fstatNanosec(0), _chmodNanosec(0), _chownNanosec(0), _truncateNanosec(0),
|
|
|
|
_ftruncateNanosec(0), _readNanosec(0), _writeNanosec(0), _fsyncNanosec(0), _fdatasyncNanosec(0), _accessNanosec(0),
|
|
|
|
_createAndOpenFileNanosec(0), _createAndOpenFileNanosec_withoutLoading(0), _mkdirNanosec(0),
|
|
|
|
_mkdirNanosec_withoutLoading(0), _rmdirNanosec(0), _rmdirNanosec_withoutLoading(0), _unlinkNanosec(0),
|
|
|
|
_unlinkNanosec_withoutLoading(0), _renameNanosec(0), _readDirNanosec(0), _readDirNanosec_withoutLoading(0),
|
|
|
|
_utimensNanosec(0), _statfsNanosec(0), _createSymlinkNanosec(0), _createSymlinkNanosec_withoutLoading(0),
|
|
|
|
_readSymlinkNanosec(0), _readSymlinkNanosec_withoutLoading(0),
|
|
|
|
#endif
|
|
|
|
_device(device), _open_files()
|
|
|
|
{
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FilesystemImpl::~FilesystemImpl() {
|
2015-09-29 21:47:50 +02:00
|
|
|
#ifdef FSPP_PROFILE
|
|
|
|
std::cout
|
|
|
|
<< "---------------------------------------------------------------------------\n"
|
|
|
|
<< "Profiler Information\n"
|
|
|
|
<< "---------------------------------------------------------------------------\n"
|
|
|
|
<< std::fixed << std::setprecision(6)
|
|
|
|
<< std::setw(40) << "LoadFile: " << static_cast<double>(_loadFileNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "LoadDir: " << static_cast<double>(_loadDirNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "LoadSymlink: " << static_cast<double>(_loadSymlinkNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "OpenFile: " << static_cast<double>(_openFileNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Flush: " << static_cast<double>(_flushNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "CloseFile: " << static_cast<double>(_closeFileNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Lstat: " << static_cast<double>(_lstatNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Fstat: " << static_cast<double>(_fstatNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Chmod: " << static_cast<double>(_chmodNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Chown: " << static_cast<double>(_chownNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Truncate: " << static_cast<double>(_truncateNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Ftruncate: " << static_cast<double>(_ftruncateNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Read: " << static_cast<double>(_readNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Write: " << static_cast<double>(_writeNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Fsync: " << static_cast<double>(_fsyncNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Fdatasync: " << static_cast<double>(_fdatasyncNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Access: " << static_cast<double>(_accessNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "CreateAndOpenFile: " << static_cast<double>(_createAndOpenFileNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "CreateAndOpenFile (without loading): " << static_cast<double>(_createAndOpenFileNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Mkdir: " << static_cast<double>(_mkdirNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Mkdir (without loading): " << static_cast<double>(_mkdirNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Rmdir: " << static_cast<double>(_rmdirNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Rmdir (without loading): " << static_cast<double>(_rmdirNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Unlink: " << static_cast<double>(_unlinkNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Unlink (without loading): " << static_cast<double>(_unlinkNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Rename: " << static_cast<double>(_renameNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "ReadDir: " << static_cast<double>(_readDirNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "ReadDir (without loading): " << static_cast<double>(_readDirNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Utimens: " << static_cast<double>(_utimensNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "Statfs: " << static_cast<double>(_statfsNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "CreateSymlink: " << static_cast<double>(_createSymlinkNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "CreateSymlink (without loading): " << static_cast<double>(_createSymlinkNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "ReadSymlink: " << static_cast<double>(_readSymlinkNanosec)/1000000000 << "\n"
|
|
|
|
<< std::setw(40) << "ReadSymlink (without loading): " << static_cast<double>(_readSymlinkNanosec_withoutLoading)/1000000000 << "\n"
|
|
|
|
<< "---------------------------------------------------------------------------\n" << std::flush;
|
|
|
|
#endif
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 19:30:52 +02:00
|
|
|
unique_ref<File> FilesystemImpl::LoadFile(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_loadFileNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto node = _device->Load(path);
|
2015-06-18 19:30:52 +02:00
|
|
|
if (node == none) {
|
|
|
|
throw fuse::FuseErrnoException(EIO);
|
|
|
|
}
|
|
|
|
auto file = dynamic_pointer_move<File>(*node);
|
|
|
|
if (file == none) {
|
2014-11-28 14:46:45 +01:00
|
|
|
throw fuse::FuseErrnoException(EISDIR);
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
2015-06-18 19:30:52 +02:00
|
|
|
return std::move(*file);
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 19:30:52 +02:00
|
|
|
unique_ref<Dir> FilesystemImpl::LoadDir(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_loadDirNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto node = _device->Load(path);
|
2015-06-18 19:30:52 +02:00
|
|
|
if (node == none) {
|
|
|
|
throw fuse::FuseErrnoException(EIO);
|
|
|
|
}
|
|
|
|
auto dir = dynamic_pointer_move<Dir>(*node);
|
|
|
|
if (dir == none) {
|
2014-11-28 14:46:45 +01:00
|
|
|
throw fuse::FuseErrnoException(ENOTDIR);
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
2015-06-18 19:30:52 +02:00
|
|
|
return std::move(*dir);
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 19:30:52 +02:00
|
|
|
unique_ref<Symlink> FilesystemImpl::LoadSymlink(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_loadSymlinkNanosec);
|
2015-04-22 16:00:14 +02:00
|
|
|
auto node = _device->Load(path);
|
2015-06-18 19:30:52 +02:00
|
|
|
if (node == none) {
|
|
|
|
throw fuse::FuseErrnoException(EIO);
|
|
|
|
}
|
|
|
|
auto lnk = dynamic_pointer_move<Symlink>(*node);
|
|
|
|
if (lnk == none) {
|
2015-04-22 16:00:14 +02:00
|
|
|
throw fuse::FuseErrnoException(ENOTDIR);
|
|
|
|
}
|
2015-06-18 19:30:52 +02:00
|
|
|
return std::move(*lnk);
|
2015-04-22 16:00:14 +02:00
|
|
|
}
|
|
|
|
|
2014-11-15 17:24:07 +01:00
|
|
|
int FilesystemImpl::openFile(const bf::path &path, int flags) {
|
|
|
|
auto file = LoadFile(path);
|
|
|
|
return openFile(*file, flags);
|
|
|
|
}
|
|
|
|
|
2014-11-15 23:47:38 +01:00
|
|
|
int FilesystemImpl::openFile(const File &file, int flags) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_openFileNanosec);
|
2015-03-11 00:22:36 +01:00
|
|
|
return _open_files.open(file.open(flags));
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2014-11-21 01:11:24 +01:00
|
|
|
void FilesystemImpl::flush(int descriptor) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_flushNanosec);
|
2014-11-21 01:11:24 +01:00
|
|
|
_open_files.get(descriptor)->flush();
|
|
|
|
}
|
|
|
|
|
2014-11-15 17:24:07 +01:00
|
|
|
void FilesystemImpl::closeFile(int descriptor) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_closeFileNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.close(descriptor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::lstat(const bf::path &path, struct ::stat *stbuf) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_lstatNanosec);
|
2015-06-18 19:30:52 +02:00
|
|
|
auto node = _device->Load(path);
|
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->stat(stbuf);
|
|
|
|
}
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::fstat(int descriptor, struct ::stat *stbuf) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_fstatNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.get(descriptor)->stat(stbuf);
|
|
|
|
}
|
|
|
|
|
2015-04-21 21:08:23 +02:00
|
|
|
void FilesystemImpl::chmod(const boost::filesystem::path &path, mode_t mode) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_chmodNanosec);
|
2015-06-18 19:30:52 +02:00
|
|
|
auto node = _device->Load(path);
|
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->chmod(mode);
|
|
|
|
}
|
2015-04-21 21:08:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::chown(const boost::filesystem::path &path, uid_t uid, gid_t gid) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_chownNanosec);
|
2015-06-18 19:30:52 +02:00
|
|
|
auto node = _device->Load(path);
|
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->chown(uid, gid);
|
|
|
|
}
|
2015-04-21 21:08:23 +02:00
|
|
|
}
|
|
|
|
|
2014-11-15 17:24:07 +01:00
|
|
|
void FilesystemImpl::truncate(const bf::path &path, off_t size) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_truncateNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
LoadFile(path)->truncate(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::ftruncate(int descriptor, off_t size) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_ftruncateNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.get(descriptor)->truncate(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
int FilesystemImpl::read(int descriptor, void *buf, size_t count, off_t offset) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_readNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
return _open_files.get(descriptor)->read(buf, count, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::write(int descriptor, const void *buf, size_t count, off_t offset) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_writeNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.get(descriptor)->write(buf, count, offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::fsync(int descriptor) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_fsyncNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.get(descriptor)->fsync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::fdatasync(int descriptor) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_fdatasyncNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_open_files.get(descriptor)->fdatasync();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::access(const bf::path &path, int mask) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_accessNanosec);
|
2015-06-18 19:30:52 +02:00
|
|
|
auto node = _device->Load(path);
|
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->access(mask);
|
|
|
|
}
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-04-22 14:31:15 +02:00
|
|
|
int FilesystemImpl::createAndOpenFile(const bf::path &path, mode_t mode, uid_t uid, gid_t gid) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_createAndOpenFileNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto dir = LoadDir(path.parent_path());
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_createAndOpenFileNanosec_withoutLoading);
|
2015-04-22 14:31:15 +02:00
|
|
|
auto file = dir->createAndOpenFile(path.filename().native(), mode, uid, gid);
|
2015-03-11 00:22:36 +01:00
|
|
|
return _open_files.open(std::move(file));
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-04-22 14:31:15 +02:00
|
|
|
void FilesystemImpl::mkdir(const bf::path &path, mode_t mode, uid_t uid, gid_t gid) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_mkdirNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto dir = LoadDir(path.parent_path());
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_mkdirNanosec_withoutLoading);
|
2015-04-22 14:31:15 +02:00
|
|
|
dir->createDir(path.filename().native(), mode, uid, gid);
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::rmdir(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_rmdirNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto dir = LoadDir(path);
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_rmdirNanosec_withoutLoading);
|
2015-04-10 23:24:28 +02:00
|
|
|
dir->remove();
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::unlink(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_unlinkNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto file = LoadFile(path);
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_unlinkNanosec_withoutLoading);
|
2015-04-10 23:24:28 +02:00
|
|
|
file->remove();
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::rename(const bf::path &from, const bf::path &to) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_renameNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto node = _device->Load(from);
|
2015-06-18 19:30:52 +02:00
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->rename(to);
|
|
|
|
}
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
2015-06-18 19:30:52 +02:00
|
|
|
unique_ref<vector<Dir::Entry>> FilesystemImpl::readDir(const bf::path &path) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_readDirNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto dir = LoadDir(path);
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_readDirNanosec_withoutLoading);
|
2014-11-15 17:24:07 +01:00
|
|
|
return dir->children();
|
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::utimens(const bf::path &path, const timespec times[2]) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_utimensNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
auto node = _device->Load(path);
|
2015-06-18 19:30:52 +02:00
|
|
|
if(node == none) {
|
|
|
|
throw fuse::FuseErrnoException(ENOENT);
|
|
|
|
} else {
|
|
|
|
(*node)->utimens(times);
|
|
|
|
}
|
2014-11-15 17:24:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::statfs(const bf::path &path, struct statvfs *fsstat) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_statfsNanosec);
|
2014-11-15 17:24:07 +01:00
|
|
|
_device->statfs(path, fsstat);
|
|
|
|
}
|
2015-04-22 16:00:14 +02:00
|
|
|
|
2015-04-23 09:17:23 +02:00
|
|
|
void FilesystemImpl::createSymlink(const bf::path &to, const bf::path &from, uid_t uid, gid_t gid) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_createSymlinkNanosec);
|
2015-04-22 16:00:14 +02:00
|
|
|
auto parent = LoadDir(from.parent_path());
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_createSymlinkNanosec_withoutLoading);
|
2015-04-23 09:17:23 +02:00
|
|
|
parent->createSymlink(from.filename().native(), to, uid, gid);
|
2015-04-22 16:00:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void FilesystemImpl::readSymlink(const bf::path &path, char *buf, size_t size) {
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_readSymlinkNanosec);
|
2015-04-22 16:00:14 +02:00
|
|
|
string target = LoadSymlink(path)->target().native();
|
2015-09-29 21:47:50 +02:00
|
|
|
PROFILE(_readSymlinkNanosec_withoutLoading);
|
2015-04-22 16:00:14 +02:00
|
|
|
std::memcpy(buf, target.c_str(), std::min(target.size()+1, size));
|
|
|
|
buf[size-1] = '\0';
|
|
|
|
}
|