Formatting
[foam-extend-3.2.git] / src / foam / primitives / ints / uLabel / uLabel.H
blob506ca1a2646a82eedcfa26931ecd4032aaeb8c5c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Typedef
25     Foam::uLabel
27 Description
28     A uLabel is an unsigned label.
30 SeeAlso
31     label.H
33 \*---------------------------------------------------------------------------*/
35 #ifndef uLabel_H
36 #define uLabel_H
38 #include <climits>
39 #include <cstdlib>
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 #if FOAM_LABEL64
45 #    define FOAM_ULABEL_MAX 18000000000000000000
46 #else
47 #    define FOAM_ULABEL_MAX 4000000000
48 #endif
51 #if UINT_MAX > FOAM_ULABEL_MAX
53 // Define uLabel as an unsigned int
55 # undef  FOAM_ULABEL_MAX
56 # define FOAM_ULABEL_MAX UINT_MAX
58 # include "uint.H"
60 namespace Foam
62     typedef unsigned int uLabel;
64     static const uLabel uLabelMin = 0;
65     static const uLabel uLabelMax = UINT_MAX;
67     inline uLabel readULabel(Istream& is)
68     {
69         return readUint(is);
70     }
72 } // End namespace Foam
75 #elif ULONG_MAX > FOAM_ULABEL_MAX
77 // Define uLabel as an unsigned long
79 # undef  FOAM_ULABEL_MAX
80 # define FOAM_ULABEL_MAX ULONG_MAX
82 # include "uint.H"
83 # include "ulong.H"
85 namespace Foam
87     typedef unsigned long uLabel;
89     static const uLabel uLabelMin = 0;
90     static const uLabel uLabelMax = ULONG_MAX;
92     inline uLabel readULabel(Istream& is)
93     {
94         return readUlong(is);
95     }
97 } // End namespace Foam
100 #elif ULLONG_MAX > FOAM_ULABEL_MAX
102 // Define uLabel as an unsigned long long
104 # undef  FOAM_ULABEL_MAX
106 # error "Not implemented yet"
108 #endif
111 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113 #include "pTraits.H"
114 #include "direction.H"
116 namespace Foam
119 //- template specialization for pTraits<uLabel>
120 template<>
121 class pTraits<uLabel>
123     uLabel p_;
125 public:
127     //- Component type
128     typedef uLabel cmptType;
130     // Member constants
132         enum
133         {
134             dim = 3,         // Dimensionality of space
135             rank = 0,        // Rank of uLabel is 0
136             nComponents = 1  // Number of components in uLabel is 1
137         };
140     // Static data members
142         static const char* const typeName;
143         static const char* componentNames[];
144         static const uLabel zero;
145         static const uLabel one;
146         static const uLabel max;
147         static const uLabel min;
150     // Constructors
152         //- Construct from uLabel
153         pTraits(const uLabel ul)
154         {
155             p_ = ul;
156         }
158         //- Construct from Istream
159         pTraits(Istream&);
162     // Member Functions
164         operator uLabel() const
165         {
166             return p_;
167         }
169         operator uLabel&()
170         {
171             return p_;
172         }
176 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
178 inline uLabel& setComponent(uLabel& l, const direction)
180     return l;
183 inline uLabel component(const uLabel l, const direction)
185     return l;
189 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
191 } // End namespace Foam
193 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
195 #endif
197 // ************************************************************************* //