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