FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

uintIO.C

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2010 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software: you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
00023 
00024 Description
00025     Reads an uint from an input stream, for a given version
00026     number and File format. If an ascii File is being read,
00027     then the line numbers are counted and an erroneous read
00028     ised.
00029 
00030 \*---------------------------------------------------------------------------*/
00031 
00032 #include <OpenFOAM/error.H>
00033 
00034 #include "uint.H"
00035 #include <OpenFOAM/IOstreams.H>
00036 
00037 #include <sstream>
00038 
00039 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00040 
00041 Foam::word Foam::name(const unsigned int val)
00042 {
00043     std::ostringstream buf;
00044     buf << val;
00045     return buf.str();
00046 }
00047 
00048 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
00049 
00050 Foam::Istream& Foam::operator>>(Istream& is, unsigned int& i)
00051 {
00052     token t(is);
00053 
00054     if (!t.good())
00055     {
00056         is.setBad();
00057         return is;
00058     }
00059 
00060     if (t.isLabel())
00061     {
00062         i = static_cast<unsigned int>(t.labelToken());
00063     }
00064     else
00065     {
00066         is.setBad();
00067         FatalIOErrorIn("operator>>(Istream&, unsigned int&)", is)
00068             << "wrong token type - expected unsigned int found " << t.info()
00069             << exit(FatalIOError);
00070 
00071         return is;
00072     }
00073 
00074     // Check state of Istream
00075     is.check("Istream& operator>>(Istream&, unsigned int&)");
00076 
00077     return is;
00078 }
00079 
00080 
00081 unsigned int Foam::readUint(Istream& is)
00082 {
00083     unsigned int val;
00084     is >> val;
00085 
00086     return val;
00087 }
00088 
00089 
00090 Foam::Ostream& Foam::operator<<(Ostream& os, const unsigned int i)
00091 {
00092     os.write(label(i));
00093     os.check("Ostream& operator<<(Ostream&, const unsigned int)");
00094     return os;
00095 }
00096 
00097 
00098 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines