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
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065 #ifndef IOobject_H
00066 #define IOobject_H
00067
00068 #include <OpenFOAM/fileName.H>
00069 #include <OpenFOAM/typeInfo.H>
00070 #include <OpenFOAM/autoPtr.H>
00071 #include <OpenFOAM/InfoProxy.H>
00072
00073
00074
00075 namespace Foam
00076 {
00077
00078 class Time;
00079 class objectRegistry;
00080
00081
00082
00083
00084
00085 class IOobject
00086 {
00087
00088 public:
00089
00090
00091
00092
00093 enum objectState
00094 {
00095 GOOD,
00096 BAD
00097 };
00098
00099
00100 enum readOption
00101 {
00102 MUST_READ,
00103 READ_IF_PRESENT,
00104 NO_READ
00105 };
00106
00107
00108 enum writeOption
00109 {
00110 AUTO_WRITE = 0,
00111 NO_WRITE = 1
00112 };
00113
00114
00115 private:
00116
00117
00118
00119
00120 word name_;
00121
00122
00123 word headerClassName_;
00124
00125
00126 string note_;
00127
00128
00129 fileName instance_;
00130
00131
00132 fileName local_;
00133
00134
00135 const objectRegistry& db_;
00136
00137
00138 readOption rOpt_;
00139
00140
00141 writeOption wOpt_;
00142
00143
00144 bool registerObject_;
00145
00146
00147 objectState objState_;
00148
00149 protected:
00150
00151
00152
00153
00154
00155 Istream* objectStream();
00156
00157
00158 void setBad(const string&);
00159
00160 static const char* getBannerString(bool noHint);
00161
00162
00163 public:
00164
00165
00166 TypeName("IOobject");
00167
00168
00169
00170
00171
00172 static bool fileNameComponents
00173 (
00174 const fileName& path,
00175 fileName& instance,
00176 fileName& local,
00177 word& name
00178 );
00179
00180
00181
00182
00183
00184 IOobject
00185 (
00186 const word& name,
00187 const fileName& instance,
00188 const objectRegistry& registry,
00189 readOption r=NO_READ,
00190 writeOption w=NO_WRITE,
00191 bool registerObject=true
00192 );
00193
00194
00195 IOobject
00196 (
00197 const word& name,
00198 const fileName& instance,
00199 const fileName& local,
00200 const objectRegistry& registry,
00201 readOption r=NO_READ,
00202 writeOption w=NO_WRITE,
00203 bool registerObject=true
00204 );
00205
00206
00207
00208 IOobject
00209 (
00210 const fileName& path,
00211 const objectRegistry& registry,
00212 readOption r=NO_READ,
00213 writeOption w=NO_WRITE,
00214 bool registerObject=true
00215 );
00216
00217
00218 Foam::autoPtr<IOobject> clone() const
00219 {
00220 return autoPtr<IOobject>(new IOobject(*this));
00221 }
00222
00223
00224
00225
00226 virtual ~IOobject();
00227
00228
00229
00230
00231
00232
00233
00234 const Time& time() const;
00235
00236
00237 const objectRegistry& db() const;
00238
00239
00240 const word& name() const
00241 {
00242 return name_;
00243 }
00244
00245
00246 const word& headerClassName() const
00247 {
00248 return headerClassName_;
00249 }
00250
00251
00252 string& note()
00253 {
00254 return note_;
00255 }
00256
00257
00258 const string& note() const
00259 {
00260 return note_;
00261 }
00262
00263
00264 virtual void rename(const word& newName)
00265 {
00266 name_ = newName;
00267 }
00268
00269
00270 bool registerObject() const
00271 {
00272 return registerObject_;
00273 }
00274
00275
00276
00277
00278 readOption readOpt() const
00279 {
00280 return rOpt_;
00281 }
00282
00283 readOption& readOpt()
00284 {
00285 return rOpt_;
00286 }
00287
00288 writeOption writeOpt() const
00289 {
00290 return wOpt_;
00291 }
00292
00293 writeOption& writeOpt()
00294 {
00295 return wOpt_;
00296 }
00297
00298
00299
00300
00301 const fileName& rootPath() const;
00302
00303 const fileName& caseName() const;
00304
00305 const fileName& instance() const
00306 {
00307 return instance_;
00308 }
00309
00310 fileName& instance()
00311 {
00312 return instance_;
00313 }
00314
00315 const fileName& local() const
00316 {
00317 return local_;
00318 }
00319
00320
00321 fileName path() const;
00322
00323
00324 fileName path
00325 (
00326 const word& instance,
00327 const fileName& local = ""
00328 ) const;
00329
00330
00331 fileName objectPath() const
00332 {
00333 return path()/name();
00334 }
00335
00336
00337
00338 fileName filePath() const;
00339
00340
00341
00342
00343
00344 bool readHeader(Istream&);
00345
00346
00347 bool headerOk();
00348
00349
00350
00351
00352
00353
00354 template<class Stream>
00355 static inline Stream& writeBanner(Stream& os, bool noHint=false);
00356
00357
00358 template<class Stream>
00359 static inline Stream& writeDivider(Stream& os);
00360
00361
00362 template<class Stream>
00363 static inline Stream& writeEndDivider(Stream& os);
00364
00365
00366 bool writeHeader(Ostream&) const;
00367
00368
00369
00370
00371 bool good() const
00372 {
00373 return objState_ == GOOD;
00374 }
00375
00376 bool bad() const
00377 {
00378 return objState_ == BAD;
00379 }
00380
00381
00382
00383
00384
00385
00386 InfoProxy<IOobject> info() const
00387 {
00388 return *this;
00389 }
00390
00391
00392
00393
00394 void operator=(const IOobject&);
00395 };
00396
00397
00398 #if defined (__GNUC__)
00399 template<>
00400 #endif
00401 Ostream& operator<<(Ostream& os, const InfoProxy<IOobject>& ip);
00402
00403
00404
00405
00406 }
00407
00408
00409
00410 # include <OpenFOAM/IOobjectI.H>
00411
00412
00413
00414 #endif
00415
00416