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 IPstream_H
00039 #define IPstream_H
00040
00041 #include <OpenFOAM/Istream.H>
00042 #include "IPstreamImpl.H"
00043
00044
00045
00046 namespace Foam
00047 {
00048
00049
00050
00051
00052
00053 class IPstream
00054 :
00055 public Pstream,
00056 public Istream
00057 {
00058
00059
00060 int fromProcNo_;
00061 label messageSize_;
00062
00063 static autoPtr<IPstreamImpl> impl_;
00064
00065
00066
00067
00068
00069 inline void checkEof();
00070
00071
00072 template<class T>
00073 inline void readFromBuffer(T&);
00074
00075
00076 inline void readFromBuffer(void* data, size_t count, size_t align);
00077
00078
00079 static autoPtr<IPstreamImpl>& impl()
00080 {
00081 if(!impl_.valid())
00082 {
00083 impl_ = IPstreamImpl::New();
00084 }
00085 return impl_;
00086 }
00087
00088 public:
00089
00090
00091
00092
00093
00094 IPstream
00095 (
00096 const commsTypes commsType,
00097 const int fromProcNo,
00098 const label bufSize = 0,
00099 streamFormat format=BINARY,
00100 versionNumber version=currentVersion
00101 );
00102
00103
00104
00105
00106 ~IPstream();
00107
00108
00109
00110
00111
00112
00113
00114 ios_base::fmtflags flags() const
00115 {
00116 return ios_base::fmtflags(0);
00117 }
00118
00119
00120
00121
00122
00123
00124 static label read
00125 (
00126 const commsTypes commsType,
00127 const int fromProcNo,
00128 char* buf,
00129 const std::streamsize bufSize
00130 )
00131 {
00132 return impl()->read(commsType, fromProcNo, buf, bufSize);
00133 }
00134
00135
00136 static void waitRequests()
00137 {
00138 impl()->waitRequests();
00139 }
00140
00141
00142 static bool finishedRequest(const label i)
00143 {
00144 return impl()->finishedRequest(i);
00145 }
00146
00147
00148 Istream& read(token&);
00149
00150
00151 Istream& read(char&);
00152
00153
00154 Istream& read(word&);
00155
00156
00157 Istream& read(string&);
00158
00159
00160 Istream& read(label&);
00161
00162
00163 Istream& read(floatScalar&);
00164
00165
00166 Istream& read(doubleScalar&);
00167
00168
00169 Istream& read(char*, std::streamsize);
00170
00171
00172 Istream& rewind();
00173
00174
00175
00176
00177
00178 ios_base::fmtflags flags(const ios_base::fmtflags)
00179 {
00180 return ios_base::fmtflags(0);
00181 }
00182
00183
00184
00185
00186
00187 void print(Ostream&) const;
00188 };
00189
00190
00191
00192
00193 }
00194
00195
00196
00197 #endif
00198
00199