ad_map_access
LaneIntervalValidInputRange.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>
24 #include "ad/physics/ParametricValueValidInputRange.hpp"
25 #include "spdlog/fmt/ostr.h"
26 #include "spdlog/spdlog.h"
27 
38 inline bool withinValidInputRange(::ad::map::route::LaneInterval const &input, bool const logErrors = true)
39 {
40  // check for generic member input ranges
41  bool inValidInputRange = true;
42  inValidInputRange = withinValidInputRange(input.laneId, logErrors) && withinValidInputRange(input.start, logErrors)
43  && withinValidInputRange(input.end, logErrors);
44  if (!inValidInputRange && logErrors)
45  {
46  spdlog::error("withinValidInputRange(::ad::map::route::LaneInterval)>> {} has invalid member",
47  input); // LCOV_EXCL_BR_LINE
48  }
49 
50  return inValidInputRange;
51 }
withinValidInputRange
bool withinValidInputRange(::ad::map::route::LaneInterval const &input, bool const logErrors=true)
check if the given LaneInterval is within valid input range
Definition: LaneIntervalValidInputRange.hpp:38
LaneIdValidInputRange.hpp
LaneInterval.hpp
ad::map::route::LaneInterval
DataType LaneInterval.
Definition: LaneInterval.hpp:51