Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #ifndef uLabel_H
00036 #define uLabel_H
00037
00038 #include <climits>
00039 #include <cstdlib>
00040
00041
00042
00043
00044 #if FOAM_LABEL64
00045 # define FOAM_ULABEL_MAX 18000000000000000000
00046 #else
00047 # define FOAM_ULABEL_MAX 4000000000
00048 #endif
00049
00050
00051 #if UINT_MAX > FOAM_ULABEL_MAX
00052
00053
00054
00055 # undef FOAM_ULABEL_MAX
00056 # define FOAM_ULABEL_MAX UINT_MAX
00057
00058 # include <OpenFOAM/uint.H>
00059
00060 namespace Foam
00061 {
00062 typedef unsigned int uLabel;
00063
00064 static const uLabel uLabelMin = 0;
00065 static const uLabel uLabelMax = UINT_MAX;
00066
00067 inline uLabel readULabel(Istream& is)
00068 {
00069 return readUint(is);
00070 }
00071
00072 }
00073
00074
00075 #elif ULONG_MAX > FOAM_ULABEL_MAX
00076
00077
00078
00079 # undef FOAM_ULABEL_MAX
00080 # define FOAM_ULABEL_MAX ULONG_MAX
00081
00082 # include <OpenFOAM/uint.H>
00083 # include <OpenFOAM/ulong.H>
00084
00085 namespace Foam
00086 {
00087 typedef unsigned long uLabel;
00088
00089 static const uLabel uLabelMin = 0;
00090 static const uLabel uLabelMax = ULONG_MAX;
00091
00092 inline uLabel readULabel(Istream& is)
00093 {
00094 return readUlong(is);
00095 }
00096
00097 }
00098
00099
00100 #elif ULLONG_MAX > FOAM_ULABEL_MAX
00101
00102
00103
00104 # undef FOAM_ULABEL_MAX
00105
00106 # error "Not implemented yet"
00107
00108 #endif
00109
00110
00111
00112
00113 #include <OpenFOAM/pTraits.H>
00114 #include <OpenFOAM/direction.H>
00115
00116 namespace Foam
00117 {
00118
00119
00120 template<>
00121 class pTraits<uLabel>
00122 {
00123 uLabel p_;
00124
00125 public:
00126
00127
00128 typedef uLabel cmptType;
00129
00130
00131
00132 enum
00133 {
00134 dim = 3,
00135 rank = 0,
00136 nComponents = 1
00137 };
00138
00139
00140
00141
00142 static const char* const typeName;
00143 static const char* componentNames[];
00144 static const uLabel zero;
00145 static const uLabel one;
00146 static const uLabel max;
00147 static const uLabel min;
00148
00149
00150
00151
00152
00153 pTraits(const uLabel ul)
00154 {
00155 p_ = ul;
00156 }
00157
00158
00159 pTraits(Istream&);
00160
00161
00162
00163
00164 operator uLabel() const
00165 {
00166 return p_;
00167 }
00168
00169 operator uLabel&()
00170 {
00171 return p_;
00172 }
00173 };
00174
00175
00176
00177
00178 inline uLabel& setComponent(uLabel& l, const direction)
00179 {
00180 return l;
00181 }
00182
00183 inline uLabel component(const uLabel l, const direction)
00184 {
00185 return l;
00186 }
00187
00188
00189
00190
00191 }
00192
00193
00194
00195 #endif
00196
00197