Go to the documentation of this file.00001 #ifndef _ACS_MANAGER_IMP_HANDLER_IMPL_H_
00002 #define _ACS_MANAGER_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 ACSManagerImpHandlerImpl : public ACSImpBaseHandlerImpl<ACSManagerImpHandlerImpl>, public POA_acsdaemon::ManagerImp {
00039
00040 public:
00041
00042 ACSManagerImpHandlerImpl() : ACSImpBaseHandlerImpl<ACSManagerImpHandlerImpl>(MANAGER) {}
00043
00044
00045
00046 void start_manager (
00047 const char * domain,
00048 acsdaemon::DaemonCallback_ptr callback,
00049 CORBA::Short instance_number,
00050 CORBA::Boolean recovery)
00051 ACE_THROW_SPEC ((
00052 ACSErrTypeCommon::BadParameterEx,
00053 acsdaemonErrType::ServiceAlreadyRunningEx
00054 )) {
00055 if (domain != NULL && strlen(domain) == 0) domain = NULL;
00056 ACS_SHORT_LOG ((LM_INFO, "Starting Manager on Imp (instance %d).", instance_number));
00057 if (domain != NULL) {
00058 ACS_SHORT_LOG ((LM_WARNING, "Domain parameter of Manager startup is not supported!"));
00059 }
00060 ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(MANAGER, instance_number);
00061
00062 desc->setRecovery(recovery);
00063 context->processRequest(LOCAL, START_SERVICE, desc, callback);
00064 }
00065
00066 void stop_manager (
00067 const char * domain,
00068 acsdaemon::DaemonCallback_ptr callback,
00069 CORBA::Short instance_number)
00070 ACE_THROW_SPEC ((
00071 ACSErrTypeCommon::BadParameterEx,
00072 acsdaemonErrType::ServiceNotRunningEx
00073 )) {
00074 if (domain != NULL && strlen(domain) == 0) domain = NULL;
00075 ACS_SHORT_LOG ((LM_INFO, "Stopping Manager on Imp (instance %d).", instance_number));
00076 if (domain != NULL) {
00077 ACS_SHORT_LOG ((LM_WARNING, "Domain parameter of Manager shutdown is not supported!"));
00078 }
00079 ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(MANAGER, instance_number);
00080
00081 context->processRequest(LOCAL, STOP_SERVICE, desc, callback);
00082 }
00083
00084 acsdaemon::ServiceState get_service_status(CORBA::Short instance_number)
00085 ACE_THROW_SPEC ((
00086 ACSErrTypeCommon::BadParameterEx
00087 )) {
00088 return context->getACSServiceState(instance_number);
00089 }
00090
00091 };
00092
00093
00094
00095 #endif