summaryrefslogtreecommitdiff
path: root/TAO/tests/RTCORBA/Collocation/Collocation.cpp
blob: 6df538e3e98128510a54f64b648713042d35f265 (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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
// $Id$

#include "ace/Get_Opt.h"
#include "ace/Array_Base.h"
#include "tao/ORB_Core.h"
#include "tao/RTCORBA/Thread_Pool.h"
#include "testS.h"
#include "tao/RTPortableServer/RTPortableServer.h"

ACE_RCSID(Collocations, Collocations, "$Id$")

RTCORBA::Priority default_thread_priority;

class test_i;

struct Test_Object_And_Servant
{
  test_var object_;
  test_i *servant_;
};

typedef ACE_Array_Base<Test_Object_And_Servant> Tests;

class test_i :
  public POA_test,
  public PortableServer::RefCountServantBase
{
public:
  test_i (CORBA::ORB_ptr orb,
          PortableServer::POA_ptr poa,
          Tests &tests);

  void start (CORBA::Environment &ACE_TRY_ENV)
    ACE_THROW_SPEC ((CORBA::SystemException));

  void method (CORBA::Environment &ACE_TRY_ENV)
    ACE_THROW_SPEC ((CORBA::SystemException));

  PortableServer::POA_ptr _default_POA (CORBA_Environment &ACE_TRY_ENV);

  int client_propagated (void);

  void client_propagated (int);

  void thread_info (const char *method_name);

  void invocation_pool_and_lane (CORBA::ULong pool,
                                 CORBA::ULong lane);

  void invocation_pool (CORBA::ULong pool);

  void invocation_lane (CORBA::ULong lane);

private:

  CORBA::ORB_var orb_;
  PortableServer::POA_var poa_;
  Tests &tests_;

  CORBA::ULong pool_;
  CORBA::ULong lane_;

  int client_propagated_;
};

test_i::test_i (CORBA::ORB_ptr orb,
                PortableServer::POA_ptr poa,
                Tests &tests)
  : orb_ (CORBA::ORB::_duplicate (orb)),
    poa_ (PortableServer::POA::_duplicate (poa)),
    tests_ (tests),
    client_propagated_ (0)
{
}

int
test_i::client_propagated (void)
{
  return this->client_propagated_;
}

void
test_i::client_propagated (int client_propagated)
{
  this->client_propagated_ = client_propagated;
}

void
test_i::invocation_pool_and_lane (CORBA::ULong pool,
                                  CORBA::ULong lane)
{
  this->pool_ = pool;
  this->lane_ = lane;
}

void
test_i::invocation_pool (CORBA::ULong pool)
{
  this->pool_ = pool;
}

void
test_i::invocation_lane (CORBA::ULong lane)
{
  this->lane_ = lane;
}

void
test_i::start (CORBA::Environment &ACE_TRY_ENV)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  ACE_DEBUG ((LM_DEBUG,
              "\n"));

  this->thread_info ("test_i::start");

  ACE_DEBUG ((LM_DEBUG,
              "\n"));

  Tests::ITERATOR iterator (this->tests_);
  while (!iterator.done ())
    {
      Test_Object_And_Servant *test = 0;
      iterator.next (test);

      if (test->servant_->client_propagated ())
        {
          CORBA::Object_var object =
            this->orb_->resolve_initial_references ("RTCurrent",
                                                    ACE_TRY_ENV);
          ACE_CHECK;

          RTCORBA::Current_var current =
            RTCORBA::Current::_narrow (object.in (),
                                       ACE_TRY_ENV);
          ACE_CHECK;

          CORBA::Short current_thread_priority =
            current->the_priority (ACE_TRY_ENV);
          ACE_CHECK;

          if (current_thread_priority == default_thread_priority)
            test->servant_->invocation_lane (0);
          else
            test->servant_->invocation_lane (1);
        }

      test->object_->method (ACE_TRY_ENV);
      ACE_CHECK;

      CORBA::String_var ior =
        this->orb_->object_to_string (test->object_.in (),
                                      ACE_TRY_ENV);
      ACE_CHECK;

      CORBA::Object_var object =
        this->orb_->string_to_object (ior.in (),
                                      ACE_TRY_ENV);
      ACE_CHECK;

      test_var test_from_string =
        test::_narrow (object.in (),
                       ACE_TRY_ENV);
      ACE_CHECK;

      test_from_string->method (ACE_TRY_ENV);
      ACE_CHECK;

      iterator.advance ();
    }
}

void
test_i::thread_info (const char *method_name)
{
  // Get the ORB_Core's TSS resources.
  TAO_ORB_Core_TSS_Resources *tss =
    this->orb_->orb_core ()->get_tss_resources ();

  /// Get the lane attribute in TSS.
  TAO_Thread_Lane *lane =
    (TAO_Thread_Lane *) tss->lane_;

  if (lane)
    {
      ACE_DEBUG ((LM_DEBUG,
                  "%s invoked by thread %t (pool id = %d; lane id = %d)\n",
                  method_name,
                  lane->pool ().id (),
                  lane->id ()));

      ACE_ASSERT (this->pool_ == lane->pool ().id ());
      ACE_ASSERT (this->lane_ == lane->id ());
    }
  else
    {
      ACE_DEBUG ((LM_DEBUG,
                  "%s invoked by thread %t (default thread pool)\n",
                  method_name));

      ACE_ASSERT (this->pool_ == 0);
      ACE_ASSERT (this->lane_ == 0);
    }
}

void
test_i::method (CORBA::Environment &)
  ACE_THROW_SPEC ((CORBA::SystemException))
{
  this->thread_info ("test_i::method");
}

PortableServer::POA_ptr
test_i::_default_POA (CORBA_Environment &)
{
  return PortableServer::POA::_duplicate (this->poa_.in ());
}

class Server
{
public:
  Server (int argc,
          char *argv[],
          CORBA::Environment &ACE_TRY_ENV);

  void create_servant_in_root_poa (CORBA::Environment &ACE_TRY_ENV);
  void create_poa_and_servant_with_tp_policy (CORBA::Environment &ACE_TRY_ENV);
  void create_poa_and_servant_with_tp_with_lanes_policy (const char *poa_name,
                                                         RTCORBA::PriorityModel priority_model,
                                                         CORBA::Environment &ACE_TRY_ENV);
  void test (CORBA::Environment &ACE_TRY_ENV);
  void start_testing (CORBA::Environment &ACE_TRY_ENV);
  void shutdown (CORBA::Environment &ACE_TRY_ENV);

  CORBA::ORB_var orb_;
  RTCORBA::RTORB_var rt_orb_;
  PortableServer::POA_var root_poa_;
  PortableServer::POAManager_var poa_manager_;
  RTCORBA::Current_var current_;

  Tests tests_;

  CORBA::ULong stacksize_;
  CORBA::ULong static_threads_;
  CORBA::ULong dynamic_threads_;
  CORBA::Boolean allow_request_buffering_;
  CORBA::Boolean allow_borrowing_;
  CORBA::ULong max_buffered_requests_;
  CORBA::ULong max_request_buffer_size_;
};

