fixed_struct.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 240 行
CPP
240 行
// fixed_struct.cpp,v 1.18 2003/08/14 22:45:36 parsons Exp
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = FILENAME
// fixed_struct.cpp
//
// = DESCRIPTION
// tests fixed sized structs
//
// = AUTHORS
// Aniruddha Gokhale
//
// ============================================================================
#include "helper.h"
#include "fixed_struct.h"
ACE_RCSID (Param_Test,
fixed_struct,
"fixed_struct.cpp,v 1.18 2003/08/14 22:45:36 parsons Exp")
// ************************************************************************
// Test_Fixed_Struct
// ************************************************************************
Test_Fixed_Struct::Test_Fixed_Struct (void)
: opname_ (CORBA::string_dup ("test_fixed_struct"))
{
}
Test_Fixed_Struct::~Test_Fixed_Struct (void)
{
CORBA::string_free (this->opname_);
this->opname_ = 0;
}
const char *
Test_Fixed_Struct::opname (void) const
{
return this->opname_;
}
void
Test_Fixed_Struct::dii_req_invoke (CORBA::Request *req
ACE_ENV_ARG_DECL)
{
req->add_in_arg ("s1") <<= this->in_;
req->add_inout_arg ("s2") <<= this->inout_;
req->add_out_arg ("s3") <<= this->out_;
req->set_return_type (Param_Test::_tc_Fixed_Struct);
req->invoke (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
Param_Test::Fixed_Struct *tmp;
req->return_value () >>= tmp;
this->ret_ = *tmp;
CORBA::NamedValue_ptr arg2 =
req->arguments ()->item (1 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
*arg2->value () >>= tmp;
this->inout_ = *tmp;
CORBA::NamedValue_ptr arg3 =
req->arguments ()->item (2 ACE_ENV_ARG_PARAMETER);
ACE_CHECK;
*arg3->value () >>= tmp;
this->out_ = *tmp;
}
int
Test_Fixed_Struct::init_parameters (Param_Test_ptr /*objref*/
ACE_ENV_ARG_DECL_NOT_USED/*env*/)
{
Generator *gen = GENERATOR::instance (); // value generator
//ACE_UNUSED_ARG (objref);
this->in_ = gen->gen_fixed_struct ();
ACE_OS::memset (&this->inout_,
0,
sizeof (Param_Test::Fixed_Struct));
return 0;
}
int
Test_Fixed_Struct::reset_parameters (void)
{
ACE_OS::memset (&this->inout_,
0,
sizeof (Param_Test::Fixed_Struct));
ACE_OS::memset (&this->out_,
0,
sizeof (Param_Test::Fixed_Struct));
ACE_OS::memset (&this->ret_,
0,
sizeof (Param_Test::Fixed_Struct));
return 0;
}
int
Test_Fixed_Struct::run_sii_test (Param_Test_ptr objref
ACE_ENV_ARG_DECL)
{
ACE_TRY
{
this->ret_ = objref->test_fixed_struct (this->in_,
this->inout_,
this->out_
ACE_ENV_ARG_PARAMETER);
ACE_TRY_CHECK;
return 0;
}
ACE_CATCHANY
{
ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
"Test_Fixed_Struct::run_sii_test\n");
}
ACE_ENDTRY;
return -1;
}
CORBA::Boolean
Test_Fixed_Struct::check_validity (void)
{
if (this->in_.l == this->inout_.l &&
this->in_.c == this->inout_.c &&
this->in_.s == this->inout_.s &&
this->in_.o == this->inout_.o &&
this->in_.f == this->inout_.f &&
this->in_.b == this->inout_.b &&
this->in_.d == this->inout_.d &&
this->in_.l == this->out_.l &&
this->in_.c == this->out_.c &&
this->in_.s == this->out_.s &&
this->in_.o == this->out_.o &&
this->in_.f == this->out_.f &&
this->in_.b == this->out_.b &&
this->in_.d == this->out_.d &&
this->in_.l == this->ret_.l &&
this->in_.c == this->ret_.c &&
this->in_.s == this->ret_.s &&
this->in_.o == this->ret_.o &&
this->in_.f == this->ret_.f &&
this->in_.b == this->ret_.b &&
this->in_.d == this->ret_.d)
return 1;
else
return 0;
}
CORBA::Boolean
Test_Fixed_Struct::check_validity (CORBA::Request_ptr /*req*/)
{
//ACE_UNUSED_ARG (req);
return this->check_validity ();
}
void
Test_Fixed_Struct::print_values (void)
{
ACE_DEBUG ((LM_DEBUG,
"\n=*=*=*=*=*=*\n"
"in = {\n"
"\tl = %d\n"
"\tc = %c\n"
"\ts = %d\n"
"\to = %x\n"
"\tf = %f\n"
"\tb = %d\n"
"\td = %f\n"
"}\n"
"inout = {\n"
"\tl = %d\n"
"\tc = %c\n"
"\ts = %d\n"
"\to = %x\n"
"\tf = %f\n"
"\tb = %d\n"
"\td = %f\n"
"}\n"
"out = {\n"
"\tl = %d\n"
"\tc = %c\n"
"\ts = %d\n"
"\to = %x\n"
"\tf = %f\n"
"\tb = %d\n"
"\td = %f\n"
"}\n"
"ret = {\n"
"\tl = %d\n"
"\tc = %c\n"
"\ts = %d\n"
"\to = %x\n"
"\tf = %f\n"
"\tb = %d\n"
"\td = %f\n"
"}\n"
"=*=*=*=*=*=*\n",
this->in_.l,
this->in_.c,
this->in_.s,
this->in_.o,
this->in_.f,
this->in_.b,
this->in_.d,
this->inout_.l,
this->inout_.c,
this->inout_.s,
this->inout_.o,
this->inout_.f,
this->inout_.b,
this->inout_.d,
this->out_.l,
this->out_.c,
this->out_.s,
this->out_.o,
this->out_.f,
this->out_.b,
this->out_.d,
this->ret_.l,
this->ret_.c,
this->ret_.s,
this->ret_.o,
this->ret_.f,
this->ret_.b,
this->ret_.d));
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?