diff options
Diffstat (limited to 'mythfs/service/recordingsVolume.cpp')
-rw-r--r-- | mythfs/service/recordingsVolume.cpp | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/mythfs/service/recordingsVolume.cpp b/mythfs/service/recordingsVolume.cpp new file mode 100644 index 0000000..4a6f437 --- /dev/null +++ b/mythfs/service/recordingsVolume.cpp @@ -0,0 +1,108 @@ +#include "recordingsVolume.h" + +namespace MythFS { + RecordingsVolume::RecordingsVolume(boost::shared_ptr<AdHoc::ResourcePool<DB::Connection>> d) : + IceTray::AbstractDatabaseClient(d) + { + } + + NetFS::DirectoryPrx + RecordingsVolume::opendir(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + return NULL; + } + void RecordingsVolume::mkdir(const NetFS::ReqEnv &, const std::string &, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::rmdir(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::truncate(const NetFS::ReqEnv &, const std::string &, Ice::Long, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::unlink(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + NetFS::FilePrx RecordingsVolume::open(const NetFS::ReqEnv &, const std::string &, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + NetFS::ReadOnlyFilePrx RecordingsVolume::openReadOnly(const NetFS::ReqEnv &, const std::string &, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + NetFS::FilePrx RecordingsVolume::create(const NetFS::ReqEnv &, const std::string &, Ice::Int, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + NetFS::VFS RecordingsVolume::statfs(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + Ice::Int RecordingsVolume::access(const NetFS::ReqEnv &, const std::string &, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + NetFS::Attr RecordingsVolume::getattr(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::mknod(const NetFS::ReqEnv &, const std::string &, Ice::Int, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::symlink(const NetFS::ReqEnv &, const std::string &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::link(const NetFS::ReqEnv &, const std::string &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::rename(const NetFS::ReqEnv &, const std::string &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + std::string RecordingsVolume::readlink(const NetFS::ReqEnv &, const std::string &, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::chmod(const NetFS::ReqEnv &, const std::string &, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::chown(const NetFS::ReqEnv &, const std::string &, Ice::Int, Ice::Int, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::utimens(const NetFS::ReqEnv &, const std::string &, Ice::Long, Ice::Long, Ice::Long, Ice::Long, const Ice::Current&) + { + throw ::NetFS::SystemError(ENOSYS); + } + + void RecordingsVolume::disconnect(const Ice::Current&) + { + } +} + |