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

acsutilORBHelper.h

Go to the documentation of this file.
00001 #ifndef ACSUTIL_ORB_HELPER_H
00002 #define ACSUTIL_ORB_HELPER_H
00003 /*******************************************************************************
00004 *    ALMA - Atacama Large Millimiter Array
00005 *    (c) Associated Universities Inc., 2002 
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: acsutilORBHelper.h,v 1.2 2006/01/09 18:52:17 dfugate Exp $"
00025 *
00026 * who       when      what
00027 * --------  --------  ----------------------------------------------
00028 * david  20/09/02  created
00029 */
00030 
00031 #ifndef __cplusplus
00032 #error This is a C++ include file and cannot be used from plain C
00033 #endif
00034 
00039 #include <lokiSingleton.h>
00040 #include <ace/Thread_Manager.h>
00041 #include <tao/ORB.h>
00042     
00054 class ORBHelper
00055 {
00056   public:
00063     static CORBA::ORB_ptr 
00064     getORB();
00065 
00073     static bool 
00074     setORB(CORBA::ORB_ptr);
00075 
00079     static bool
00080     isORBSet();
00081     
00082   protected:
00086     typedef Loki::SingletonHolder<ORBHelper, 
00087                                   Loki::CreateUsingNew, 
00088                                   Loki::PhoenixSingleton, 
00089                                   Loki::SingleThreaded> ORBHelperSingleton;
00090 
00097     ORBHelper();
00098 
00103     ~ORBHelper();
00104 
00106   private:
00111     static void
00112     runOrbThread(void *pThis);
00113 
00117     static CORBA::ORB_ptr orb_mp;
00118     
00122     ACE_Thread_Manager *threadManager_mp;
00123 
00127     bool orbRunYet_m;
00128 
00132     void operator=(const ORBHelper&);
00133 
00137     ORBHelper(const ORBHelper&);
00138 
00143     friend ORBHelper* Loki::CreateUsingNew<ORBHelper>::Create();
00144 
00149     friend void Loki::CreateUsingNew<ORBHelper>::Destroy(ORBHelper*);
00150 };
00151 
00152 #endif

Generated on Mon Jul 4 2016 08:50:20 for ACS-2016.6 C++ API by  doxygen 1.7.0