2014-11-15 16:33:24 +01:00
|
|
|
#include "CryOpenFile.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
#include "CryDevice.h"
|
2015-02-17 01:02:15 +01:00
|
|
|
#include "messmer/fspp/fuse/FuseErrnoException.h"
|
2014-11-15 16:33:24 +01:00
|
|
|
|
|
|
|
namespace bf = boost::filesystem;
|
|
|
|
|
2015-06-18 13:14:43 +02:00
|
|
|
using cpputils::unique_ref;
|
2015-10-04 17:20:14 +02:00
|
|
|
using cryfs::parallelaccessfsblobstore::FileBlobRef;
|
2015-03-08 03:51:19 +01:00
|
|
|
|
2014-11-15 16:33:24 +01:00
|
|
|
//TODO Get rid of this in favor of a exception hierarchy
|
2014-11-28 14:46:45 +01:00
|
|
|
using fspp::fuse::CHECK_RETVAL;
|
2014-12-07 08:57:23 +01:00
|
|
|
using fspp::fuse::FuseErrnoException;
|
2014-11-15 16:33:24 +01:00
|
|
|
|
|
|
|
namespace cryfs {
|
|
|
|
|
2015-10-04 17:20:14 +02:00
|
|
|
CryOpenFile::CryOpenFile(unique_ref<FileBlobRef> fileBlob)
|
2015-03-08 03:51:19 +01:00
|
|
|
: _fileBlob(std::move(fileBlob)) {
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CryOpenFile::~CryOpenFile() {
|
2014-12-07 08:57:23 +01:00
|
|
|
//TODO
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
2014-11-21 01:11:24 +01:00
|
|
|
void CryOpenFile::flush() {
|
2015-04-09 23:42:04 +02:00
|
|
|
_fileBlob->flush();
|
2014-11-21 01:11:24 +01:00
|
|
|
}
|
|
|
|
|
2014-11-15 16:33:24 +01:00
|
|
|
void CryOpenFile::stat(struct ::stat *result) const {
|
2015-03-11 00:23:52 +01:00
|
|
|
result->st_mode = S_IFREG | S_IRUSR | S_IXUSR | S_IWUSR;
|
2015-03-11 00:34:25 +01:00
|
|
|
result->st_size = _fileBlob->size();
|
2015-03-11 00:23:52 +01:00
|
|
|
return;
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CryOpenFile::truncate(off_t size) const {
|
2015-03-11 00:23:52 +01:00
|
|
|
_fileBlob->resize(size);
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
2015-03-18 02:46:06 +01:00
|
|
|
ssize_t CryOpenFile::read(void *buf, size_t count, off_t offset) const {
|
2015-03-11 01:05:37 +01:00
|
|
|
return _fileBlob->read(buf, offset, count);
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CryOpenFile::write(const void *buf, size_t count, off_t offset) {
|
2015-03-08 03:51:19 +01:00
|
|
|
_fileBlob->write(buf, offset, count);
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CryOpenFile::fsync() {
|
2015-03-11 00:34:25 +01:00
|
|
|
//throw FuseErrnoException(ENOTSUP);
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CryOpenFile::fdatasync() {
|
2015-03-11 00:34:25 +01:00
|
|
|
//throw FuseErrnoException(ENOTSUP);
|
2014-11-15 16:33:24 +01:00
|
|
|
}
|
|
|
|
|
2014-12-07 08:57:23 +01:00
|
|
|
}
|