correction to d4edb38234db8268907f04836d49bb93461b8a88
[OpenFOAM-1.5.x.git] / src / OpenFOAM / primitives / longLong / longLongIO.C
blob0c4c25ce52ea5996ba695fa031a8a2ec9876ae4f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     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, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Description
26     Reads a long long from an input stream, for a given version
27     number and File format. If an ascii File is being read, then the line
28     numbers are counted and an erroneous read ised.
30 \*---------------------------------------------------------------------------*/
32 #include "error.H"
34 #include "longLong.H"
35 #include "IOstreams.H"
37 #include <sstream>
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 namespace Foam
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 //- Return a string representation of a long long
47 word name(long long l)
49     std::ostringstream osBuffer;
50     osBuffer << l;
51     return osBuffer.str();
54 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
56 Istream& operator>>(Istream& is, long long& l)
58     l = readLongLong(is);
60     // Check state of Istream
61     is.check("Istream& operator>>(Istream&, long long&)");
63     return is;
67 long long readLongLong(Istream& is)
69     register long long result = 0;
71     char c = 0;
73     static const label zeroOffset = int('0');
75     // Get next non-whitespace character
76     while (is.read(c) && isspace(c))
77     {}
79     do
80     {
81         if (isspace(c) || c == 0) break;
83         if (!isdigit(c))
84         {
85             FatalIOErrorIn("readLongLong(ISstream& is)", is)
86                 << "Illegal digit: \"" << c << "\""
87                 << exit(FatalIOError);
88         }
90         result *= 10 + int(c) - zeroOffset;
91     } while (is.read(c));
93     return result;
97 Ostream& operator<<(Ostream& os, const long long l)
99     long long val = l;
101     long long mask = 1000000000000000000LL;
103     bool printZeroes = false;
105     while (mask > 0)
106     {
107         int d = int(val/mask);
109         if (d == 0)
110         {
111             if (printZeroes)
112             {
113                 os.write('0');
114             }
115         }
116         else
117         {
118             printZeroes = true;
119             os.write(char(d+'0'));
120         }
122         val = val%mask;
123         mask /= 10;
124     }
125     os.check("Ostream& operator<<(Ostream&, const long long)");
126     return os;
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 } // End namespace Foam
134 // ************************************************************************* //