summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Time/Timer_Helper.cpp
blob: 3513e9e8423928017fd9ef96c05f62890f9740bd (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
// -*- C++ -*-
// $Id$

#include "Timer_Helper.h"
#include "TAO_Time_Service_Clerk.h"
#include "ace/OS.h"

// Constructor.
Timer_Helper::Timer_Helper (void)
{
}

// Constructor that sets the clerk.
Timer_Helper::Timer_Helper (TAO_Time_Service_Clerk *clerk)
  : clerk_ (clerk)
{

}

// Destructor.
Timer_Helper::~Timer_Helper (void)
{
  delete this;
}

int
Timer_Helper::handle_timeout (const ACE_Time_Value &,
			      const void *)
{
  int no_of_servers = 0;
  CORBA::ULongLong sum = 0;

  // The following are used to keep a track of the inaccuracy
  // in synchronization.

  #if defined (ACE_LACKS_LONGLONG_T)
  // CORBA::ULongLong lowest_time (ACE_UINT64_LITERAL(0xFFFFFFFFFFFFFFFF));
    CORBA::ULongLong lowest_time (0);
  #else
    CORBA::ULongLong lowest_time = ACE_UINT64_LITERAL(0xFFFFFFFFFFFFFFFF);
  #endif

  CORBA::ULongLong highest_time  = 0;

  TAO_TRY
    {
      IORS::TYPE* value;
      for (IORS::ITERATOR server_iterator (this->clerk_->server_);
	   server_iterator.next (value) != 0;
	   server_iterator.advance ())
	{
	  
	  // This is a remote call.
	  CosTime::UTO_var UTO_server =
	    (*value)->universal_time (TAO_TRY_ENV);
	  
	  TAO_CHECK_ENV;
	  
          #if defined (ACE_LACKS_LONGLONG_T)
	  
	  ACE_DEBUG ((LM_DEBUG,
		      "\nTime = %Q\nInaccuracy = %Q\nTimeDiff = %d\nstruct.time = %Q\n"
		      "struct.inacclo = %d\nstruct.inacchi = %d\nstruct.Tdf = %d\n",
		      ACE_U64_TO_U32 (UTO_server->time (TAO_TRY_ENV)),
		      ACE_U64_TO_U32 (UTO_server->inaccuracy (TAO_TRY_ENV)),
		      UTO_server->tdf (TAO_TRY_ENV),
		      ACE_U64_TO_U32 ((UTO_server->utc_time ()).time),
		      (UTO_server->utc_time ()).inacclo,
		      (UTO_server->utc_time ()).inacchi,
		      (UTO_server->utc_time ()).tdf));

          #else

	  ACE_DEBUG ((LM_DEBUG,
		      "\nTime = %Q\nInaccuracy = %Q\nTimeDiff = %d\nstruct.time = %Q\n"
		      "struct.inacclo = %d\nstruct.inacchi = %d\nstruct.Tdf = %d\n",
		      UTO_server->time (TAO_TRY_ENV),
		      UTO_server->inaccuracy (TAO_TRY_ENV),
		      UTO_server->tdf (TAO_TRY_ENV),
		      (UTO_server->utc_time ()).time,
		      (UTO_server->utc_time ()).inacclo,
		      (UTO_server->utc_time ()).inacchi,
		      (UTO_server->utc_time ()).tdf));
          #endif

	  CORBA::ULongLong curr_server_time = UTO_server->time (TAO_TRY_ENV);

	  sum += curr_server_time;

	  ++no_of_servers;

	  // Set the highest time to the largest time seen so far.
	  if (curr_server_time > highest_time)
	    highest_time = curr_server_time;
	  
	  // Set the lowest time to the smallest time seen so far.
	  if (curr_server_time < lowest_time)
	    lowest_time = curr_server_time;
 
	}

      ACE_DEBUG ((LM_DEBUG,
		  "\nUpdated time from %d servers in the network",
		  no_of_servers));

      // Return the average of the times retrieved from the various
      // servers.
      clerk_->time_ = sum / no_of_servers ;

      // Set the Time Displacement Factor. The TZ environment variable is 
      // read to set the time zone. We convert the timezone value from seconds 
      // to minutes.

      ACE_OS::tzset();
      clerk_->time_displacement_factor (ACE_OS::timezone () / 60);

      // Set the inaccuracy.
      if (highest_time > lowest_time)
	clerk_->inaccuracy (highest_time - lowest_time);
      else
	clerk_->inaccuracy (0);
      
      // Record the current time in a timestamp to know when global
      // updation of time was done.
      clerk_->update_timestamp_ = ACE_OS::gettimeofday ().sec () * 10000000
        + ACE_OS::gettimeofday ().usec () * 10;

    }
  TAO_CATCHANY
    {
      TAO_TRY_ENV.print_exception ("Exception in the handle_timeout ()\n");
      return -1;
    }
  TAO_ENDTRY;

  return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class ACE_Array_Base <CosTime::TimeService_var>;
template class ACE_Array_Iterator <CosTime::TimeService_var>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate ACE_Array_Base <CosTime::TimeService_var>
#pragma instantiate ACE_Array_Iterator <CosTime::TimeService_var>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */