rootpoa.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 74 行
CPP
74 行
// RootPOA.cpp,v 1.14 2003/10/28 18:34:42 bala Exp
//========================================================================
//
// = LIBRARY
// TAO/tests/POA/RootPOA
//
//
// = FILENAME
// RootPOA.cpp
//
// = DESCRIPTION
// This program gets the name of the Root POA and prints it out on
// the standard output.
//
// = AUTHOR
// Irfan Pyarali
//
//=========================================================================
#include "tao/PortableServer/PortableServer.h"
#include "tao/ORB.h"
#include "ace/Log_Msg.h"
ACE_RCSID (RootPOA,
RootPOA,
"RootPOA.cpp,v 1.14 2003/10/28 18:34:42 bala Exp")
int
main (int argc, char **argv)
{
ACE_DECLARE_NEW_CORBA_ENV;
ACE_TRY
{
// Initilize the ORB
CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, 0 ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
// Resolve the initial references for the name RootPOA thus getting
// an object of type CORBA::Object.
CORBA::Object_var obj =
orb->resolve_initial_references ("RootPOA"
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
// apply _narrow on the object of type CORBA::Object, to make it
// a POA class Object.
PortableServer::POA_var root_poa =
PortableServer::POA::_narrow (obj.in () ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
// Get the name of the root POA.
CORBA::String_var poa_name =
root_poa->the_name (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
ACE_DEBUG ((LM_DEBUG,
"The RootPOA is : %s\n",
poa_name.in ()));
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
"Exception raised");
ACE_CHECK_RETURN (-1);
}
ACE_ENDTRY;
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?