summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Naming/FaultTolerant/nsgroup_svc.cpp
blob: 10b648a632d7ba1089bd0ed8114896da77878aba (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
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
//=============================================================================
/**
 *  @file nsgroup_svc.cpp
 *
 *  $Id$
 *
 *  This file implements nsgroup utility operations
 *
 *  @author Phillip LaBanca <labancap@ociweb.com>
 */
//=============================================================================

#include "orbsvcs/Naming/FaultTolerant/nsgroup_svc.h"
#include "ace/OS_NS_strings.h"


NS_group_svc::NS_group_svc (void)
{
}

FT_Naming::LoadBalancingStrategyValue
NS_group_svc::determine_policy_string (const ACE_TCHAR *policy)
{
  if (ACE_OS::strcasecmp (policy, ACE_TEXT ("rand")) == 0) {
    return FT_Naming::RANDOM;
  } else if (ACE_OS::strcasecmp (policy, ACE_TEXT ("least")) == 0){
    return FT_Naming::LEAST;
  } else {
    return FT_Naming::ROUND_ROBIN; // Default case
  }
}

int
NS_group_svc::set_orb( CORBA::ORB_ptr orb)
{

    this->orb_ = CORBA::ORB::_duplicate (orb);

    if (CORBA::is_nil (this->orb_))
      ACE_ERROR_RETURN ((LM_ERROR,
                          ACE_TEXT (" (%P|%t) Unable to initialize the ")
                          ACE_TEXT ("ORB.\n")),
                          -1);
    return 0;
}

int
NS_group_svc::set_naming_manager( FT_Naming::NamingManager_ptr nm)
{

    this->naming_manager_ = FT_Naming::NamingManager::_duplicate (nm);

    if (CORBA::is_nil (this->naming_manager_))
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT (" (%P|%t) Invalid Naming Manager.\n")),
                          -1);
    return 0;
}

int
NS_group_svc::set_name_context( CosNaming::NamingContextExt_ptr nc)
{

    this->name_service_ = CosNaming::NamingContextExt::_duplicate (nc);

    if (CORBA::is_nil (this->name_service_))
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT (" (%P|%t) Invalid Name Context.\n")),
                          -1);
    return 0;
}

bool
NS_group_svc::group_exist (
  const ACE_TCHAR* group_name
)
{
  if (group_name == 0 )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_exist args not provided\n")),
                      -2);
  }

  try
  {
    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (group_name);
  }
  catch (const PortableGroup::ObjectGroupNotFound& ex)
  {
    return false;
  }

  return true;
}

/**
 * The naming service shall provide a command line utility for creating object groups.
 * Adds the object group to to the load balancing service with the specified
 * selection policy. On Creation, an object group contains no member objects.
 */

int
NS_group_svc::group_create (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* policy )
{

  if (group_name == 0 || policy == 0 )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_create args not provided\n")),
                      -2);

  }

  try
  {

    /// Verify that the group does not already exist
    /// Group names must be unique
    if ( true == group_exist (group_name))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("Group %C already exists\n"),
                         group_name),
                        -1);
    }

    PortableGroup::Criteria criteria (1);
    criteria.length (1);

    PortableGroup::Property &property = criteria[0];
    property.nam.length (1);

    property.nam[0].id = CORBA::string_dup (
        ACE_TEXT ("org.omg.PortableGroup.MembershipStyle"));

    PortableGroup::MembershipStyleValue msv = PortableGroup::MEMB_APP_CTRL;
    property.val <<= msv;

    CORBA::Object_var obj =
      this->naming_manager_->create_object_group (group_name,
                                                  determine_policy_string(policy),
                                                  criteria);

    if (CORBA::is_nil (obj.in ()))
    {
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to create group %C.\n"),
                         group_name),
                         -1);
    }

  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to create group %C\n"),
                       group_name),
                      -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility for binding an object
 * group to a path in the naming service.
 * Binds the specified object group to the specified path in the naming service.
 * When clients resolve that path, they tranparently obtain a member of the
 * specified object group.
 */
int
NS_group_svc::group_bind (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* path)
{

  if (group_name == 0 || path == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_bind args not provided\n")),
                       -2);
  }

  try
  {

    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (
        ACE_TEXT_ALWAYS_CHAR( group_name));

    if (CORBA::is_nil (group_var.in()))
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("Unable to get reference.\n")),
                         -1);

    CORBA::String_var str = CORBA::string_dup( ACE_TEXT_ALWAYS_CHAR (path) );
    CosNaming::Name_var name = this->name_service_->to_name ( str.in() );

    this->name_service_->rebind ( name.in(), group_var.in() );

  }
  catch (const CosNaming::NamingContextExt::InvalidName& ex){
      ex._tao_print_exception (
        ACE_TEXT ("InvalidName Exception in group_bind"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\n%C is invalid\n"),
                         path),
                         -1);
  }
  catch (const CosNaming::NamingContext::CannotProceed& ex){
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nCannot proceed with %C\n"),
                         path),
                         -1);
  }
  catch (const CosNaming::NamingContext::NotFound& ex){
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to find %C\n"),
                         path),
                         -1);
  }
  catch (const CORBA::SystemException& ex){

      ex._tao_print_exception (
        ACE_TEXT ("SystemException Exception in group_bind"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to bind %C\n"),
                         path),
                         -1);
  }
  catch (const CORBA::Exception& ex){

      ex._tao_print_exception (
        ACE_TEXT ("Exception in group_bind"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to bind %C\n"),
                         path),
                         -1);
  }
  return 0;
}

