Skip to content
Snippets Groups Projects
uLabel.H 4.02 KiB
Newer Older
  • Learn to ignore specific revisions
  • mattijs's avatar
    mattijs committed
    /*---------------------------------------------------------------------------*\
      =========                 |
      \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
       \\    /   O peration     |
    
    OpenFOAM bot's avatar
    OpenFOAM bot committed
        \\  /    A nd           | www.openfoam.com
    
         \\/     M anipulation  |
    -------------------------------------------------------------------------------
    
    OpenFOAM bot's avatar
    OpenFOAM bot committed
        Copyright (C) 2011-2016 OpenFOAM Foundation
    
        Copyright (C) 2017-2020 OpenCFD Ltd.
    
    mattijs's avatar
    mattijs committed
    -------------------------------------------------------------------------------
    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.
    
    mattijs's avatar
    mattijs committed
    
        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/>.
    
    mattijs's avatar
    mattijs committed
    
    Typedef
        Foam::uLabel
    
    Description
    
        A uLabel is an uint32_t or uint64_t as specified by the pre-processor macro
        WM_LABEL_SIZE.
    
        A readULabel function is defined so that uLabel can be constructed from
    
    mattijs's avatar
    mattijs committed
    
    \*---------------------------------------------------------------------------*/
    
    #ifndef uLabel_H
    #define uLabel_H
    
    
    #include "uint.H"
    
    #include "labelFwd.H"
    
    mattijs's avatar
    mattijs committed
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    #define UINT_ADD_SIZE(x,s,y) x ## s ## y
    #define UINT_ADD_DEF_SIZE(x,s,y) UINT_ADD_SIZE(x,s,y)
    #define UINT_SIZE(x,y) UINT_ADD_DEF_SIZE(x,WM_LABEL_SIZE,y)
    
    // Size checks and typedefs (uLabel) in labelFwd.H
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    mattijs's avatar
    mattijs committed
    
    namespace Foam
    {
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    constexpr uLabel uLabelMax = UINT_SIZE(UINT, _MAX);
    
    //- Read uLabel from stream.
    //  Uses readUint32 or readUint64 according to WM_LABEL_SIZE
    
    inline uLabel readULabel(Istream& is)
    
    mattijs's avatar
    mattijs committed
    {
    
        return UINT_SIZE(readUint,) (is);
    }
    
    //- Parse entire buffer as a uLabel, skipping leading/trailing whitespace.
    //  Uses readUint32 or readUint64 according to WM_LABEL_SIZE
    //  \return Parsed value or FatalIOError on any problem
    inline uLabel readULabel(const char* buf)
    {
        return UINT_SIZE(readUint,) (buf);
    }
    
    //- Parse entire string as a uLabel, skipping leading/trailing whitespace.
    //  Uses readUint32 or readUint64 according to WM_LABEL_SIZE
    //  \return Parsed value or FatalIOError on any problem
    inline uLabel readULabel(const std::string& str)
    {
        return UINT_SIZE(readUint,) (str);
    }
    
    //- Parse entire buffer as a uLabel, skipping leading/trailing whitespace.
    //  Uses readUint32 or readUint64 according to WM_LABEL_SIZE
    //  \return True if successful.
    inline bool readULabel(const char* buf, uLabel& val)
    {
        return UINT_SIZE(readUint,) (buf, val);
    }
    
    
    //- Parse entire string as a uLabel, skipping leading/trailing whitespace.
    //  Uses readUint32 or readUint64 according to WM_LABEL_SIZE
    //  \return True if successful.
    inline bool readULabel(const std::string& str, uLabel& val)
    {
        return UINT_SIZE(readUint,) (str, val);
    }
    
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    //- Raise one uLabel to the power of another
    uLabel pow(uLabel a, uLabel b);
    
    //- Evaluate n! : 0 < n <= 12
    uLabel factorial(uLabel n);
    
    mattijs's avatar
    mattijs committed
    
    
    inline uLabel& setComponent(uLabel& l, const direction)
    {
        return l;
    }
    
    inline uLabel component(const uLabel l, const direction)
    {
        return l;
    }
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    } // End namespace Foam
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    #undef UINT_ADD_SIZE
    #undef UINT_ADD_DEF_SIZE
    #undef UINT_SIZE
    
    
    mattijs's avatar
    mattijs committed
    #endif
    
    // ************************************************************************* //