uint64.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2014-2016 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Primitive
25  uint64
26 
27 Description
28  64bit uinteger
29 
30 SourceFiles
31  uint64.C
32  uint64IO.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef uint64_H
37 #define uint64_H
38 
39 #define __STDC_LIMIT_MACROS
40 #include <stdint.h>
41 #include <climits>
42 #include <cstdlib>
43 
44 #include "word.H"
45 #include "pTraits.H"
46 #include "direction.H"
47 
48 #ifndef UINT64_MIN
49 #define UINT64_MIN 0
50 #endif
51 
52 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
53 
54 namespace Foam
55 {
56 
57 class Istream;
58 class Ostream;
59 
60 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
61 
62 //- Return a word representation of an uint64
63 word name(const uint64_t);
64 
65 // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
66 
67 uint64_t readUint64(Istream&);
68 bool read(const char*, uint64_t&);
69 Istream& operator>>(Istream&, uint64_t&);
70 Ostream& operator<<(Ostream&, const uint64_t);
71 
72 //- Template specialization for pTraits<uint64_t>
73 template<>
74 class pTraits<uint64_t>
75 {
76  uint64_t p_;
77 
78 public:
79 
80  //- Component type
81  typedef uint64_t cmptType;
82 
83 
84  // Member constants
85 
86  //- Dimensionality of space
87  static const direction dim = 3;
88 
89  //- Rank of uint64_t is 0
90  static const direction rank = 0;
91 
92  //- Number of components in uint64_t is 1
93  static const direction nComponents = 1;
94 
95 
96  // Static data members
97 
98  static const char* const typeName;
99  static const char* const componentNames[];
100  static const uint64_t zero;
101  static const uint64_t one;
102  static const uint64_t min;
103  static const uint64_t max;
104  static const uint64_t rootMax;
105  static const uint64_t rootMin;
106 
107 
108  // Constructors
109 
110  //- Construct from primitive
111  explicit pTraits(const uint64_t&);
112 
113  //- Construct from Istream
114  pTraits(Istream&);
115 
116 
117  // Member Functions
118 
119  //- Access to the uint64_t value
120  operator uint64_t() const
121  {
122  return p_;
123  }
124 
125  //- Access to the uint64_t value
126  operator uint64_t&()
127  {
128  return p_;
129  }
130 };
131 
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 } // End namespace Foam
136 
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
138 
139 #endif
140 
141 // ************************************************************************* //
uint8_t direction
Definition: direction.H:46
uint64_t cmptType
Component type.
Definition: uint64.H:81
static const uint64_t zero
Definition: uint64.H:100
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
Traits class for primitives.
Definition: pTraits.H:50
static const uint64_t one
Definition: uint64.H:101
static const uint64_t max
Definition: uint64.H:103
bool read(const char *, int32_t &)
Definition: int32IO.C:85
static const uint64_t min
Definition: uint64.H:102
static const uint64_t rootMax
Definition: uint64.H:104
Istream & operator>>(Istream &, directionInfo &)
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
static const char *const typeName
Definition: uint64.H:98
Direction is an 8-bit unsigned integer type used to represent the Cartesian directions etc...
uint64_t readUint64(Istream &)
Definition: uint64IO.C:74
Ostream & operator<<(Ostream &, const ensightPart &)
static const uint64_t rootMin
Definition: uint64.H:105
pTraits(const PrimitiveType &p)
Construct from primitive.
Definition: pTraits.H:60
Namespace for OpenFOAM.