summaryrefslogtreecommitdiff
path: root/TAO/tests/Bug_1495_Regression/Client_Task.cpp
blob: b22646a2a01cb4185ab0bd36988abae92e8ca40c (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
 * @file Client_Task.cpp
 * @author Will Otte <wotte@dre.vanderbilt.edu
 *
 * $Id$
 *
 * Implements the Client_Task class defined in Client_Task.h.
 */

#include "Client_Task.h"
#include "testC.h"
#include "Client_ORBInitializer.h"
#include "tid_to_int.h"
#include "ace/OS_NS_unistd.h"
#include "ace/OS_NS_sys_stat.h"

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


int
Client_Task::svc (void)
{
  try
    {
      // The test was designed so that we have to wait here.
      ACE_stat st;
      int timeout = 10;
      while (--timeout)
        {
          if (ACE_OS::stat (this->input_, &st) == 0 &&
              st.st_size != 0)
            {
              break;
            }

          ACE_OS::sleep (1);
        }

      ACE_TString infile = ACE_TString (ACE_TEXT("file://")) + this->input_;

      CORBA::Object_var object =
        this->corb_->string_to_object (infile.c_str ());

      Bug1495_Regression::Bug1495_var server =
        Bug1495_Regression::Bug1495::_narrow (object.in ());

      if (CORBA::is_nil (server.in ()))
        {
          ACE_ERROR ((LM_ERROR,
                      "Object reference <%s> is nil\n",
                      input_));

          return 1;
        }

      // Try multiple calls to see if we keep being forwarded
      for (int i = 0; i < 5; ++i)
        {
          using Bug1495_Regression::ThreadId;

          // call the thread_id function on the test object
          ThreadId remote_thread_id;

          server->get_thread_id (remote_thread_id);

          ACE_DEBUG ((LM_INFO,
                      ACE_TEXT ("Remote thread ID was ")
                      ACE_INT64_FORMAT_SPECIFIER
                      ACE_TEXT ("\n"),
                      remote_thread_id));

          ThreadId const mythread_id =
            ACE_thread_t_to_integer<ThreadId> (ACE_Thread::self ());

          if (mythread_id != remote_thread_id)
            {
              ACE_ERROR ((LM_ERROR,
                          ACE_TEXT ("ERROR:  Failed Bug_1495_Regression test. ")
                          ACE_TEXT ("Expected thread id was ")
                          ACE_INT64_FORMAT_SPECIFIER
                          ACE_TEXT (", received ")
                          ACE_INT64_FORMAT_SPECIFIER
                          ACE_TEXT (".\n"),
                          mythread_id,
                          remote_thread_id));
            }
          else
            {
              ACE_DEBUG ((LM_INFO,
                          ACE_TEXT ("Passed Bug_1495_Regression test.\n")
                          ACE_TEXT ("Local thread id was ")
                          ACE_INT64_FORMAT_SPECIFIER
                          ACE_TEXT (", received ")
                          ACE_INT64_FORMAT_SPECIFIER
                          ACE_TEXT (".\n"),
                          mythread_id,
                          remote_thread_id));
            }
        }
    }
  catch (const CORBA::Exception& ex)
    {
      ex._tao_print_exception ("Caught exception in client task:");
      return 1;
    }

  return 0;
}