libcryfs/CryDir.cpp

59 lines
1.5 KiB
C++
Raw Normal View History

#include "CryDir.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <dirent.h>
2015-02-17 01:02:15 +01:00
#include "messmer/fspp/fuse/FuseErrnoException.h"
#include "CryDevice.h"
#include "CryFile.h"
//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;
namespace bf = boost::filesystem;
using std::unique_ptr;
using std::make_unique;
using std::string;
using std::vector;
namespace cryfs {
2014-12-09 17:19:59 +01:00
CryDir::CryDir(CryDevice *device, unique_ptr<DirBlock> block)
: _device(device), _block(std::move(block)) {
}
CryDir::~CryDir() {
}
2014-11-16 00:05:28 +01:00
unique_ptr<fspp::File> CryDir::createFile(const string &name, mode_t mode) {
2014-12-09 17:19:59 +01:00
auto child = _device->CreateBlock(0);
_block->AddChild(name, child->key());
2014-12-09 16:34:34 +01:00
//TODO Di we need a return value in createDir for fspp? If not, change fspp!
auto fileblock = make_unique<FileBlock>(std::move(child));
2014-12-09 17:19:59 +01:00
fileblock->InitializeEmptyFile();
return make_unique<CryFile>(std::move(fileblock));
}
2014-11-16 00:05:28 +01:00
unique_ptr<fspp::Dir> CryDir::createDir(const string &name, mode_t mode) {
2014-12-09 17:19:59 +01:00
auto child = _device->CreateBlock(CryDevice::DIR_BLOCKSIZE);
_block->AddChild(name, child->key());
//TODO I don't think we need a return value in createDir for fspp. Change fspp!
auto dirblock = make_unique<DirBlock>(std::move(child));
2014-12-09 17:19:59 +01:00
dirblock->InitializeEmptyDir();
return make_unique<CryDir>(_device, std::move(dirblock));
}
void CryDir::rmdir() {
2014-12-07 08:57:23 +01:00
throw FuseErrnoException(ENOTSUP);
}
unique_ptr<vector<string>> CryDir::children() const {
2014-12-09 17:19:59 +01:00
return _block->GetChildren();
}
2014-12-07 08:57:23 +01:00
}