int
NS_group_svc::group_unbind (const ACE_TCHAR* path){
  if ( path == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_unbind args not provided\n")),
                       -2);
  }

  try
  {

    CORBA::String_var str = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR (path));
    CosNaming::Name_var name = this->name_service_->to_name ( str.in() );
    this->name_service_->unbind ( name.in() );

  }
  catch (const CosNaming::NamingContext::NotFound& ex){
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to find %C\n"),
                         path),
                         -1);
  }
  catch (const CosNaming::NamingContext::CannotProceed& ex){
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nCannot proceed with %C\n"),
                         path),
                         -1);
  }
  catch (const CosNaming::NamingContext::InvalidName& ex){
      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\n%C is invalid\n"),
                         path),
                         -1);
  }
  catch (const CORBA::SystemException& ex){

      ex._tao_print_exception (
        ACE_TEXT ("Exception in group_unbind"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to unbind %C\n"),
                         path),
                         -1);
  }
  catch (const CORBA::Exception& ex){

      ex._tao_print_exception (
        ACE_TEXT ("Exception in group_unbind"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("\nUnable to unbind %C\n"),
                         path),
                         -1);
  }
  return 0;
}

/**
 * The naming service shall provide a command line utility to display all
 * defined object groups within the naming service.
 * Displays all object groups that currently exist in the naming service.
 */
int
NS_group_svc::group_list (void)
{

  // KCS: The group list is independent of locations. I created a new operation in the
  // naming manager IDL to support requesting the group list - which is a list of names

  /// Display object group list for each load balancing strategy
  int rc = 0;
  if( display_load_policy_group (FT_Naming::ROUND_ROBIN,
                                 ACE_TEXT ("Round Robin")) < 0 )
  {
    rc = -1;
  }
  if( display_load_policy_group (FT_Naming::RANDOM,
                                 ACE_TEXT ("Random")) < 0 )
  {
    rc = -1;
  }
  if( display_load_policy_group (FT_Naming::LEAST,
                                 ACE_TEXT ("Least")) < 0 )
  {
    rc = -1;
  }
  return rc;
}

int
NS_group_svc::display_load_policy_group(
  FT_Naming::LoadBalancingStrategyValue strategy,
  const ACE_TCHAR *display_label) {

  if( display_label == 0 ) {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("display_load_policy_group args ")
                       ACE_TEXT ("not provided\n")),
                       -2);
  }

  try
  {

    FT_Naming::GroupNames_var list = this->naming_manager_->groups (strategy);

    std::cout << ACE_TEXT ("\n")
              << display_label
              << ACE_TEXT (" Load Balancing Groups:")
              << std::endl;

    if ( list->length () > 0 ) {

      for (unsigned int i = 0; i < list->length (); ++i)
      {
        std::cout << ACE_TEXT ("  ")
                  << (*list)[i]
                  << std::endl;
      }

    } else {

      std::cout << ACE_TEXT ("No ")
                << display_label
                << ACE_TEXT (" Load Balancing Groups Registered")
                << std::endl;

    }

  }
  catch (const CORBA::Exception& ex)
  {
      ex._tao_print_exception (
        ACE_TEXT ("Exception in group_list"));

      ACE_ERROR_RETURN ((LM_ERROR,
                         ACE_TEXT ("Unable to get %C group list\n"),
                         display_label),
                         -1);
  }
  return 0;
}

/**
 * The naming service shall provide a command line utility to modify the load
 * balancing strategy for a specified object group.
 * Changes the selection algorithm for the specified object group. An object
 * group's selection algorithm determines how the naming service directs client
 * requests to object group members.
 */
int
NS_group_svc::group_modify (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* policy)
{
  if (group_name == 0 || policy == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_modify args not provided\n")),
                      -2);
  }

  try
  {
    this->naming_manager_->set_load_balancing_strategy (
                            ACE_TEXT_ALWAYS_CHAR (group_name),
                            determine_policy_string(policy) );
  }
  catch (const PortableGroup::ObjectGroupNotFound& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                       -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to modify group %C\n"),
                       group_name),
                       -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility to remove a specified
 * object group from the naming service.
 * Removes the specified object group from the naming service.
 */
