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

📄 current.cc

📁 编译工具
💻 CC
字号:
// -*- Mode: C++; -*-//                            Package   : omniORB// current.cc                 Created on: 22 Nov 2000//                            Author    : Sai-Lai Lo////    Copyright (C) 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://#include <omnithread.h>#include <omniORB4/CORBA.h>#include <omniORB4/omniInternal.h>#include <omniORB4/objTracker.h>#include <omniCurrent.h>#include <poaimpl.h>#include <poacurrentimpl.h>#include <initialiser.h>#include <objectTable.h>#include <exceptiondefs.h>#include <orbOptions.h>#include <initRefs.h>OMNI_USING_NAMESPACE(omni)//////////////////////////////////////////////////////////////////////////////             Configuration options                                      //////////////////////////////////////////////////////////////////////////////CORBA::Boolean orbParameters::supportCurrent      = 1;//  If the value of this variable is TRUE, per-thread information is//  made available through the Current interfaces, e.g.//  PortableServer::Current. If you do not need this information, you//  can set the value to 0, resulting in a small performance//  improvement.///////////////////////////////////////////////////////////////////////////////            CORBA::Current                                               ///////////////////////////////////////////////////////////////////////////////CORBA::Current::Current(int nil) {  if (nil)    _PR_setobj((omniObjRef*)0);  else    _PR_setobj((omniObjRef*)1);}CORBA::Current::~Current() {}CORBA::Current_ptrCORBA::Current::_duplicate(CORBA::Current_ptr obj){  if( !CORBA::is_nil(obj) )  obj->_NP_incrRefCount();  return obj;}CORBA::Current_ptrCORBA::Current::_narrow(CORBA::Object_ptr obj){  if( CORBA::is_nil(obj) || !obj->_NP_is_pseudo() )  return _nil();  Current_ptr p = (Current_ptr) obj->_ptrToObjRef(_PD_repoId);  if( p )  p->_NP_incrRefCount();  return p ? p : _nil();}class omniNilCurrent : public CORBA::Current {public:  omniNilCurrent() : CORBA::Current(1) {}  ~omniNilCurrent() {}};CORBA::Current_ptrCORBA::Current::_nil(){  static omniNilCurrent* _the_nil_ptr = 0;  if( !_the_nil_ptr ) {    omni::nilRefLock().lock();    if( !_the_nil_ptr ) {      _the_nil_ptr = new omniNilCurrent();      registerNilCorbaObject(_the_nil_ptr);    }    omni::nilRefLock().unlock();  }  return _the_nil_ptr;}const char*CORBA::Current::_PD_repoId = "IDL:omg.org/CORBA/Current:1.0";///////////////////////////////////////////////////////////////////////////////            omniCurrent                                                  ///////////////////////////////////////////////////////////////////////////////omni_thread::key_t omniCurrent::thread_key = 0;// DEC CXX needs the zero initialiser for some reasonvoidomniCurrent::init(){  static CORBA::Boolean done = 0;  if (!done) {    thread_key = omni_thread::allocate_key();    done = 1;  }}omniCurrent::omniCurrent(omni_thread* thread)  : pd_callDescriptor(0),    pd_timeout_secs(0), pd_timeout_nanosecs(0), pd_timeout_absolute(0){  thread->set_value(thread_key, this);}omniCurrent::~omniCurrent(){  OMNIORB_ASSERT(!pd_callDescriptor);}///////////////////////////////////////////////////////////////////////////////            PortableServer::Current                                      ///////////////////////////////////////////////////////////////////////////////static omniOrbPOACurrent* thePOACurrent = 0;PortableServer::Current_ptromniOrbPOACurrent::theCurrent(){  omni_tracedmutex_lock l(*omni::poRcLock);  if (!thePOACurrent) {    thePOACurrent = new omniOrbPOACurrent;    return thePOACurrent;  }  thePOACurrent->pd_refCount++;  return thePOACurrent;}PortableServer::Current::~Current() {}PortableServer::Current_ptrPortableServer::Current::_duplicate(PortableServer::Current_ptr obj){  if( !CORBA::is_nil(obj) )  obj->_NP_incrRefCount();  return obj;}PortableServer::Current_ptrPortableServer::Current::_narrow(CORBA::Object_ptr obj){  if( CORBA::is_nil(obj) || !obj->_NP_is_pseudo() )  return _nil();  Current_ptr p = (Current_ptr) obj->_ptrToObjRef(_PD_repoId);  if( p )  p->_NP_incrRefCount();  return p ? p : _nil();}PortableServer::Current_ptrPortableServer::Current::_nil(){  static omniOrbPOACurrent* _the_nil_ptr = 0;  if( !_the_nil_ptr ) {    omni::nilRefLock().lock();    if( !_the_nil_ptr ) {      _the_nil_ptr = new omniOrbPOACurrent(1);      registerNilCorbaObject(_the_nil_ptr);    }    omni::nilRefLock().unlock();  }  return _the_nil_ptr;}const char*PortableServer::Current::_PD_repoId = "IDL:omg.org/PortableServer/POACurrent" PS_VERSION;OMNIORB_DEFINE_USER_EX_WITHOUT_MEMBERS(PortableServer::Current,				       NoContext,        "IDL:omg.org/PortableServer/Current/NoContext" PS_VERSION)////////////////////////////// Override CORBA::Object //////////////////////////////void*omniOrbPOACurrent::_ptrToObjRef(const char* repoId){  OMNIORB_ASSERT(repoId);  if( omni::ptrStrMatch(repoId, PortableServer::Current::_PD_repoId) )    return (PortableServer::Current_ptr) this;  if( omni::ptrStrMatch(repoId, CORBA::Object::_PD_repoId) )    return (CORBA::Object_ptr) this;  return 0;}voidomniOrbPOACurrent::_NP_incrRefCount(){  omni::poRcLock->lock();  pd_refCount++;  omni::poRcLock->unlock();}voidomniOrbPOACurrent::_NP_decrRefCount(){  omni::poRcLock->lock();  int dead = --pd_refCount == 0;  if (dead) thePOACurrent = 0;  omni::poRcLock->unlock();  if( !dead )  return;  delete this;}omniOrbPOACurrent::~omniOrbPOACurrent(){}static omniCallDescriptor* getCallDesc(const char* op){  omniCurrent* current = omniCurrent::get();  if (current) {    omniCallDescriptor* call_desc = current->callDescriptor();    if (call_desc)      return call_desc;  }  if (omniORB::trace(10)) {    omniORB::logger l;    l << "PortableServer::Current::" << op << "() throws NoContext\n";  }  throw PortableServer::Current::NoContext();  return 0; // For paranoid compilers}      PortableServer::POA_ptromniOrbPOACurrent::get_POA(){  omniCallDescriptor* call_desc = getCallDesc("get_POA");  OMNIORB_ASSERT(call_desc->poa());  return PortableServer::POA::_duplicate(call_desc->poa());}PortableServer::ObjectId*omniOrbPOACurrent::get_object_id(){  omniCallDescriptor* call_desc = getCallDesc("get_object_id");  OMNIORB_ASSERT(call_desc->poa());  OMNIORB_ASSERT(call_desc->localId());  return call_desc->poa()->localId_to_ObjectId(call_desc->localId());}CORBA::Object_ptromniOrbPOACurrent::get_reference(){  omniCallDescriptor* call_desc = getCallDesc("get_reference");  omniObjRef* objref = real_get_reference(call_desc);  return (CORBA::Object_ptr) objref->_ptrToObjRef(CORBA::Object::_PD_repoId);}omniObjRef*omniOrbPOACurrent::real_get_reference(omniCallDescriptor* call_desc){  if (call_desc->objref()) {    omni::duplicateObjRef(call_desc->objref());    return call_desc->objref();  }  omniLocalIdentity* id = call_desc->localId();  OMNIORB_ASSERT(id);  OMNIORB_ASSERT(id->servant());  omni::internalLock->lock();  omniObjTableEntry* entry = omniObjTableEntry::downcast(id);  omniObjRef* objref;  if (entry) {    objref = omni::createLocalObjRef(id->servant()->_mostDerivedRepoId(),				     CORBA::Object::_PD_repoId,				     entry);  }  else {    objref = omni::createLocalObjRef(id->servant()->_mostDerivedRepoId(),				     CORBA::Object::_PD_repoId,				     id->key(), id->keysize());  }  omni::internalLock->unlock();  OMNIORB_ASSERT(objref);  return objref;}PortableServer::ServantomniOrbPOACurrent::get_servant(){  omniCallDescriptor* call_desc = getCallDesc("get_servant");  return real_get_servant(call_desc);}#define DOWNCAST(s)  ((PortableServer::Servant) (s)->_downcast())PortableServer::ServantomniOrbPOACurrent::real_get_servant(omniCallDescriptor* call_desc){  OMNIORB_ASSERT(call_desc->localId());  PortableServer::Servant servant = DOWNCAST(call_desc->localId()->servant());  OMNIORB_ASSERT(servant);  servant->_add_ref();  return servant;}///////////////////////////////////////////////////////////////////////////////            Handlers for Configuration Options                           ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////class supportCurrentHandler : public orbOptions::Handler {public:  supportCurrentHandler() :     orbOptions::Handler("supportCurrent",			"supportCurrent = 0 or 1",			1,			"-ORBsupportCurrent < 0 | 1 >") {}  void visit(const char* value,orbOptions::Source) throw (orbOptions::BadParam) {    CORBA::Boolean v;    if (!orbOptions::getBoolean(value,v)) {      throw orbOptions::BadParam(key(),value,				 orbOptions::expect_boolean_msg);    }    orbParameters::supportCurrent = v;  }  void dump(orbOptions::sequenceString& result) {    orbOptions::addKVBoolean(key(),orbParameters::supportCurrent,			     result);  }};static supportCurrentHandler supportCurrentHandler_;///////////////////////////////////////////////////////////////////////////////            Module initialiser                                           ///////////////////////////////////////////////////////////////////////////////OMNI_NAMESPACE_BEGIN(omni)static CORBA::Object_ptr resolvePOACurrentFn() {  return omniOrbPOACurrent::theCurrent();}class omni_omniCurrent_initialiser : public omniInitialiser {public:  omni_omniCurrent_initialiser() {    orbOptions::singleton().registerHandler(supportCurrentHandler_);    omniInitialReferences::registerPseudoObjFn("POACurrent",					       resolvePOACurrentFn);  }  void attach() {    omniCurrent::init();  }  void detach() {  }};static omni_omniCurrent_initialiser initialiser;omniInitialiser& omni_omniCurrent_initialiser_ = initialiser;OMNI_NAMESPACE_END(omni)

⌨️ 快捷键说明

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