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

📄 gioprendezvouser.cc

📁 编译工具
💻 CC
字号:
// -*- Mode: C++; -*-//                            Package   : omniORB// giopRendezvouser.cc        Created on: 20 Dec 2000//                            Author    : Sai Lai Lo (sll)////    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://	*** PROPRIETORY INTERFACE ***// /*  $Log: giopRendezvouser.cc,v $  Revision 1.1.4.7  2005/11/04 14:26:02  dgrisby  Open connections would prevent shutdown on Windows.  Revision 1.1.4.6  2002/09/09 22:11:50  dgrisby  SSL transport cleanup even if certificates are wrong.  Revision 1.1.4.5  2002/08/21 06:23:15  dgrisby  Properly clean up bidir connections and ropes. Other small tweaks.  Revision 1.1.4.4  2002/03/13 16:05:39  dpg1  Transport shutdown fixes. Reference count SocketCollections to avoid  connections using them after they are deleted. Properly close  connections when in thread pool mode.  Revision 1.1.4.3  2001/07/13 15:26:18  sll  notifyReadable now really tells the server a connection is ready to be  read. Use AcceptAndMonitor instead of Accept.  Revision 1.1.4.2  2001/06/20 18:35:18  sll  Upper case send,recv,connect,shutdown to avoid silly substutition by  macros defined in socket.h to rename these socket functions  to something else.  Revision 1.1.4.1  2001/04/18 18:10:50  sll  Big checkin with the brand new internal APIs.*/#include <omniORB4/CORBA.h>#include <invoker.h>#include <giopServer.h>#include <giopRendezvouser.h>OMNI_NAMESPACE_BEGIN(omni)voidgiopRendezvouser::notifyReadable(void* this_,giopConnection* conn) {  giopRendezvouser* r = (giopRendezvouser*)this_;  r->pd_server->notifyRzReadable(conn);}voidgiopRendezvouser::execute(){  if (omniORB::trace(25)) {    omniORB::logger l;    l << "giopRendezvouser task execute for "      << pd_endpoint->address() << "\n";  }  CORBA::Boolean exit_on_error;  do {    exit_on_error = 0;    giopConnection* newconn = 0;    try {      newconn = pd_endpoint->AcceptAndMonitor(notifyReadable,this);      if (newconn) {	pd_server->notifyRzNewConnection(this,newconn);      }      else {	exit_on_error = 1;	break;      }    }    catch(const giopServer::outOfResource&) {      // giopServer has consumed the connection.    }    catch(const giopServer::Terminate&) {      newconn->decrRefCount(1);      break;    }    catch(...) {      // Catch all unexpected error conditions. Reach here means that we      // should not continue!      if( omniORB::trace(1) ) {	omniORB::logger l;	l << "Unexpected exception caught by giopRendezvouser\n";      }      if (newconn) {	newconn->decrRefCount(1);      }      exit_on_error = 1;      break;    }  } while(!pd_singleshot);  pd_server->notifyRzDone(this,exit_on_error);}voidgiopRendezvouser::terminate() {  if (omniORB::trace(25)) {    omniORB::logger l;    l << "giopRendezvouser for " << pd_endpoint->address()      << " terminate...\n";  }  pd_endpoint->Poke();}OMNI_NAMESPACE_END(omni)

⌨️ 快捷键说明

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