summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Sched_Conf/Sched_Conf.cpp
blob: 4a7a1cd2b1535889f7a50db88943845b64677258 (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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
// $Id$

// This program simulates a scheduler configuration run, 
// and dumps the results of one scheduling in a C++ file.

#include "ace/Sched_Params.h"
#include "ace/Get_Opt.h"
#include "tao/corba.h"

#include "orbsvcs/CosNamingC.h"
#include "orbsvcs/Scheduler_Factory.h"

const char* service_name = "ScheduleService";

const char* format_string = "{\"%s\", %d, {%d,%d}, {%d,%d}, "
                            "{%d,%d}, %7d, "
                            "(RtecScheduler::Criticality) %d, "
                            "(RtecScheduler::Importance) %d, "
                            "{%d,%d}, %d, %2d, %d, %d, "
                            "(RtecScheduler::Info_Type) %d }";

int
parse_args (int argc, char *argv [])
{
  ACE_Get_Opt get_opt (argc, argv, "n:");
  int opt;

  while ((opt = get_opt ()) != EOF)
    {
      switch (opt)
	{
	case 'n':
	  service_name = get_opt.optarg;
	  break;
	case '?':
	default:
	  ACE_DEBUG ((LM_DEBUG,
		      "Usage: %s "
		      "-n service_name "
		      "\n",
		      argv[0]));
	  return -1;
	}
    }

  return 0;
}

int
main (int argc, char *argv[])
{
  if (parse_args (argc, argv) != 0)
  {
    return 1;
  }

  // create initial data for supplier and consumer operations
  const int operation_count = 8;
  ACE_Scheduler_Factory::POD_RT_Info config_infos[operation_count] = {
		  // 20 Hz high criticality supplier
		  { "hi_20_S",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			500000,             // period (100 ns)
			RtecScheduler::HIGH_CRITICALITY,   // criticality
			RtecScheduler::LOW_IMPORTANCE,     // importance
			{0, 0},             // quantum (unused)
			1,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 20 Hz low criticality supplier
		  { "lo_20_S",         // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			500000,             // period (100 ns)
			RtecScheduler::LOW_CRITICALITY,    // criticality
			RtecScheduler::HIGH_IMPORTANCE,    // importance
			{0, 0},             // quantum (unused)
			1,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 10 Hz high criticality supplier
		  { "hi_10_S",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			1000000,             // period (100 ns)
			RtecScheduler::HIGH_CRITICALITY,   // criticality
			RtecScheduler::LOW_IMPORTANCE,     // importance
			{0, 0},             // quantum (unused)
			1,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 10 Hz low criticality supplier
		  { "lo_10_S",         // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			1000000,            // period (100 ns)
			RtecScheduler::LOW_CRITICALITY,    // criticality
			RtecScheduler::HIGH_IMPORTANCE,    // importance
			{0, 0},             // quantum (unused)
			1,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 20 Hz high criticality consumer
		  { "hi_20_C",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			0,                  // period (zero)
			RtecScheduler::HIGH_CRITICALITY,   // criticality
			RtecScheduler::LOW_IMPORTANCE,     // importance
			{0, 0},             // quantum (unused)
			0,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 20 Hz low criticality consumer
		  { "lo_20_C",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			0,                  // period (zero)
			RtecScheduler::LOW_CRITICALITY,    // criticality
			RtecScheduler::HIGH_IMPORTANCE,    // importance
			{0, 0},             // quantum (unused)
			0,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 10 Hz high criticality consumer
		  { "hi_10_C",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			0,                  // period (zero)
			RtecScheduler::HIGH_CRITICALITY,   // criticality
			RtecScheduler::LOW_IMPORTANCE,     // importance
			{0, 0},             // quantum (unused)
			0,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  },
		  // 10 Hz low criticality consumer
		  { "lo_10_C",        // entry point
			0,                  // handle
			{0, 0},             // worst case execution time
			{0, 0},             // typical execution time (unused)
			{0, 0},             // cached execution time
			0,                  // period (zero)
			RtecScheduler::LOW_CRITICALITY,    // criticality
			RtecScheduler::HIGH_IMPORTANCE,    // importance
			{0, 0},             // quantum (unused)
			0,                  // threads 
			0,                  // OS priority 
			0,                  // Preemption subpriority
			0,                  // Preemption priority
			RtecScheduler::OPERATION           // info type
		  }
  };


  TAO_TRY
    {
      // Initialize ORB.
      CORBA::ORB_var orb =
        CORBA::ORB_init (argc, argv, "internet", TAO_TRY_ENV);
      TAO_CHECK_ENV;

      CORBA::Object_var poa_object =
        orb->resolve_initial_references("RootPOA");
      if (CORBA::is_nil(poa_object.in ()))
        ACE_ERROR_RETURN ((LM_ERROR,
                           " (%P|%t) Unable to initialize the POA.\n"),
                          1);

      PortableServer::POA_var root_poa =
        PortableServer::POA::_narrow (poa_object.in(), TAO_TRY_ENV);
      TAO_CHECK_ENV;

      PortableServer::POAManager_var poa_manager =
        root_poa->the_POAManager (TAO_TRY_ENV);
      TAO_CHECK_ENV;

      CORBA::Object_var naming_obj =
        orb->resolve_initial_references ("NameService");
      if (CORBA::is_nil(naming_obj.in ()))
        ACE_ERROR_RETURN ((LM_ERROR,
                           " (%P|%t) Unable to initialize the POA.\n"),
                          1);

      CosNaming::NamingContext_var naming_context =
        CosNaming::NamingContext::_narrow (naming_obj.in (), TAO_TRY_ENV);
      TAO_CHECK_ENV;

      if (ACE_Scheduler_Factory::use_config (naming_context.in (), service_name) < 0)
      {
        ACE_ERROR_RETURN ((LM_ERROR,
                          " (%P|%t) Unable to bind to the scheduling service.\n"),
                          1);
	  }
	  // create and initialize RT_Infos in the scheduler,
	  // make second half of array depend on first half.
	  for (int i = 0; i < operation_count; ++i)
	  {
		// create the RT_Info
	    config_infos[i].handle = 
		  ACE_Scheduler_Factory::server ()->create (config_infos[i].entry_point,
		                                            TAO_TRY_ENV);

		// initialize the RT_Info
		ACE_Scheduler_Factory::server ()->
	      set (config_infos[i].handle, 
		       (RtecScheduler::Criticality) config_infos[i].criticality, 
               config_infos[i].worst_case_execution_time, 
               config_infos[i].typical_execution_time, 
               config_infos[i].cached_execution_time, 
               config_infos[i].period, 
               (RtecScheduler::Importance) config_infos[i].importance, 
               config_infos[i].quantum, 
               config_infos[i].threads, 
               (RtecScheduler::Info_Type) config_infos[i].info_type, 
			   TAO_TRY_ENV);

        // make operations in second half dependant on
		// operations in the first half of the array,
		// and have each called twice as a oneway call
		if (i >= (operation_count / 2))
		{
		  ACE_Scheduler_Factory::server ()->
	        add_dependency (config_infos[i].handle, 
			                config_infos[i - (operation_count / 2)].handle, 
							2,                             // number of calls
							RtecScheduler::ONE_WAY_CALL,   // type of dependency
			                TAO_TRY_ENV);
		}
      }

      RtecScheduler::RT_Info_Set_var infos;

#if defined (__SUNPRO_CC)
      // Sun C++ 4.2 warns with the code below:
      //   Warning (Anachronism): Temporary used for non-const
      //   reference, now obsolete.
      //   Note: Type "CC -migration" for more on anachronisms.
      //   Warning (Anachronism): The copy constructor for argument
      //   infos of type RtecScheduler::RT_Info_Set_out should take
      //   const RtecScheduler::RT_Info_Set_out&.
      // But, this code is not CORBA conformant, because users should
      // not define instances of _out types.

      RtecScheduler::RT_Info_Set_out infos_out (infos);
      ACE_Scheduler_Factory::server ()->compute_scheduling
        (ACE_Sched_Params::priority_min (ACE_SCHED_FIFO,
                                         ACE_SCOPE_THREAD),
         ACE_Sched_Params::priority_max (ACE_SCHED_FIFO,
                                         ACE_SCOPE_THREAD),
         infos_out, TAO_TRY_ENV);
#else  /* ! __SUNPRO_CC */
      ACE_Scheduler_Factory::server ()->compute_scheduling
	(ACE_Sched_Params::priority_min (ACE_SCHED_FIFO,
					 ACE_SCOPE_THREAD),
	 ACE_Sched_Params::priority_max (ACE_SCHED_FIFO,
					 ACE_SCOPE_THREAD),
	 infos.out (), TAO_TRY_ENV);
#endif /* ! __SUNPRO_CC */

      TAO_CHECK_ENV;

      ACE_Scheduler_Factory::dump_schedule (infos.in (),
                                            "Sched_Conf_Runtime.h",
                                            format_string);
    }
  TAO_CATCH (CORBA::SystemException, sys_ex)
    {
      TAO_TRY_ENV.print_exception ("SYS_EX");
    }
  TAO_ENDTRY;

  return 0;
}