libcryfs/CryOpenFile.cpp

60 lines
1.2 KiB
C++
Raw Normal View History

#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"
#include "impl/FileBlob.h"
namespace bf = boost::filesystem;
using std::unique_ptr;
using blobstore::Blob;
//TODO Get rid of this in favor of a exception hierarchy
using fspp::fuse::CHECK_RETVAL;
2014-12-07 08:57:23 +01:00
using fspp::fuse::FuseErrnoException;
namespace cryfs {
CryOpenFile::CryOpenFile(unique_ptr<FileBlob> fileBlob)
: _fileBlob(std::move(fileBlob)) {
}
CryOpenFile::~CryOpenFile() {
2014-12-07 08:57:23 +01:00
//TODO
}
2014-11-21 01:11:24 +01:00
void CryOpenFile::flush() {
2015-03-11 00:34:25 +01:00
//throw FuseErrnoException(ENOTSUP);
2014-11-21 01:11:24 +01:00
}
void CryOpenFile::stat(struct ::stat *result) const {
result->st_mode = S_IFREG | S_IRUSR | S_IXUSR | S_IWUSR;
2015-03-11 00:34:25 +01:00
result->st_size = _fileBlob->size();
return;
}
void CryOpenFile::truncate(off_t size) const {
_fileBlob->resize(size);
}
2015-03-11 01:05:37 +01:00
ssize_t CryOpenFile::read(void *buf, size_t count, off_t offset) {
return _fileBlob->read(buf, offset, count);
}
void CryOpenFile::write(const void *buf, size_t count, off_t offset) {
_fileBlob->write(buf, offset, count);
}
void CryOpenFile::fsync() {
2015-03-11 00:34:25 +01:00
//throw FuseErrnoException(ENOTSUP);
}
void CryOpenFile::fdatasync() {
2015-03-11 00:34:25 +01:00
//throw FuseErrnoException(ENOTSUP);
}
2014-12-07 08:57:23 +01:00
}