• Classes
  • Modules
  • Namespaces
  • Files
  • Related Pages
  • File List
  • File Members

acsInterfaceRepositoryImpHandlerImpl.h

Go to the documentation of this file.
00001 #ifndef _ACS_INTERFACE_REPOSITORY_IMP_HANDLER_IMPL_H_
00002 #define _ACS_INTERFACE_REPOSITORY_IMP_HANDLER_IMPL_H_
00003 
00004 /*******************************************************************************
00005 *    ALMA - Atacama Large Millimiter Array
00006 *    (c) European Southern Observatory, 2002
00007 *    Copyright by ESO (in the framework of the ALMA collaboration)
00008 *    and Cosylab 2002, All rights reserved
00009 *
00010 *    This library is free software; you can redistribute it and/or
00011 *    modify it under the terms of the GNU Lesser General Public
00012 *    License as published by the Free Software Foundation; either
00013 *    version 2.1 of the License, or (at your option) any later version.
00014 *
00015 *    This library is distributed in the hope that it will be useful,
00016 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00017 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018 *    Lesser General Public License for more details.
00019 *
00020 *    You should have received a copy of the GNU Lesser General Public
00021 *    License along with this library; if not, write to the Free Software
00022 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
00023 *
00024 * "@(#) $Id: acsInterfaceRepositoryImpHandlerImpl.h,v 1.1 2008/10/27 21:11:23 msekoran Exp $"
00025 *
00026 * who       when      what
00027 * --------  --------  ----------------------------------------------
00028 * azagar   2008-09-30 created
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 ACSInterfaceRepositoryImpHandlerImpl : public ACSImpBaseHandlerImpl<ACSInterfaceRepositoryImpHandlerImpl>, public POA_acsdaemon::InterfaceRepositoryImp {
00039 
00040 public:
00041 
00042     ACSInterfaceRepositoryImpHandlerImpl() : ACSImpBaseHandlerImpl<ACSInterfaceRepositoryImpHandlerImpl>(INTERFACE_REPOSITORY) {}
00043     
00044     /*************************** CORBA interface *****************************/
00045 
00046     void start_interface_repository (
00047         CORBA::Boolean load,
00048         CORBA::Boolean wait_load,
00049         acsdaemon::DaemonCallback_ptr callback,
00050         CORBA::Short instance_number) throw(ACSErrTypeCommon::BadParameterEx,acsdaemonErrType::ServiceAlreadyRunningEx) {
00051         ACS_SHORT_LOG ((LM_INFO, "Starting Interface Repository on Imp (instance %d).", instance_number));
00052         ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(INTERFACE_REPOSITORY, instance_number);
00053         desc->setLoadIR(load);
00054         desc->setWaitLoadIR(wait_load);
00055         context->processRequest(LOCAL, START_SERVICE, desc, callback);
00056     }
00057 
00058     void stop_interface_repository (
00059         acsdaemon::DaemonCallback_ptr callback,
00060         CORBA::Short instance_number) throw(ACSErrTypeCommon::BadParameterEx, acsdaemonErrType::ServiceNotRunningEx) {
00061         ACS_SHORT_LOG ((LM_INFO, "Stopping Interface Repository on Imp (instance %d).", instance_number));
00062         ACSServiceRequestDescription *desc = new ACSServiceRequestDescription(INTERFACE_REPOSITORY, instance_number);
00063         context->processRequest(LOCAL, STOP_SERVICE, desc, callback);
00064     }
00065 
00066     acsdaemon::ServiceState get_service_status(CORBA::Short instance_number) throw( ACSErrTypeCommon::BadParameterEx) {
00067         return context->getACSServiceState(instance_number);
00068     }
00069 
00070 };
00071 
00072 
00073 
00074 #endif

Generated on Mon May 4 2015 08:27:41 for ACS-2015.4 C++ API by  doxygen 1.7.0