106 lines
2.6 KiB
C++
106 lines
2.6 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$
|
|
* Revision 1.6 1998/07/08 15:38:06 jhill
|
|
* fixed lost monitors during flow control problem
|
|
*
|
|
* Revision 1.5 1998/06/16 02:27:06 jhill
|
|
* use smart gdd ptr
|
|
*
|
|
* Revision 1.4 1997/04/10 19:34:11 jhill
|
|
* API changes
|
|
*
|
|
* Revision 1.3 1996/11/02 00:54:16 jhill
|
|
* many improvements
|
|
*
|
|
* Revision 1.2 1996/06/26 21:18:55 jhill
|
|
* now matches gdd api revisions
|
|
*
|
|
* Revision 1.1.1.1 1996/06/20 00:28:16 jhill
|
|
* ca server installation
|
|
*
|
|
*
|
|
*/
|
|
|
|
|
|
#include "server.h"
|
|
#include "casEventSysIL.h" // casEventSys in line func
|
|
#include "casMonEventIL.h" // casMonEvent in line func
|
|
#include "casCtxIL.h" // casCtx in line func
|
|
|
|
//
|
|
// casMonEvent::cbFunc()
|
|
//
|
|
caStatus casMonEvent::cbFunc(casEventSys &eSys)
|
|
{
|
|
casMonitor *pMon;
|
|
caStatus status;
|
|
|
|
//
|
|
// ignore this event if it is stale and there is
|
|
// no call back object associated with it
|
|
//
|
|
pMon = eSys.resIdToMon(this->id);
|
|
if (!pMon) {
|
|
/*
|
|
* we know this isnt an overflow event because those are
|
|
* removed from the queue when the call back object
|
|
* is deleted
|
|
*/
|
|
status = S_casApp_success;
|
|
delete this;
|
|
}
|
|
else {
|
|
status = pMon->executeEvent(this);
|
|
}
|
|
|
|
return status;
|
|
}
|
|
|
|
//
|
|
// casMonEvent::assign ()
|
|
//
|
|
void casMonEvent::assign (casMonitor &monitor, const smartConstGDDPointer &pValueIn)
|
|
{
|
|
this->pValue = pValueIn;
|
|
this->id = monitor.casRes::getId();
|
|
}
|
|
|
|
//
|
|
// ~casMonEvent ()
|
|
// (this is not in line because it is virtual in the base)
|
|
//
|
|
casMonEvent::~casMonEvent ()
|
|
{
|
|
this->clear();
|
|
}
|
|
|