00001
#ifndef _ACS_NOTIFICATION_SERVICE_IMP_HANDLER_IMPL_H_
00002
#define _ACS_NOTIFICATION_SERVICE_IMP_HANDLER_IMPL_H_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
#ifndef __cplusplus
00032
#error This is a C++ include file and cannot be used from plain C
00033
#endif
00034
00035
#include "acsImpBaseHandlerImpl.h"
00036
00037
00038 class ACSNotificationServiceImpHandlerImpl :
public ACSImpBaseHandlerImpl<ACSNotificationServiceImpHandlerImpl>,
public POA_acsdaemon::NotificationServiceImp {
00039
00040
public:
00041
00042 ACSNotificationServiceImpHandlerImpl() :
ACSImpBaseHandlerImpl<
ACSNotificationServiceImpHandlerImpl>(
NOTIFICATION_SERVICE) {}
00043
00044
00045
00046 void start_notification_service (
00047
const char * name,
00048 acsdaemon::DaemonCallback_ptr callback,
00049 CORBA::Short instance_number)
00050 ACE_THROW_SPEC ((
00051 ACSErrTypeCommon::BadParameterEx,
00052 acsdaemonErrType::ServiceAlreadyRunningEx
00053 )) {
00054
if (name !=
NULL && strlen(name) == 0) name =
NULL;
00055
ACS_SHORT_LOG ((LM_INFO,
"Starting '%s' Notification Service on Imp (instance %d).", name ==
NULL ?
"default" : name, instance_number));
00056
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
NOTIFICATION_SERVICE, instance_number);
00057 desc->
setName(name);
00058 context->
processRequest(
LOCAL,
START_SERVICE, desc, callback);
00059 }
00060
00061 void stop_notification_service (
00062
const char * name,
00063 acsdaemon::DaemonCallback_ptr callback,
00064 CORBA::Short instance_number)
00065 ACE_THROW_SPEC ((
00066 ACSErrTypeCommon::BadParameterEx,
00067 acsdaemonErrType::ServiceNotRunningEx
00068 )) {
00069
if (name !=
NULL && strlen(name) == 0) name =
NULL;
00070
ACS_SHORT_LOG ((LM_INFO,
"Stopping '%s' Notification Service on Imp (instance %d).", name ==
NULL ?
"default" : name, instance_number));
00071
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
NOTIFICATION_SERVICE, instance_number);
00072 desc->
setName(name);
00073 context->
processRequest(
LOCAL,
STOP_SERVICE, desc, callback);
00074 }
00075
00076 acsdaemon::ServiceState
get_service_status(
const char * name, CORBA::Short instance_number)
00077 ACE_THROW_SPEC ((
00078 ACSErrTypeCommon::BadParameterEx
00079 )) {
00080
return context->
getACSServiceState(instance_number, name);
00081 }
00082
00083 };
00084
00085
00086
00087
#endif