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

user_mark_id_storage.hpp « map - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 25314e42bfd8a3cca33ba07cdc52e1bbf707f537 (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
#pragma once

#include "map/user_mark.hpp"

#include "kml/types.hpp"

class UserMarkIdStorage
{
public:
  static UserMarkIdStorage & Instance();

  static UserMark::Type GetMarkType(kml::MarkId id);

  kml::MarkId GetNextUserMarkId(UserMark::Type type);
  kml::TrackId GetNextTrackId();
  kml::MarkGroupId GetNextCategoryId();

  bool CheckIds(kml::FileData const & fileData) const;

  void ResetBookmarkId();
  void ResetTrackId();
  void ResetCategoryId();

  void EnableSaving(bool enable);

private:
  UserMarkIdStorage();

  void LoadLastBookmarkId();
  void LoadLastTrackId();
  void LoadLastCategoryId();

  void SaveLastBookmarkId();
  void SaveLastTrackId();
  void SaveLastCategoryId();

  bool HasKey(std::string const & name);

  bool m_isJustCreated;

  uint64_t m_lastBookmarkId;
  uint64_t m_lastTrackId;
  uint64_t m_lastUserMarkId;
  uint64_t m_lastCategoryId;

  uint64_t m_initialLastBookmarkId;
  uint64_t m_initialLastTrackId;
  uint64_t m_initialLastCategoryId;

  bool m_savingEnabled = true;
};