Contents |
csa213 Event Publication
Objective
The objective is to learn how to write an event publishing application using Clovis' Event Manager API.
What You Will Learn
- You will learn how to publish events using Clovis' Event Manager API.
Code
clCompAppMain.c |
---|
|
In the clCompAppInitialize
function of this example we again see a call to clEventInitialize
. Most everything else in the appInitialize function is the same as before in csa112, except that both callback function pointers are specified as NULL
. This is because we neither open the event channel asynchronously, or subscribe to any events in this application. So there is no need to specify a callback to receive an event.
clCompAppMain.c |
---|
|
Here we open the event channel. This is the same as in csa112 except that rather than opening as a SUBSCRIBER, we open as a PUBLISHER
(by specifying CL_EVENT_CHANNEL_PUBLISHER
flag)
clCompAppMain.c |
---|
|
The call to clEventAllocate
allocates an event header. This header is identified by the event handle passed back to gTestInfo.eventHandle
. The handle should be used any time the event header is to be used to manipulate the header, either by using clEventExtAttributesSet
(right below), or to send an event using the header as in clEventPublish
. The call to clEventExtAttributesSet
defines the EVENT_TYPE
which is defined as 5432 in common/common.h
and is used in the event subscriber. It also defines the priority to be 1 which is just below the highest priority of CL_EVENT_HIGHEST_PRIORITY
which is defined as 0 where CL_EVENT_LOWEST_PRIORITY
is defined as 3. The retention time is specified as 0 since we don't want the event to be kept around if there is no subscriber to pick it up. Finally the publisherName
is specified because it's required. Our subscriber doesn't care who publishes the events it receives.
clCompAppMain.c |
---|
|
Here is the main loop. As long as the application is running and active we make a call to csa113Comp_PublishEvent
. The work of the application takes place in csa113Comp_PublishEvent
, which is presented below.
clCompAppMain.c |
---|
|
There's code to call one of a list of generator functions. The functions on the list, return a pointer and a length which are used to pass to clEventPublish
. We pass the eventHandle prepared earlier with clEventAllocate
and clEventExtAttributesSet
. Pass the pointer and the length that we get back from the generator function. Those are used to package up the event data and send it to any subscribers. We also pass the address of the eventId
local variable. This is required so that the clEventPublish
function can return the event ID. We don't need it, so we promptly drop it in the bit bucket. Finally, we free the data that was allocated in the generator function and passed back as we no longer need it.
csa213 SA Forum Compliant Event Publication
This sample application demonstrates the usage of SA Forum Event Service. As mentioned previously, this sample application does not deviate functionally with csa113. The code differences are due to using SA Forum data types (structures) and APIs , as presented in the following two tables. (Note we have not repeated data types and APIs covered previously.)
SA Forum Data Types | OpenClovis Data Types |
---|---|
SaEvtHandleT | ClEventHandleT |
SA Forum APIs | OpenClovis APIs |
---|---|
SaEvtEventAllocate | ClEventAllocate |
saEvtEventAttributesSet | clEventExtAttributesSet |
saEvtEventPublish | clEventPublish |
How to Run csa113 and What to Observe
In csa113 you will be observing an event publishing application. This will be far more interesting if you observe an event subscription application at the same time. For this we will use the example from csa112.
- First you should start up csa112 and put it in a LockAssignment state so that it can receive events.(Unlock csa212SGI0 instead of csa112SGI0 to run csa213).
# cd /root/asp/bin # ./asp_console cli[Test]-> setc 1 cli[Test:SCNodeI0]-> setc cpm cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa112SGI0 cli[Test:SCNodeI0:CPM]-> amsUnlock sg csa112SGI0
In the csa112 application log you should see:
$ /root/asp/var/log/csa112CompI0Log.latest Mon Jul 14 22:50:34 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00037 : INFO) csa112: Instantiated as component instance csa112CompI0. Mon Jul 14 22:50:34 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00038 : INFO) csa112CompI0: Waiting for CSI assignment... Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00041 : INFO) Component [csa112CompI0] : PID [24830]. CSI Set Received Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00042 : INFO) CSI Flags : [Add One] Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00043 : INFO) CSI Name : [csa112CSII0] Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00044 : INFO) Name Value Pairs : Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00045 : INFO) HA State : [Active] Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00046 : INFO) Active Descriptor : Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00047 : INFO) Transition Descriptor : [1] Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00048 : INFO) Active Component : [csa112CompI0] Mon Jul 14 22:51:20 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00049 : INFO) csa112: ACTIVE state requested; activating service
When running model csa212 you will not see the output described above for the the amsLockAssignment and amsUnlock commands. Unlock csa212SGI0 instead of csa112SGI0.
- Now you can start up the event publishing application and put it in a LockAssignment state. (Unlock csa213SGI0 instead of csa113SGI0 to run csa213).
cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa113SGI0 cli[Test:SCNodeI0:CPM]-> amsUnlock sg csa113SGI0
Putting csa113 into a LockAssignment state caused it to begin publishing events. Using
tail -f /root/asp/var/log/csa113CompI0Log.latest
on the csa113 application log you can see the events being published.(Unlock csa213SGI0 instead of csa113SGI0 to run SAF version).$ /root/asp/var/log/csa113CompI0Log.latest Mon Jul 14 22:53:54 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00028 : INFO) Component [csa113CompI0] : PID [24890]. Initializing Mon Jul 14 22:53:54 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00029 : INFO) IOC Address : 0x1 Mon Jul 14 22:53:54 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00030 : INFO) IOC Port : 0x81 Mon Jul 14 22:53:54 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00037 : INFO) Instantiated as component instance csa113CompI0. Mon Jul 14 22:53:54 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00038 : INFO) csa113CompI0: Waiting for CSI assignment... Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00041 : INFO) Component [csa113CompI0] : PID [24890]. CSI Set Received Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00042 : INFO) CSI Flags : [Add One] Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00043 : INFO) CSI Name : [csa113CSII0] Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00044 : INFO) Name Value Pairs : Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00045 : INFO) HA State : [Active] Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00046 : INFO) Active Descriptor : Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00047 : INFO) Transition Descriptor : [1] Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00048 : INFO) Active Component : [csa113CompI0] Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00049 : INFO) csa113: ACTIVE state requested; activating service Mon Jul 14 22:53:59 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00050 : NOTICE) Publishing Event: Mon Jul 14 22:53:59 2008 Mon Jul 14 22:54:00 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00052 : NOTICE) Publishing Event: 0.05 0.07 0.03 Mon Jul 14 22:54:01 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00054 : NOTICE) Publishing Event: Mon Jul 14 22:54:01 2008 Mon Jul 14 22:54:02 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00056 : NOTICE) Publishing Event: 0.05 0.07 0.03 Mon Jul 14 22:54:03 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00058 : NOTICE) Publishing Event: Mon Jul 14 22:54:03 2008 Mon Jul 14 22:54:04 2008 (SCNodeI0.24890 : csa113CompEO.---.---.00060 : NOTICE) Publishing Event: 0.05 0.07 0.03
Since the event subscriber application is also running you can see the events that it is receiving in the csa112 application log file. Again using
tail -f /rootasp//var/log/csa112CompI0Log.latest
you can see the following:/root/asp/var/log/csa112CompI0Log.latest Mon Jul 14 22:53:59 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00052 : NOTICE) We've got an event to receive Mon Jul 14 22:53:59 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00054 : NOTICE) received event: Mon Jul 14 22:53:59 2008 Mon Jul 14 22:54:00 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00058 : NOTICE) We've got an event to receive Mon Jul 14 22:54:00 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00060 : NOTICE) received event: 0.05 0.07 0.03 Mon Jul 14 22:54:01 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00064 : NOTICE) We've got an event to receive Mon Jul 14 22:54:01 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00066 : NOTICE) received event: Mon Jul 14 22:54:01 2008 Mon Jul 14 22:54:02 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00070 : NOTICE) We've got an event to receive Mon Jul 14 22:54:02 2008 (SCNodeI0.24830 : csa112CompEO.---.---.00072 : NOTICE) received event: 0.05 0.07 0.03
- Now you can shut everything down in the usual manner. Note that you will be shutting down two service groups.
cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa113SGI0 cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa112SGI0 cli[Test:SCNodeI0:CPM]-> amsLockInstantiation sg csa113SGI0 cli[Test:SCNodeI0:CPM]-> amsLockInstantiation sg csa112SGI0 cli[Test:SCNodeI0:CPM]-> end cli[Test:SCNodeI0]-> end cli[Test]-> bye
Summary and References
We've seen how to initialize the event manager subsystem as an event publisher. We've seen:
- events flow from the event publisher to the subscriber.
- how to format events and send them through the event manager subsystem
- For further reading, check the same sources as listed under the csa112 section.