Forward compatibility: flex
[foam-extend-3.2.git] / src / foam / db / IOstreams / Fstreams / IFstream.H
blobfca3749973768710407a4390a5ee994764af1f33
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::IFstream
27 Description
28     Input from file stream.
30 SourceFiles
31     IFstream.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef IFstream_H
36 #define IFstream_H
38 #include "ISstream.H"
39 #include "fileName.H"
40 #include "className.H"
42 #include <fstream>
43 using std::ifstream;
45 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
47 namespace Foam
50 class IFstream;
52 /*---------------------------------------------------------------------------*\
53                        Class IFstreamAllocator Declaration
54 \*---------------------------------------------------------------------------*/
56 //- A std::istream with ability to handle compressed files
57 class IFstreamAllocator
59     friend class IFstream;
61     // Private data
63         istream* ifPtr_;
64         IOstream::compressionType compression_;
67     // Constructors
69         //- Construct from pathname
70         IFstreamAllocator(const fileName& pathname);
73     // Destructor
75         ~IFstreamAllocator();
78 public:
80     // Member functions
82         //- Access to underlying std::istream (for e.g. lexer)
83         istream& stdStream();
87 /*---------------------------------------------------------------------------*\
88                            Class IFstream Declaration
89 \*---------------------------------------------------------------------------*/
91 class IFstream
93     public IFstreamAllocator,
94     public ISstream
96     // Private data
98         fileName pathname_;
100 public:
102     // Declare name of the class and its debug switch
103     ClassName("IFstream");
106     // Constructors
108         //- Construct from pathname
109         IFstream
110         (
111             const fileName& pathname,
112             streamFormat format = ASCII,
113             versionNumber version = currentVersion
114         );
117     // Destructor
119         ~IFstream();
122     // Member functions
124         // Access
126             //- Return the name of the stream
127             const fileName& name() const
128             {
129                 return pathname_;
130             }
132             //- Return non-const access to the name of the stream
133             fileName& name()
134             {
135                 return pathname_;
136             }
138         // Print
140             //- Print description of IOstream to Ostream
141             virtual void print(Ostream&) const;
144     // Member operators
146         //- Return a non-const reference to const IFstream
147         //  Needed for read-constructors where the stream argument is temporary:
148         //  e.g. thing thisThing(IFstream("thingFileName")());
149         IFstream& operator()() const;
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
155 } // End namespace Foam
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
159 #endif
161 // ************************************************************************* //