summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/multdim_array.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/multdim_array.cpp')
-rw-r--r--TAO/tests/Param_Test/multdim_array.cpp224
1 files changed, 0 insertions, 224 deletions
diff --git a/TAO/tests/Param_Test/multdim_array.cpp b/TAO/tests/Param_Test/multdim_array.cpp
deleted file mode 100644
index 69b3f3e8f3a..00000000000
--- a/TAO/tests/Param_Test/multdim_array.cpp
+++ /dev/null
@@ -1,224 +0,0 @@
-// ============================================================================
-//
-// = LIBRARY
-// TAO/tests/Param_Test
-//
-// = FILENAME
-// multidim_array.cpp
-//
-// = DESCRIPTION
-// tests multidimensional fixed size arrays
-//
-// = AUTHORS
-// Bala
-//
-// ============================================================================
-
-#include "helper.h"
-#include "multdim_array.h"
-
-
-ACE_RCSID (Param_Test,
- multdim_array,
- "$Id$")
-
-// ************************************************************************
-// Test_Multdim_Array
-// ************************************************************************
-
-Test_Multdim_Array::Test_Multdim_Array (void)
- : opname_ (CORBA::string_dup ("test_multdim_array")),
- in_ (new Param_Test::Multdim_Array),
- inout_ (new Param_Test::Multdim_Array),
- out_ (new Param_Test::Multdim_Array),
- ret_ (new Param_Test::Multdim_Array)
-{
-}
-
-Test_Multdim_Array::~Test_Multdim_Array (void)
-{
- CORBA::string_free (this->opname_);
- this->opname_ = 0;
-}
-
-const char *
-Test_Multdim_Array::opname (void) const
-{
- return this->opname_;
-}
-
-void
-Test_Multdim_Array::dii_req_invoke (CORBA::Request *req
- ACE_ENV_ARG_DECL)
-{
- req->add_in_arg ("s1") <<= Param_Test::Multdim_Array_forany (this->in_.inout ());
- req->add_inout_arg ("s2") <<= Param_Test::Multdim_Array_forany (this->inout_.inout ());
- req->add_out_arg ("s3") <<= Param_Test::Multdim_Array_forany (this->out_.inout ());
-
- req->set_return_type (Param_Test::_tc_Multdim_Array);
-
- req->invoke (ACE_ENV_SINGLE_ARG_PARAMETER);
- ACE_CHECK;
-
-
- Param_Test::Multdim_Array_forany forany;
- req->return_value () >>= forany;
- Param_Test::Multdim_Array_copy (this->ret_, forany.in ());
-
- CORBA::NamedValue_ptr o2 =
- req->arguments ()->item (1 ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
- *o2->value () >>= forany;
- Param_Test::Multdim_Array_copy (this->inout_, forany.in ());
-
- CORBA::NamedValue_ptr o3 =
- req->arguments ()->item (2 ACE_ENV_ARG_PARAMETER);
- ACE_CHECK;
- *o3->value () >>= forany;
- Param_Test::Multdim_Array_copy (this->out_, forany.in ());
-}
-
-int
-Test_Multdim_Array::init_parameters (Param_Test_ptr /*objref*/
- ACE_ENV_ARG_DECL_NOT_USED/*env*/)
-{
- Generator *gen = GENERATOR::instance (); // value generator
-
- for (CORBA::ULong i=0; i < Param_Test::DIM2; i++)
- {
- for (CORBA::ULong j=0; j < Param_Test::DIM3; j++)
- {
- for (CORBA::ULong k=0; k < Param_Test::DIM1; k++)
- {
- this->in_ [i][j][k] = gen->gen_long ();
- this->inout_ [i][j][k] = 0;
- }
- }
- }
- return 0;
-}
-
-int
-Test_Multdim_Array::reset_parameters (void)
-{
- Generator *gen = GENERATOR::instance (); // value generator
-
- // free the in value array
- Param_Test::Multdim_Array_free (this->in_._retn ());
- // needed for repeated DII calls
- this->in_ = new Param_Test::Multdim_Array;
- // free the inout value array
- Param_Test::Multdim_Array_free (this->inout_._retn ());
- // needed for repeated DII calls
- this->inout_ = new Param_Test::Multdim_Array;
-
- for (CORBA::ULong i=0; i < Param_Test::DIM2; i++)
- {
- for (CORBA::ULong j=0; j < Param_Test::DIM3; j++)
- {
- for (CORBA::ULong k=0; k < Param_Test::DIM1; k++)
- {
- this->inout_ [i][j][k] = 0;
- this->in_ [i][j][k] = gen->gen_long ();
- }
- }
- }
- // free the out value array
- Param_Test::Multdim_Array_free (this->out_._retn ());
- // needed for repeated DII calls
- this->out_ = new Param_Test::Multdim_Array;
- // free the return value array
- Param_Test::Multdim_Array_free (this->ret_._retn ());
- // needed for repeated DII calls
- this->ret_ = new Param_Test::Multdim_Array;
- return 0;
-}
-
-int
-Test_Multdim_Array::run_sii_test (Param_Test_ptr objref
- ACE_ENV_ARG_DECL)
-{
- ACE_TRY
- {
- this->ret_ = objref->test_multdim_array (this->in_.in (),
- this->inout_.inout (),
- this->out_.inout ()
- ACE_ENV_ARG_PARAMETER);
- ACE_TRY_CHECK;
- return 0;
- }
- ACE_CATCHANY
- {
- ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
- "Test_Multdim_Array::run_sii_test\n");
- }
- ACE_ENDTRY;
- return -1;
-}
-
-CORBA::Boolean
-Test_Multdim_Array::check_validity (void)
-{
- if (this->compare (this->in_.in (),
- this->inout_.in ()) &&
- this->compare (this->in_.in (),
- this->out_.in ()) &&
- this->compare (this->in_.in (),
- this->ret_.in ()))
- return 1;
- else
- return 0;
-}
-
-CORBA::Boolean
-Test_Multdim_Array::check_validity (CORBA::Request_ptr /*req*/)
-{
- //ACE_UNUSED_ARG (req);
- return this->check_validity ();
-}
-
-CORBA::Boolean
-Test_Multdim_Array::compare (const Param_Test::Multdim_Array_slice *a1,
- const Param_Test::Multdim_Array_slice *a2)
-{
- for (CORBA::ULong i=0; i < Param_Test::DIM2; i++)
- {
- for (CORBA::ULong j=0; j < Param_Test::DIM3; j++)
- {
- for (CORBA::ULong k=0; k < Param_Test::DIM1; k++)
- {
- if (a1[i][j][k] != a2[i][j][k])
- return 0;
- }
- }
- }
- return 1; // success
-}
-
-void
-Test_Multdim_Array::print_values (void)
-{
- ACE_DEBUG ((LM_DEBUG, "IN array\n"));
- this->print (this->in_.in ());
- ACE_DEBUG ((LM_DEBUG, "INOUT array\n"));
- this->print (this->inout_.in ());
- ACE_DEBUG ((LM_DEBUG, "OUT array\n"));
- this->print (this->out_.in ());
- ACE_DEBUG ((LM_DEBUG, "RET array\n"));
- this->print (this->ret_.in ());
-}
-
-void
-Test_Multdim_Array::print (const Param_Test::Multdim_Array_slice *a)
-{
- for (CORBA::ULong i = 0; i < Param_Test::DIM2; i++)
- {
- for (CORBA::ULong j=0; j < Param_Test::DIM3; j++)
- {
- for (CORBA::ULong k=0; k < Param_Test::DIM1; k++)
- {
- ACE_DEBUG ((LM_DEBUG, "\t\tElement #%d #%d #%d = %d \n",i,j,k, a[i][j][k]));
- }
- }
- }
-}