Commit b2e3fdef authored by Max Kellermann's avatar Max Kellermann

storage/local: hide the class declarations

Hide inside CreateLocalStorage().
parent c13810eb
...@@ -210,8 +210,8 @@ glue_db_init_and_load(void) ...@@ -210,8 +210,8 @@ glue_db_init_and_load(void)
return true; return true;
SimpleDatabase &db = *(SimpleDatabase *)instance->database; SimpleDatabase &db = *(SimpleDatabase *)instance->database;
instance->storage = new LocalStorage(mapper_get_music_directory_utf8(), instance->storage = CreateLocalStorage(mapper_get_music_directory_utf8(),
mapper_get_music_directory_fs()); mapper_get_music_directory_fs());
instance->update = new UpdateService(*instance->event_loop, db, instance->update = new UpdateService(*instance->event_loop, db,
*instance->storage, *instance->storage,
*instance); *instance);
......
...@@ -19,9 +19,58 @@ ...@@ -19,9 +19,58 @@
#include "config.h" #include "config.h"
#include "LocalStorage.hxx" #include "LocalStorage.hxx"
#include "storage/StorageInterface.hxx"
#include "storage/FileInfo.hxx" #include "storage/FileInfo.hxx"
#include "util/Error.hxx" #include "util/Error.hxx"
#include "fs/FileSystem.hxx" #include "fs/FileSystem.hxx"
#include "fs/AllocatedPath.hxx"
#include "fs/DirectoryReader.hxx"
#include <string>
class LocalDirectoryReader final : public StorageDirectoryReader {
AllocatedPath base_fs;
DirectoryReader reader;
std::string name_utf8;
public:
LocalDirectoryReader(AllocatedPath &&_base_fs)
:base_fs(std::move(_base_fs)), reader(base_fs) {}
bool HasFailed() {
return reader.HasFailed();
}
/* virtual methods from class StorageDirectoryReader */
virtual const char *Read() override;
virtual bool GetInfo(bool follow, FileInfo &info,
Error &error) override;
};
class LocalStorage final : public Storage {
const std::string base_utf8;
const AllocatedPath base_fs;
public:
LocalStorage(const char *_base_utf8, Path _base_fs)
:base_utf8(_base_utf8), base_fs(_base_fs) {}
/* virtual methods from class Storage */
virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info,
Error &error) override;
virtual StorageDirectoryReader *OpenDirectory(const char *uri_utf8,
Error &error) override;
virtual std::string MapUTF8(const char *uri_utf8) const override;
virtual AllocatedPath MapFS(const char *uri_utf8) const override;
private:
AllocatedPath MapFS(const char *uri_utf8, Error &error) const;
};
static bool static bool
Stat(Path path, bool follow, FileInfo &info, Error &error) Stat(Path path, bool follow, FileInfo &info, Error &error)
...@@ -144,3 +193,9 @@ LocalDirectoryReader::GetInfo(bool follow, FileInfo &info, Error &error) ...@@ -144,3 +193,9 @@ LocalDirectoryReader::GetInfo(bool follow, FileInfo &info, Error &error)
AllocatedPath::Build(base_fs, reader.GetEntry()); AllocatedPath::Build(base_fs, reader.GetEntry());
return Stat(path_fs, follow, info, error); return Stat(path_fs, follow, info, error);
} }
Storage *
CreateLocalStorage(const char *base_utf8, Path base_fs)
{
return new LocalStorage(base_utf8, base_fs);
}
...@@ -21,54 +21,13 @@ ...@@ -21,54 +21,13 @@
#define MPD_STORAGE_LOCAL_HXX #define MPD_STORAGE_LOCAL_HXX
#include "check.h" #include "check.h"
#include "storage/StorageInterface.hxx" #include "Compiler.h"
#include "fs/AllocatedPath.hxx"
#include "fs/DirectoryReader.hxx"
#include <string> class Storage;
class Path;
class LocalDirectoryReader final : public StorageDirectoryReader { gcc_malloc gcc_nonnull_all
AllocatedPath base_fs; Storage *
CreateLocalStorage(const char *base_utf8, Path base_fs);
DirectoryReader reader;
std::string name_utf8;
public:
LocalDirectoryReader(AllocatedPath &&_base_fs)
:base_fs(std::move(_base_fs)), reader(base_fs) {}
bool HasFailed() {
return reader.HasFailed();
}
/* virtual methods from class StorageDirectoryReader */
virtual const char *Read() override;
virtual bool GetInfo(bool follow, FileInfo &info,
Error &error) override;
};
class LocalStorage final : public Storage {
const std::string base_utf8;
const AllocatedPath base_fs;
public:
LocalStorage(const char *_base_utf8, Path _base_fs)
:base_utf8(_base_utf8), base_fs(_base_fs) {}
/* virtual methods from class Storage */
virtual bool GetInfo(const char *uri_utf8, bool follow, FileInfo &info,
Error &error) override;
virtual StorageDirectoryReader *OpenDirectory(const char *uri_utf8,
Error &error) override;
virtual std::string MapUTF8(const char *uri_utf8) const override;
virtual AllocatedPath MapFS(const char *uri_utf8) const override;
private:
AllocatedPath MapFS(const char *uri_utf8, Error &error) const;
};
#endif #endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment