⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 initrefs.h

📁 编译工具
💻 H
字号:
// -*- Mode: C++; -*-//                            Package   : omniORB2// initRefs.h                 Created on: 20/08/98//                            Author    : Sai-Lai Lo////    Copyright (C) 1996-2000 AT&T Laboratories Cambridge////    This file is part of the omniORB library////    The omniORB library is free software; you can redistribute it and/or//    modify it under the terms of the GNU Library General Public//    License as published by the Free Software Foundation; either//    version 2 of the License, or (at your option) any later version.////    This library is distributed in the hope that it will be useful,//    but WITHOUT ANY WARRANTY; without even the implied warranty of//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU//    Library General Public License for more details.////    You should have received a copy of the GNU Library General Public//    License along with this library; if not, write to the Free//    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  //    02111-1307, USA////// Description://	*** PROPRIETARY INTERFACE ***//	/*  $Log: initRefs.h,v $  Revision 1.1.4.4  2001/11/13 14:11:44  dpg1  Tweaks for CORBA 2.5 compliance.  Revision 1.1.4.3  2001/10/17 16:44:05  dpg1  Update DynAny to CORBA 2.5 spec, const Any exception extraction.  Revision 1.1.4.2  2001/05/29 17:03:49  dpg1  In process identity.  Revision 1.1.4.1  2001/04/18 17:18:16  sll  Big checkin with the brand new internal APIs.  These files were relocated and scoped with the omni namespace.  Revision 1.2.2.2  2000/09/27 17:38:58  sll  Updated include/omniORB3 to include/omniORB4  Revision 1.2.2.1  2000/07/17 10:35:39  sll  Merged from omni3_develop the diff between omni3_0_0_pre3 and omni3_0_0.  Revision 1.3  2000/07/13 15:26:03  dpg1  Merge from omni3_develop for 3.0 release.  Revision 1.1.2.2  2000/06/27 15:33:53  sll  Changed #include to match the new location of the stubs.  Revision 1.1.2.1  2000/04/27 10:39:18  dpg1  Interoperable Naming Service  Moved from bootstrap_i.h, and extended.  Revision 1.4.6.2  1999/09/27 08:48:31  djr  Minor corrections to get rid of warnings.  Revision 1.4.6.1  1999/09/22 14:26:24  djr  Major rewrite of orbcore to support POA.  Revision 1.4  1999/05/25 18:10:46  sll  Now CORBA::ORB::ObjectIdList and CORBA_InitialReference::ObjIdList  are different types.  Revision 1.3  1999/03/11 16:25:51  djr  Updated copyright notice  Revision 1.2  1998/08/25 18:52:09  sll  Added dummy marshalling functions in serviceRecord to make gcc-2.7.2 happy.  Revision 1.1  1998/08/21 19:28:15  sll  Initial revision*/#ifndef __INITREFS_H__#define __INITREFS_H__#include <omniORB4/bootstrap.hh>OMNI_NAMESPACE_BEGIN(omni)class CORBA_InitialReferences_i;class omniInitialReferences {public:  static CORBA::Boolean setFromFile(const char* identifier, const char* uri);  static CORBA::Boolean setFromArgs(const char* identifier, const char* uri);  // Set initial references from the configuration file and the  // command line arguments respectively. Return true if the uri looks  // syntactically valid, false if it is definitely invalid.  static void setFromORB(const char* identifier, CORBA::Object_ptr obj);  // Implementation of CORBA 2.5 ORB::register_initial_reference().  static void setDefaultInitRefFromFile(const char* defInit);  static void setDefaultInitRefFromArgs(const char* defInit);  // Default string set by -ORBDefaultInitRef  static CORBA::Object_ptr resolve(const char*  identifier,				   unsigned int cycles = 0);  // Real implementation of ORB::resolve_initial_references(). cycles  // is used to count recursive calls within stringToObject, and bail  // out if we loop too much. Responsible for returning pseudo objects  // (like "RootPOA") as well as normal CORBA objects.  static CORBA::ORB::ObjectIdList* list();  // Real implementation of ORB::list_initial_services().  typedef CORBA::Object_ptr (*pseudoObj_fn)();  static void registerPseudoObjFn(const char* identifier, pseudoObj_fn fn);  // Function to register a pseudo object. If resolve() is called with  // the given identifier, the function is called. The registered  // function must return a suitable pseudo object when called, and  // must be thread safe. The identifier string must exist for the  // lifetime of the initRefs module.  //  This function is NOT thread safe.  // Deprecated INIT bootagent functions:  static void remFromFile(const char* identifier);  // Remove the specified identifier from the file list. Used to  // remove NameService and InterfaceRepository if -ORBInitialHost is  // given on the command line.  static void remFromArgs(const char* identifier);  // Not used, just here for symmetry  static void initialise_bootstrap_agentImpl();  static int invoke_bootstrap_agentImpl(omniCallHandle&);  // Returns 0 if there is no bootstrap agent.  May throw  // the usual exceptions for an object invocation...  static int is_bootstrap_agentImpl_initialised();  // Returns true if a boostrap agent exists.  static void initialise_bootstrap_agent(const char* host, CORBA::UShort port);};OMNI_NAMESPACE_END(omni)#endif  

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -