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

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

#include "generator/sponsored_dataset.hpp"

#include "geometry/latlon.hpp"

#include "base/newtype.hpp"

#include "std/limits.hpp"
#include "std/string.hpp"

namespace generator
{
// TODO(mgsergio): Try to get rid of code duplication. (See BookingHotel)
struct OpentableRestaurant
{
  NEWTYPE(uint32_t, ObjectId);

  enum class Fields
  {
    Id = 0,
    Latitude,
    Longtitude,
    Name,
    Address,
    DescUrl,
    Phone,
    // Opentable doesn't have translations.
    // Translations,
    Counter
  };

  static constexpr ObjectId InvalidObjectId()
  {
    return ObjectId(numeric_limits<typename ObjectId::RepType>::max());
  }

  explicit OpentableRestaurant(string const & src);

  static constexpr size_t FieldIndex(Fields field) { return static_cast<size_t>(field); }
  static constexpr size_t FieldsCount() { return static_cast<size_t>(Fields::Counter); }

  bool HasAddresParts() const { return !m_street.empty() || !m_houseNumber.empty(); }

  ObjectId m_id{InvalidObjectId()};
  ms::LatLon m_latLon = ms::LatLon::Zero();
  string m_name;
  string m_street;
  string m_houseNumber;

  string m_address;
  string m_descUrl;
  // string m_translations;
};

ostream & operator<<(ostream & s, OpentableRestaurant const & r);

NEWTYPE_SIMPLE_OUTPUT(OpentableRestaurant::ObjectId);
using OpentableDataset = SponsoredDataset<OpentableRestaurant>;
}  // namespace generator