Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / bools / Switch / Switch.C
blob298f2d841f7c8d37320e35c2c37715b2953d1e27
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "Switch.H"
27 #include "error.H"
28 #include "dictionary.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 // NB: values chosen such that bitwise '&' 0x1 yields the bool value
33 // INVALID is also evaluates to false, but don't rely on that
34 const char* Foam::Switch::names[Foam::Switch::INVALID+1] =
36     "false", "true",
37     "off",   "on",
38     "no",    "yes",
39     "n",     "y",
40     "f",     "t",
41     "none",  "true",  // is there a reasonable counterpart to "none"?
42     "invalid"
46 // * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * * //
48 Foam::Switch::switchType Foam::Switch::asEnum
50     const std::string& str,
51     const bool allowInvalid
54     for (int sw = 0; sw < Switch::INVALID; ++sw)
55     {
56         if (str == names[sw])
57         {
58             // handle aliases
59             switch (sw)
60             {
61                 case Switch::NO_1:
62                 case Switch::NONE:
63                 {
64                     return Switch::NO;
65                     break;
66                 }
68                 case Switch::YES_1:
69                 {
70                     return Switch::YES;
71                     break;
72                 }
74                 case Switch::FALSE_1:
75                 {
76                     return Switch::FALSE;
77                     break;
78                 }
80                 case Switch::TRUE_1:
81                 {
82                     return Switch::TRUE;
83                     break;
84                 }
86                 default:
87                 {
88                     return switchType(sw);
89                     break;
90                 }
91             }
92         }
93     }
95     if (!allowInvalid)
96     {
97         FatalErrorIn("Switch::asEnum(const std::string&, const bool)")
98             << "unknown switch word " << str << nl
99             << abort(FatalError);
100     }
102     return Switch::INVALID;
106 Foam::Switch Foam::Switch::lookupOrAddToDict
108     const word& name,
109     dictionary& dict,
110     const Switch& defaultValue
113     return dict.lookupOrAddDefault<Switch>(name, defaultValue);
117 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
119 bool Foam::Switch::valid() const
121     return switch_ <= Switch::NONE;
125 const char* Foam::Switch::asText() const
127     return names[switch_];
131 bool Foam::Switch::readIfPresent(const word& name, const dictionary& dict)
133     return dict.readIfPresent<Switch>(name, *this);
137 // ************************************************************************* //