ad_rss
RoadSegmentValidInputRange.hpp
Go to the documentation of this file.
1 /*
2  * ----------------- BEGIN LICENSE BLOCK ---------------------------------
3  *
4  * Copyright (C) 2018-2022 Intel Corporation
5  *
6  * SPDX-License-Identifier: LGPL-2.1-only
7  *
8  * ----------------- END LICENSE BLOCK -----------------------------------
9  */
10 
18 #pragma once
19 
20 #include <cmath>
21 #include <limits>
22 #include "ad/physics/DistanceValidInputRange.hpp"
26 #include "spdlog/fmt/ostr.h"
27 #include "spdlog/spdlog.h"
28 
39 inline bool withinValidInputRange(::ad::rss::world::RoadSegment const &input, bool const logErrors = true)
40 {
41  // check for generic member input ranges
42  bool inValidInputRange = true;
43  inValidInputRange = withinValidInputRange(input.type, logErrors)
44  && withinValidInputRange(input.lane_segments, logErrors)
47  if (!inValidInputRange && logErrors)
48  {
49  spdlog::error("withinValidInputRange(::ad::rss::world::RoadSegment)>> {} has invalid member",
50  input); // LCOV_EXCL_BR_LINE
51  }
52 
53  return inValidInputRange;
54 }
bool withinValidInputRange(::ad::rss::world::RoadSegment const &input, bool const logErrors=true)
check if the given RoadSegment is within valid input range
Definition: RoadSegmentValidInputRange.hpp:39
DataType RoadSegment.
Definition: RoadSegment.hpp:49
::ad::rss::world::RoadSegmentType type
Definition: RoadSegment.hpp:127
::ad::physics::Distance minimum_length_before_intersecting_area
Definition: RoadSegment.hpp:144
::ad::physics::Distance minimum_length_after_intersecting_area
Definition: RoadSegment.hpp:136