IOField.C
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) 2011-2015 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 \*---------------------------------------------------------------------------*/
25 
26 #include "IOField.H"
27 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class Type>
32 :
33  regIOobject(io)
34 {
35  // Temporary warning
36  if (io.readOpt() == IOobject::MUST_READ_IF_MODIFIED)
37  {
39  << "IOField " << name()
40  << " constructed with IOobject::MUST_READ_IF_MODIFIED"
41  " but IOField does not support automatic rereading."
42  << endl;
43  }
44 
45  if
46  (
47  (
48  io.readOpt() == IOobject::MUST_READ
49  || io.readOpt() == IOobject::MUST_READ_IF_MODIFIED
50  )
51  || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
52  )
53  {
54  readStream(typeName) >> *this;
55  close();
56  }
57 }
58 
59 
60 template<class Type>
62 :
63  regIOobject(io)
64 {
65  // Temporary warning
66  if (io.readOpt() == IOobject::MUST_READ_IF_MODIFIED)
67  {
69  << "IOField " << name()
70  << " constructed with IOobject::MUST_READ_IF_MODIFIED"
71  " but IOField does not support automatic rereading."
72  << endl;
73  }
74 
75  if
76  (
77  (
78  io.readOpt() == IOobject::MUST_READ
79  || io.readOpt() == IOobject::MUST_READ_IF_MODIFIED
80  )
81  || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
82  )
83  {
84  readStream(typeName) >> *this;
85  close();
86  }
87  else
88  {
90  }
91 }
92 
93 
94 template<class Type>
96 :
97  regIOobject(io)
98 {
99  // Temporary warning
100  if (io.readOpt() == IOobject::MUST_READ_IF_MODIFIED)
101  {
103  << "IOField " << name()
104  << " constructed with IOobject::MUST_READ_IF_MODIFIED"
105  " but IOField does not support automatic rereading."
106  << endl;
107  }
108 
109  if
110  (
111  (
112  io.readOpt() == IOobject::MUST_READ
113  || io.readOpt() == IOobject::MUST_READ_IF_MODIFIED
114  )
115  || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
116  )
117  {
118  readStream(typeName) >> *this;
119  close();
120  }
121  else
122  {
124  }
125 }
126 
127 
128 template<class Type>
130 :
131  regIOobject(io)
132 {
133  // Temporary warning
134  if (io.readOpt() == IOobject::MUST_READ_IF_MODIFIED)
135  {
137  << "IOField " << name()
138  << " constructed with IOobject::MUST_READ_IF_MODIFIED"
139  " but IOField does not support automatic rereading."
140  << endl;
141  }
142 
144 
145  if
146  (
147  (
148  io.readOpt() == IOobject::MUST_READ
149  || io.readOpt() == IOobject::MUST_READ_IF_MODIFIED
150  )
151  || (io.readOpt() == IOobject::READ_IF_PRESENT && headerOk())
152  )
153  {
154  readStream(typeName) >> *this;
155  close();
156  }
157 }
158 
159 
160 // * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * * //
161 
162 template<class Type>
164 {}
165 
166 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
167 
168 template<class Type>
170 {
171  return (os << static_cast<const Field<Type>&>(*this)).good();
172 }
173 
174 
175 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
176 
177 template<class Type>
179 {
181 }
182 
183 
184 template<class Type>
186 {
188 }
189 
190 
191 // ************************************************************************* //
setSize
points setSize(newPointi)
Foam::IOobject
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
Foam::IOField::operator=
void operator=(const IOField< Type > &)
Definition: IOField.C:178
Foam::IOField
A primitive field of type <T> with automated input and output.
Definition: IOField.H:50
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Foam::Xfer
A simple container for copying or transferring objects of type <T>.
Definition: Xfer.H:85
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::Field< Type >
Foam::IOobject::readOpt
readOption readOpt() const
Definition: IOobject.H:317
Foam::regIOobject
regIOobject is an abstract class derived from IOobject to handle automatic object registration with t...
Definition: regIOobject.H:60
f
labelList f(nPoints)
IOField.H
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::IOField::IOField
IOField(const IOobject &)
Construct from IOobject.
Definition: IOField.C:31
WarningInFunction
#define WarningInFunction
Report a warning using Foam::Warning.
Definition: messageStream.H:259
Foam::name
word name(const complex &)
Return a string representation of a complex.
Definition: complex.C:47
Foam::IOField::writeData
bool writeData(Ostream &) const
Pure virtual writaData function.
Definition: IOField.C:169
Foam::IOField::~IOField
virtual ~IOField()
Destructor.
Definition: IOField.C:163