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 #include <OpenFOAM/Pstream.H>
00037
00038 #ifndef OPstream_H
00039 #define OPstream_H
00040
00041 #include <OpenFOAM/Ostream.H>
00042 #include "OPstreamImpl.H"
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050
00051
00052
00053 class OPstream
00054 :
00055 public Pstream,
00056 public Ostream
00057 {
00058
00059
00060 static autoPtr<OPstreamImpl> impl_;
00061
00062
00063
00064
00065 template<class T>
00066 inline void writeToBuffer(const T&);
00067
00068
00069 inline void writeToBuffer(const char&);
00070
00071
00072 inline void writeToBuffer(const void* data, size_t count, size_t align);
00073
00074
00075 static autoPtr<OPstreamImpl>& impl()
00076 {
00077 if(!impl_.valid())
00078 {
00079 impl_ = OPstreamImpl::New();
00080 }
00081 return impl_;
00082 }
00083
00084 protected:
00085
00086
00087
00088 int toProcNo_;
00089
00090
00091
00092 public:
00093
00094
00095
00096
00097
00098 OPstream
00099 (
00100 const commsTypes commsType,
00101 const int toProcNo,
00102 const label bufSize = 0,
00103 streamFormat format=BINARY,
00104 versionNumber version=currentVersion
00105 );
00106
00107
00108
00109
00110 ~OPstream();
00111
00112
00113
00114
00115
00116
00117
00118 ios_base::fmtflags flags() const
00119 {
00120 return ios_base::fmtflags(0);
00121 }
00122
00123
00124
00125
00126
00127 static bool write
00128 (
00129 const commsTypes commsType,
00130 const int toProcNo,
00131 const char* buf,
00132 const std::streamsize bufSize
00133 )
00134 {
00135 return impl()->write(commsType, toProcNo, buf, bufSize);
00136 }
00137
00138
00139 static void waitRequests()
00140 {
00141 impl()->waitRequests();
00142 }
00143
00144
00145 static bool finishedRequest(const label i)
00146 {
00147 return impl()->finishedRequest(i);
00148 }
00149
00150
00151 Ostream& write(const token&);
00152
00153
00154 Ostream& write(const char);
00155
00156
00157 Ostream& write(const char*);
00158
00159
00160 Ostream& write(const word&);
00161
00162
00163 Ostream& write(const string&);
00164
00165
00166
00167 Ostream& writeQuoted
00168 (
00169 const std::string&,
00170 const bool quoted=true
00171 );
00172
00173
00174 Ostream& write(const label);
00175
00176
00177 Ostream& write(const floatScalar);
00178
00179
00180 Ostream& write(const doubleScalar);
00181
00182
00183 Ostream& write(const char*, std::streamsize);
00184
00185
00186 void indent()
00187 {}
00188
00189
00190
00191
00192
00193 void flush()
00194 {}
00195
00196
00197 void endl()
00198 {}
00199
00200
00201 int width() const
00202 {
00203 return 0;
00204 }
00205
00206
00207 int width(const int)
00208 {
00209 return 0;
00210 }
00211
00212
00213 int precision() const
00214 {
00215 return 0;
00216 }
00217
00218
00219 int precision(const int)
00220 {
00221 return 0;
00222 }
00223
00224
00225
00226
00227
00228 ios_base::fmtflags flags(const ios_base::fmtflags)
00229 {
00230 return ios_base::fmtflags(0);
00231 }
00232
00233
00234
00235
00236
00237 void print(Ostream&) const;
00238 };
00239
00240
00241
00242
00243 }
00244
00245
00246
00247 #endif
00248
00249