Go to the documentation of this file.00001 #ifndef _ACS_CONFIGURATION_DATABASE_IMP_HANDLER_IMPL_H_
00002 #define _ACS_CONFIGURATION_DATABASE_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 ACSConfigurationDatabaseImpHandlerImpl : public ACSImpBaseHandlerImpl<ACSConfigurationDatabaseImpHandlerImpl>, public POA_acsdaemon::CDBImp {
00039
00040 public:
00041
00042 ACSConfigurationDatabaseImpHandlerImpl() : ACSImpBaseHandlerImpl<ACSConfigurationDatabaseImpHandlerImpl>(CDB) {}
00043
00044
00045
00046 void start_xml_cdb (
00047 acsdaemon::DaemonCallback_ptr callback,
00048 CORBA::Short instance_number,
00049 CORBA::Boolean recovery,
00050 const char * cdb_xml_dir
00051 ) throw (ACSErrTypeCommon::BadParameterEx, acsdaemonErrType::ServiceAlreadyRunningEx)
00052 {
00053 if (cdb_xml_dir != NULL && strlen(cdb_xml_dir) == 0) cdb_xml_dir = NULL;
00054 ACS_SHORT_LOG ((LM_INFO, "Starting Configuration Database on Imp (instance %d).", instance_number));
00055 ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(CDB, instance_number);
00056 desc->setRecovery(recovery);
00057 desc->setCdbXMLDir(cdb_xml_dir);
00058 context->processRequest(LOCAL, START_SERVICE, desc, callback);
00059 }
00060
00061 void start_rdb_cdb (
00062 acsdaemon::DaemonCallback_ptr callback,
00063 CORBA::Short instance_number,
00064 CORBA::Boolean recovery,
00065 const char * config_name
00066 )
00067 throw (
00068 ACSErrTypeCommon::BadParameterEx,
00069 acsdaemonErrType::ServiceAlreadyRunningEx
00070 )
00071 {
00072 if (config_name != NULL && strlen(config_name) == 0) config_name = NULL;
00073 ACS_SHORT_LOG ((LM_INFO, "Starting RDB Configuration Database on Imp (instance %d).", instance_number));
00074 ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(RDB_CDB, instance_number);
00075 desc->setRecovery(recovery);
00076 desc->setCdbXMLDir(config_name);
00077 context->processRequest(LOCAL, START_SERVICE, desc, callback);
00078 }
00079
00080 void stop_cdb (
00081 acsdaemon::DaemonCallback_ptr callback,
00082 CORBA::Short instance_number
00083 )
00084 throw(
00085 ACSErrTypeCommon::BadParameterEx,
00086 acsdaemonErrType::ServiceNotRunningEx
00087 )
00088 {
00089 ACS_SHORT_LOG ((LM_INFO, "Stopping Configuration Database on Imp (instance %d).", instance_number));
00090 ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(CDB, instance_number);
00091 context->processRequest(LOCAL, STOP_SERVICE, desc, callback);
00092 }
00093
00094 acsdaemon::ServiceState get_service_status(CORBA::Short instance_number)
00095 throw(
00096 ACSErrTypeCommon::BadParameterEx
00097 ) {
00098 return context->getACSServiceState(instance_number);
00099 }
00100
00101 };
00102
00103
00104
00105 #endif