summaryrefslogtreecommitdiff
path: root/TAO/examples/RTScheduling/Job_i.cpp
blob: 1ae94e786e04b833c1391f2ed38d8e1f8e82230f (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
//$Id$
#include "Job_i.h"

#include "tao/debug.h"
#include "ace/Arg_Shifter.h"
#include "DT_Creator.h"
#include "Task_Stats.h"
#include "ace/High_Res_Timer.h"

//#include "Activity.h"

Job_i::Job_i (DT_Creator* dt_creator)
  : dt_creator_ (dt_creator),
    guid_ (0)
{
  // create the stat object.
  ACE_NEW (task_stats_, Task_Stats);
  task_stats_->init (100);

}

const ACE_CString&
Job_i::name (void)
{
  return job_name_;
}

const ACE_CString&
Job_i::poa (void)
{
  return POA_name_;
}

int
Job_i::init (ACE_Arg_Shifter& arg_shifter)
{
  job_name_ = arg_shifter.get_current (); // Read the name of the Job
  arg_shifter.consume_arg ();

  POA_name_ = arg_shifter.get_current (); // Read the name of the POA
  arg_shifter.consume_arg ();

  return 0;
}

void
Job_i::work (CORBA::ULong work,
	     CORBA::Short importance
	     ACE_ENV_ARG_DECL)
  ACE_THROW_SPEC ((CORBA::SystemException))
{

  int priority;
  ACE_hthread_t current;
  ACE_Thread::self (current);
  if (ACE_Thread::getprio (current, priority) == -1)
    return;


  static CORBA::ULong prime_number = 9619;
  //    ACE_UINT32 gsf = ACE_High_Res_Timer::global_scale_factor ();

  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
		"test_i::method: %d units of work\n",
		work));

  if (guid_ == 0)
    ACE_OS::memcpy (&guid_,
		    dt_creator_->current ()->id (ACE_ENV_SINGLE_ARG_PARAMETER)->get_buffer (),
		    sizeof (dt_creator_->current ()->id (ACE_ENV_SINGLE_ARG_PARAMETER)->length ()));



  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
		"%t Guid is %d, Importance is %d\n",
		guid_,
		importance));

  char msg [BUFSIZ];
  ACE_OS::sprintf (msg,"Thread Priority is %d, Guid is %d\n",priority, guid_);
  dt_creator_->log_msg (msg);

  // CORBA::Policy_ptr sched_param;
  //  CORBA::Policy_var sched_param;
  //    sched_param = CORBA::Policy::_duplicate (dt_creator_->sched_param (importance));
  /*
  const char * name = 0;
  CORBA::Policy_ptr implicit_sched_param = 0;
  dt_creator_->current ()->update_scheduling_segment (name,
						      sched_param,
						      sched_param
						      ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
  */

  for (; work != 0; work--)
    {
      //    ACE_hrtime_t now = ACE_OS::gethrtime ();

      ACE_Time_Value run_time = ACE_OS::gettimeofday () - *(dt_creator_->base_time ());
      TASK_STATS::instance ()->sample (ACE_UINT64 (run_time.sec ()),
       				       guid_);

      ACE_Time_Value count_down_time (1);
      ACE_Countdown_Time count_down (&count_down_time);

      while (count_down_time > ACE_Time_Value::zero)
	{
	  ACE::is_prime (prime_number,
			 2,
			 prime_number / 2);
	  count_down.update ();
	}

      // convert to microseconds
      //  #if !defined ACE_LACKS_LONGLONG_T

      //        ACE_UINT32 elapsed_microseconds = ACE_UINT32((now - dt_creator_->base_hr_time ()) / gsf);

      //  #else  /* ! ACE_LACKS_LONGLONG_T */

      //        ACE_UINT32 elapsed_microseconds = (now - dt_creator_->base_hr_time ()) / gsf;

      //  #endif /* ! ACE_LACKS_LONGLONG_T */

      //  #if defined (ACE_WIN32)
      //        elapsed_microseconds*=1000; // convert to uSec on Win32
      //  #endif /* ACE_WIN32 */

      //        TASK_STATS::instance ()->sample (elapsed_microseconds,
      //  				       guid_);


    }

  //  task_stats_->sample (ACE_UINT64 (run_time.sec ()),
  //  		       guid_);

}

void
Job_i::post_work (int /*guid*/,
		  int /*importance*/)
{
}

int
Job_i::guid (void)
{
  return this->guid_;
}

void
Job_i::shutdown (ACE_ENV_SINGLE_ARG_DECL_NOT_USED)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  dt_creator_->job_ended ();
}

void
Job_i::dump_stats (void)
{
  char fname [BUFSIZ];
  ACE_OS::sprintf (fname, "Job_%d.dat",guid_);
  if (TAO_debug_level > 0)
    ACE_DEBUG ((LM_DEBUG,
		"File name %s\n",
		fname));


  char msg [BUFSIZ];
  ACE_OS::sprintf (msg, "#Schedule Output for DT %d", guid_);

  task_stats_->dump_samples (fname,
			     msg,
			     ACE_High_Res_Timer::global_scale_factor ());

}