blob: fb1527285dd359ce95f413003c6c2ff840f57fde (
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
|
// $Id:
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = FILENAME
// options.h
//
// = DESCRIPTION
// Options for the Param_Test application
//
// = AUTHORS
// Aniruddha Gokhale
//
// ============================================================================
#if !defined (OPTIONS_H)
#define OPTIONS_H
#include "ace/Singleton.h"
#include "tao/corba.h"
class Options
{
public:
enum TEST_TYPE
{
NO_TEST,
TEST_SHORT,
TEST_UNBOUNDED_STRING,
TEST_FIXED_STRUCT,
TEST_STRING_SEQUENCE
};
enum INVOKE_TYPE
{
SII,
DII
};
Options (void);
// constructor
~Options (void);
// destructor
int parse_args (int argc, char **argv);
// Parses the arguments passed on the command line.
char *param_test_key (void);
// return the key
char *hostname (void);
// return the hostname
CORBA::ULong portnum (void);
// return the port number
TEST_TYPE test_type (void);
// what test to run
INVOKE_TYPE invoke_type (void);
// whether to use SII or DII
CORBA::ULong loop_count (void);
// number of times to run the test
CORBA::Boolean debug (void) const;
// whether debug option is on or not
private:
char *param_test_key_;
// Key of the obj ref to be retrieved
char *hostname_;
// Hostname of server.
CORBA::ULong portnum_;
// port number of server.
TEST_TYPE test_type_;
// what test to run
INVOKE_TYPE invoke_type_;
// whether SII or DII
CORBA::ULong loop_count_;
// Number of times to do the "test_*" operations.
CORBA::Boolean debug_;
// debugging output values
};
typedef ACE_Singleton<Options, ACE_SYNCH_RECURSIVE_MUTEX> OPTIONS;
#endif /* OPTIONS_H */
|