Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Options/Error.hpp
4 : : \copyright 2012-2015 J. Bakosi,
5 : : 2016-2018 Los Alamos National Security, LLC.,
6 : : 2019-2021 Triad National Security, LLC.
7 : : All rights reserved. See the LICENSE file for details.
8 : : \brief Error type options
9 : : \details Error type options
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef ErrorOptions_h
13 : : #define ErrorOptions_h
14 : :
15 : : #include <brigand/sequences/list.hpp>
16 : :
17 : : #include "Toggle.hpp"
18 : : #include "Keywords.hpp"
19 : : #include "PUPUtil.hpp"
20 : :
21 : : namespace tk {
22 : : namespace ctr {
23 : :
24 : : //! Error types
25 : : enum class ErrorType : uint8_t { L2=0,
26 : : LINF };
27 : :
28 : : //! \brief Pack/Unpack ErrorType: forward overload to generic enum
29 : : //! class packer
30 : 535 : inline void operator|( PUP::er& p, ErrorType& e ) { PUP::pup( p, e ); }
31 : :
32 : : //! \brief Error options: outsource searches to base templated on enum type
33 : : class Error : public tk::Toggle< ErrorType > {
34 : :
35 : : public:
36 : : //! Valid expected choices to make them also available at compile-time
37 : : using keywords = brigand::list< kw::l2
38 : : , kw::linf
39 : : >;
40 : :
41 : : //! \brief Options constructor
42 : : //! \details Simply initialize in-line and pass associations to base, which
43 : : //! will handle client interactions
44 : 381 : explicit Error() :
45 : : tk::Toggle< ErrorType >(
46 : : //! Group, i.e., options, name
47 : : "error",
48 : : //! Enums -> names
49 [ + - ]: 381 : { { ErrorType::L2, kw::l2::name() },
50 [ + - ]: 762 : { ErrorType::LINF, kw::linf::name() } },
51 : : //! keywords -> Enums
52 : 0 : { { kw::l2::string(), ErrorType::L2 },
53 [ + - ]: 762 : { kw::linf::string(), ErrorType::LINF } }
54 [ + - ][ + - ]: 3810 : ) {}
[ + - ][ + - ]
[ + + ][ + + ]
[ - - ][ - - ]
55 : : };
56 : :
57 : : } // ctr::
58 : : } // tk:::
59 : :
60 : : #endif // ErrorOptions_h
|