server.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 260 行
CPP
260 行
// server.cpp,v 1.2 2003/11/10 21:58:23 dhinton Exp
#include "ace/Get_Opt.h"
#include "testS.h"
#include "tao/PortableServer/POA.h"
#include "ace/OS_NS_stdio.h"
ACE_RCSID (UNKNOWN_Exception, server, "server.cpp,v 1.2 2003/11/10 21:58:23 dhinton Exp")
const char *ior_output_file = "ior";
static int done = 0;
void
throw_exception (void)
{
throw 1;
}
class test_i :
public POA_test
{
public:
test_i (CORBA::ORB_ptr orb);
void normal_method (void)
ACE_THROW_SPEC ((CORBA::SystemException));
void unknown_exception_in_method (void)
ACE_THROW_SPEC ((CORBA::SystemException));
void unknown_exception_during_deactivation (void)
ACE_THROW_SPEC ((CORBA::SystemException));
void _add_ref (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
void _remove_ref (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS);
CORBA::ORB_var orb_;
int reference_count_;
};
test_i::test_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb)),
reference_count_ (1)
{
}
void
test_i::normal_method (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"test_i::normal_method() called\n"));
}
void
test_i::unknown_exception_in_method (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"test_i::unknown_exception_in_method() called\n"));
ACE_DEBUG ((LM_DEBUG,
"Unknown exception being generated: should be propagated to the client\n"));
throw_exception ();
}
void
test_i::unknown_exception_during_deactivation (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"test_i::unknown_exception_during_deactivation() called\n"));
PortableServer::POA_var poa =
this->_default_POA ();
PortableServer::ObjectId_var id =
poa->servant_to_id (this);
poa->deactivate_object (id.in ());
}
void
test_i::_add_ref (ACE_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
"test_i::_add_ref() called; current refcount = %d\n",
this->reference_count_++));
}
void
test_i::_remove_ref (ACE_ENV_SINGLE_ARG_DECL)
{
ACE_DEBUG ((LM_DEBUG,
"test_i::_remove_ref() called; current refcount = %d\n",
this->reference_count_--));
if (this->reference_count_ == 0)
{
delete this;
ACE_DEBUG ((LM_DEBUG,
"Unknown exception being generated: should be gobbled up by the POA\n"));
throw_exception ();
}
}
class test_factory_i :
public POA_test_factory,
public PortableServer::RefCountServantBase
{
public:
test_factory_i (CORBA::ORB_ptr orb);
test_ptr create_test (void)
ACE_THROW_SPEC ((CORBA::SystemException));
void shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException));
CORBA::ORB_var orb_;
};
test_factory_i::test_factory_i (CORBA::ORB_ptr orb)
: orb_ (CORBA::ORB::_duplicate (orb))
{
}
test_ptr
test_factory_i::create_test (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
test_i *servant =
new test_i (this->orb_.in ());
PortableServer::ServantBase_var safe_servant (servant);
ACE_UNUSED_ARG (safe_servant);
test_var test =
servant->_this ();
return test._retn ();
}
void
test_factory_i::shutdown (void)
ACE_THROW_SPEC ((CORBA::SystemException))
{
ACE_DEBUG ((LM_DEBUG,
"factory_i::shutdown() called\n"));
done = 1;
this->orb_->shutdown (0);
}
int
parse_args (int argc, char *argv[])
{
ACE_Get_Opt get_opts (argc, argv, "o:");
int c;
while ((c = get_opts ()) != -1)
switch (c)
{
case 'o':
ior_output_file = get_opts.opt_arg ();
break;
case '?':
default:
ACE_ERROR_RETURN ((LM_ERROR,
"\nusage %s:\n"
"\t-o <ior output file> [defaults to %s]\n"
"\n",
argv [0],
ior_output_file),
-1);
}
return 0;
}
int
main (int argc, char *argv[])
{
try
{
CORBA::ORB_var orb =
CORBA::ORB_init (argc,
argv,
"");
CORBA::Object_var poa_object =
orb->resolve_initial_references ("RootPOA");
PortableServer::POA_var root_poa =
PortableServer::POA::_narrow (poa_object.in ());
PortableServer::POAManager_var poa_manager =
root_poa->the_POAManager ();
if (parse_args (argc, argv) != 0)
return -1;
{
test_factory_i *servant =
new test_factory_i (orb.in ());
PortableServer::ServantBase_var safe_servant (servant);
ACE_UNUSED_ARG (safe_servant);
test_factory_var test_factory =
servant->_this ();
CORBA::String_var ior =
orb->object_to_string (test_factory.in ());
FILE *output_file = ACE_OS::fopen (ior_output_file, "w");
if (output_file == 0)
ACE_ERROR_RETURN ((LM_ERROR,
"Cannot open output file for writing IOR: %s",
ior_output_file),
-1);
ACE_OS::fprintf (output_file, "%s", ior.in ());
ACE_OS::fclose (output_file);
}
poa_manager->activate ();
TAO_POA *tao_poa =
root_poa->_tao_poa_downcast();
while (!done)
{
CORBA::ULong outstanding_requests =
tao_poa->outstanding_requests ();
ACE_DEBUG ((LM_DEBUG,
"Number of outstanding requests before ORB::perform_work(): %d\n",
outstanding_requests));
ACE_ASSERT (outstanding_requests == 0);
orb->perform_work ();
}
}
catch (...)
{
ACE_ERROR_RETURN ((LM_ERROR,
"Failure: Unexpected exception caught\n"),
-1);
}
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?