blob: b31441fe637021e4aaf7c4155aae2ebea3a5933f (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Identity_Client.h
*
* Code for Identity_Client, which is used in conjunction with
* Identity_Server to test/demonstrate the functionality of the
* Load Balancing service.
*
*
* @author Marina Spivak <marina@cs.wustl.edu> with modifications by Bala Natarajan <bala@cs.wustl.edu>
*/
//=============================================================================
#ifndef IDENTITY_CLIENT_H_
#define IDENTITY_CLIENT_H_
#include "tao/Utils/ORB_Manager.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
/**
* @class Identity_Client
=TITLE
* Contacts the <Object_Group_Factory> in th Load Balancing Server
* to obtain a reference to the type of the <Object_Group>
* specified on the command line. Then, queries the
* <Object_Group> for its id and members, and prints that
* information. Finally, performs <number_of_invocations_>
* <Identity::get_name> calls, performing <Object_Group::resolve>
* before each <get_name> call in order to get the <Identity>
* reference to use for the call. (This provides an example of
* fine-grained, i.e., per call, Load Balancing among all the
* <Identity> objects registered with the <Object_Group> for the
* client's <get_name> calls.
*/
class Identity_Client
{
public:
/// Default constructor.
Identity_Client (void);
/// Destructor.
~Identity_Client (void);
/// Initializes <orb_manager_>, and parses commandline arguments.
int init (int argc, ACE_TCHAR *argv[]);
/// See TITLE.
int run (void);
private:
/// Parses the commandline arguments.
int parse_args (int argc, ACE_TCHAR *argv[]);
/// The ORB manager.
TAO_ORB_Manager orb_manager_;
/// The ior of the <Object_Group_Factory> object we shall use to
/// to obtain an <Object_Group> object.
const ACE_TCHAR *group_factory_ior_;
/// Number of times to invoke <get_name> method on <Identity>
/// objects. The default value is 5.
size_t number_of_invocations_;
/**
* Flag indicating which <Object_Group> to use to obtain references
* to <Identity> objects. Random group should be used if the flag
* is set to 1, and round robin group otherwise. Round robin is the
* default.
*/
size_t use_random_;
int iterations_;
};
#endif /* IDENTITY_CLIENT_H_ */
|