00001
#ifndef _ACS_LOGGING_SERVICE_IMP_HANDLER_IMPL_H_
00002
#define _ACS_LOGGING_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 ACSLoggingServiceImpHandlerImpl :
public ACSImpBaseHandlerImpl<ACSLoggingServiceImpHandlerImpl>,
public POA_acsdaemon::LoggingServiceImp {
00039
00040
public:
00041
00042 ACSLoggingServiceImpHandlerImpl() :
ACSImpBaseHandlerImpl<
ACSLoggingServiceImpHandlerImpl>(
LOGGING_SERVICE) {}
00043
00044
00045
00046 void start_logging_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 || strcmp(name,
"Log") == 0)) name =
NULL;
00055
ACS_SHORT_LOG ((LM_INFO,
"Starting '%s' Logging Service on Imp (instance %d).", name ==
NULL ?
"Log" : name, instance_number));
00056
if (name !=
NULL) {
00057
ACS_SHORT_LOG ((LM_WARNING,
"Name parameter of Logging Service startup is not supported!"));
00058 }
00059
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
LOGGING_SERVICE, instance_number);
00060
00061 context->
processRequest(
LOCAL,
START_SERVICE, desc, callback);
00062 }
00063
00064 void stop_logging_service (
00065
const char * name,
00066 acsdaemon::DaemonCallback_ptr callback,
00067 CORBA::Short instance_number)
00068 ACE_THROW_SPEC ((
00069 ACSErrTypeCommon::BadParameterEx,
00070 acsdaemonErrType::ServiceNotRunningEx
00071 )) {
00072
if (name !=
NULL && (strlen(name) == 0 || strcmp(name,
"Log") == 0)) name =
NULL;
00073
ACS_SHORT_LOG ((LM_INFO,
"Stopping '%s' Logging Service on Imp (instance %d).", name ==
NULL ?
"Log" : name, instance_number));
00074
if (name !=
NULL) {
00075
ACS_SHORT_LOG ((LM_WARNING,
"Name parameter of Logging Service shutdown is not supported!"));
00076 }
00077
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
LOGGING_SERVICE, instance_number);
00078
00079 context->
processRequest(
LOCAL,
STOP_SERVICE, desc, callback);
00080 }
00081
00082 acsdaemon::ServiceState
get_service_status(
const char * name, CORBA::Short instance_number)
00083 ACE_THROW_SPEC ((
00084 ACSErrTypeCommon::BadParameterEx
00085 )) {
00086
return context->
getACSServiceState(instance_number, name);
00087 }
00088
00089 };
00090
00091
00092
00093
#endif