- the NamedEnum wrapper is somewhate too rigid. * All enumerated values are contiguous, starting as zero. * The implicit one-to-one mapping precludes using it for aliases. * For example, perhaps we want to support alternative lookup names for an enumeration, or manage an enumeration lookup for a sub-range.
162 lines
4.1 KiB
C
162 lines
4.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Description
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "NamedEnum.H"
|
|
#include "Enum.H"
|
|
#include "IOstreams.H"
|
|
|
|
using namespace Foam;
|
|
|
|
class namedEnumTest
|
|
{
|
|
public:
|
|
|
|
enum class option
|
|
{
|
|
A,
|
|
B,
|
|
C,
|
|
D
|
|
};
|
|
|
|
enum class otherOption
|
|
{
|
|
A,
|
|
B,
|
|
C,
|
|
D
|
|
};
|
|
|
|
static const Foam::NamedEnum<option, 4> optionNamed;
|
|
|
|
static const Foam::Enum<otherOption> optionEnum;
|
|
|
|
static const Foam::Enum<option> optionEnum2;
|
|
};
|
|
|
|
|
|
template<>
|
|
const char* Foam::NamedEnum<namedEnumTest::option, 4>::names[] =
|
|
{
|
|
"a",
|
|
"b",
|
|
"c",
|
|
"d",
|
|
};
|
|
|
|
const Foam::NamedEnum<namedEnumTest::option, 4> namedEnumTest::optionNamed;
|
|
|
|
const Foam::Enum<namedEnumTest::otherOption> namedEnumTest::optionEnum
|
|
{
|
|
{ namedEnumTest::otherOption::A, "a" },
|
|
{ namedEnumTest::otherOption::B, "b" },
|
|
{ namedEnumTest::otherOption::C, "c" },
|
|
{ namedEnumTest::otherOption::D, "d" },
|
|
};
|
|
|
|
|
|
const Foam::Enum<namedEnumTest::option> namedEnumTest::optionEnum2
|
|
(
|
|
namedEnumTest::option::C,
|
|
{ "c", "d" }
|
|
);
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
// Main program:
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
Info<<"NamedEnum: " << namedEnumTest::optionNamed << nl;
|
|
Info<<"Enum: " << namedEnumTest::optionEnum << nl;
|
|
Info<<"Enum: " << namedEnumTest::optionEnum2 << nl;
|
|
|
|
dictionary testDict;
|
|
testDict.add("lookup1", "c");
|
|
|
|
Info<< nl
|
|
<< int(namedEnumTest::optionNamed["a"]) << nl
|
|
<< namedEnumTest::optionNamed[namedEnumTest::option::A] << nl;
|
|
|
|
Info<< nl
|
|
<< int(namedEnumTest::optionEnum["a"]) << nl
|
|
<< namedEnumTest::optionEnum[namedEnumTest::otherOption::A] << nl;
|
|
|
|
Info<< "--- test dictionary lookup ---" << endl;
|
|
{
|
|
Info<< "dict: " << testDict << endl;
|
|
|
|
Info<< "got: "
|
|
<< int
|
|
(
|
|
namedEnumTest::optionNamed.lookupOrDefault
|
|
(
|
|
"notFound",
|
|
testDict,
|
|
namedEnumTest::option::A
|
|
)
|
|
)
|
|
<< nl;
|
|
|
|
Info<< "got: "
|
|
<< int
|
|
(
|
|
namedEnumTest::optionNamed.lookupOrDefault
|
|
(
|
|
"lookup1",
|
|
testDict,
|
|
namedEnumTest::option::A
|
|
)
|
|
)
|
|
<< nl;
|
|
|
|
Info<< "got: "
|
|
<< int
|
|
(
|
|
namedEnumTest::optionEnum2.lookupOrDefault
|
|
(
|
|
"lookup1",
|
|
testDict,
|
|
namedEnumTest::option::A
|
|
)
|
|
)
|
|
<< nl;
|
|
}
|
|
|
|
Info<< "--- test read ---" << endl;
|
|
|
|
namedEnumTest::option dummy(namedEnumTest::optionNamed.read(Sin));
|
|
Info<< namedEnumTest::optionNamed[dummy] << endl;
|
|
|
|
Info<< "End\n" << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|