mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
So now we can read multiple times (using UIPstream) from PstreamBuffers
PstreamBuffers pBufs
UIPstream str1(procI, pBufs);
str1>> ..
UIPstream str2(procI, pBufs);
str1>> ..
184 lines
4.8 KiB
C++
184 lines
4.8 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 1991-2009 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
Class
|
|
Foam::UIPstream
|
|
|
|
Description
|
|
Input inter-processor communications stream operating on external
|
|
buffer.
|
|
|
|
SourceFiles
|
|
UIPstream.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "Pstream.H"
|
|
|
|
#ifndef UIPstream_H
|
|
#define UIPstream_H
|
|
|
|
#include "UPstream.H"
|
|
#include "Istream.H"
|
|
#include "PstreamBuffers.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class UIPstream Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class UIPstream
|
|
:
|
|
public UPstream,
|
|
public Istream
|
|
{
|
|
// Private data
|
|
|
|
int fromProcNo_;
|
|
|
|
DynamicList<char>& externalBuf_;
|
|
|
|
label& externalBufPosition_;
|
|
|
|
const int tag_;
|
|
|
|
label messageSize_;
|
|
|
|
|
|
// Private member functions
|
|
|
|
//- Check the bufferPosition against messageSize_ for EOF
|
|
inline void checkEof();
|
|
|
|
//- Read a T from the transfer buffer
|
|
template<class T>
|
|
inline void readFromBuffer(T&);
|
|
|
|
//- Read data from the transfer buffer
|
|
inline void readFromBuffer(void* data, size_t count, size_t align);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct given process index to read from and optional buffer size,
|
|
// read format and IO version
|
|
UIPstream
|
|
(
|
|
const commsTypes commsType,
|
|
const int fromProcNo,
|
|
DynamicList<char>& externalBuf,
|
|
label& externalBufPosition,
|
|
const int tag = UPstream::msgType(),
|
|
streamFormat format=BINARY,
|
|
versionNumber version=currentVersion
|
|
);
|
|
|
|
//- Construct given buffers
|
|
UIPstream(const int fromProcNo, PstreamBuffers&);
|
|
|
|
|
|
// Member functions
|
|
|
|
// Inquiry
|
|
|
|
//- Return flags of output stream
|
|
ios_base::fmtflags flags() const
|
|
{
|
|
return ios_base::fmtflags(0);
|
|
}
|
|
|
|
|
|
// Read functions
|
|
|
|
//- Read into given buffer from given processor and return the
|
|
// message size
|
|
static label read
|
|
(
|
|
const commsTypes commsType,
|
|
const int fromProcNo,
|
|
char* buf,
|
|
const std::streamsize bufSize,
|
|
const int tag = UPstream::msgType()
|
|
);
|
|
|
|
//- Return next token from stream
|
|
Istream& read(token&);
|
|
|
|
//- Read a character
|
|
Istream& read(char&);
|
|
|
|
//- Read a word
|
|
Istream& read(word&);
|
|
|
|
// Read a string (including enclosing double-quotes)
|
|
Istream& read(string&);
|
|
|
|
//- Read a label
|
|
Istream& read(label&);
|
|
|
|
//- Read a floatScalar
|
|
Istream& read(floatScalar&);
|
|
|
|
//- Read a doubleScalar
|
|
Istream& read(doubleScalar&);
|
|
|
|
//- Read binary block
|
|
Istream& read(char*, std::streamsize);
|
|
|
|
//- Rewind and return the stream so that it may be read again
|
|
Istream& rewind();
|
|
|
|
|
|
// Edit
|
|
|
|
//- Set flags of stream
|
|
ios_base::fmtflags flags(const ios_base::fmtflags)
|
|
{
|
|
return ios_base::fmtflags(0);
|
|
}
|
|
|
|
|
|
// Print
|
|
|
|
//- Print description of IOstream to Ostream
|
|
void print(Ostream&) const;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|