Files
epics-base/src/cas/generic/inBuf.cc
T
1996-06-20 00:28:19 +00:00

136 lines
2.7 KiB
C++

/*
* $Id$
*
* Author Jeffrey O. Hill
* johill@lanl.gov
* 505 665 1831
*
* Experimental Physics and Industrial Control System (EPICS)
*
* Copyright 1991, the Regents of the University of California,
* and the University of Chicago Board of Governors.
*
* This software was produced under U.S. Government contracts:
* (W-7405-ENG-36) at the Los Alamos National Laboratory,
* and (W-31-109-ENG-38) at Argonne National Laboratory.
*
* Initial development by:
* The Controls and Automation Group (AT-8)
* Ground Test Accelerator
* Accelerator Technology Division
* Los Alamos National Laboratory
*
* Co-developed with
* The Controls and Computing Group
* Accelerator Systems Division
* Advanced Photon Source
* Argonne National Laboratory
*
*
* History
* $Log$
*
*/
#include<server.h>
//
// inBuf::inBuf()
//
inBuf::inBuf(casMsgIO &virtualCircuit, osiMutex &mutexIn) :
mutex(mutexIn),
io(virtualCircuit)
{
assert(&this->io);
this->bytesInBuffer = 0u;
this->nextReadIndex = 0u;
this->bufSize = 0u;
this->pBuf = NULL;
}
//
// inBuf::init()
//
caStatus inBuf::init()
{
this->bufSize = io.optimumBufferSize();
this->pBuf = new char [this->bufSize];
if (!this->pBuf) {
this->bufSize = 0u;
return S_cas_noMemory;
}
return S_cas_success;
}
//
// inBuf::~inBuf()
//
inBuf::~inBuf()
{
if (this->pBuf) {
delete [] this->pBuf;
}
}
void inBuf::show(unsigned level)
{
if (level>1u) {
printf(
"\tUnprocessed request bytes = %d\n",
this->bytesAvailable());
}
}
casFillCondition inBuf::fill()
{
unsigned bytesReq;
unsigned bytesRecv;
xRecvStatus stat;
assert(this->pBuf);
//
// move back any prexisting data to the start of the buffer
//
if (this->nextReadIndex>0u) {
unsigned unprocessedBytes;
unprocessedBytes = this->bytesInBuffer - this->nextReadIndex;
//
// memmove() handles overlapping buffers
//
if (unprocessedBytes>0u) {
memmove (this->pBuf, this->pBuf+this->nextReadIndex,
unprocessedBytes);
}
this->bytesInBuffer = unprocessedBytes;
this->nextReadIndex = 0u;
}
//
// noop if the buffer is full
//
bytesReq = this->bufSize - this->bytesInBuffer;
if (bytesReq <= 0u) {
return casFillFull;
}
stat = this->io.xRecv( &this->pBuf[this->bytesInBuffer],
bytesReq, bytesRecv);
if (stat != xRecvOK) {
return casFillDisconnect;
}
if (bytesRecv==0u) {
return casFillNone;
}
assert (bytesRecv<=bytesReq);
this->bytesInBuffer += bytesRecv;
if (this->bufSize==this->bytesInBuffer) {
return casFillFull;
}
else {
return casFillPartial;
}
}