libcryfs/CryFile.cpp

46 lines
1.0 KiB
C++
Raw Normal View History

#include "CryFile.h"
#include "CryDevice.h"
#include "CryOpenFile.h"
2015-02-17 01:02:15 +01:00
#include "messmer/fspp/fuse/FuseErrnoException.h"
namespace bf = boost::filesystem;
//TODO Get rid of this in favor of exception hierarchy
using fspp::fuse::CHECK_RETVAL;
2014-12-07 08:57:23 +01:00
using fspp::fuse::FuseErrnoException;
using std::unique_ptr;
using std::make_unique;
namespace cryfs {
CryFile::CryFile(CryDevice *device, unique_ptr<FileBlob> blob)
: _device(device),
_blob(std::move(blob)) {
}
CryFile::~CryFile() {
}
2014-11-16 00:05:28 +01:00
unique_ptr<fspp::OpenFile> CryFile::open(int flags) const {
//TODO This is a performance issue because we open the blob twice on the "open" syscall
return make_unique<CryOpenFile>(make_unique<FileBlob>(_device->LoadBlob(_blob->key())));
}
2015-03-08 03:25:20 +01:00
void CryFile::stat(struct ::stat *result) const {
result->st_mode = S_IFREG | S_IRUSR | S_IXUSR | S_IWUSR;
return;
throw FuseErrnoException(ENOTSUP);
}
void CryFile::truncate(off_t size) const {
2014-12-07 08:57:23 +01:00
throw FuseErrnoException(ENOTSUP);
}
void CryFile::unlink() {
2014-12-07 08:57:23 +01:00
throw FuseErrnoException(ENOTSUP);
}
2014-12-07 08:57:23 +01:00
}