initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / OpenFOAM / primitives / bool / boolIO.C
blobbb17cf27b0d1433653fc252a42c4b071fbd87c97
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
26     Reads an bool from an input stream, for a given version
27     number and File format. If an ascii File is being read,
28     then the line numbers are counted and an erroneous read
29     ised.
31 \*---------------------------------------------------------------------------*/
33 #include "error.H"
35 #include "bool.H"
36 #include "IOstreams.H"
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 namespace Foam
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 Istream& operator>>(Istream& is, bool& b)
47     token t(is);
49     if (!t.good())
50     {
51         is.setBad();
52         return is;
53     }
55     if (t.isLabel())
56     {
57         b = bool(t.labelToken());
58     }
59     else if (t.isWord())
60     {
61         if (t.wordToken() == "true" || t.wordToken() == "on")
62         {
63             b = true;
64         }
65         else if (t.wordToken() == "false" || t.wordToken() == "off")
66         {
67             b = false;
68         }
69         else
70         {
71             is.setBad();
72             FatalIOErrorIn("operator>>(Istream&, bool&)", is)
73                 << "expected 'true' or 'false', found " << t.wordToken()
74                 << exit(FatalIOError);
76             return is;
77         }
78     }
79     else
80     {
81         is.setBad();
82         FatalIOErrorIn("operator>>(Istream&, bool&)", is)
83             << "wrong token type - expected bool found " << t
84             << exit(FatalIOError);
86         return is;
87     }
91     // Check state of Istream
92     is.check("Istream& operator>>(Istream&, bool&)");
94     return is;
98 Ostream& operator<<(Ostream& os, const bool b)
100     os.write(label(b));
101     os.check("Ostream& operator<<(Ostream&, const bool&)");
102     return os;
106 bool readBool(Istream& is)
108     bool rb;
109     is >> rb;
111     return rb;
115 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117 } // End namespace Foam
119 // ************************************************************************* //