//============================================================================= /** * @file bd_struct_seq.cpp * * tests bounded struct sequences * * @author Aniruddha Gokhale */ //============================================================================= #include "helper.h" #include "bd_struct_seq.h" const CORBA::ULong MAX_STRUCTSEQ_LEN = 1; // ************************************************************************ // Test_Bounded_Struct_Sequence // ************************************************************************ Test_Bounded_Struct_Sequence::Test_Bounded_Struct_Sequence () : opname_ (CORBA::string_dup ("test_bounded_struct_sequence")), inout_ (new Param_Test::Bounded_StructSeq), out_ (new Param_Test::Bounded_StructSeq), ret_ (new Param_Test::Bounded_StructSeq) { } Test_Bounded_Struct_Sequence::~Test_Bounded_Struct_Sequence () { CORBA::string_free (this->opname_); this->opname_ = 0; // the other data members will be freed as they are "_var"s and objects // (rather than pointers to objects) } const char * Test_Bounded_Struct_Sequence::opname () const { return this->opname_; } void Test_Bounded_Struct_Sequence::dii_req_invoke (CORBA::Request *req) { req->add_in_arg ("s1") <<= this->in_; req->add_inout_arg ("s2") <<= this->inout_.in (); req->add_out_arg ("s3") <<= this->out_.in (); req->set_return_type (Param_Test::_tc_Bounded_StructSeq); req->invoke (); const Param_Test::Bounded_StructSeq *tmp = 0; req->return_value () >>= tmp; this->ret_ = new Param_Test::Bounded_StructSeq (*tmp); CORBA::NamedValue_ptr arg2 = req->arguments ()->item (1); *arg2->value () >>= tmp; this->inout_ = new Param_Test::Bounded_StructSeq (*tmp); CORBA::NamedValue_ptr arg3 = req->arguments ()->item (2); *arg3->value () >>= tmp; this->out_ = new Param_Test::Bounded_StructSeq (*tmp); } int Test_Bounded_Struct_Sequence::init_parameters (Param_Test_ptr /* objref */ /* env */) { Generator *gen = GENERATOR::instance (); // value generator // set the length of the sequence this->in_.length (MAX_STRUCTSEQ_LEN); // now set each individual element for (CORBA::ULong i = 0; i < this->in_.length (); i++) { // generate some arbitrary struct to be filled into the ith location in // the sequence this->in_[i] = gen->gen_fixed_struct (); } this->inout_->length (0); this->out_->length (0); this->ret_->length (0); return 0; } int Test_Bounded_Struct_Sequence::reset_parameters () { this->inout_ = new Param_Test::Bounded_StructSeq; // delete the previous ones this->out_ = new Param_Test::Bounded_StructSeq; this->ret_ = new Param_Test::Bounded_StructSeq; this->inout_->length (0); this->out_->length (0); this->ret_->length (0); return 0; } int Test_Bounded_Struct_Sequence::run_sii_test (Param_Test_ptr objref) { try { Param_Test::Bounded_StructSeq_out out (this->out_.out ()); this->ret_ = objref->test_bounded_struct_sequence (this->in_, this->inout_.inout (), out); return 0; } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("Test_Bounded_Struct_Sequence::run_sii_test\n"); } return -1; } CORBA::Boolean Test_Bounded_Struct_Sequence::check_validity () { if (this->compare (this->in_, this->inout_.in ()) && this->compare (this->in_, this->out_.in ()) && this->compare (this->in_, this->ret_.in ())) return 1; else return 0; } CORBA::Boolean Test_Bounded_Struct_Sequence::check_validity (CORBA::Request_ptr) { return this->check_validity (); } void Test_Bounded_Struct_Sequence::print_values () { ACE_DEBUG ((LM_DEBUG, "*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n" "IN sequence\n")); this->print_sequence (this->in_); ACE_DEBUG ((LM_DEBUG, "*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n" "INOUT sequence\n")); this->print_sequence (this->inout_.in ()); ACE_DEBUG ((LM_DEBUG, "*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n" "OUT sequence\n")); this->print_sequence (this->out_.in ()); ACE_DEBUG ((LM_DEBUG, "*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*\n" "RET sequence\n")); this->print_sequence (this->ret_.in ()); } CORBA::Boolean Test_Bounded_Struct_Sequence::compare (const Param_Test::Bounded_StructSeq &s1, const Param_Test::Bounded_StructSeq &s2) { if (s1.maximum () != s2.maximum ()) return 0; if (s1.length () != s2.length ()) return 0; for (CORBA::ULong i=0; i < s1.length (); i++) { const Param_Test::Fixed_Struct& vs1 = s1[i]; const Param_Test::Fixed_Struct& vs2 = s2[i]; if (vs1.l != vs2.l || vs1.c != vs2.c || vs1.s != vs2.s || vs1.o != vs2.o || !ACE::is_equal (vs1.f, vs2.f) || vs1.b != vs2.b || !ACE::is_equal (vs1.d, vs2.d)) return 0; } return 1; // success } void Test_Bounded_Struct_Sequence::print_sequence (const Param_Test::Bounded_StructSeq &s) { ACE_DEBUG ((LM_DEBUG, "maximum = %d\n" "length = %d\n", s.maximum (), s.length ())); ACE_DEBUG ((LM_DEBUG, "Elements -\n")); for (CORBA::ULong i=0; i < s.length (); i++) { const Param_Test::Fixed_Struct& vs = s[i]; ACE_DEBUG ((LM_DEBUG, "Element #%d\n" "\tl = %d\n" "\tc = %c\n" "\ts = %d\n" "\to = %x\n" "\tf = %f\n" "\tb = %d\n" "\td = %f\n", i, vs.l, vs.c, vs.s, vs.o, vs.f, vs.b, vs.d)); } }