Revert "Minor modernization of DynamicAny code"
[ACE_TAO.git] / TAO / tests / Bug_3567_Regression / ami_test_i.cpp
blob0caeb772223f4e036c3feabb298e2d3ed9666518
2 //=============================================================================
3 /**
4 * @file ami_test_i.cpp
6 * Implementation of the AMI Test interface.
8 * @author Alexander Babu Arulanthu <alex@cs.wustl.edu>
9 * @author Michael Kircher <Michael.Kircher@mchp.siemens.de>
11 //=============================================================================
14 #include "ami_test_i.h"
15 #include "tao/debug.h"
16 #include "ace/OS_NS_unistd.h"
18 AMI_Test_i::AMI_Test_i (CORBA::ORB_ptr orb,
19 CORBA::Long in_l,
20 const char * in_str,
21 bool check_params)
22 : orb_ (CORBA::ORB::_duplicate (orb)),
23 yadda_ ((CORBA::Long) 140474),
24 in_l_ (in_l),
25 in_str_(CORBA::string_dup(in_str)),
26 check_params_(check_params)
30 CORBA::Long
31 AMI_Test_i::foo (CORBA::Long_out out_l,
32 CORBA::Long in_l,
33 const char* in_str)
35 out_l = 931233;
37 //if (TAO_debug_level > 0)
38 ACE_DEBUG ((LM_DEBUG,
39 "%N:%l:(%P:%t):AMI_Test_i::foo: %d %C\n",
40 in_l,
41 in_str));
43 if (in_l == 0)
45 ACE_DEBUG ((LM_DEBUG,
46 "Throwing Exception: A::DidTheRightThing\n"));
47 throw A::DidTheRightThing(42, "Hello world");
50 if (check_params_)
52 if (in_l_ != in_l || ACE_OS::strcmp(in_str_.in (), in_str) != 0)
54 ACE_ERROR ((LM_ERROR,
55 "ERROR: Parameter corruption on in parameters: %d %d %C %C.\n",
56 in_l_, in_l, in_str_.in (), in_str));
57 return 0;
60 ACE_OS::sleep (1);
61 return 931234;
64 void
65 AMI_Test_i::shutdown ()
67 this->orb_->shutdown (false);
71 CORBA::Long
72 AMI_Test_i::yadda ()
74 ACE_DEBUG ((LM_DEBUG,
75 "%N:%l:(%P:%t):AMI_Test_i::(get_)yadda\n"));
76 return yadda_;
80 void
81 AMI_Test_i::yadda (CORBA::Long yadda)
83 ACE_DEBUG ((LM_DEBUG,
84 "%N:%l:(%P:%t):AMI_Test_i::(set_)yadda\n"));
85 yadda_ = yadda;
88 void
89 AMI_Test_i::inout_arg_test (char *&)
91 // No action, this operation is to test code generation for INOUT
92 // args in AMI operations.