Transferred copyright to the OpenFOAM Foundation
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / strings / word / wordIO.C
blobeca5d3a27e570c32493dcc37a4ae5539509092e7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 "word.H"
27 #include "IOstreams.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 Foam::word::word(Istream& is)
33     string()
35     is >> *this;
39 Foam::Istream& Foam::operator>>(Istream& is, word& w)
41     token t(is);
43     if (!t.good())
44     {
45         is.setBad();
46         return is;
47     }
49     if (t.isWord())
50     {
51         w = t.wordToken();
52     }
53     else if (t.isString())
54     {
55         // try a bit harder and convert string to word
56         w = t.stringToken();
57         string::stripInvalid<word>(w);
59         // flag empty strings and bad chars as an error
60         if (w.empty() || w.size() != t.stringToken().size())
61         {
62             is.setBad();
63             FatalIOErrorIn("operator>>(Istream&, word&)", is)
64                 << "wrong token type - expected word, found "
65                 "non-word characters "
66                 << t.info()
67                 << exit(FatalIOError);
68             return is;
69         }
70     }
71     else
72     {
73         is.setBad();
74         FatalIOErrorIn("operator>>(Istream&, word&)", is)
75             << "wrong token type - expected word, found "
76             << t.info()
77             << exit(FatalIOError);
79         return is;
80     }
82     // Check state of IOstream
83     is.check("Istream& operator>>(Istream&, word&)");
85     return is;
89 Foam::Ostream& Foam::operator<<(Ostream& os, const word& w)
91     os.write(w);
92     os.check("Ostream& operator<<(Ostream&, const word&)");
93     return os;
97 // ************************************************************************* //