Skip to content
Snippets Groups Projects
int32IO.C 2.56 KiB
Newer Older
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
Henry's avatar
Henry committed
    \\  /    A nd           | Copyright (C) 2014-2015 OpenFOAM Foundation
     \\/     M anipulation  |
-------------------------------------------------------------------------------
License
    This file is part of OpenFOAM.

    OpenFOAM is free software: you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    for more details.

    You should have received a copy of the GNU General Public License
    along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.

\*---------------------------------------------------------------------------*/

#include "error.H"

#include "int32.H"
#include "IOstreams.H"

#include <sstream>
Henry's avatar
Henry committed
#include <cerrno>

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

Foam::word Foam::name(const int32_t val)
Mark Olesen's avatar
Mark Olesen committed
    std::ostringstream buf;
    buf << val;
    return buf.str();
// * * * * * * * * * * * * * * * IOstream Operators  * * * * * * * * * * * * //

Foam::Istream& Foam::operator>>(Istream& is, int32_t& i)
{
    token t(is);

    if (!t.good())
    {
        is.setBad();
        return is;
    }

    if (t.isLabel())
    {
        i = int32_t(t.labelToken());
        FatalIOErrorIn("operator>>(Istream&, int32_t&)", is)
            << "wrong token type - expected int32_t, found " << t.info()
            << exit(FatalIOError);

        return is;
    }

    // Check state of Istream
    is.check("Istream& operator>>(Istream&, int32_t&)");
int32_t Foam::readInt32(Istream& is)
    int32_t val;
Mark Olesen's avatar
Mark Olesen committed
    is >> val;
Mark Olesen's avatar
Mark Olesen committed
    return val;
bool Foam::read(const char* buf, int32_t& s)
{
    char *endptr = NULL;
Henry's avatar
Henry committed
    errno = 0;
    long l = strtol(buf, &endptr, 10);
    s = int32_t(l);
Henry's avatar
Henry committed
    return (*endptr == 0) && (errno == 0);
}


Foam::Ostream& Foam::operator<<(Ostream& os, const int32_t i)
    os.write(label(i));
    os.check("Ostream& operator<<(Ostream&, const int32_t)");
    return os;
}


// ************************************************************************* //