BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / strings / fileName / fileNameIO.C
blob3a45b884f66ac66ee7211c7956d58ce548bdb06c
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 "fileName.H"
27 #include "IOstreams.H"
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
31 Foam::fileName::fileName(Istream& is)
33     string()
35     is >> *this;
39 Foam::Istream& Foam::operator>>(Istream& is, fileName& fn)
41     token t(is);
43     if (!t.good())
44     {
45         is.setBad();
46         return is;
47     }
49     if (t.isString())
50     {
51         fn = t.stringToken();
52     }
53     else
54     {
55         is.setBad();
56         FatalIOErrorIn("operator>>(Istream&, fileName&)", is)
57             << "wrong token type - expected string, found " << t.info()
58             << exit(FatalIOError);
60         return is;
61     }
63     fn.stripInvalid();
65     // Check state of Istream
66     is.check("Istream& operator>>(Istream&, fileName&)");
68     return is;
72 Foam::Ostream& Foam::operator<<(Ostream& os, const fileName& fn)
74     os.write(fn);
75     os.check("Ostream& operator<<(Ostream&, const fileName&)");
76     return os;
80 // ************************************************************************* //