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
#include "MPIStream.h"
00046
00047
#if USING_MPI
00048
00049
namespace PLearn {
00050
using namespace std;
00051
00052
00053
00054
00055
00056
00057 MPIStreambuf::MPIStreambuf(
int the_peerrank,
int inbufsize)
00058 :tag(PLMPI::tag), peerrank(the_peerrank),
00059 inbuf(0), inbuf_capacity(0)
00060 {
00061
if(inbufsize>0)
00062 reserveInputBuffer(inbufsize);
00063 }
00064
00065
00066 MPIStreambuf::~MPIStreambuf()
00067 {
00068
if(inbuf)
00069
delete[] inbuf;
00070 }
00071
00072
streambuf* MPIStreambuf::setbuf(
char* p,
int len)
00073 {
00074
if(p && len>0)
00075 setp(p, p+len-1);
00076
else
00077 setp(0,0);
00078
return this;
00079 }
00080
00081
int MPIStreambuf::showmanyc()
00082 {
00083
int ready;
00084 MPI_Status status;
00085 MPI_Iprobe(peerrank, tag, MPI_COMM_WORLD, &ready, &status);
00086
if(ready)
00087 {
00088
int nready;
00089 MPI_Get_count(&status, MPI_CHAR, &nready);
00090
return nready;
00091 }
00092
return -1;
00093 }
00094
00095
int MPIStreambuf::underflow()
00096 {
00097
00098
int msglength;
00099 MPI_Status status;
00100 MPI_Probe(peerrank, tag, MPI_COMM_WORLD, &status);
00101 MPI_Get_count(&status, MPI_CHAR, &msglength);
00102 reserveInputBuffer(msglength);
00103 MPI_Recv(inbuf, msglength, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD, &status);
00104
00105 setg(inbuf, inbuf, inbuf+msglength);
00106
00107
return *inbuf;
00108 }
00109
00110
00111
00112
int MPIStreambuf::overflow(
int c)
00113 {
00114
00115
if(c!=EOF)
00116 {
00117
if(pbase())
00118 {
00119 streamsize n = pptr() - pbase();
00120 *pptr() = char(c);
00121
if( MPI_Send(pbase(), n+1, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD) != MPI_SUCCESS)
00122
return EOF;
00123 pbump(-n);
00124 }
00125
else
00126 {
00127
char tinybuf[1];
00128 tinybuf[0] = c;
00129
if( MPI_Send(tinybuf, 1, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD) != MPI_SUCCESS)
00130
return EOF;
00131 }
00132 }
00133
else
00134 {
00135
if(pbase())
00136 {
00137 streamsize n = pptr() - pbase();
00138
if( MPI_Send(pbase(), n, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD) != MPI_SUCCESS)
00139
return EOF;
00140 pbump(-n);
00141 }
00142 }
00143
00144
return 0;
00145 }
00146
00147
int MPIStreambuf::sync()
00148 {
00149
00150 streamsize n = pptr() - pbase();
00151
if(n>0)
00152 {
00153
if( MPI_Send(pbase(), n, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD) != MPI_SUCCESS )
00154
return EOF;
00155 pbump(-n);
00156 }
00157
00158
00159
return 0;
00160 }
00161
00162
00163
00164
00165
00166 streamsize MPIStreambuf::xsputn(
const char* s, streamsize n)
00167 {
00168
00169
if(n>epptr()-pptr())
00170 {
00171
00172 sync();
00173
if ( MPI_Send((
char *)s, n, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD) != MPI_SUCCESS )
00174
return 0;
00175 }
00176
else
00177 {
00178 streambuf::xsputn(s,n);
00179 }
00180
00181
return n;
00182 }
00183
00184
00185
00186
00187 streamsize MPIStreambuf::xsgetn(
char* s, streamsize n)
00188 {
00189
00190
int msglength = -1;
00191 MPI_Status status;
00192
if(gptr()==eback())
00193 {
00194 MPI_Probe(peerrank, tag, MPI_COMM_WORLD, &status);
00195 MPI_Get_count(&status, MPI_CHAR, &msglength);
00196 }
00197
00198
if(msglength == n)
00199 {
00200
if( MPI_Recv(s, n, MPI_CHAR, peerrank, tag, MPI_COMM_WORLD, &status) != MPI_SUCCESS )
00201
return 0;
00202 }
00203
else
00204 {
00205 streambuf::xsgetn(s, n);
00206 }
00207
00208
return n;
00209 }
00210
00211
00212
00213
00214
00215
00216
void MPIStream::init(
int the_peerrank,
int inbufsize,
int outbufsize)
00217 {
00218
00219 rdbuf(
new MPIStreambuf(the_peerrank, inbufsize));
00220
if(outbufsize<=1)
00221
#if __GNUC__ < 3 && !defined(WIN32)
00222
rdbuf()->setbuf(0,0);
00223
#else
00224
rdbuf()->pubsetbuf(0,0);
00225
#endif
00226
else
00227 {
00228 outbuffer =
new char[outbufsize];
00229
#if __GNUC__ < 3 && !defined(WIN32)
00230
rdbuf()->setbuf(outbuffer,outbufsize);
00231
#else
00232
rdbuf()->pubsetbuf(outbuffer,outbufsize);
00233
#endif
00234
}
00235
00236 }
00237
00238 MPIStream::~MPIStream()
00239 {
00240
flush();
00241
delete rdbuf(0);
00242
if(outbuffer)
00243
delete[] outbuffer;
00244 }
00245
00246
00247
00248
00249
00250 MPIStreams::MPIStreams(
int inbufsize,
int outbufsize)
00251 {
00252
if(PLMPI::size==0)
00253 mpistreams = 0;
00254
else
00255 {
00256 mpistreams =
new MPIStream[PLMPI::size];
00257
for(
int k=0;
k<PLMPI::size;
k++)
00258 mpistreams[
k].init(k, inbufsize, outbufsize);
00259 }
00260 }
00261
00262
00263 }
00264
00265
00266
#endif