etsi_its_messages
v3.0.0
Loading...
Searching...
No Matches
checks.h
Go to the documentation of this file.
1
/*
2
=============================================================================
3
MIT License
4
5
Copyright (c) 2023-2024 Institute for Automotive Engineering (ika), RWTH Aachen University
6
7
Permission is hereby granted, free of charge, to any person obtaining a copy
8
of this software and associated documentation files (the "Software"), to deal
9
in the Software without restriction, including without limitation the rights
10
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11
copies of the Software, and to permit persons to whom the Software is
12
furnished to do so, subject to the following conditions:
13
14
The above copyright notice and this permission notice shall be included in all
15
copies or substantial portions of the Software.
16
17
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23
SOFTWARE.
24
=============================================================================
25
*/
26
31
32
#ifndef ETSI_ITS_MSGS_UTILS_IMPL_CHECKS_H
33
#define ETSI_ITS_MSGS_UTILS_IMPL_CHECKS_H
34
45
template
<
typename
T1,
typename
T2>
46
void
throwIfOutOfRange
(
const
T1& val,
const
T2& min,
const
T2& max,
const
std::string val_desc) {
47
if
(val < min || val > max)
48
throw
std::invalid_argument(val_desc +
" value is out of range ("
+ std::to_string(min) +
"..."
+
49
std::to_string(max) +
")!"
);
50
}
51
57
inline
void
throwIfNotPresent
(
const
bool
is_present,
const
std::string val_desc) {
58
if
(!is_present)
throw
std::invalid_argument(val_desc +
" is not present!"
);
59
}
60
61
#endif
// ETSI_ITS_MSGS_UTILS_IMPL_CHECKS_H
throwIfNotPresent
void throwIfNotPresent(const bool is_present, const std::string val_desc)
Throws an exception if the given value is not present.
Definition
checks.h:57
throwIfOutOfRange
void throwIfOutOfRange(const T1 &val, const T2 &min, const T2 &max, const std::string val_desc)
Throws an exception if a given value is out of a defined range.
Definition
checks.h:46
etsi_its_msgs_utils
include
etsi_its_msgs_utils
impl
checks.h
Generated by
1.13.2