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

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

#include "std/cstdint.hpp"
#include "std/function.hpp"
#include "std/limits.hpp"
#include "std/mutex.hpp"

// This class should be used as a single point to control whether
// hotels displacement mode should be activated or not.
//
// *NOTE* as the class is thread-safe, the callback should be
// very-very lightweight and it should be guaranteed that callback or
// its callees do not call DisplacementModeManager API. Otherwise,
// deadlock or exception may happen.
class DisplacementModeManager
{
public:
  using TCallback = function<void(bool show)>;

  enum Slot
  {
    SLOT_INTERACTIVE_SEARCH,
    SLOT_MAP_SELECTION,
    SLOT_DEBUG,
    SLOT_COUNT
  };

  DisplacementModeManager(TCallback && callback);

  void Set(Slot slot, bool show);

private:
  TCallback m_callback;

  mutex m_mu;
  uint32_t m_mask;

  static_assert(SLOT_COUNT <= sizeof(m_mask) * CHAR_BIT, "Number of slots is too large");
};