int
NS_group_svc::group_remove (const ACE_TCHAR* group_name)
{
  if (group_name == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("group_remove args not provided\n")),
                       -2);
  }

  try
  {
    this->naming_manager_->delete_object_group (
      ACE_TEXT_ALWAYS_CHAR (group_name));
  }
  catch (const PortableGroup::ObjectGroupNotFound& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                       -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to remove group %C\n"),
                       group_name),
                       -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility for adding object
 * references to an object group.
 * Adds an object to the specified object group. After being added, the object
 * is available for selection.
 */
int
NS_group_svc::member_add (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* location,
  const ACE_TCHAR* ior)
{
  if (group_name == 0 || location == 0 || ior == 0 )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("member_add args not provided\n")),
                       -2);
  }

  try
  {
    PortableGroup::Location location_name;
    location_name.length (1);
    location_name[0].id = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR (location));

    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (
        ACE_TEXT_ALWAYS_CHAR (group_name));

    CORBA::Object_var ior_var =
      this->orb_->string_to_object(ACE_TEXT_ALWAYS_CHAR (ior));

    if (CORBA::is_nil (ior_var.in ()))
      {
        ACE_ERROR_RETURN ((LM_ERROR,
                           ACE_TEXT ("\nInvalid member IOR provided.\n")),
                          -1);
      }

    this->naming_manager_->add_member (
        group_var.in(),
        location_name,
        ior_var.in());

  }
  catch (const PortableGroup::ObjectGroupNotFound& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                      -1);
  }
  catch (const PortableGroup::ObjectNotAdded& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to add location %C to group %C\n"),
                       location, group_name),
                      -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to add location %C to group %C\n"),
                       location, group_name),
                      -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility for displaying all
 * members (object references) for a specified object group.
 * Lists the members of the specified object group.
 */
int
NS_group_svc::member_list (const ACE_TCHAR* group_name)
{
  if (group_name == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("member_list args not provided\n")),
                      -2);
  }

  try
  {
    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (
        ACE_TEXT_ALWAYS_CHAR (group_name));

    PortableGroup::Locations_var locations =
      this->naming_manager_->locations_of_members (group_var.in());

    for (unsigned int i = 0; i < locations->length(); ++i)
    {
      const PortableGroup::Location & loc = locations[i];
      if (loc.length() > 0) {
        std::cout << loc[0].id.in() << std::endl;
      }
    }

  }
  catch (const PortableGroup::ObjectGroupNotFound& ex )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                      -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to list members for group %C\n"),
                       group_name),
                      -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility for removing object
 * references from an object group.
 * Removes the specified member object from the specified object group.
 */
int
NS_group_svc::member_remove (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* location)
{
  if (group_name == 0 || location == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("member_remove args not provided\n")),
                      -2);
  }

  /**
   * Remove an object at a specific location from the given
   * ObjectGroup.  Deletion of application created objects must be
   * deleted by the application.  Objects created by the
   * infrastructure (load balancer) will be deleted by the
   * infrastructure.
   */

  try
  {
    PortableGroup::Location location_name;
    location_name.length (1);
    location_name[0].id = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR (location));

    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (
        ACE_TEXT_ALWAYS_CHAR (group_name));

    this->naming_manager_->remove_member (
      group_var.in(),
      location_name);
  }
  catch (const PortableGroup::ObjectGroupNotFound& ex )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                      -1);
  }
  catch (const PortableGroup::MemberNotFound& ex )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find member %C\n"),
                       location),
                      -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to remove member %C\n"),
                       location),
                      -1);
  }

  return 0;
}

/**
 * The naming service shall provide a command line utility to display an object
 * reference from a specified object group.
 * Displays the object reference that cooresponds to the specified member of an
 * object group.
 */
int
NS_group_svc::member_show (
  const ACE_TCHAR* group_name,
  const ACE_TCHAR* location)
{
  if (group_name == 0 || location == 0)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("member_show args not provided\n")),
                      -2);
  }

  //Get and display IOR for the member location
  try
  {
    PortableGroup::Location location_name (1);
    location_name.length (1);
    location_name[0].id = CORBA::string_dup (ACE_TEXT_ALWAYS_CHAR (location));

    PortableGroup::ObjectGroup_var group_var =
      this->naming_manager_->get_object_group_ref_from_name (
        ACE_TEXT_ALWAYS_CHAR (group_name));

    CORBA::Object_var ior_var =
      this->naming_manager_->get_member_ref (group_var.in(), location_name);

    CORBA::String_var ior_string  =
      this->orb_->object_to_string( ior_var.in() );

    std::cout << ior_string.in() << std::endl;
  }
  catch (const PortableGroup::ObjectGroupNotFound& ex )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find group %C\n"),
                       group_name),
                      -1);
  }
  catch (const PortableGroup::MemberNotFound& ex )
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to find member location %C\n"),
                       location),
                      -1);
  }
  catch (const CORBA::Exception& ex)
  {
    ACE_ERROR_RETURN ((LM_ERROR,
                       ACE_TEXT ("\nUnable to show member location %C\n"),
                       location),
                      -1);
  }

  return 0;
}