Server::Server (int argc,
                char *argv[],
                CORBA::Environment &ACE_TRY_ENV)
  : stacksize_ (0),
    static_threads_ (1),
    dynamic_threads_ (0),
    allow_request_buffering_ (0),
    allow_borrowing_ (0),
    max_buffered_requests_ (0),
    max_request_buffer_size_ (0)
{
  this->orb_ =
    CORBA::ORB_init (argc,
                     argv,
                     "",
                     ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Object_var object =
    this->orb_->resolve_initial_references ("RTORB",
                                            ACE_TRY_ENV);
  ACE_CHECK;

  this->rt_orb_ =
    RTCORBA::RTORB::_narrow (object.in (),
                             ACE_TRY_ENV);
  ACE_CHECK;

  object =
    this->orb_->resolve_initial_references ("RTCurrent",
                                            ACE_TRY_ENV);
  ACE_CHECK;

  this->current_ =
    RTCORBA::Current::_narrow (object.in (),
                               ACE_TRY_ENV);
  ACE_CHECK;

  default_thread_priority =
    this->current_->the_priority (ACE_TRY_ENV);
  ACE_CHECK;

  object =
    this->orb_->resolve_initial_references ("RootPOA",
                                            ACE_TRY_ENV);
  ACE_CHECK;

  this->root_poa_ =
    PortableServer::POA::_narrow (object.in (),
                                  ACE_TRY_ENV);
  ACE_CHECK;

  this->poa_manager_ =
    this->root_poa_->the_POAManager (ACE_TRY_ENV);
  ACE_CHECK;

  this->poa_manager_->activate (ACE_TRY_ENV);
  ACE_CHECK;
}


void
Server::create_servant_in_root_poa (CORBA::Environment &ACE_TRY_ENV)
{
  test_i *servant = 0;
  ACE_NEW_THROW_EX (servant,
                    test_i (this->orb_.in (),
                            this->root_poa_.in (),
                            this->tests_),
                    CORBA::NO_MEMORY ());
  ACE_CHECK;

  servant->invocation_pool_and_lane (0, 0);

  PortableServer::ServantBase_var safe_servant (servant);

  this->tests_.size (this->tests_.size () + 1);
  this->tests_[this->tests_.size () - 1].object_ =
    servant->_this (ACE_TRY_ENV);
  this->tests_[this->tests_.size () - 1].servant_ =
    servant;
  ACE_CHECK;
}

void
Server::create_poa_and_servant_with_tp_policy (CORBA::Environment &ACE_TRY_ENV)
{
  RTCORBA::ThreadpoolId threadpool_id =
    this->rt_orb_->create_threadpool (this->stacksize_,
                                      this->static_threads_,
                                      this->dynamic_threads_,
                                      default_thread_priority,
                                      this->allow_request_buffering_,
                                      this->max_buffered_requests_,
                                      this->max_request_buffer_size_,
                                      ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Policy_var threadpool_policy =
    this->rt_orb_->create_threadpool_policy (threadpool_id,
                                             ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Policy_var implicit_activation_policy =
    this->root_poa_->create_implicit_activation_policy (PortableServer::IMPLICIT_ACTIVATION,
                                                        ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::PolicyList policies;

  policies.length (policies.length () + 1);
  policies[policies.length () - 1] =
    implicit_activation_policy;

  policies.length (policies.length () + 1);
  policies[policies.length () - 1] =
    threadpool_policy;

  PortableServer::POA_var poa =
    this->root_poa_->create_POA ("tp_child",
                                 this->poa_manager_.in (),
                                 policies,
                                 ACE_TRY_ENV);
  ACE_CHECK;

  test_i *servant = 0;
  ACE_NEW_THROW_EX (servant,
                    test_i (this->orb_.in (),
                            poa.in (),
                            this->tests_),
                    CORBA::NO_MEMORY ());
  ACE_CHECK;

  servant->invocation_pool_and_lane (1, 0);

  PortableServer::ServantBase_var safe_servant (servant);

  this->tests_.size (this->tests_.size () + 1);
  this->tests_[this->tests_.size () - 1].object_ =
    servant->_this (ACE_TRY_ENV);
  this->tests_[this->tests_.size () - 1].servant_ =
    servant;
  ACE_CHECK;
}

void
Server::create_poa_and_servant_with_tp_with_lanes_policy (const char *poa_name,
                                                          RTCORBA::PriorityModel priority_model,
                                                          CORBA::Environment &ACE_TRY_ENV)
{
  RTCORBA::ThreadpoolLanes lanes (2);
  lanes.length (2);

  lanes[0].lane_priority = default_thread_priority;
  lanes[0].static_threads = this->static_threads_;
  lanes[0].dynamic_threads = this->dynamic_threads_;

  lanes[1].lane_priority = default_thread_priority + 1;
  lanes[1].static_threads = this->static_threads_;
  lanes[1].dynamic_threads = this->dynamic_threads_;

  RTCORBA::ThreadpoolId threadpool_id =
    this->rt_orb_->create_threadpool_with_lanes (this->stacksize_,
                                                 lanes,
                                                 this->allow_borrowing_,
                                                 this->allow_request_buffering_,
                                                 this->max_buffered_requests_,
                                                 this->max_request_buffer_size_,
                                                 ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Policy_var threadpool_policy =
    this->rt_orb_->create_threadpool_policy (threadpool_id,
                                             ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Policy_var priority_model_policy =
    this->rt_orb_->create_priority_model_policy (priority_model,
                                                 default_thread_priority,
                                                 ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::PolicyList policies;

  policies.length (policies.length () + 1);
  policies[policies.length () - 1] =
    threadpool_policy;

  policies.length (policies.length () + 1);
  policies[policies.length () - 1] =
    priority_model_policy;

  PortableServer::POA_var poa =
    this->root_poa_->create_POA (poa_name,
                                 this->poa_manager_.in (),
                                 policies,
                                 ACE_TRY_ENV);
  ACE_CHECK;

  RTPortableServer::POA_var rt_poa =
    RTPortableServer::POA::_narrow (poa.in (),
                                    ACE_TRY_ENV);
  ACE_CHECK;

  test_i *servant1 = 0;
  test_i *servant2 = 0;
  ACE_NEW_THROW_EX (servant1,
                    test_i (this->orb_.in (),
                            poa.in (),
                            this->tests_),
                    CORBA::NO_MEMORY ());
  ACE_CHECK;

  ACE_NEW_THROW_EX (servant2,
                    test_i (this->orb_.in (),
                            poa.in (),
                            this->tests_),
                    CORBA::NO_MEMORY ());
  ACE_CHECK;

  PortableServer::ServantBase_var safe_servant1 (servant1);
  PortableServer::ServantBase_var safe_servant2 (servant2);

  PortableServer::ObjectId_var id1;
  PortableServer::ObjectId_var id2;

  if (priority_model == RTCORBA::SERVER_DECLARED)
    {
      servant1->invocation_pool_and_lane (3, 0);
      servant2->invocation_pool_and_lane (3, 1);

      id1 =
        rt_poa->activate_object_with_priority (servant1,
                                               default_thread_priority,
                                               ACE_TRY_ENV);
      ACE_CHECK;

      id2 =
        rt_poa->activate_object_with_priority (servant2,
                                               default_thread_priority + 1,
                                               ACE_TRY_ENV);
      ACE_CHECK;
    }
  else
    {
      servant1->invocation_pool (2);
      servant2->invocation_pool (2);
      servant1->client_propagated (1);
      servant2->client_propagated (1);

      id1 =
        rt_poa->activate_object (servant1,
                                 ACE_TRY_ENV);
      ACE_CHECK;

      id2 =
        rt_poa->activate_object (servant2,
                                 ACE_TRY_ENV);
      ACE_CHECK;
    }

  CORBA::Object_var object1 =
    poa->id_to_reference (id1.in (),
                          ACE_TRY_ENV);
  ACE_CHECK;

  CORBA::Object_var object2 =
    poa->id_to_reference (id2.in (),
                          ACE_TRY_ENV);
  ACE_CHECK;

  this->tests_.size (this->tests_.size () + 1);
  this->tests_[this->tests_.size () - 1].object_ =
    test::_narrow (object1.in (),
                   ACE_TRY_ENV);
  this->tests_[this->tests_.size () - 1].servant_ =
    servant1;
  ACE_CHECK;

  this->tests_.size (this->tests_.size () + 1);
  this->tests_[this->tests_.size () - 1].object_ =
    test::_narrow (object2.in (),
                   ACE_TRY_ENV);
  this->tests_[this->tests_.size () - 1].servant_ =
    servant2;
  ACE_CHECK;
}

void
Server::start_testing (CORBA::Environment &ACE_TRY_ENV)
{
  Tests::ITERATOR iterator (this->tests_);
  while (!iterator.done ())
    {
      Test_Object_And_Servant *test = 0;
      iterator.next (test);

      if (test->servant_->client_propagated ())
        {
          CORBA::Short current_thread_priority =
            this->current_->the_priority (ACE_TRY_ENV);
          ACE_CHECK;

          if (current_thread_priority == default_thread_priority)
            test->servant_->invocation_lane (0);
          else
            test->servant_->invocation_lane (1);
        }

      test->object_->start (ACE_TRY_ENV);
      ACE_CHECK;

      iterator.advance ();
    }
}

void
Server::test (CORBA::Environment &ACE_TRY_ENV)
{
  this->start_testing (ACE_TRY_ENV);
  ACE_CHECK;

  ACE_DEBUG ((LM_DEBUG,
              "\n\n*** Changing priority to be higher ***\n\n"));

  this->current_->the_priority (default_thread_priority + 1,
                                ACE_TRY_ENV);
  ACE_CHECK;

  this->start_testing (ACE_TRY_ENV);
  ACE_CHECK;
}

void
Server::shutdown (CORBA::Environment &ACE_TRY_ENV)
{
  this->orb_->shutdown (1, ACE_TRY_ENV);
  ACE_CHECK;

  this->orb_->destroy (ACE_TRY_ENV);
  ACE_CHECK;
}

int
main (int argc, char *argv[])
{
  ACE_TRY_NEW_ENV
    {
      Server server (argc,
                     argv,
                     ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.create_servant_in_root_poa (ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.create_poa_and_servant_with_tp_policy (ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.create_poa_and_servant_with_tp_with_lanes_policy ("tp_with_lanes_client_propagated_poa",
                                                               RTCORBA::CLIENT_PROPAGATED,
                                                               ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.create_poa_and_servant_with_tp_with_lanes_policy ("tp_with_lanes_server_declared_poa",
                                                               RTCORBA::SERVER_DECLARED,
                                                               ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.test (ACE_TRY_ENV);
      ACE_TRY_CHECK;

      server.shutdown (ACE_TRY_ENV);
      ACE_TRY_CHECK;
    }
  ACE_CATCHANY
    {
      ACE_PRINT_EXCEPTION (ACE_ANY_EXCEPTION,
                           "Exception caught:");
      return 1;
    }
  ACE_ENDTRY;

  return 0;
}


#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Array_Base<Test_Object_And_Servant>;
template class ACE_Array_Iterator<Test_Object_And_Servant>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Array_Base<Test_Object_And_Servant>
#pragma instantiate ACE_Array_Iterator<Test_Object_And_Servant>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */