Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / db / IOstreams / Sstreams / ISstreamI.H
blob49f08e9b163e428610db1089f7427eeaf9029a98
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 "ISstream.H"
28 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
30 inline Foam::ISstream::ISstream
32     istream& is,
33     const string& name,
34     streamFormat format,
35     versionNumber version,
36     compressionType compression
39     Istream(format, version, compression),
40     name_(name),
41     is_(is)
43     if (is_.good())
44     {
45         setOpened();
46         setGood();
47     }
48     else
49     {
50         setState(is_.rdstate());
51     }
55 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
57 inline Foam::ISstream& Foam::ISstream::get(char& c)
59     is_.get(c);
60     setState(is_.rdstate());
62     if (c == '\n')
63     {
64         lineNumber_++;
65     }
67     return *this;
71 inline int Foam::ISstream::peek()
73     return is_.peek();
77 inline Foam::ISstream& Foam::ISstream::getLine(string& s)
79     getline(is_, s);
80     setState(is_.rdstate());
81     lineNumber_++;
83     return *this;
87 inline Foam::ISstream& Foam::ISstream::putback(const char& c)
89     if (c == '\n')
90     {
91         lineNumber_--;
92     }
94     if (!is_.putback(c))
95     {
96         setBad();
97     }
99     setState(is_.rdstate());
101     return *this;
105 // ************************************************************************* //