mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
127 lines
3.3 KiB
C
127 lines
3.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
|
|
\\/ 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
Description
|
|
Read from UIPstream
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "UIPstream.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::UIPstream::UIPstream
|
|
(
|
|
const commsTypes commsType,
|
|
const int fromProcNo,
|
|
DynamicList<char>& externalBuf,
|
|
label& externalBufPosition,
|
|
const int tag,
|
|
const label comm,
|
|
const bool clearAtEnd,
|
|
streamFormat format,
|
|
versionNumber version
|
|
)
|
|
:
|
|
UPstream(commsType),
|
|
Istream(format, version),
|
|
fromProcNo_(fromProcNo),
|
|
externalBuf_(externalBuf),
|
|
externalBufPosition_(externalBufPosition),
|
|
tag_(tag),
|
|
comm_(comm),
|
|
clearAtEnd_(clearAtEnd),
|
|
messageSize_(0)
|
|
{
|
|
notImplemented
|
|
(
|
|
"UIPstream::UIPstream\n"
|
|
"(\n"
|
|
"const commsTypes,\n"
|
|
"const int,\n"
|
|
"DynamicList<char>&,\n"
|
|
"label&,\n"
|
|
"const int,\n"
|
|
"const label,\n"
|
|
"const bool,\n"
|
|
"streamFormat,\n"
|
|
"versionNumber\n"
|
|
")"
|
|
);
|
|
}
|
|
|
|
|
|
Foam::UIPstream::UIPstream(const int fromProcNo, PstreamBuffers& buffers)
|
|
:
|
|
UPstream(buffers.commsType_),
|
|
Istream(buffers.format_, buffers.version_),
|
|
fromProcNo_(fromProcNo),
|
|
externalBuf_(buffers.recvBuf_[fromProcNo]),
|
|
externalBufPosition_(buffers.recvBufPos_[fromProcNo]),
|
|
tag_(buffers.tag_),
|
|
comm_(buffers.comm_),
|
|
clearAtEnd_(true),
|
|
messageSize_(0)
|
|
{
|
|
notImplemented
|
|
(
|
|
"UIPstream::UIPstream\n"
|
|
"(\n"
|
|
"const int,\n"
|
|
"PstreamBuffers&\n"
|
|
")"
|
|
);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
Foam::label Foam::UIPstream::read
|
|
(
|
|
const commsTypes commsType,
|
|
const int fromProcNo,
|
|
char* buf,
|
|
const std::streamsize bufSize,
|
|
const int tag,
|
|
const label communicator
|
|
)
|
|
{
|
|
notImplemented
|
|
(
|
|
"UIPstream::read"
|
|
"("
|
|
"const commsTypes,"
|
|
"const int fromProcNo,"
|
|
"char* buf,"
|
|
"const label bufSize,"
|
|
"const int tag,"
|
|
"const label communicator"
|
|
")"
|
|
);
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|