Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::IOobject
Description
IOobject defines the attributes of an object for which implicit
objectRegistry management is supported, and provides the infrastructure
for performing stream I/O.
An IOobject is constructed with an object name, a class name, an instance
path, a reference to a objectRegistry, and parameters determining its
storage status.
@par Read options
Define what is done on object construction and explicit reads:
@param MUST_READ
Object must be read from Istream on construction. \n
Error if Istream does not exist or can't be read.
Does not check timestamp or re-read.
@param MUST_READ_IF_MODIFIED
Object must be read from Istream on construction. \n
Error if Istream does not exist or can't be read. If object is
registered its timestamp will be checked every timestep and possibly
re-read.
@param READ_IF_PRESENT
Read object from Istream if Istream exists, otherwise don't. \n
Error only if Istream exists but can't be read.
Does not check timestamp or re-read.
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@param NO_READ
Don't read
@par Write options
Define what is done on object destruction and explicit writes:
@param AUTO_WRITE
Object is written automatically when requested to by the
objectRegistry.
@param NO_WRITE
No automatic write on destruction but can be written explicitly
SourceFiles
IOobject.C
IOobjectReadHeader.C
IOobjectWriteHeader.C
IOobjectPrint.C
\*---------------------------------------------------------------------------*/
#ifndef IOobject_H
#define IOobject_H
#include "fileName.H"
#include "typeInfo.H"
#include "autoPtr.H"
#include "InfoProxy.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
class Time;
class objectRegistry;
/*---------------------------------------------------------------------------*\
Class IOobject Declaration
\*---------------------------------------------------------------------------*/
class IOobject
{
public:
// Public data types
//- Enumeration defining the valid states of an IOobject
enum objectState
{
GOOD,
BAD
};
//- Enumeration defining the read options
enum readOption
{
MUST_READ,
MUST_READ_IF_MODIFIED,
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
READ_IF_PRESENT,
NO_READ
};
//- Enumeration defining the write options
enum writeOption
{
AUTO_WRITE = 0,
NO_WRITE = 1
};
private:
// Private data
//- Name
word name_;
//- Class name read from header
word headerClassName_;
//- Optional note
string note_;
//- Instance path component
fileName instance_;
//- Local path component
fileName local_;
//- objectRegistry reference
const objectRegistry& db_;
//- Read option
readOption rOpt_;
//- Write option
writeOption wOpt_;
//- Register object created from this IOobject with registry if true
bool registerObject_;
//- IOobject state
objectState objState_;
protected:
Mark Olesen
committed
// Protected Member Functions
//- Construct and return an IFstream for the object.
// The results is NULL if the stream construction failed
Istream* objectStream();
//- Construct and return an IFstream for the object given the
// exact file. The results is NULL if the stream construction failed
Istream* objectStream(const fileName&);
//- Set the object state to bad
void setBad(const string&);
public:
//- Runtime type information
TypeName("IOobject");
// Static Member Functions
//- Split path into instance, local, name components
static bool fileNameComponents
(
const fileName& path,
fileName& instance,
fileName& local,
word& name
);
// Constructors
//- Construct from name, instance, registry, io options
IOobject
(
const word& name,
const fileName& instance,
const objectRegistry& registry,
readOption r=NO_READ,
writeOption w=NO_WRITE,
bool registerObject=true
);
//- Construct from name, instance, local, registry, io options
IOobject
(
const word& name,
const fileName& instance,
const fileName& local,
const objectRegistry& registry,
readOption r=NO_READ,
writeOption w=NO_WRITE,
bool registerObject=true
);
//- Construct from path, registry, io options
// Uses fileNameComponents() to split path into components.
IOobject
(
const fileName& path,
const objectRegistry& registry,
readOption r=NO_READ,
writeOption w=NO_WRITE,
bool registerObject=true
);
//- Clone
Foam::autoPtr<IOobject> clone() const
{
return autoPtr<IOobject>(new IOobject(*this));
}
//- Destructor
virtual ~IOobject();
// Member Functions
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
// General access
//- Return time
const Time& time() const;
//- Return the local objectRegistry
const objectRegistry& db() const;
//- Return name
const word& name() const
{
return name_;
}
//- Return name of the class name read from header
const word& headerClassName() const
{
return headerClassName_;
}
//- Return non-constant access to the optional note
string& note()
{
return note_;
}
//- Return the optional note
const string& note() const
{
return note_;
}
//- Rename
virtual void rename(const word& newName)
{
name_ = newName;
}
//- Register object created from this IOobject with registry if true
bool registerObject() const
{
return registerObject_;
}
// Read/write options
readOption readOpt() const
{
return rOpt_;
}
readOption& readOpt()
{
return rOpt_;
}
writeOption writeOpt() const
{
return wOpt_;
}
writeOption& writeOpt()
{
return wOpt_;
}
// Path components
const fileName& rootPath() const;
const fileName& caseName() const;
const fileName& instance() const
{
return instance_;
}
fileName& instance()
{
return instance_;
}
const fileName& local() const
{
return local_;
}
//- Return complete path
fileName path() const;
//- Return complete path with alternative instance and local
fileName path
(
const word& instance,
const fileName& local = ""
) const;
//- Return complete path + object name
fileName objectPath() const
{
return path()/name();
}
//- Return complete path + object name if the file exists
// either in the case/processor or case otherwise null
fileName filePath() const;
// Reading
//- Read header
bool readHeader(Istream&);
//- Read and check header info
bool headerOk();
// Writing
//- Write the standard OpenFOAM file/dictionary banner
// Optionally without -*- C++ -*- editor hint (eg, for logs)
static inline Stream& writeBanner(Stream& os, bool noHint=false);
//- Write the standard file section divider
template<class Stream>
static inline Stream& writeDivider(Stream& os);
//- Write the standard end file divider
template<class Stream>
static inline Stream& writeEndDivider(Stream& os);
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
//- Write header
bool writeHeader(Ostream&) const;
// Error Handling
bool good() const
{
return objState_ == GOOD;
}
bool bad() const
{
return objState_ == BAD;
}
// Info
//- Return info proxy.
// Used to print token information to a stream
InfoProxy<IOobject> info() const
{
return *this;
}
// Member operators
void operator=(const IOobject&);
};
#if defined (__GNUC__)
template<>
#endif
Ostream& operator<<(Ostream& os, const InfoProxy<IOobject>& ip);
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
# include "IOobjectI.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //