forked from mapsme/omim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor_storage.hpp
47 lines (39 loc) · 1.02 KB
/
editor_storage.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma once
#include <mutex>
#include "3party/pugixml/src/pugixml.hpp"
namespace editor
{
// Editor storage interface.
class StorageBase
{
public:
virtual ~StorageBase() = default;
virtual bool Save(pugi::xml_document const & doc) = 0;
virtual bool Load(pugi::xml_document & doc) = 0;
virtual bool Reset() = 0;
};
// Class which saves/loads edits to/from local file.
// Note: this class IS thread-safe.
class LocalStorage : public StorageBase
{
public:
// StorageBase overrides:
bool Save(pugi::xml_document const & doc) override;
bool Load(pugi::xml_document & doc) override;
bool Reset() override;
private:
std::mutex m_mutex;
};
// Class which saves/loads edits to/from xml_document class instance.
// Note: this class is NOT thread-safe.
class InMemoryStorage : public StorageBase
{
public:
// StorageBase overrides:
bool Save(pugi::xml_document const & doc) override;
bool Load(pugi::xml_document & doc) override;
bool Reset() override;
private:
pugi::xml_document m_doc;
};
} // namespace editor