CompactIOField.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 | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2017 OpenFOAM Foundation
9  Copyright (C) 2020-2022 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 Class
28  Foam::CompactIOField
29 
30 Description
31  A Field of objects of type <T> with automated input and output using
32  a compact storage. Behaves like IOField except when binary output in
33  case it writes a CompactListList.
34 
35  Useful for fields of small subfields e.g. in lagrangian
36 
37 SourceFiles
38  CompactIOField.C
39 
40 \*---------------------------------------------------------------------------*/
41 
42 #ifndef Foam_CompactIOField_H
43 #define Foam_CompactIOField_H
44 
45 #include "IOField.H"
46 
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 
49 namespace Foam
50 {
51 
52 // Forward Declarations
53 template<class T, class BaseType> class CompactIOField;
54 
55 template<class T, class BaseType> Istream& operator>>
56 (
57  Istream&,
59 );
60 
61 template<class T, class BaseType> Ostream& operator<<
62 (
63  Ostream&,
65 );
66 
67 /*---------------------------------------------------------------------------*\
68  Class CompactIOField Declaration
69 \*---------------------------------------------------------------------------*/
70 
71 template<class T, class BaseType>
72 class CompactIOField
73 :
74  public regIOobject,
75  public Field<T>
76 {
77  // Private Member Functions
78 
79  //- Read according to header type, with optional 'on-proc' value
80  void readFromStream(const bool readOnProc = true);
81 
82  //- Read if IOobject flags set. Return true if read.
83  // Reads according to the header type
84  bool readContents();
85 
86 
87 public:
88 
89  //- Runtime type information
90  TypeName("FieldField");
91 
92 
93  // Constructors
94 
95  //- Default copy construct
96  CompactIOField(const CompactIOField&) = default;
97 
98  //- Construct from IOobject
99  explicit CompactIOField(const IOobject& io);
100 
101  //- Construct from IOobject, with local processor conditional reading
102  CompactIOField(const IOobject& io, const bool readOnProc);
103 
104  //- Construct from IOobject and zero size (if not read)
106 
107  //- Construct from IOobject and size (if not read)
108  CompactIOField(const IOobject& io, const label len);
109 
110  //- Construct from IOobject and a List/Field content
111  CompactIOField(const IOobject& io, const UList<T>& content);
112 
113  //- Construct by transferring the Field contents
114  CompactIOField(const IOobject& io, Field<T>&& content);
115 
116 
117  //- Destructor
118  virtual ~CompactIOField() = default;
119 
120 
121  // Member Functions
122 
123  //- Write using stream options
124  virtual bool writeObject
125  (
126  IOstreamOption streamOpt,
127  const bool writeOnProc
128  ) const;
129 
130  virtual bool writeData(Ostream& os) const;
131 
132 
133  // Member Operators
134 
135  //- Copy assignment of entries
136  void operator=(const CompactIOField<T, BaseType>& rhs);
137 
138  //- Copy or move assignment of entries
139  using Field<T>::operator=;
140 };
141 
142 
143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 
145 } // End namespace Foam
146 
147 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148 
149 #ifdef NoRepository
150  #include "CompactIOField.C"
151 #endif
152 
153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
154 
155 #endif
156 
157 // ************************************************************************* //
virtual bool writeObject(IOstreamOption streamOpt, const bool writeOnProc) const
Write using stream options.
CompactIOField(const CompactIOField &)=default
Default copy construct.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
virtual bool writeData(Ostream &os) const
Pure virtual writeData function.
A simple container for options an IOstream can normally have.
void operator=(const CompactIOField< T, BaseType > &rhs)
Copy assignment of entries.
Generic templated field type.
Definition: Field.H:62
A 1D vector of objects of type <T>, where the size of the vector is known and can be used for subscri...
Definition: HashTable.H:105
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:56
OBJstream os(runTime.globalPath()/outputName)
A Field of objects of type <T> with automated input and output using a compact storage. Behaves like IOField except when binary output in case it writes a CompactListList.
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:66
A class representing the concept of 0 (zero) that can be used to avoid manipulating objects known to ...
Definition: zero.H:57
IOobject io("surfaceFilmProperties", mesh.time().constant(), mesh, IOobject::READ_IF_PRESENT, IOobject::NO_WRITE, IOobject::NO_REGISTER)
Defines the attributes of an object for which implicit objectRegistry management is supported...
Definition: IOobject.H:172
virtual ~CompactIOField()=default
Destructor.
TypeName("FieldField")
Runtime type information.
Namespace for OpenFOAM.