Welcome to mirror list, hosted at ThFree Co, Russian Federation.

editor_storage.cpp « editor - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f2a878430c52e78575f6b6dee8621d5b0f35462 (plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include "editor/editor_storage.hpp"

#include "platform/platform.hpp"

#include "coding/internal/file_data.hpp"

#include "base/logging.hpp"

#include "std/string.hpp"

using namespace pugi;

namespace
{
char const * kEditorXMLFileName = "edits.xml";

string GetEditorFilePath() { return GetPlatform().WritablePathForFile(kEditorXMLFileName); }
}  // namespace

namespace editor
{
// StorageLocal ------------------------------------------------------------------------------------
bool LocalStorage::Save(xml_document const & doc)
{
  auto const editorFilePath = GetEditorFilePath();
  return my::WriteToTempAndRenameToFile(editorFilePath, [&doc](string const & fileName) {
    return doc.save_file(fileName.data(), "  " /* indent */);
  });
}

bool LocalStorage::Load(xml_document & doc)
{
  auto const editorFilePath = GetEditorFilePath();
  auto const result = doc.load_file(editorFilePath.c_str());
  // Note: status_file_not_found is ok if a user has never made any edits.
  if (result != status_ok && result != status_file_not_found)
  {
    LOG(LERROR, ("Can't load map edits from disk:", editorFilePath));
    return false;
  }

  return true;
}

void LocalStorage::Reset()
{
  my::DeleteFileX(GetEditorFilePath());
}

// StorageMemory -----------------------------------------------------------------------------------
bool InMemoryStorage::Save(xml_document const & doc)
{
  m_doc.reset(doc);
  return true;
}

bool InMemoryStorage::Load(xml_document & doc)
{
  doc.reset(m_doc);
  return true;
}

void InMemoryStorage::Reset()
{
  m_doc.reset();
}
}  // namespace editor