96 lines
1.5 KiB
C++
96 lines
1.5 KiB
C++
|
|
//
|
|
// Example EPICS CA server
|
|
//
|
|
|
|
#include <exServer.h>
|
|
|
|
//
|
|
// exAsyncPV::maxSimultAsyncOps()
|
|
// (virtual replacement for the default)
|
|
//
|
|
unsigned exAsyncPV::maxSimultAsyncOps () const
|
|
{
|
|
return 500u;
|
|
}
|
|
|
|
//
|
|
// exAsyncPV::read()
|
|
// (virtual replacement for the default)
|
|
//
|
|
caStatus exAsyncPV::read (const casCtx &ctx, gdd &valueIn)
|
|
{
|
|
exAsyncReadIO *pIO;
|
|
|
|
pIO = new exAsyncReadIO(ctx, *this, valueIn);
|
|
if (!pIO) {
|
|
return S_casApp_noMemory;
|
|
}
|
|
|
|
return S_casApp_asyncCompletion;
|
|
}
|
|
|
|
//
|
|
// exAsyncPV::write()
|
|
// (virtual replacement for the default)
|
|
//
|
|
caStatus exAsyncPV::write (const casCtx &ctx, gdd &valueIn)
|
|
{
|
|
exAsyncWriteIO *pIO;
|
|
|
|
pIO = new exAsyncWriteIO(ctx, *this, valueIn);
|
|
if (!pIO) {
|
|
return S_casApp_noMemory;
|
|
}
|
|
|
|
return S_casApp_asyncCompletion;
|
|
}
|
|
|
|
//
|
|
// exAsyncWriteIO::expire()
|
|
// (a virtual function that runs when the base timer expires)
|
|
//
|
|
void exAsyncWriteIO::expire()
|
|
{
|
|
caStatus status;
|
|
status = this->pv.update(this->value);
|
|
this->postIOCompletion (status);
|
|
}
|
|
|
|
//
|
|
// exAsyncWriteIO::name()
|
|
//
|
|
const char *exAsyncWriteIO::name() const
|
|
{
|
|
return "exAsyncWriteIO";
|
|
}
|
|
|
|
//
|
|
// exAsyncReadIO::expire()
|
|
// (a virtual function that runs when the base timer expires)
|
|
//
|
|
void exAsyncReadIO::expire()
|
|
{
|
|
caStatus status;
|
|
|
|
//
|
|
// map between the prototype in and the
|
|
// current value
|
|
//
|
|
status = exServer::read(this->pv, this->proto);
|
|
|
|
//
|
|
// post IO completion
|
|
//
|
|
this->postIOCompletion(status, this->proto);
|
|
}
|
|
|
|
//
|
|
// exAsyncReadIO::name()
|
|
//
|
|
const char *exAsyncReadIO::name() const
|
|
{
|
|
return "exAsyncReadIO";
|
|
}
|
|
|