ad_map_access
TrafficTypeValidInputRange.hpp
Go to the documentation of this file.
1 /*
2  * ----------------- BEGIN LICENSE BLOCK ---------------------------------
3  *
4  * Copyright (C) 2018-2020 Intel Corporation
5  *
6  * SPDX-License-Identifier: MIT
7  *
8  * ----------------- END LICENSE BLOCK -----------------------------------
9  */
10 
18 #pragma once
19 
20 #include <cmath>
21 #include <limits>
23 #include "spdlog/fmt/ostr.h"
24 #include "spdlog/spdlog.h"
25 
36 inline bool withinValidInputRange(::ad::map::access::TrafficType const &input, bool const logErrors = true)
37 {
38  bool inValidInputRange = (input == ::ad::map::access::TrafficType::INVALID)
40  || (input == ::ad::map::access::TrafficType::RIGHT_HAND_TRAFFIC);
41  if (!inValidInputRange && logErrors)
42  {
43  spdlog::error("withinValidInputRange(::ad::map::access::TrafficType)>> {}, raw value: {} ",
44  input,
45  static_cast<int32_t>(input)); // LCOV_EXCL_BR_LINE
46  }
47  return inValidInputRange;
48 }
ad::map::access::TrafficType::INVALID
@ INVALID
ad::map::access::TrafficType::LEFT_HAND_TRAFFIC
@ LEFT_HAND_TRAFFIC
TrafficType.hpp
ad::map::access::TrafficType
TrafficType
DataType TrafficType.
Definition: TrafficType.hpp:43
withinValidInputRange
bool withinValidInputRange(::ad::map::access::TrafficType const &input, bool const logErrors=true)
check if the given TrafficType is within valid input range
Definition: TrafficTypeValidInputRange.hpp:36