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

📄 omniorb.cc

📁 编译工具
💻 CC
字号:
// -*- Mode: C++; -*-//                            Package   : omniORB// omniORB.cc                 Created on: 15/6/99//                            Author    : David Riddoch (djr)////    Copyright (C) 1996-1999 AT&T Research 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:///*  $Log: omniORB.cc,v $  Revision 1.2.2.15  2005/03/14 13:38:24  dgrisby  Add omniORB::versionString() and versionHex() functions.  Revision 1.2.2.14  2004/05/05 14:03:20  dgrisby  Raise INV_OBJREF if setClientCallTimeout is given a nil objref.  Revision 1.2.2.13  2003/01/16 11:08:26  dgrisby  Patches to support Digital Mars C++. Thanks Christof Meerwald.  Revision 1.2.2.12  2002/10/14 20:07:11  dgrisby  Per objref / per thread timeouts.  Revision 1.2.2.11  2001/09/12 19:42:36  sll  Added back function to report max. GIOP message size.  Revision 1.2.2.10  2001/08/22 13:31:31  dpg1  Christof's fixes for gcc 3.0.1.  Revision 1.2.2.9  2001/08/17 17:12:40  sll  Modularise ORB configuration parameters.  Revision 1.2.2.8  2001/08/08 15:57:12  sll  New options unixTransportDirectory & unixTransportPermission.  Revision 1.2.2.7  2001/08/03 17:41:23  sll  System exception minor code overhaul. When a system exeception is raised,  a meaning minor code is provided.  Revision 1.2.2.6  2001/08/01 10:08:22  dpg1  Main thread policy.  Revision 1.2.2.5  2001/07/31 16:10:38  sll  Added GIOP BiDir support.  Revision 1.2.2.4  2001/07/13 15:30:12  sll  New configuration variables.  Revision 1.2.2.3  2001/06/07 16:24:10  dpg1  PortableServer::Current support.  Revision 1.2.2.2  2000/09/27 17:57:05  sll  Changed include/omniORB3 to include/omniORB4  Revision 1.2.2.1  2000/07/17 10:35:56  sll  Merged from omni3_develop the diff between omni3_0_0_pre3 and omni3_0_0.  Revision 1.3  2000/07/13 15:25:56  dpg1  Merge from omni3_develop for 3.0 release.  Revision 1.1.2.5  2000/06/22 10:40:16  dpg1  exception.h renamed to exceptiondefs.h to avoid name clash on some  platforms.  Revision 1.1.2.4  1999/10/14 16:22:13  djr  Implemented logging when system exceptions are thrown.  Revision 1.1.2.3  1999/09/30 12:25:59  djr  Minor changes.  Revision 1.1.2.2  1999/09/24 17:11:13  djr  New option -ORBtraceInvocations and omniORB::traceInvocations.  Revision 1.1.2.1  1999/09/22 14:26:58  djr  Major rewrite of orbcore to support POA.*/#include <stdlib.h>#include <omniORB4/CORBA.h>#include <orbParameters.h>#include <omniCurrent.h>#ifdef HAS_pch#pragma hdrstop#endif#include <exceptiondefs.h>OMNI_USING_NAMESPACE(omni)///////////////////////////////////////////////////////////////////////////////////////////// omniORB::version... ////////////////////////////////////////////////////////////////////////////////////////////////const char*omniORB::versionString(){  return OMNIORB_VERSION_STRING;}_CORBA_ULongomniORB::versionHex(){  return OMNIORB_VERSION_HEX;}///////////////////////////////////////////////////////////////////////////////////////////// omniORB::fatalException ////////////////////////////////////////////////////////////////////////////////////////////omniORB::fatalException::fatalException(const char* file, int line,					const char* errmsg)  : pd_file(file), pd_line(line), pd_errmsg(errmsg){  if( orbParameters::abortOnInternalError )  abort();}////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////voidomniORB::setMainThread(){  omni_thread* self = omni_thread::self();  if (!self)    OMNIORB_THROW(INITIALIZE, INITIALIZE_NotOmniThread, CORBA::COMPLETED_NO);  omni::mainThreadId = self->id();}////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////voidomniORB::setClientCallTimeout(CORBA::ULong v){  orbParameters::clientCallTimeOutPeriod.secs = v / 1000;  orbParameters::clientCallTimeOutPeriod.nanosecs = (v % 1000) * 1000000;}voidomniORB::setClientCallTimeout(CORBA::Object_ptr obj, CORBA::ULong v){  omniObjRef* oo = obj->_PR_getobj();  if (!oo)    OMNIORB_THROW(INV_OBJREF, INV_OBJREF_InvokeOnNilObjRef,		  CORBA::COMPLETED_NO);  oo->_setTimeout(v / 1000, (v % 1000) * 1000000);}voidomniORB::setClientThreadCallTimeout(CORBA::ULong v){  omniCurrent* current = omniCurrent::get();  if (!current)    OMNIORB_THROW(INITIALIZE, INITIALIZE_NotOmniThread, CORBA::COMPLETED_NO);  current->setTimeout(v / 1000, (v % 1000) * 1000000);}voidomniORB::setClientThreadCallDeadline(unsigned long secs, unsigned long ns){  omniCurrent* current = omniCurrent::get();  if (!current)    OMNIORB_THROW(INITIALIZE, INITIALIZE_NotOmniThread, CORBA::COMPLETED_NO);  current->setDeadline(secs, ns);}////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////CORBA::ULongomniORB::giopMaxMsgSize() {  return orbParameters::giopMaxMsgSize;}#if defined(__DMC__) && defined(_WINDLL)BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved){  return TRUE;}#endif

⌨️ 快捷键说明

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