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 main
function of this example we again see a call to saEvtInitialize
. Most everything else in the appInitialize function is the same as before in csa212, 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 csa212 except that rather than opening as a SUBSCRIBER, we open as a PUBLISHER
(by specifying SA_EVT_CHANNEL_PUBLISHER
flag)
clCompAppMain.c |
---|
|
The call to saEvtEventAllocate
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 saEvtEventAttributesSet
(right below), or to send an event using the header as in saEvtEventPublish
. The call to saEvtEventAttributesSet
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 csa213Comp_PublishEvent
. The work of the application takes place in csa213Comp_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 saEvtEventPublish
. We pass the eventHandle prepared earlier with saEvtEventAllocate
and saEvtEventAttributesSet
. 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 saEvtEventPublish
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 csa213. 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 csa213 and What to Observe
In csa213 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 csa212.
- First you should start up csa212 and put it in a LockAssignment state so that it can receive events.
# cd /root/asp/bin # ./asp_console cli[Test]-> setc 1 cli[Test:SCNodeI0]-> setc cpm cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa212SGI0 cli[Test:SCNodeI0:CPM]-> amsUnlock sg csa212SGI0
In the csa212 application log you should see:
$ /root/asp/var/log/csa212CompI3Log.latest Thu Oct 14 13:25:49.418 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00001 : INFO) Component [csa212CompI3] : PID [4003]. Initializing Thu Oct 14 13:25:49.418 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00002 : INFO) IOC Address : 0x4 Thu Oct 14 13:25:49.419 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00003 : INFO) IOC Port : 0x80 Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00004 : INFO) Component [csa212CompI3] : PID [4003]. CSI Set Received Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00005 : INFO) CSI Flags : [Add One] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00006 : INFO) CSI Name : [csa212CSII0] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00007 : INFO) Name value pairs : Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00008 : INFO) HA state : [Active] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00009 : INFO) Active Descriptor : Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00010 : INFO) Transition Descriptor : [1] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00011 : INFO) Active Component : [csa212CompI3] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00012 : INFO) csa212: ACTIVE state requested; activating service
- Now you can start up the event publishing application and put it in a LockAssignment state.
cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa213SGI0 cli[Test:SCNodeI0:CPM]-> amsUnlock sg csa213SGI0
Putting csa213 into a LockAssignment state caused it to begin publishing events. Using
tail -f /root/asp/var/log/csa213CompI3Log.latest
on the csa213 application log you can see the events being published.$ /root/asp/var/log/csa213CompI3Log.latest Thu Oct 14 13:28:58.503 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00001 : INFO) csa213: Initializing and registering with CPM... Thu Oct 14 13:28:58.503 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00002 : INFO) Component [csa213CompI3] : PID [4422]. Initializing Thu Oct 14 13:28:58.503 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00003 : INFO) IOC Address : 0x4 Thu Oct 14 13:28:58.503 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00004 : INFO) IOC Port : 0x81 Thu Oct 14 13:28:58.504 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00005 : INFO) csa213CompI3: Waiting for CSI assignment... Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00006 : INFO) Component [csa213CompI3] : PID [4422]. CSI Set Received Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00007 : INFO) CSI Flags : [Add One] Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00008 : INFO) CSI Name : [csa213CSII0] Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00009 : INFO) Name value pairs : Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00010 : INFO) HA state : [Active] Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00011 : INFO) Active Descriptor : Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00012 : INFO) Transition Descriptor : [1] Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00013 : INFO) Active Component : [csa213CompI3] Thu Oct 14 13:29:09.593 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00014 : INFO) csa213: ACTIVE state request: activating service Thu Oct 14 13:29:10.511 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00015 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:10 2010 Thu Oct 14 13:29:11.516 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00016 : INFO) csa213CompI3: Publishing Event: 0.29 0.42 0.25 Thu Oct 14 13:29:12.521 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00017 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:12 2010 Thu Oct 14 13:29:13.526 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00018 : INFO) csa213CompI3: Publishing Event: 0.66 0.50 0.27 Thu Oct 14 13:29:14.530 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00019 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:14 2010 Thu Oct 14 13:29:15.537 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00020 : INFO) csa213CompI3: Publishing Event: 0.66 0.50 0.27 Thu Oct 14 13:29:16.538 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00021 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:16 2010 Thu Oct 14 13:29:17.541 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00022 : INFO) csa213CompI3: Publishing Event: 1.01 0.57 0.30 Thu Oct 14 13:29:18.545 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00023 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:18 2010 Thu Oct 14 13:29:19.548 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00024 : INFO) csa213CompI3: Publishing Event: 1.01 0.57 0.30 Thu Oct 14 13:29:20.549 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00025 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:20 2010 Thu Oct 14 13:29:21.554 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00026 : INFO) csa213CompI3: Publishing Event: 1.01 0.57 0.30 Thu Oct 14 13:29:22.557 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00027 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:22 2010 Thu Oct 14 13:29:23.562 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00028 : INFO) csa213CompI3: Publishing Event: 1.17 0.61 0.31 Thu Oct 14 13:29:24.563 2010 (PayloadNodeI1.4422 : csa213CompEO.---.---.00029 : INFO) csa213CompI3: Publishing Event: Thu Oct 14 13:29:24 2010
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/csa212CompI0Log.latest
you can see the following:/root/asp/var/log/csa112CompI3Log.latest Thu Oct 14 13:25:49.418 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00001 : INFO) Component [csa212CompI3] : PID [4003]. Initializing Thu Oct 14 13:25:49.418 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00002 : INFO) IOC Address : 0x4 Thu Oct 14 13:25:49.419 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00003 : INFO) IOC Port : 0x80 Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00004 : INFO) Component [csa212CompI3] : PID [4003]. CSI Set Received Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00005 : INFO) CSI Flags : [Add One] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00006 : INFO) CSI Name : [csa212CSII0] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00007 : INFO) Name value pairs : Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00008 : INFO) HA state : [Active] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00009 : INFO) Active Descriptor : Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00010 : INFO) Transition Descriptor : [1] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00011 : INFO) Active Component : [csa212CompI3] Thu Oct 14 13:26:01.942 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00012 : INFO) csa212: ACTIVE state requested; activating service Thu Oct 14 13:29:10.516 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00013 : INFO) We've got an event to receive Thu Oct 14 13:29:10.516 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00014 : INFO) received event: Thu Oct 14 13:29:10 2010 Thu Oct 14 13:29:11.518 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00015 : INFO) We've got an event to receive Thu Oct 14 13:29:11.518 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00016 : INFO) received event: 0.29 0.42 0.25 Thu Oct 14 13:29:12.525 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00017 : INFO) We've got an event to receive Thu Oct 14 13:29:12.525 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00018 : INFO) received event: Thu Oct 14 13:29:12 2010 Thu Oct 14 13:29:13.529 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00019 : INFO) We've got an event to receive Thu Oct 14 13:29:13.529 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00020 : INFO) received event: 0.66 0.50 0.27 Thu Oct 14 13:29:14.533 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00021 : INFO) We've got an event to receive Thu Oct 14 13:29:14.533 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00022 : INFO) received event: Thu Oct 14 13:29:14 2010 Thu Oct 14 13:29:15.540 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00023 : INFO) We've got an event to receive Thu Oct 14 13:29:15.541 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00024 : INFO) received event: 0.66 0.50 0.27 Thu Oct 14 13:29:16.540 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00025 : INFO) We've got an event to receive Thu Oct 14 13:29:16.540 2010 (PayloadNodeI1.4003 : csa212CompEO.---.---.00026 : INFO) received event: Thu Oct 14 13:29:16 2010
- 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 csa213SGI0 cli[Test:SCNodeI0:CPM]-> amsLockAssignment sg csa212SGI0 cli[Test:SCNodeI0:CPM]-> amsLockInstantiation sg csa213SGI0 cli[Test:SCNodeI0:CPM]-> amsLockInstantiation sg csa212SGI0 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 csa212 section.