Branch data Line data Source code
1 : : // *****************************************************************************
2 : : /*!
3 : : \file src/Control/Options/PDFPolicy.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 PDF output file policy options
9 : : \details PDF output file policy options
10 : : */
11 : : // *****************************************************************************
12 : : #ifndef PDFPolicyOptions_h
13 : : #define PDFPolicyOptions_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 : : //! PDF output file policy types
25 : : enum class PDFPolicyType : uint8_t { OVERWRITE=0,
26 : : MULTIPLE,
27 : : EVOLUTION };
28 : :
29 : : //! \brief Pack/Unpack PDFPolicyType: forward overload to generic enum class
30 : : //! packer
31 : 748 : inline void operator|( PUP::er& p, PDFPolicyType& e ) { PUP::pup( p, e ); }
32 : :
33 : : //! \brief PDFPolicy ptions: outsource searches to base templated on enum type
34 : : class PDFPolicy : public tk::Toggle< PDFPolicyType > {
35 : :
36 : : public:
37 : : //! Valid expected choices to make them also available at compile-time
38 : : using keywords = brigand::list< kw::overwrite
39 : : , kw::multiple
40 : : , kw::evolution
41 : : >;
42 : :
43 : : //! \brief Options constructor
44 : : //! \details Simply initialize in-line and pass associations to base, which
45 : : //! will handle client interactions
46 : 32 : explicit PDFPolicy() :
47 : : tk::Toggle< PDFPolicyType >(
48 : : //! Group, i.e., options, name
49 : : "PDF output file policy",
50 : : //! Enums -> names
51 [ + - ]: 32 : { { PDFPolicyType::OVERWRITE, kw::overwrite::name() },
52 [ + - ]: 64 : { PDFPolicyType::MULTIPLE, kw::multiple::name() },
53 [ + - ]: 64 : { PDFPolicyType::EVOLUTION, kw::evolution::name() } },
54 : : //! keywords -> Enums
55 : 0 : { { kw::overwrite::string(), PDFPolicyType::OVERWRITE },
56 [ + - ]: 64 : { kw::multiple::string(), PDFPolicyType::MULTIPLE },
57 [ + - ][ + - ]: 416 : { kw::evolution::string(), PDFPolicyType::EVOLUTION } } ) {}
[ + - ][ + - ]
[ + - ][ + + ]
[ + + ][ - - ]
[ - - ]
58 : : };
59 : :
60 : : } // ctr::
61 : : } // tk:::
62 : :
63 : : #endif // PDFPolicyOptions_h
|