summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/gperf.idl
blob: a26cb9f9f33aba6335a0833b56f7d3f506f4f532 (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
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/tests/IDL_Test
//
// = FILENAME
//    gperf.idl
//
// = DESCRIPTION
//    This file contains examples of IDL code that has 
//    caused problems in the past for the TAO IDL
//    compiler. This test is to make sure the problems
//    stay fixed.
//
// = AUTHORS
//    Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
//
// ============================================================================

// The examples below uncovered some bugs in gperf,
// in the form of runtime errors when clients made
// requests on some of the methods, for example

//       TAO_Perfect_Hash_Table:find failed
//       Bad operation <ackConfArchData>


enum TestEnum
{
  first,
  second,
  third
};

interface testlistitem
{
  readonly attribute string name;
};


interface test
{
  attribute string stest;
#ifndef WITHOUT_CORBA_WSTRING
  attribute wstring wstest;
#else
  attribute string wstest;
#endif
#ifndef WITHOUT_CORBA_LONGLONG
  attribute long long ltest;
#else
  attribute long ltest;
#endif
#ifndef WITHOUT_CORBA_LONGDOUBLE
  attribute long double ldtest;
#else
  attribute double ldtest;
#endif
  attribute TestEnum etest;
#ifndef WITHOUT_CORBA_WSTRING
  attribute wstring setest;
#else
  attribute string setest;
#endif
  attribute testlistitem tltest;

  testlistitem new_testlistitem (in string name);
}; 

interface Simple_Server
{
 oneway void ackConfBasData ();

 oneway void ackConfMosData ();
 oneway void ackConfTwmData ();
 oneway void ackConfArchData ();
 oneway void ackConfVonData ();
 oneway void ackConfFftData ();
 oneway void ackConfSosData ();
 oneway void ackConfSscData ();
 oneway void ackConfCsData ();

 oneway void ackConfR10Data ();
 oneway void ackConfR11Data ();
 oneway void ackConfR12Data ();
 oneway void ackConfR13Data ();
 oneway void ackConfR14Data ();
 oneway void ackConfR15Data ();

 oneway void shutdown ();

 oneway void transferTriggerDb ();
 oneway void transferTriggerTdc ();
};