summaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-09-20 16:03:35 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-09-20 16:03:35 +0200
commitd0cc9153d53dd4bc8dadf8bbcbe4ac72dfbbb61e (patch)
tree37d55a434528ff8d53e46393eff7ebd5529b52aa /src/modules
parent78db15a780cc5389fc6e01d500d5c91bdd8bc422 (diff)
downloadmad-d0cc9153d53dd4bc8dadf8bbcbe4ac72dfbbb61e.tar
mad-d0cc9153d53dd4bc8dadf8bbcbe4ac72dfbbb61e.zip
Extended StorageManager to provide copy and remove methods.
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/StorageBackendFile/StorageBackendFile.cpp22
-rw-r--r--src/modules/StorageBackendFile/StorageBackendFile.h2
2 files changed, 24 insertions, 0 deletions
diff --git a/src/modules/StorageBackendFile/StorageBackendFile.cpp b/src/modules/StorageBackendFile/StorageBackendFile.cpp
index c8bc4f7..6a9242d 100644
--- a/src/modules/StorageBackendFile/StorageBackendFile.cpp
+++ b/src/modules/StorageBackendFile/StorageBackendFile.cpp
@@ -150,6 +150,28 @@ boost::shared_ptr<Common::XmlData> StorageBackendFile::load(const std::string &t
return boost::shared_ptr<Common::XmlData>(new Common::XmlData(path.file_string()));
}
+void StorageBackendFile::copy(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception) {
+ boost::lock_guard<boost::shared_mutex> lock(mutex);
+
+ if(!configured)
+ throw Core::Exception(Core::Exception::NOT_AVAILABLE);
+
+ boost::filesystem::path path = getFileName(type, name);
+ boost::filesystem::path newPath = getFileName(type, newName);
+ boost::filesystem::copy_file(path, newPath);
+}
+
+void StorageBackendFile::rename(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception) {
+ boost::lock_guard<boost::shared_mutex> lock(mutex);
+
+ if(!configured)
+ throw Core::Exception(Core::Exception::NOT_AVAILABLE);
+
+ boost::filesystem::path path = getFileName(type, name);
+ boost::filesystem::path newPath = getFileName(type, newName);
+ boost::filesystem::rename(path, newPath);
+}
+
void StorageBackendFile::remove(const std::string &type, const std::string &name) throw (Core::Exception) {
boost::lock_guard<boost::shared_mutex> lock(mutex);
diff --git a/src/modules/StorageBackendFile/StorageBackendFile.h b/src/modules/StorageBackendFile/StorageBackendFile.h
index 5cce4fc..9994500 100644
--- a/src/modules/StorageBackendFile/StorageBackendFile.h
+++ b/src/modules/StorageBackendFile/StorageBackendFile.h
@@ -56,6 +56,8 @@ class StorageBackendFile : public Common::StorageBackend, private Core::Configur
virtual void store(const std::string &type, const std::string &name, const Common::XmlData *data) throw (Core::Exception);
virtual boost::shared_ptr<Common::XmlData> load(const std::string &type, const std::string &name) throw (Core::Exception);
+ virtual void copy(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception);
+ virtual void rename(const std::string &type, const std::string &name, const std::string &newName) throw (Core::Exception);
virtual void remove(const std::string &type, const std::string &name) throw (Core::Exception);
public: