summaryrefslogtreecommitdiff
path: root/TAO/tests/POA/On_Demand_Act_Direct_Coll/Client_Task.cpp
blob: 50882492aad7ef98534ae56567f29c9acb59e585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// $Id$

#include "Client_Task.h"
#include "testC.h"

Client_Task::Client_Task (const ACE_TCHAR *ior,
                          CORBA::ORB_ptr corb,
                          ACE_Thread_Manager *thr_mgr,
                          CORBA::Boolean except)
  : ACE_Task_Base (thr_mgr)
    , input_ (ior)
    , corb_ (CORBA::ORB::_duplicate (corb))
    , except_ (except)
{
}

int
Client_Task::svc (void)
{
  int status = 0;
  try
    {
      // Get an object reference from the argument string.
      CORBA::Object_var tmp =
        this->corb_->string_to_object (input_);

      // Try to narrow the object reference to a test reference.
      test_var test = test::_narrow (tmp.in ());
      if (CORBA::is_nil (test.in ()))
        {
          ACE_ERROR_RETURN ((LM_DEBUG,
                               "Nil Test::Hello reference <%s>\n",
                               input_),
                               1);
         }

      CORBA::String_var ior =
        this->corb_->object_to_string (test.in ());

      ACE_DEBUG ((LM_DEBUG,
                   "\nConnecting to: %C\n\n",
                   ior.in ()));
      try
        {
           CORBA::String_var the_string = test->get_string ();
          if (ACE_OS::strcmp (the_string.in (), "Hello there!") != 0)
             {
               ACE_ERROR ((LM_ERROR, "(%P|%t) - Error, incorrect string returned <%C>\n",
               the_string.in ()));
             }
           else
             {
               ACE_DEBUG ((LM_DEBUG, "(%P|%t) - OK , correct string returned <%C>\n",
                 the_string.in ()));
               }
        }
      catch (const CORBA::INTERNAL&)
         {
           if (this->except_)
             {
               ACE_DEBUG ((LM_DEBUG,
                   "OK: Client_Task Expected excep with "
                   "direct collocation received\n"));
                  status = 0;
             }
           else
             {
               ACE_ERROR ((LM_ERROR,
                    "ERROR: Client_Task Unxpected exception with"
                    "thru_poa collocation received\n"));
                   status = 1;
             }
           corb_->destroy ();
           return 1;
         }
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("Exception caught:");
      status = 1;
    }
  corb_->destroy ();
  return status;

}