BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / OpenFOAM / primitives / ints / longLong / longLongIO.C
blob146bf011ea07fddc3bf1e1193c3bd0906dded9cf
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 Description
25     Reads a long long from an input stream, for a given version
26     number and File format. If an ascii File is being read, then the line
27     numbers are counted and an erroneous read ised.
29 \*---------------------------------------------------------------------------*/
31 #include "error.H"
33 #include "longLong.H"
34 #include "IOstreams.H"
36 #include <sstream>
38 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 Foam::word Foam::name(long long val)
42     std::ostringstream buf;
43     buf << val;
44     return buf.str();
47 // * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //
49 Foam::Istream& Foam::operator>>(Istream& is, long long& l)
51     l = readLongLong(is);
53     // Check state of Istream
54     is.check("Istream& operator>>(Istream&, long long&)");
56     return is;
60 long long Foam::readLongLong(Istream& is)
62     register long long result = 0;
64     char c = 0;
66     static const label zeroOffset = int('0');
68     // Get next non-whitespace character
69     while (is.read(c) && isspace(c))
70     {}
72     do
73     {
74         if (isspace(c) || c == 0) break;
76         if (!isdigit(c))
77         {
78             FatalIOErrorIn("readLongLong(ISstream& is)", is)
79                 << "Illegal digit: \"" << c << "\""
80                 << exit(FatalIOError);
81         }
83         result *= 10 + int(c) - zeroOffset;
84     } while (is.read(c));
86     return result;
90 Foam::Ostream& Foam::operator<<(Ostream& os, const long long l)
92     long long val = l;
94     long long mask = 1000000000000000000LL;
96     bool printZeroes = false;
98     while (mask > 0)
99     {
100         int d = int(val/mask);
102         if (d == 0)
103         {
104             if (printZeroes)
105             {
106                 os.write('0');
107             }
108         }
109         else
110         {
111             printZeroes = true;
112             os.write(char(d+'0'));
113         }
115         val = val % mask;
116         mask /= 10;
117     }
118     os.check("Ostream& operator<<(Ostream&, const long long)");
119     return os;
123 // ************************************************************************* //