ad_rss
generated
include
ad
rss
state
UnstructuredSceneResponseValidInputRange.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: LGPL-2.1-only
7
*
8
* ----------------- END LICENSE BLOCK -----------------------------------
9
*/
10
18
#pragma once
19
20
#include <cmath>
21
#include <limits>
22
#include "
ad/rss/state/UnstructuredSceneResponse.hpp
"
23
#include "spdlog/fmt/ostr.h"
24
#include "spdlog/spdlog.h"
25
36
inline
bool
withinValidInputRange
(::
ad::rss::state::UnstructuredSceneResponse
const
&input,
bool
const
logErrors =
true
)
37
{
38
bool
inValidInputRange = (input == ::ad::rss::state::UnstructuredSceneResponse::None)
39
|| (input == ::
ad::rss::state::UnstructuredSceneResponse::ContinueForward
)
40
|| (input == ::ad::rss::state::UnstructuredSceneResponse::DriveAway)
41
|| (input == ::
ad::rss::state::UnstructuredSceneResponse::Brake
);
42
if
(!inValidInputRange && logErrors)
43
{
44
spdlog::error(
"withinValidInputRange(::ad::rss::state::UnstructuredSceneResponse)>> {}, raw value: {} "
,
45
input,
46
static_cast<
int32_t
>
(input));
// LCOV_EXCL_BR_LINE
47
}
48
return
inValidInputRange;
49
}
ad::rss::state::UnstructuredSceneResponse
UnstructuredSceneResponse
DataType UnstructuredSceneResponse.
Definition:
UnstructuredSceneResponse.hpp:39
ad::rss::state::UnstructuredSceneResponse::Brake
@ Brake
withinValidInputRange
bool withinValidInputRange(::ad::rss::state::UnstructuredSceneResponse const &input, bool const logErrors=true)
check if the given UnstructuredSceneResponse is within valid input range
Definition:
UnstructuredSceneResponseValidInputRange.hpp:36
ad::rss::state::UnstructuredSceneResponse::ContinueForward
@ ContinueForward
UnstructuredSceneResponse.hpp
Generated by
1.8.17