blob: 18b8e40a21102a4669720f277b5fe2211c40b51f (
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
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Param_Test
//
// = FILENAME
// objref.h
//
// = DESCRIPTION
// Tests object references
//
// = AUTHORS
// Aniruddha Gokhale
//
// ============================================================================
#if !defined (PARAM_TEST_OBJREF_H)
#define PARAM_TEST_OBJREF_H
#include "param_testCli.h"
// =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
// test objrefs
// =*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
class Test_ObjRef
{
public:
Test_ObjRef (void);
// ctor
~Test_ObjRef (void);
// dtor
int run_sii_test (Param_Test_ptr objref,
CORBA::Environment &env);
// run the SII test
int add_args (CORBA::NVList_ptr nvlist,
CORBA::NVList_ptr retval,
CORBA::Environment &env);
// add args to NVList for DII
const char *opname (void) const;
// return operation name
int init_parameters (Param_Test_ptr objref,
CORBA::Environment &env);
// set values for parameters
int reset_parameters (void);
// reset values for CORBA
CORBA::Boolean check_validity (void);
// check if results are valid
CORBA::Boolean check_validity (CORBA::Request_ptr req);
// check if results are valid. This is used for DII results
void print_values (void);
// print all the values
private:
char *opname_;
// operation name
Coffee_var in_;
// in parameter
Coffee_var inout_;
// inout parameter
Coffee_var out_;
// out parameter
Coffee_var ret_;
// return value
// Need these for DII.
// SII requests that involve aliased objref types can rely on
// their stubs and skeletons to convert to CORBA::Object so the
// ORB can deal with it. DII requests cannot convert for every
// possible aliased objref type, so we must convert ourselves
// before invoking the DII request, and use the interface's
// _narrow() function when it returns.
CORBA::Object_ptr *in_courier,
*inout_courier,
*out_courier,
*ret_courier;
};
#endif /* PARAM_TEST_OBJREF_H */
|