aaronp-zomg 1.0.2.20080827232412
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +25 -0
- data/Manifest.txt +238 -0
- data/README.txt +59 -0
- data/Rakefile +43 -0
- data/bin/omfg +56 -0
- data/lib/scanner.rex +169 -0
- data/lib/yacc.y +861 -0
- data/lib/zomg.rb +22 -0
- data/lib/zomg/idl.rb +14 -0
- data/lib/zomg/idl/nodes/attribute.rb +15 -0
- data/lib/zomg/idl/nodes/binary.rb +19 -0
- data/lib/zomg/idl/nodes/constant.rb +15 -0
- data/lib/zomg/idl/nodes/interface.rb +13 -0
- data/lib/zomg/idl/nodes/interface_header.rb +14 -0
- data/lib/zomg/idl/nodes/member.rb +14 -0
- data/lib/zomg/idl/nodes/node.rb +54 -0
- data/lib/zomg/idl/nodes/operation.rb +17 -0
- data/lib/zomg/idl/nodes/parameter.rb +18 -0
- data/lib/zomg/idl/nodes/typedef.rb +13 -0
- data/lib/zomg/idl/nodes/union.rb +14 -0
- data/lib/zomg/idl/parser.rb +54 -0
- data/lib/zomg/idl/visitable.rb +15 -0
- data/lib/zomg/idl/visitors/duhr.rb +24 -0
- data/lib/zomg/idl/visitors/ruby_sexp.rb +204 -0
- data/lib/zomg/idl/visitors/sexp.rb +274 -0
- data/lib/zomg/version.rb +3 -0
- data/test/assets/array/array1.idl +60 -0
- data/test/assets/array/array2.idl +38 -0
- data/test/assets/array/array3.idl +8 -0
- data/test/assets/array/array4.idl +7 -0
- data/test/assets/array/array5.idl +80 -0
- data/test/assets/attribute/grid_0attribs_2methods.idl +16 -0
- data/test/assets/attribute/grid_1ROattribs_1attribs_0methods.idl +19 -0
- data/test/assets/attribute/grid_1ROattribs_1attribs_1methods.idl +19 -0
- data/test/assets/attribute/grid_1ROattribs_1attribs_2methods.idl +17 -0
- data/test/assets/attribute/grid_1ROattribs_1methods.idl +16 -0
- data/test/assets/attribute/grid_1ROattribs_2methods.idl +16 -0
- data/test/assets/attribute/grid_1attribs_1methods.idl +17 -0
- data/test/assets/attribute/grid_1attribs_2methods.idl +17 -0
- data/test/assets/attribute/grid_2ROattribs_0methods.idl +16 -0
- data/test/assets/attribute/grid_2ROattribs_1methods.idl +16 -0
- data/test/assets/attribute/grid_2ROattribs_2methods.idl +16 -0
- data/test/assets/attribute/grid_2attribs_0methods.idl +19 -0
- data/test/assets/attribute/grid_2attribs_1methods.idl +19 -0
- data/test/assets/attribute/grid_2attribs_2methods.idl +19 -0
- data/test/assets/comment/c_style_comments.idl +63 -0
- data/test/assets/comment/comment1.idl +57 -0
- data/test/assets/comment/cpp_style_comments.idl +168 -0
- data/test/assets/comment/shortform.idl +0 -0
- data/test/assets/complex/TestCodeSets.idl +10 -0
- data/test/assets/complex/TestIntfContext.idl +13 -0
- data/test/assets/complex/TestIntfLongLong.idl +51 -0
- data/test/assets/complex/TestIntfWChar.idl +52 -0
- data/test/assets/complex/any1.idl +22 -0
- data/test/assets/complex/complex1.idl +495 -0
- data/test/assets/complex/complex2.idl +730 -0
- data/test/assets/complex/complex3.idl +181 -0
- data/test/assets/complex/complex4.idl +181 -0
- data/test/assets/complex/interop_wchar.idl +60 -0
- data/test/assets/constant/constant1.idl +37 -0
- data/test/assets/constant/constant2.idl +29 -0
- data/test/assets/constant/constant3.idl +50 -0
- data/test/assets/constant/constant4.idl +21 -0
- data/test/assets/constant/constant5.idl +65 -0
- data/test/assets/constant/constant6.idl +144 -0
- data/test/assets/constant/constant7.idl +30 -0
- data/test/assets/enum/enum1.idl +13 -0
- data/test/assets/exception/TestIntfExceptions.idl +69 -0
- data/test/assets/exception/TestIntfExceptionsExt_2_0.idl +34 -0
- data/test/assets/exception/TestIntfExceptionsExt_2_3.idl +24 -0
- data/test/assets/exception/ex1.idl +6 -0
- data/test/assets/exception/ex2.idl +18 -0
- data/test/assets/exception/ex3.idl +10 -0
- data/test/assets/exception/ex4.idl +20 -0
- data/test/assets/exception/sc.idl +0 -0
- data/test/assets/exception/simple1.idl +18 -0
- data/test/assets/exception/simple2.idl +25 -0
- data/test/assets/factory/factory1.idl +77 -0
- data/test/assets/factory/objref.idl +25 -0
- data/test/assets/forward/forward.idl +15 -0
- data/test/assets/forward/forward1.idl +13 -0
- data/test/assets/forward/fwd_incl1.idl +6 -0
- data/test/assets/forward/fwd_incl2.idl +7 -0
- data/test/assets/include/a.idl +23 -0
- data/test/assets/include/b.idl +16 -0
- data/test/assets/include/employee.idl +12 -0
- data/test/assets/include/include1.idl +10 -0
- data/test/assets/include/include2.idl +5 -0
- data/test/assets/include/manager.idl +10 -0
- data/test/assets/include/pragma.idl +41 -0
- data/test/assets/include/rookie.idl +13 -0
- data/test/assets/include/rookiemanager.idl +15 -0
- data/test/assets/include/sample.idl +58 -0
- data/test/assets/include/sample_incl.idl +406 -0
- data/test/assets/inherit/IDL1.idl +18 -0
- data/test/assets/inherit/IDL2.idl +18 -0
- data/test/assets/inherit/IDL3.idl +18 -0
- data/test/assets/inherit/IDL4.idl +17 -0
- data/test/assets/inherit/diamond_inheritance.idl +31 -0
- data/test/assets/inherit/inherit.idl +27 -0
- data/test/assets/limit/longidentifiers.idl +25 -0
- data/test/assets/limit/namelens.idl +26 -0
- data/test/assets/limit/tpztest.idl +21 -0
- data/test/assets/module/module1.idl +29 -0
- data/test/assets/module/module2.idl +34 -0
- data/test/assets/module/module3.idl +20 -0
- data/test/assets/module/module4.idl +15 -0
- data/test/assets/nested/nested1.idl +5 -0
- data/test/assets/nested/nested2.idl +11 -0
- data/test/assets/operations/Benchmark.idl +331 -0
- data/test/assets/operations/CCS.idl +82 -0
- data/test/assets/operations/TestIntf.idl +40 -0
- data/test/assets/operations/TestIntfBasic.idl +653 -0
- data/test/assets/operations/atomic.idl +40 -0
- data/test/assets/operations/dif2.idl +48 -0
- data/test/assets/operations/interface1.idl +16 -0
- data/test/assets/operations/parameters.idl +111 -0
- data/test/assets/operations/perf.idl +84 -0
- data/test/assets/operations/timer.idl +104 -0
- data/test/assets/preprocess/base_for_diamond_inheritance_with_macros.idl +17 -0
- data/test/assets/preprocess/basic_macro_marshalling.idl +54 -0
- data/test/assets/preprocess/diamond_inheritance_with_macros.idl +74 -0
- data/test/assets/preprocess/macro1.idl +52 -0
- data/test/assets/preprocess/preprocess1.idl +246 -0
- data/test/assets/preprocess/preprocess2.idl +3 -0
- data/test/assets/recursion/loop.idl +28 -0
- data/test/assets/recursion/recursion1.idl +47 -0
- data/test/assets/recursion/recursion2.idl +74 -0
- data/test/assets/scenarios/filestat.idl +69 -0
- data/test/assets/scenarios/gateway.idl +176 -0
- data/test/assets/scenarios/library.idl +20 -0
- data/test/assets/scenarios/phone.idl +24 -0
- data/test/assets/scenarios/ticketservice.idl +118 -0
- data/test/assets/scope/scope01.idl +58 -0
- data/test/assets/scope/scope02.idl +25 -0
- data/test/assets/scope/scope03.idl +22 -0
- data/test/assets/scope/scope04.idl +27 -0
- data/test/assets/scope/scope05.idl +30 -0
- data/test/assets/scope/scope06.idl +51 -0
- data/test/assets/scope/scope07.idl +20 -0
- data/test/assets/scope/scope08.idl +88 -0
- data/test/assets/scope/scope09.idl +21 -0
- data/test/assets/scope/scope10.idl +95 -0
- data/test/assets/scope/scope11.idl +62 -0
- data/test/assets/scope/scope12.idl +117 -0
- data/test/assets/scope/scope13.idl +117 -0
- data/test/assets/scope/scope14.idl +117 -0
- data/test/assets/scope/scope15.idl +117 -0
- data/test/assets/scope/scope16.idl +117 -0
- data/test/assets/scope/scope17.idl +117 -0
- data/test/assets/scope/scope18.idl +117 -0
- data/test/assets/scope/scope19.idl +117 -0
- data/test/assets/scope/scope20.idl +215 -0
- data/test/assets/scope/scope21.idl +215 -0
- data/test/assets/scope/scope22.idl +205 -0
- data/test/assets/scope/scope23.idl +261 -0
- data/test/assets/scope/scope24.idl +376 -0
- data/test/assets/scope/scope25.idl +266 -0
- data/test/assets/scope/scope26.idl +180 -0
- data/test/assets/scope/scope27.idl +184 -0
- data/test/assets/scope/scope28.idl +182 -0
- data/test/assets/scope/scope29.idl +182 -0
- data/test/assets/scope/scope30.idl +40 -0
- data/test/assets/scope/scope31.idl +33 -0
- data/test/assets/scope/scope32.idl +37 -0
- data/test/assets/scope/scope33.idl +50 -0
- data/test/assets/scope/scope34.idl +97 -0
- data/test/assets/scope/scope35.idl +72 -0
- data/test/assets/scope/scope36.idl +167 -0
- data/test/assets/scope/scope37.idl +57 -0
- data/test/assets/scope/scope38.idl +38 -0
- data/test/assets/scope/scope39.idl +38 -0
- data/test/assets/scope/scope40.idl +38 -0
- data/test/assets/scope/scope41.idl +24 -0
- data/test/assets/scope/scope42.idl +64 -0
- data/test/assets/scope/scope43.idl +66 -0
- data/test/assets/scope/scope44.idl +52 -0
- data/test/assets/sequence/sequence1.idl +24 -0
- data/test/assets/sequence/sequence2.idl +9 -0
- data/test/assets/simple/basictypes1.idl +80 -0
- data/test/assets/simple/basictypes2.idl +197 -0
- data/test/assets/simple/basictypes3.idl +23 -0
- data/test/assets/simple/basictypes4.idl +73 -0
- data/test/assets/simple/basictypes5.idl +29 -0
- data/test/assets/simple/basictypes6.idl +63 -0
- data/test/assets/simple/simple1.idl +45 -0
- data/test/assets/simple/simple2.idl +61 -0
- data/test/assets/simple/simple3.idl +36 -0
- data/test/assets/string/string1.idl +11 -0
- data/test/assets/string/string2.idl +29 -0
- data/test/assets/struct/struct1.idl +20 -0
- data/test/assets/struct/struct2.idl +21 -0
- data/test/assets/struct/struct3.idl +42 -0
- data/test/assets/struct/struct4.idl +57 -0
- data/test/assets/struct/struct5.idl +71 -0
- data/test/assets/typecode/orb.idl +0 -0
- data/test/assets/typecode/pseudo.idl +25 -0
- data/test/assets/typedef/shorthand_typedef_struct_insideIF.idl +17 -0
- data/test/assets/typedef/shorthand_typedef_struct_insideIF_noMO.idl +16 -0
- data/test/assets/typedef/shorthand_typedef_struct_insideMO.idl +17 -0
- data/test/assets/typedef/shorthand_typedef_struct_outsideMO.idl +17 -0
- data/test/assets/typedef/typedef1.idl +8 -0
- data/test/assets/typedef/typedef2.idl +22 -0
- data/test/assets/typedef/typedef_struct_insideIF.idl +18 -0
- data/test/assets/typedef/typedef_struct_insideMO.idl +18 -0
- data/test/assets/typedef/typedef_struct_outsideMO.idl +18 -0
- data/test/assets/union/union1.idl +31 -0
- data/test/assets/union/union2.idl +22 -0
- data/test/assets/union/union3.idl +26 -0
- data/test/conversions/test_attribute.rb +46 -0
- data/test/conversions/test_enum.rb +25 -0
- data/test/conversions/test_exception.rb +24 -0
- data/test/conversions/test_forward_declaration.rb +22 -0
- data/test/conversions/test_interface.rb +30 -0
- data/test/conversions/test_module.rb +24 -0
- data/test/conversions/test_struct.rb +25 -0
- data/test/conversions/test_typedef.rb +22 -0
- data/test/conversions/test_union.rb +27 -0
- data/test/conversions/test_value_box_dcl.rb +22 -0
- data/test/helper.rb +23 -0
- data/test/simple/test_basictypes1.rb +87 -0
- data/test/simple/test_basictypes2.rb +18 -0
- data/test/simple/test_basictypes3.rb +32 -0
- data/test/simple/test_basictypes4.rb +25 -0
- data/test/simple/test_basictypes5.rb +17 -0
- data/test/simple/test_basictypes6.rb +19 -0
- data/test/simple/test_simple1.rb +40 -0
- data/test/simple/test_simple2.rb +48 -0
- data/test/simple/test_simple3.rb +20 -0
- data/test/test_array.rb +22 -0
- data/test/test_assets.rb +33 -0
- data/test/test_complex.rb +17 -0
- data/test/test_node.rb +16 -0
- data/test/test_parser.rb +17 -0
- data/test/test_scanner.rb +234 -0
- metadata +334 -0
@@ -0,0 +1,261 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
typedef enum Sharanfruit22{
|
4
|
+
BeefTomatoes22,
|
5
|
+
RedPepper22,
|
6
|
+
FrenchBeans22
|
7
|
+
} Radish22;
|
8
|
+
|
9
|
+
typedef sequence<sequence<Sharanfruit22,13> > Tarragon23[15];
|
10
|
+
|
11
|
+
typedef struct Zucchini24{
|
12
|
+
struct Plum24{
|
13
|
+
sequence<sequence<boolean,11> > Shallots24;
|
14
|
+
} KidneyBean24;
|
15
|
+
} ButterBean24;
|
16
|
+
|
17
|
+
typedef struct Bayleaf25{
|
18
|
+
struct WhiteCabbage25{
|
19
|
+
sequence<sequence<sequence<float> > ,7> Celery25[10];
|
20
|
+
} Aniseed25;
|
21
|
+
} Dill25;
|
22
|
+
|
23
|
+
typedef struct Mango26{
|
24
|
+
struct PassionFruit26{
|
25
|
+
sequence<sequence<sequence<double> > ,19> Rhubarb26;
|
26
|
+
} Pumpkin26;
|
27
|
+
} WaterMelon26;
|
28
|
+
|
29
|
+
typedef struct Potato26{
|
30
|
+
struct ChineseLeaves26{
|
31
|
+
sequence<sequence<sequence<long> > > RedCabbage26[12];
|
32
|
+
} Broadbeans26;
|
33
|
+
} Record26;
|
34
|
+
|
35
|
+
typedef struct Blueberry27{
|
36
|
+
struct Basil27{
|
37
|
+
sequence<sequence<sequence<short> > > Peanuts27;
|
38
|
+
} CoxPippin27;
|
39
|
+
} Blackberry27;
|
40
|
+
|
41
|
+
typedef struct Raspberry28{
|
42
|
+
struct Peppercorn28{
|
43
|
+
sequence<sequence<sequence<short,6> ,9> ,7> Papaya28[4];
|
44
|
+
} Susander28;
|
45
|
+
} Grapefruit28;
|
46
|
+
|
47
|
+
typedef struct Elderberry29{
|
48
|
+
struct RedGrapes29{
|
49
|
+
sequence<sequence<sequence<unsigned long,5> ,5> ,3> Melon29;
|
50
|
+
} BeechNut29;
|
51
|
+
} Kumquats29;
|
52
|
+
|
53
|
+
typedef struct CrabApple30{
|
54
|
+
struct Lentil30{
|
55
|
+
sequence<sequence<sequence<unsigned short,9> ,3> > GoldenDelicous30[17];
|
56
|
+
} Fig30;
|
57
|
+
} RedOnion30;
|
58
|
+
|
59
|
+
typedef struct Mushroom31{
|
60
|
+
struct Almonds31{
|
61
|
+
sequence<sequence<sequence<char,6> ,6> > Beansprout31;
|
62
|
+
} Guava31;
|
63
|
+
} Runnerbean31;
|
64
|
+
|
65
|
+
typedef struct Cabbage32{
|
66
|
+
struct Coconut32{
|
67
|
+
sequence<sequence<sequence<boolean,18> > ,15> Dates32[11];
|
68
|
+
} Lychees32;
|
69
|
+
} Cucumber32;
|
70
|
+
|
71
|
+
typedef struct KerrsPinks32{
|
72
|
+
struct Wilja32{
|
73
|
+
sequence<sequence<sequence<octet,7> > ,14> BritishQueens32;
|
74
|
+
} Balmoral32;
|
75
|
+
} GoldenWonder32;
|
76
|
+
|
77
|
+
typedef struct PricklyPear33{
|
78
|
+
struct VineTomatoes33{
|
79
|
+
sequence<sequence<sequence<sequence<float> ,11> > > GreenPepper33[5];
|
80
|
+
} Scallion33;
|
81
|
+
} Currant33;
|
82
|
+
|
83
|
+
typedef struct Artichokes34{
|
84
|
+
struct Peanutsquash34{
|
85
|
+
sequence<sequence<sequence<sequence<float,2> ,16> > > Damsons34;
|
86
|
+
} CherryTomatoes34;
|
87
|
+
} GreenGrapes34;
|
88
|
+
|
89
|
+
typedef struct Chickpea35{
|
90
|
+
struct Uglifruit35{
|
91
|
+
sequence<sequence<sequence<sequence<double> > ,4> ,5> Fennell35[14];
|
92
|
+
} Waterchestnut35;
|
93
|
+
} Beetroot35;
|
94
|
+
|
95
|
+
typedef struct JuniperBerries36{
|
96
|
+
struct GooseBerry36{
|
97
|
+
sequence<sequence<sequence<sequence<double,2> > ,11> ,7> Cinnamon36;
|
98
|
+
} EggPlant36;
|
99
|
+
} Cloves36;
|
100
|
+
|
101
|
+
typedef struct BrazilNut37{
|
102
|
+
struct Brocoli37{
|
103
|
+
sequence<sequence<sequence<sequence<long> > ,14> > Prunes37[13];
|
104
|
+
} GrannySmith37;
|
105
|
+
} SweetPotato37;
|
106
|
+
|
107
|
+
typedef struct Mint38{
|
108
|
+
struct BlackEyedBeans38{
|
109
|
+
sequence<sequence<sequence<sequence<long,1> > ,16> > Apricots38;
|
110
|
+
} Leek38;
|
111
|
+
} GardenPeas38;
|
112
|
+
|
113
|
+
typedef struct Cara38{
|
114
|
+
struct Rooster38{
|
115
|
+
sequence<sequence<sequence<sequence<short> > > ,8> Cultra38[8];
|
116
|
+
} MarisPiper38;
|
117
|
+
} KingEdward38;
|
118
|
+
|
119
|
+
typedef struct Chayato39{
|
120
|
+
struct KiwanoMelon39{
|
121
|
+
sequence<sequence<sequence<sequence<short,5> > > ,3> IcebergLettuce39;
|
122
|
+
} Tomato39;
|
123
|
+
} PippinApple39;
|
124
|
+
|
125
|
+
typedef struct Eddo40{
|
126
|
+
struct Chives40{
|
127
|
+
sequence<sequence<sequence<sequence<unsigned long> > > > CookingApple40[7];
|
128
|
+
} Mullberry40;
|
129
|
+
} Yam40;
|
130
|
+
|
131
|
+
typedef struct LimaBean41{
|
132
|
+
struct Blackcurrant41{
|
133
|
+
sequence<sequence<sequence<sequence<unsigned long,6> > > > Plantain41;
|
134
|
+
} Pineapple41;
|
135
|
+
} Mangosteen41;
|
136
|
+
|
137
|
+
typedef struct Thyme42{
|
138
|
+
struct Strawberry42{
|
139
|
+
sequence<sequence<sequence<sequence<unsigned long,5> ,3> ,2> ,14> Mustard42[13];
|
140
|
+
} BreadFruit42;
|
141
|
+
} Sweedes42;
|
142
|
+
|
143
|
+
typedef struct RowanBerry43{
|
144
|
+
struct CantelopeMelon43{
|
145
|
+
sequence<sequence<sequence<sequence<unsigned short> ,2> ,4> ,3> Billberries43;
|
146
|
+
} LolloRossa43;
|
147
|
+
} Sweetcorn43;
|
148
|
+
|
149
|
+
|
150
|
+
interface idlServer {
|
151
|
+
|
152
|
+
exception Radish22Excpt{
|
153
|
+
::Radish22 ex1;
|
154
|
+
};
|
155
|
+
|
156
|
+
attribute ::Radish22 Radish22Attr;
|
157
|
+
|
158
|
+
::Radish22 Radish22Op(
|
159
|
+
in ::Radish22 p1,
|
160
|
+
out ::Radish22 p2,
|
161
|
+
inout ::Radish22 p3
|
162
|
+
) raises (Radish22Excpt);
|
163
|
+
|
164
|
+
exception Sharanfruit22Excpt{
|
165
|
+
::Sharanfruit22 ex1;
|
166
|
+
};
|
167
|
+
|
168
|
+
attribute ::Sharanfruit22 Sharanfruit22Attr;
|
169
|
+
|
170
|
+
::Sharanfruit22 Sharanfruit22Op(
|
171
|
+
in ::Sharanfruit22 p1,
|
172
|
+
out ::Sharanfruit22 p2,
|
173
|
+
inout ::Sharanfruit22 p3
|
174
|
+
) raises (Sharanfruit22Excpt);
|
175
|
+
|
176
|
+
exception Tarragon23Excpt{
|
177
|
+
::Tarragon23 ex1;
|
178
|
+
};
|
179
|
+
|
180
|
+
attribute ::Tarragon23 Tarragon23Attr;
|
181
|
+
|
182
|
+
::Tarragon23 Tarragon23Op(
|
183
|
+
in ::Tarragon23 p1,
|
184
|
+
out ::Tarragon23 p2,
|
185
|
+
inout ::Tarragon23 p3
|
186
|
+
) raises (Tarragon23Excpt);
|
187
|
+
|
188
|
+
exception ButterBean24Excpt{
|
189
|
+
::ButterBean24 ex1;
|
190
|
+
};
|
191
|
+
|
192
|
+
attribute ::ButterBean24 ButterBean24Attr;
|
193
|
+
|
194
|
+
::ButterBean24 ButterBean24Op(
|
195
|
+
in ::ButterBean24 p1,
|
196
|
+
out ::ButterBean24 p2,
|
197
|
+
inout ::ButterBean24 p3
|
198
|
+
) raises (ButterBean24Excpt);
|
199
|
+
|
200
|
+
exception Zucchini24Excpt{
|
201
|
+
::Zucchini24 ex1;
|
202
|
+
};
|
203
|
+
|
204
|
+
attribute ::Zucchini24 Zucchini24Attr;
|
205
|
+
|
206
|
+
::Zucchini24 Zucchini24Op(
|
207
|
+
in ::Zucchini24 p1,
|
208
|
+
out ::Zucchini24 p2,
|
209
|
+
inout ::Zucchini24 p3
|
210
|
+
) raises (Zucchini24Excpt);
|
211
|
+
|
212
|
+
exception Plum24Excpt{
|
213
|
+
::Zucchini24::Plum24 ex1;
|
214
|
+
};
|
215
|
+
|
216
|
+
attribute ::Zucchini24::Plum24 Plum24Attr;
|
217
|
+
|
218
|
+
::Zucchini24::Plum24 Plum24Op(
|
219
|
+
in ::Zucchini24::Plum24 p1,
|
220
|
+
out ::Zucchini24::Plum24 p2,
|
221
|
+
inout ::Zucchini24::Plum24 p3
|
222
|
+
) raises (Plum24Excpt);
|
223
|
+
|
224
|
+
exception Dill25Excpt{
|
225
|
+
::Dill25 ex1;
|
226
|
+
};
|
227
|
+
|
228
|
+
attribute ::Dill25 Dill25Attr;
|
229
|
+
|
230
|
+
::Dill25 Dill25Op(
|
231
|
+
in ::Dill25 p1,
|
232
|
+
out ::Dill25 p2,
|
233
|
+
inout ::Dill25 p3
|
234
|
+
) raises (Dill25Excpt);
|
235
|
+
|
236
|
+
exception Bayleaf25Excpt{
|
237
|
+
::Bayleaf25 ex1;
|
238
|
+
};
|
239
|
+
|
240
|
+
attribute ::Bayleaf25 Bayleaf25Attr;
|
241
|
+
|
242
|
+
::Bayleaf25 Bayleaf25Op(
|
243
|
+
in ::Bayleaf25 p1,
|
244
|
+
out ::Bayleaf25 p2,
|
245
|
+
inout ::Bayleaf25 p3
|
246
|
+
) raises (Bayleaf25Excpt);
|
247
|
+
|
248
|
+
exception WhiteCabbage25Excpt{
|
249
|
+
::Bayleaf25::WhiteCabbage25 ex1;
|
250
|
+
};
|
251
|
+
|
252
|
+
attribute ::Bayleaf25::WhiteCabbage25 WhiteCabbage25Attr;
|
253
|
+
|
254
|
+
::Bayleaf25::WhiteCabbage25 WhiteCabbage25Op(
|
255
|
+
in ::Bayleaf25::WhiteCabbage25 p1,
|
256
|
+
out ::Bayleaf25::WhiteCabbage25 p2,
|
257
|
+
inout ::Bayleaf25::WhiteCabbage25 p3
|
258
|
+
) raises (WhiteCabbage25Excpt);
|
259
|
+
|
260
|
+
};
|
261
|
+
|
@@ -0,0 +1,376 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
typedef struct Orange44{
|
4
|
+
struct Sultana44{
|
5
|
+
sequence<sequence<sequence<sequence<unsigned short,18> ,18> ,13> > GaliaMelon44[15];
|
6
|
+
} Turnip44;
|
7
|
+
} LoganBerry44;
|
8
|
+
|
9
|
+
typedef struct Lemon45{
|
10
|
+
struct Banana45{
|
11
|
+
sequence<sequence<sequence<sequence<char> ,11> ,7> > Apple45;
|
12
|
+
} Carrots45;
|
13
|
+
} BlackCherry45;
|
14
|
+
|
15
|
+
typedef struct Kiwi45{
|
16
|
+
struct GalaApple45{
|
17
|
+
sequence<sequence<sequence<sequence<char,10> ,19> > ,12> Celeriac45[6];
|
18
|
+
} Cauliflower45;
|
19
|
+
} Corriander45;
|
20
|
+
|
21
|
+
typedef struct Parsley46{
|
22
|
+
struct Peach46{
|
23
|
+
sequence<sequence<sequence<sequence<boolean> ,9> > ,7> Corn46;
|
24
|
+
} Squash46;
|
25
|
+
} YellowPepper46;
|
26
|
+
|
27
|
+
typedef struct Sharanfruit47{
|
28
|
+
struct BeefTomatoes47{
|
29
|
+
sequence<sequence<sequence<sequence<boolean,4> ,2> > > RedPepper47[5];
|
30
|
+
} FrenchBeans47;
|
31
|
+
} Radish47;
|
32
|
+
|
33
|
+
typedef struct Cress48{
|
34
|
+
struct Lettuce48{
|
35
|
+
sequence<sequence<sequence<sequence<octet> ,3> > > Tarragon48;
|
36
|
+
} Mangetout48;
|
37
|
+
} BambooShoot48;
|
38
|
+
|
39
|
+
typedef struct Zucchini49{
|
40
|
+
struct Plum49{
|
41
|
+
sequence<sequence<sequence<sequence<octet,9> > ,3> ,17> Shallots49[6];
|
42
|
+
} KidneyBean49;
|
43
|
+
} ButterBean49;
|
44
|
+
|
45
|
+
typedef struct Bayleaf50{
|
46
|
+
struct WhiteCabbage50{
|
47
|
+
sequence<sequence<sequence<string> ,6> ,18> Celery50;
|
48
|
+
} Aniseed50;
|
49
|
+
} Dill50;
|
50
|
+
|
51
|
+
typedef struct Mango51{
|
52
|
+
struct PassionFruit51{
|
53
|
+
sequence<sequence<sequence<string<15> > ,11> > Rhubarb51[7];
|
54
|
+
} Pumpkin51;
|
55
|
+
} WaterMelon51;
|
56
|
+
|
57
|
+
typedef struct Potato51{
|
58
|
+
struct ChineseLeaves51{
|
59
|
+
sequence<sequence<string,14> > RedCabbage51;
|
60
|
+
} Broadbeans51;
|
61
|
+
} Record51;
|
62
|
+
|
63
|
+
typedef struct Blueberry52{
|
64
|
+
struct Basil52{
|
65
|
+
sequence<string,11> Peanuts52[5];
|
66
|
+
} CoxPippin52;
|
67
|
+
} Blackberry52;
|
68
|
+
|
69
|
+
typedef struct Rasin53{
|
70
|
+
struct Artichokes53{
|
71
|
+
struct Peanutsquash53{
|
72
|
+
double Damsons53[2];
|
73
|
+
} CherryTomatoes53;
|
74
|
+
} GreenGrapes53;
|
75
|
+
} CookingApple53;
|
76
|
+
|
77
|
+
typedef struct Peppercorn54{
|
78
|
+
struct Cherry54{
|
79
|
+
struct Okra54{
|
80
|
+
unsigned short Beetroot54;
|
81
|
+
} Radish54[16];
|
82
|
+
} Papaya54;
|
83
|
+
} Susander54;
|
84
|
+
|
85
|
+
typedef struct Pear55{
|
86
|
+
struct LimaBean55{
|
87
|
+
struct Blackcurrant55{
|
88
|
+
sequence<float> Plantain55;
|
89
|
+
} Pineapple55;
|
90
|
+
} Mangosteen55;
|
91
|
+
} RedPepper55;
|
92
|
+
|
93
|
+
typedef struct Uglifruit56{
|
94
|
+
struct Walnuts56{
|
95
|
+
struct Pomegranate56{
|
96
|
+
sequence<double,4> Sweedes56[5];
|
97
|
+
} Kumquats56[14];
|
98
|
+
} Fennell56;
|
99
|
+
} Waterchestnut56;
|
100
|
+
|
101
|
+
typedef struct Cassava57{
|
102
|
+
struct Cress57{
|
103
|
+
struct Lettuce57{
|
104
|
+
sequence<short,2> Tarragon57[11];
|
105
|
+
} Mangetout57;
|
106
|
+
} BambooShoot57;
|
107
|
+
} Melon57;
|
108
|
+
|
109
|
+
typedef struct Strawberry58{
|
110
|
+
struct Daikan58{
|
111
|
+
struct Avocado58{
|
112
|
+
sequence<unsigned short,7> ButterBean58;
|
113
|
+
} Cloves58[14];
|
114
|
+
} Mustard58;
|
115
|
+
} BreadFruit58;
|
116
|
+
|
117
|
+
typedef struct HazelNut59{
|
118
|
+
struct CrabApple59{
|
119
|
+
struct Lentil59{
|
120
|
+
sequence<boolean,13> GoldenDelicous59;
|
121
|
+
} Fig59;
|
122
|
+
} RedOnion59;
|
123
|
+
} Cinnamon59;
|
124
|
+
|
125
|
+
typedef struct Plum60{
|
126
|
+
struct Onion60{
|
127
|
+
struct Tofu60{
|
128
|
+
sequence<sequence<float> > Runnerbean60[1];
|
129
|
+
} Sweetcorn60[16];
|
130
|
+
} Shallots60;
|
131
|
+
} KidneyBean60;
|
132
|
+
|
133
|
+
typedef struct Tangarine61{
|
134
|
+
struct BrazilNut61{
|
135
|
+
struct Brocoli61{
|
136
|
+
sequence<sequence<double> > Prunes61[8];
|
137
|
+
} GrannySmith61;
|
138
|
+
} SweetPotato61;
|
139
|
+
} Billberries61;
|
140
|
+
|
141
|
+
typedef struct Almonds62{
|
142
|
+
struct Oregano62{
|
143
|
+
struct Asparagus62{
|
144
|
+
sequence<sequence<long> > GardenPeas62;
|
145
|
+
} Dill62[8];
|
146
|
+
} Beansprout62;
|
147
|
+
} Guava62;
|
148
|
+
|
149
|
+
typedef struct Parsnip63{
|
150
|
+
struct Orange63{
|
151
|
+
struct Sultana63{
|
152
|
+
sequence<sequence<short> > GaliaMelon63;
|
153
|
+
} Turnip63;
|
154
|
+
} LoganBerry63;
|
155
|
+
} Celery63;
|
156
|
+
|
157
|
+
typedef struct BlackEyedBeans64{
|
158
|
+
struct Ginger64{
|
159
|
+
struct Starfruit64{
|
160
|
+
sequence<sequence<short,5> ,3> BlackCherry64[7];
|
161
|
+
} Cucumber64[6];
|
162
|
+
} Apricots64;
|
163
|
+
} Leek64;
|
164
|
+
|
165
|
+
typedef struct Lime65{
|
166
|
+
struct Mango65{
|
167
|
+
struct PassionFruit65{
|
168
|
+
sequence<sequence<unsigned long,5> ,3> Rhubarb65[2];
|
169
|
+
} Pumpkin65;
|
170
|
+
} WaterMelon65;
|
171
|
+
} Dates65;
|
172
|
+
|
173
|
+
typedef struct Banana66{
|
174
|
+
struct PentlandDell65{
|
175
|
+
struct Homeguard65{
|
176
|
+
sequence<sequence<unsigned short,14> ,13> Record65;
|
177
|
+
} KingEdward65[3];
|
178
|
+
} Apple66;
|
179
|
+
} Carrots66;
|
180
|
+
|
181
|
+
interface idlServer {
|
182
|
+
|
183
|
+
exception LoganBerry44Excpt{
|
184
|
+
::LoganBerry44 ex1;
|
185
|
+
};
|
186
|
+
|
187
|
+
attribute ::LoganBerry44 LoganBerry44Attr;
|
188
|
+
|
189
|
+
::LoganBerry44 LoganBerry44Op(
|
190
|
+
in ::LoganBerry44 p1,
|
191
|
+
out ::LoganBerry44 p2,
|
192
|
+
inout ::LoganBerry44 p3
|
193
|
+
) raises (LoganBerry44Excpt);
|
194
|
+
|
195
|
+
exception Orange44Excpt{
|
196
|
+
::Orange44 ex1;
|
197
|
+
};
|
198
|
+
|
199
|
+
attribute ::Orange44 Orange44Attr;
|
200
|
+
|
201
|
+
::Orange44 Orange44Op(
|
202
|
+
in ::Orange44 p1,
|
203
|
+
out ::Orange44 p2,
|
204
|
+
inout ::Orange44 p3
|
205
|
+
) raises (Orange44Excpt);
|
206
|
+
|
207
|
+
exception Sultana44Excpt{
|
208
|
+
::Orange44::Sultana44 ex1;
|
209
|
+
};
|
210
|
+
|
211
|
+
attribute ::Orange44::Sultana44 Sultana44Attr;
|
212
|
+
|
213
|
+
::Orange44::Sultana44 Sultana44Op(
|
214
|
+
in ::Orange44::Sultana44 p1,
|
215
|
+
out ::Orange44::Sultana44 p2,
|
216
|
+
inout ::Orange44::Sultana44 p3
|
217
|
+
) raises (Sultana44Excpt);
|
218
|
+
|
219
|
+
exception BlackCherry45Excpt{
|
220
|
+
::BlackCherry45 ex1;
|
221
|
+
};
|
222
|
+
|
223
|
+
attribute ::BlackCherry45 BlackCherry45Attr;
|
224
|
+
|
225
|
+
::BlackCherry45 BlackCherry45Op(
|
226
|
+
in ::BlackCherry45 p1,
|
227
|
+
out ::BlackCherry45 p2,
|
228
|
+
inout ::BlackCherry45 p3
|
229
|
+
) raises (BlackCherry45Excpt);
|
230
|
+
|
231
|
+
exception Lemon45Excpt{
|
232
|
+
::Lemon45 ex1;
|
233
|
+
};
|
234
|
+
|
235
|
+
attribute ::Lemon45 Lemon45Attr;
|
236
|
+
|
237
|
+
::Lemon45 Lemon45Op(
|
238
|
+
in ::Lemon45 p1,
|
239
|
+
out ::Lemon45 p2,
|
240
|
+
inout ::Lemon45 p3
|
241
|
+
) raises (Lemon45Excpt);
|
242
|
+
|
243
|
+
exception Banana45Excpt{
|
244
|
+
::Lemon45::Banana45 ex1;
|
245
|
+
};
|
246
|
+
|
247
|
+
attribute ::Lemon45::Banana45 Banana45Attr;
|
248
|
+
|
249
|
+
::Lemon45::Banana45 Banana45Op(
|
250
|
+
in ::Lemon45::Banana45 p1,
|
251
|
+
out ::Lemon45::Banana45 p2,
|
252
|
+
inout ::Lemon45::Banana45 p3
|
253
|
+
) raises (Banana45Excpt);
|
254
|
+
|
255
|
+
exception Corriander45Excpt{
|
256
|
+
::Corriander45 ex1;
|
257
|
+
};
|
258
|
+
|
259
|
+
attribute ::Corriander45 Corriander45Attr;
|
260
|
+
|
261
|
+
::Corriander45 Corriander45Op(
|
262
|
+
in ::Corriander45 p1,
|
263
|
+
out ::Corriander45 p2,
|
264
|
+
inout ::Corriander45 p3
|
265
|
+
) raises (Corriander45Excpt);
|
266
|
+
|
267
|
+
exception Kiwi45Excpt{
|
268
|
+
::Kiwi45 ex1;
|
269
|
+
};
|
270
|
+
|
271
|
+
attribute ::Kiwi45 Kiwi45Attr;
|
272
|
+
|
273
|
+
::Kiwi45 Kiwi45Op(
|
274
|
+
in ::Kiwi45 p1,
|
275
|
+
out ::Kiwi45 p2,
|
276
|
+
inout ::Kiwi45 p3
|
277
|
+
) raises (Kiwi45Excpt);
|
278
|
+
|
279
|
+
exception GalaApple45Excpt{
|
280
|
+
::Kiwi45::GalaApple45 ex1;
|
281
|
+
};
|
282
|
+
|
283
|
+
attribute ::Kiwi45::GalaApple45 GalaApple45Attr;
|
284
|
+
|
285
|
+
::Kiwi45::GalaApple45 GalaApple45Op(
|
286
|
+
in ::Kiwi45::GalaApple45 p1,
|
287
|
+
out ::Kiwi45::GalaApple45 p2,
|
288
|
+
inout ::Kiwi45::GalaApple45 p3
|
289
|
+
) raises (GalaApple45Excpt);
|
290
|
+
|
291
|
+
exception YellowPepper46Excpt{
|
292
|
+
::YellowPepper46 ex1;
|
293
|
+
};
|
294
|
+
|
295
|
+
attribute ::YellowPepper46 YellowPepper46Attr;
|
296
|
+
|
297
|
+
::YellowPepper46 YellowPepper46Op(
|
298
|
+
in ::YellowPepper46 p1,
|
299
|
+
out ::YellowPepper46 p2,
|
300
|
+
inout ::YellowPepper46 p3
|
301
|
+
) raises (YellowPepper46Excpt);
|
302
|
+
|
303
|
+
exception Parsley46Excpt{
|
304
|
+
::Parsley46 ex1;
|
305
|
+
};
|
306
|
+
|
307
|
+
attribute ::Parsley46 Parsley46Attr;
|
308
|
+
|
309
|
+
::Parsley46 Parsley46Op(
|
310
|
+
in ::Parsley46 p1,
|
311
|
+
out ::Parsley46 p2,
|
312
|
+
inout ::Parsley46 p3
|
313
|
+
) raises (Parsley46Excpt);
|
314
|
+
|
315
|
+
exception Peach46Excpt{
|
316
|
+
::Parsley46::Peach46 ex1;
|
317
|
+
};
|
318
|
+
|
319
|
+
attribute ::Parsley46::Peach46 Peach46Attr;
|
320
|
+
|
321
|
+
::Parsley46::Peach46 Peach46Op(
|
322
|
+
in ::Parsley46::Peach46 p1,
|
323
|
+
out ::Parsley46::Peach46 p2,
|
324
|
+
inout ::Parsley46::Peach46 p3
|
325
|
+
) raises (Peach46Excpt);
|
326
|
+
|
327
|
+
exception Radish47Excpt{
|
328
|
+
::Radish47 ex1;
|
329
|
+
};
|
330
|
+
|
331
|
+
attribute ::Radish47 Radish47Attr;
|
332
|
+
|
333
|
+
::Radish47 Radish47Op(
|
334
|
+
in ::Radish47 p1,
|
335
|
+
out ::Radish47 p2,
|
336
|
+
inout ::Radish47 p3
|
337
|
+
) raises (Radish47Excpt);
|
338
|
+
|
339
|
+
exception Sharanfruit47Excpt{
|
340
|
+
::Sharanfruit47 ex1;
|
341
|
+
};
|
342
|
+
|
343
|
+
attribute ::Sharanfruit47 Sharanfruit47Attr;
|
344
|
+
|
345
|
+
::Sharanfruit47 Sharanfruit47Op(
|
346
|
+
in ::Sharanfruit47 p1,
|
347
|
+
out ::Sharanfruit47 p2,
|
348
|
+
inout ::Sharanfruit47 p3
|
349
|
+
) raises (Sharanfruit47Excpt);
|
350
|
+
|
351
|
+
exception BeefTomatoes47Excpt{
|
352
|
+
::Sharanfruit47::BeefTomatoes47 ex1;
|
353
|
+
};
|
354
|
+
|
355
|
+
attribute ::Sharanfruit47::BeefTomatoes47 BeefTomatoes47Attr;
|
356
|
+
|
357
|
+
::Sharanfruit47::BeefTomatoes47 BeefTomatoes47Op(
|
358
|
+
in ::Sharanfruit47::BeefTomatoes47 p1,
|
359
|
+
out ::Sharanfruit47::BeefTomatoes47 p2,
|
360
|
+
inout ::Sharanfruit47::BeefTomatoes47 p3
|
361
|
+
) raises (BeefTomatoes47Excpt);
|
362
|
+
|
363
|
+
exception BambooShoot48Excpt{
|
364
|
+
::BambooShoot48 ex1;
|
365
|
+
};
|
366
|
+
|
367
|
+
attribute ::BambooShoot48 BambooShoot48Attr;
|
368
|
+
|
369
|
+
::BambooShoot48 BambooShoot48Op(
|
370
|
+
in ::BambooShoot48 p1,
|
371
|
+
out ::BambooShoot48 p2,
|
372
|
+
inout ::BambooShoot48 p3
|
373
|
+
) raises (BambooShoot48Excpt);
|
374
|
+
|
375
|
+
};
|
376
|
+
|