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

types_mapping.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 726f79e618603dca507b11f636e7b1d1bce08da8 (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
#pragma once
#include "base/assert.hpp"

#include <cstdint>
#include <iostream>
#include <map>
#include <vector>


class IndexAndTypeMapping
{
public:
  void Clear();
  void Load(std::istream & s);
  bool IsLoaded() const { return !m_types.empty(); }

  // Throws std::out_of_range exception.
  uint32_t GetType(uint32_t ind) const
  {
    ASSERT_LESS ( ind, m_types.size(), () );
    return m_types.at(ind);
  }

  uint32_t GetIndex(uint32_t t) const;

  /// For Debug purposes only.
  bool HasIndex(uint32_t t) const { return (m_map.find(t) != m_map.end()); }

private:
  using Map = std::map<uint32_t, uint32_t>;
  void Add(uint32_t ind, uint32_t type);

  std::vector<uint32_t> m_types;
  Map m_map;
};