00001
#ifndef _ACS_ACS_LOG_SERVICE_IMP_HANDLER_IMPL_H_
00002
#define _ACS_ACS_LOG_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 ACSLogServiceImpHandlerImpl :
public ACSImpBaseHandlerImpl<ACSLogServiceImpHandlerImpl>,
public POA_acsdaemon::ACSLogImp {
00039
00040
public:
00041
00042 ACSLogServiceImpHandlerImpl() :
ACSImpBaseHandlerImpl<
ACSLogServiceImpHandlerImpl>(
ACS_LOG_SERVICE) {}
00043
00044
00045
00046 void start_acs_log (
00047 acsdaemon::DaemonCallback_ptr callback,
00048 CORBA::Short instance_number)
00049 ACE_THROW_SPEC ((
00050 ACSErrTypeCommon::BadParameterEx,
00051 acsdaemonErrType::ServiceAlreadyRunningEx
00052 )) {
00053
ACS_SHORT_LOG ((LM_INFO,
"Starting ACS Log Service on Imp (instance %d).", instance_number));
00054
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
ACS_LOG_SERVICE, instance_number);
00055 context->
processRequest(
LOCAL,
START_SERVICE, desc, callback);
00056 }
00057
00058 void stop_acs_log (
00059 acsdaemon::DaemonCallback_ptr callback,
00060 CORBA::Short instance_number)
00061 ACE_THROW_SPEC ((
00062 ACSErrTypeCommon::BadParameterEx,
00063 acsdaemonErrType::ServiceNotRunningEx
00064 )) {
00065
ACS_SHORT_LOG ((LM_INFO,
"Stopping ACS Log Service on Imp (instance %d).", instance_number));
00066
ACSServiceRequestDescription *desc =
new ACSServiceRequestDescription(
ACS_LOG_SERVICE, instance_number);
00067 context->
processRequest(
LOCAL,
STOP_SERVICE, desc, callback);
00068 }
00069
00070 acsdaemon::ServiceState
get_service_status(CORBA::Short instance_number)
00071 ACE_THROW_SPEC ((
00072 ACSErrTypeCommon::BadParameterEx
00073 )) {
00074
return context->
getACSServiceState(instance_number);
00075 }
00076
00077 };
00078
00079
00080
00081
#endif