r2corba 1.4.1-x86-mingw32 → 1.5.1-x86-mingw32
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.
- checksums.yaml +7 -7
- data/CHANGES +173 -159
- data/LICENSE +59 -59
- data/README +62 -62
- data/THANKS +54 -52
- data/bin/r2corba +1 -1
- data/bin/ridlc +1 -1
- data/bin/rins +1 -1
- data/lib/corba.rb +16 -16
- data/lib/corba/cbase/IORMap.rb +33 -33
- data/lib/corba/cbase/ORB.rb +237 -231
- data/lib/corba/cbase/Request.rb +133 -133
- data/lib/corba/cbase/Streams.rb +129 -129
- data/lib/corba/cbase/Stub.rb +19 -19
- data/lib/corba/cbase/Typecode.rb +441 -441
- data/lib/corba/cbase/Values.rb +129 -129
- data/lib/corba/cbase/exception.rb +66 -66
- data/lib/corba/cbase/poa.rb +23 -23
- data/lib/corba/cbase/policies.rb +77 -77
- data/lib/corba/cbase/post_require.rb +13 -13
- data/lib/corba/cbase/require.rb +28 -28
- data/lib/corba/cmds/base.rb +85 -85
- data/lib/corba/cmds/test.rb +30 -30
- data/lib/corba/common/Any.rb +91 -91
- data/lib/corba/common/IDL.rb +104 -104
- data/lib/corba/common/ORB.rb +368 -368
- data/lib/corba/common/Object.rb +208 -208
- data/lib/corba/common/Request.rb +19 -19
- data/lib/corba/common/Servant.rb +108 -108
- data/lib/corba/common/Struct.rb +21 -21
- data/lib/corba/common/Stub.rb +79 -79
- data/lib/corba/common/Typecode.rb +1121 -1121
- data/lib/corba/common/Union.rb +55 -55
- data/lib/corba/common/Values.rb +91 -91
- data/lib/corba/common/const.rb +22 -22
- data/lib/corba/common/exception.rb +68 -68
- data/lib/corba/common/require.rb +27 -27
- data/lib/corba/common/version.rb +22 -22
- data/lib/corba/idl/IDL.rb +21 -21
- data/lib/corba/idl/IORTable.pidl +62 -62
- data/lib/corba/idl/TAO_Ext.pidl +46 -46
- data/lib/corba/idl/require.rb +20 -20
- data/lib/corba/jbase/Any.rb +273 -273
- data/lib/corba/jbase/IORMap.rb +35 -35
- data/lib/corba/jbase/ORB.rb +112 -99
- data/lib/corba/jbase/Object.rb +99 -98
- data/lib/corba/jbase/Request.rb +225 -225
- data/lib/corba/jbase/Servant.rb +247 -246
- data/lib/corba/jbase/ServerRequest.rb +127 -127
- data/lib/corba/jbase/Streams.rb +670 -670
- data/lib/corba/jbase/Stub.rb +38 -38
- data/lib/corba/jbase/Typecode.rb +520 -520
- data/lib/corba/jbase/Values.rb +173 -173
- data/lib/corba/jbase/exception.rb +106 -106
- data/lib/corba/jbase/poa.rb +228 -228
- data/lib/corba/jbase/policies.rb +299 -299
- data/lib/corba/jbase/post_require.rb +14 -14
- data/lib/corba/jbase/require.rb +89 -86
- data/lib/corba/naming.rb +14 -14
- data/lib/corba/naming_service.rb +15 -15
- data/lib/corba/poa.rb +15 -15
- data/lib/corba/policies.rb +18 -18
- data/lib/corba/require.rb +17 -17
- data/lib/corba/svcs/ins/cos_naming.rb +426 -426
- data/lib/corba/svcs/ins/ins.rb +526 -526
- data/lib/corba/svcs/ins/naming_service.rb +119 -119
- data/lib/ridlbe/ruby/config.rb +336 -336
- data/lib/ridlbe/ruby/orb.pidlc +0 -0
- data/lib/ridlbe/ruby/require.rb +16 -16
- data/lib/ridlbe/ruby/walker.rb +1582 -1582
- data/mkrf_conf_bingem.rb +151 -101
- data/rakelib/bin.rake +80 -80
- data/rakelib/bin.rb +145 -145
- data/rakelib/build.rake +87 -87
- data/rakelib/config.rake +51 -51
- data/rakelib/config.rb +543 -449
- data/rakelib/ext.rake +242 -242
- data/rakelib/ext.rb +316 -308
- data/rakelib/ext_r2tao.rb +235 -232
- data/rakelib/gem.rake +235 -211
- data/rakelib/gem.rb +145 -145
- data/rakelib/package.rake +26 -26
- data/rakelib/test.rake +23 -23
- data/test/BiDirectional/Test.idl +34 -34
- data/test/BiDirectional/client.rb +131 -131
- data/test/BiDirectional/run_test.rb +68 -68
- data/test/BiDirectional/server.ior +1 -1
- data/test/BiDirectional/server.rb +169 -169
- data/test/CORBA_Services/Naming/BindingIterator/Test.idl +27 -27
- data/test/CORBA_Services/Naming/BindingIterator/client.rb +121 -121
- data/test/CORBA_Services/Naming/BindingIterator/ins.ior +1 -1
- data/test/CORBA_Services/Naming/BindingIterator/run_test.rb +82 -82
- data/test/CORBA_Services/Naming/BindingIterator/server.rb +109 -109
- data/test/CORBA_Services/Naming/Corbaname/Test.idl +27 -27
- data/test/CORBA_Services/Naming/Corbaname/client.rb +85 -85
- data/test/CORBA_Services/Naming/Corbaname/ins.ior +1 -1
- data/test/CORBA_Services/Naming/Corbaname/run_test.rb +88 -88
- data/test/CORBA_Services/Naming/Corbaname/server.rb +135 -135
- data/test/CORBA_Services/Naming/Simple/Test.idl +27 -27
- data/test/CORBA_Services/Naming/Simple/client.rb +84 -84
- data/test/CORBA_Services/Naming/Simple/ins.ior +1 -1
- data/test/CORBA_Services/Naming/Simple/run_test.rb +82 -82
- data/test/CORBA_Services/Naming/Simple/server.rb +109 -109
- data/test/Collocation/Diamond.idl +39 -39
- data/test/Collocation/run_test.rb +52 -52
- data/test/Collocation/test.rb +195 -195
- data/test/Connect_Timeout/Test.idl +27 -27
- data/test/Connect_Timeout/client.rb +111 -111
- data/test/Connect_Timeout/run_test.rb +52 -52
- data/test/DII/Test.idl +27 -27
- data/test/DII/client.rb +115 -115
- data/test/DII/run_test.rb +69 -69
- data/test/DII/server.ior +1 -1
- data/test/DII/server.rb +95 -95
- data/test/DSI/Test.idl +27 -27
- data/test/DSI/client.rb +66 -66
- data/test/DSI/run_test.rb +69 -69
- data/test/DSI/server.ior +1 -1
- data/test/DSI/server.rb +106 -106
- data/test/Exceptions/Test.idl +48 -48
- data/test/Exceptions/client.rb +117 -117
- data/test/Exceptions/run_test.rb +69 -69
- data/test/Exceptions/server.ior +1 -1
- data/test/Exceptions/server.rb +131 -131
- data/test/Hello/Test.idl +27 -27
- data/test/Hello/client.rb +78 -78
- data/test/Hello/run_test.rb +71 -71
- data/test/Hello/server.rb +95 -95
- data/test/IDL_Test/Test.idl +113 -113
- data/test/IDL_Test/Test_inc.idl +17 -17
- data/test/IDL_Test/client.rb +102 -102
- data/test/IDL_Test/run_test.rb +69 -69
- data/test/IDL_Test/server.ior +1 -1
- data/test/IDL_Test/server.rb +99 -99
- data/test/IORMap/Test.idl +27 -27
- data/test/IORMap/client.rb +73 -73
- data/test/IORMap/run_test.rb +69 -69
- data/test/IORMap/server.ior +1 -1
- data/test/IORMap/server.rb +114 -114
- data/test/IORTable/Test.idl +27 -27
- data/test/IORTable/client.rb +75 -75
- data/test/IORTable/run_test.rb +69 -69
- data/test/IORTable/server.ior +1 -1
- data/test/IORTable/server.rb +130 -130
- data/test/Implicit_Conversion/Test.idl +31 -31
- data/test/Implicit_Conversion/client.rb +110 -110
- data/test/Implicit_Conversion/run_test.rb +69 -69
- data/test/Implicit_Conversion/server.ior +1 -1
- data/test/Implicit_Conversion/server.rb +99 -99
- data/test/Multi_Threading/Multiple_ORB/Test.idl +27 -27
- data/test/Multi_Threading/Multiple_ORB/client.rb +82 -82
- data/test/Multi_Threading/Multiple_ORB/run_test.rb +71 -71
- data/test/Multi_Threading/Multiple_ORB/server.rb +108 -108
- data/test/Multi_Threading/Multiple_ORB/server0.ior +1 -1
- data/test/Multi_Threading/Multiple_ORB/server1.ior +1 -1
- data/test/Multi_Threading/Simple/Test.idl +27 -27
- data/test/Multi_Threading/Simple/client.rb +93 -88
- data/test/Multi_Threading/Simple/run_test.rb +69 -69
- data/test/Multi_Threading/Simple/server.ior +1 -1
- data/test/Multi_Threading/Simple/server.rb +117 -117
- data/test/Multi_Threading/Threads/Test.idl +31 -31
- data/test/Multi_Threading/Threads/client.rb +80 -80
- data/test/Multi_Threading/Threads/run_test.rb +76 -76
- data/test/Multi_Threading/Threads/server.ior +1 -1
- data/test/Multi_Threading/Threads/server.rb +119 -119
- data/test/Multi_Threading/Threads/watchdog.ior +1 -1
- data/test/Multi_Threading/Threads/watchdog.rb +87 -87
- data/test/Multiple_Servant_Interfaces/Test.idl +34 -34
- data/test/Multiple_Servant_Interfaces/client.rb +70 -70
- data/test/Multiple_Servant_Interfaces/run_test.rb +69 -69
- data/test/Multiple_Servant_Interfaces/server.ior +1 -1
- data/test/Multiple_Servant_Interfaces/server.rb +102 -102
- data/test/Nil/Test.idl +27 -27
- data/test/Nil/run_test.rb +52 -52
- data/test/Nil/test.rb +78 -78
- data/test/OBV/AbstractInterface/client.rb +179 -179
- data/test/OBV/AbstractInterface/run_test.rb +69 -69
- data/test/OBV/AbstractInterface/server.ior +1 -1
- data/test/OBV/AbstractInterface/server.rb +149 -149
- data/test/OBV/AbstractInterface/test.idl +53 -53
- data/test/OBV/Custom/OBV.idl +18 -18
- data/test/OBV/Custom/OBV_impl.rb +40 -40
- data/test/OBV/Custom/client.rb +86 -86
- data/test/OBV/Custom/run_test.rb +69 -69
- data/test/OBV/Custom/server.ior +1 -1
- data/test/OBV/Custom/server.rb +100 -100
- data/test/OBV/Simple/OBV.idl +15 -15
- data/test/OBV/Simple/OBV_impl.rb +26 -26
- data/test/OBV/Simple/client.rb +86 -86
- data/test/OBV/Simple/run_test.rb +69 -69
- data/test/OBV/Simple/server.ior +1 -1
- data/test/OBV/Simple/server.rb +100 -100
- data/test/OBV/Simple_Event/Event.idl +15 -15
- data/test/OBV/Simple_Event/Event_impl.rb +26 -26
- data/test/OBV/Simple_Event/client.rb +86 -86
- data/test/OBV/Simple_Event/run_test.rb +69 -69
- data/test/OBV/Simple_Event/server.ior +1 -1
- data/test/OBV/Simple_Event/server.rb +100 -100
- data/test/OBV/Supports/client.rb +116 -116
- data/test/OBV/Supports/run_test.rb +69 -69
- data/test/OBV/Supports/server.ior +1 -1
- data/test/OBV/Supports/server.rb +103 -103
- data/test/OBV/Supports/supports.idl +33 -33
- data/test/OBV/Supports/supports_impl.rb +57 -57
- data/test/OBV/Tree/client.rb +116 -116
- data/test/OBV/Tree/run_test.rb +69 -69
- data/test/OBV/Tree/server.ior +1 -1
- data/test/OBV/Tree/server.rb +117 -117
- data/test/OBV/Tree/test.idl +32 -32
- data/test/OBV/Truncatable/Extra.idl +27 -27
- data/test/OBV/Truncatable/Truncatable.idl +105 -105
- data/test/OBV/Truncatable/Truncatable_impl.rb +86 -86
- data/test/OBV/Truncatable/client.rb +279 -279
- data/test/OBV/Truncatable/run_test.rb +69 -69
- data/test/OBV/Truncatable/server.ior +1 -1
- data/test/OBV/Truncatable/server.rb +89 -89
- data/test/OBV/ValueBox/client.rb +497 -497
- data/test/OBV/ValueBox/run_test.rb +69 -69
- data/test/OBV/ValueBox/server.ior +1 -1
- data/test/OBV/ValueBox/server.rb +271 -271
- data/test/OBV/ValueBox/valuebox.idl +101 -101
- data/test/OBV/ValueBox/vb_basic.idl +75 -75
- data/test/OBV/ValueBox/vb_struct.idl +68 -68
- data/test/OBV/ValueBox/vb_union.idl +21 -21
- data/test/Object/Test.idl +27 -27
- data/test/Object/client.rb +112 -103
- data/test/Object/run_test.rb +69 -69
- data/test/Object/server.ior +1 -1
- data/test/Object/server.rb +126 -126
- data/test/POA/Test.idl +27 -27
- data/test/POA/run_test.rb +52 -52
- data/test/POA/test.rb +111 -111
- data/test/Param_Test/Test.idl +182 -182
- data/test/Param_Test/client.rb +277 -277
- data/test/Param_Test/run_test.rb +69 -69
- data/test/Param_Test/server.ior +1 -1
- data/test/Param_Test/server.rb +296 -296
- data/test/Performance/Simple/Test.idl +27 -27
- data/test/Performance/Simple/client.rb +90 -90
- data/test/Performance/Simple/run_test.rb +69 -69
- data/test/Performance/Simple/server.ior +1 -1
- data/test/Performance/Simple/server.rb +95 -95
- data/test/Policies/Test.idl +27 -27
- data/test/Policies/run_test.rb +52 -52
- data/test/Policies/test.rb +144 -144
- data/test/Timeout/client.rb +207 -207
- data/test/Timeout/run_test.rb +69 -69
- data/test/Timeout/server.ior +1 -1
- data/test/Timeout/server.rb +109 -109
- data/test/Timeout/test.idl +19 -19
- data/test/lib/assert.rb +43 -43
- data/test/lib/test.rb +542 -542
- data/test/test_runner.rb +193 -193
- metadata +141 -137
data/lib/corba/common/Object.rb
CHANGED
@@ -1,208 +1,208 @@
|
|
1
|
-
#--------------------------------------------------------------------
|
2
|
-
# Object.rb - Common CORBA Object definitions
|
3
|
-
#
|
4
|
-
# Author: Martin Corino
|
5
|
-
#
|
6
|
-
# This program is free software; you can redistribute it and/or
|
7
|
-
# modify it under the terms of the R2CORBA LICENSE which is
|
8
|
-
# included with this program.
|
9
|
-
#
|
10
|
-
# Copyright (c) Remedy IT Expertise BV
|
11
|
-
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
-
#--------------------------------------------------------------------
|
13
|
-
module R2CORBA
|
14
|
-
module CORBA
|
15
|
-
|
16
|
-
def CORBA.is_nil(obj)
|
17
|
-
if obj.nil?
|
18
|
-
return true
|
19
|
-
elsif obj.is_a?(R2CORBA::CORBA::Object) || obj.respond_to?(:_is_nil?)
|
20
|
-
return obj._is_nil?()
|
21
|
-
end
|
22
|
-
false
|
23
|
-
end
|
24
|
-
|
25
|
-
module Object
|
26
|
-
@@wrapper_klass = Class.new do
|
27
|
-
include CORBA::Object
|
28
|
-
def initialize(nobj)
|
29
|
-
@objref_ = nobj
|
30
|
-
end
|
31
|
-
def _free_ref
|
32
|
-
self._release
|
33
|
-
end
|
34
|
-
attr_reader :objref_
|
35
|
-
def self.name
|
36
|
-
'CORBA::Object'
|
37
|
-
end
|
38
|
-
end
|
39
|
-
|
40
|
-
def self._wrap_native(nobj)
|
41
|
-
raise ArgumentError, 'Expected org.omg.CORBA.Object' unless nobj.nil? || nobj.is_a?(Native::Object)
|
42
|
-
(nobj.nil? || (nobj.respond_to?(:_is_nil) && nobj._is_nil)) ? nil : @@wrapper_klass.new(nobj)
|
43
|
-
end
|
44
|
-
|
45
|
-
def self._narrow(obj)
|
46
|
-
raise CORBA::BAD_PARAM.new('not an object reference', 0, CORBA::COMPLETED_NO) unless obj.nil? || obj.is_a?(CORBA::Object) || obj.is_a?(Native::Object)
|
47
|
-
obj = self._wrap_native(obj) if obj.is_a?(Native::Object)
|
48
|
-
obj
|
49
|
-
end
|
50
|
-
|
51
|
-
#------------------- 4.3 "Object Reference Operations"
|
52
|
-
|
53
|
-
def ==(other)
|
54
|
-
self.class == other.class && self.objref_.eql?(other.objref_)
|
55
|
-
end
|
56
|
-
|
57
|
-
def hash
|
58
|
-
self.objref_.hash
|
59
|
-
end
|
60
|
-
|
61
|
-
def dup
|
62
|
-
self
|
63
|
-
end
|
64
|
-
|
65
|
-
def clone
|
66
|
-
self
|
67
|
-
end
|
68
|
-
|
69
|
-
#ret InterfaceDef
|
70
|
-
def _get_interface()
|
71
|
-
raise ::CORBA::NO_IMPLEMENT
|
72
|
-
end
|
73
|
-
|
74
|
-
#ret boolean
|
75
|
-
def _is_nil?()
|
76
|
-
self.objref_.nil? || (self.objref_.respond_to?(:_is_nil) && self.objref_._is_nil)
|
77
|
-
end
|
78
|
-
|
79
|
-
#ret ::CORBA::Object
|
80
|
-
def _duplicate()
|
81
|
-
return nil if self._is_nil?()
|
82
|
-
begin
|
83
|
-
self._wrap_native(self.objref_._duplicate)
|
84
|
-
rescue ::NativeException
|
85
|
-
CORBA::Exception.native2r($!)
|
86
|
-
end
|
87
|
-
end
|
88
|
-
|
89
|
-
# ret void
|
90
|
-
def _release()
|
91
|
-
self.objref_._release unless self.objref_.nil?
|
92
|
-
@objref_ = nil
|
93
|
-
end
|
94
|
-
|
95
|
-
# ::String logical_type_id
|
96
|
-
# ret boolean
|
97
|
-
def _is_a?(logical_type_id)
|
98
|
-
return false if self._is_nil?()
|
99
|
-
begin
|
100
|
-
self.objref_._is_a(logical_type_id)
|
101
|
-
rescue ::NativeException
|
102
|
-
CORBA::Exception.native2r($!)
|
103
|
-
end
|
104
|
-
end
|
105
|
-
|
106
|
-
# ret boolean
|
107
|
-
def _non_existent?()
|
108
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
109
|
-
begin
|
110
|
-
self.objref_._non_existent
|
111
|
-
rescue ::NativeException
|
112
|
-
CORBA::Exception.native2r($!)
|
113
|
-
end
|
114
|
-
end
|
115
|
-
|
116
|
-
# ::CORBA::Object other_object
|
117
|
-
# ret boolean
|
118
|
-
def _is_equivalent?(other_object)
|
119
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
120
|
-
begin
|
121
|
-
self.objref_._is_equivalent(other_object)
|
122
|
-
rescue ::NativeException
|
123
|
-
CORBA::Exception.native2r($!)
|
124
|
-
end
|
125
|
-
end
|
126
|
-
|
127
|
-
# Integer(ulong) maximum
|
128
|
-
# ret unsigned long
|
129
|
-
def _hash(maximum)
|
130
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
131
|
-
begin
|
132
|
-
self.objref_._hash(maximum)
|
133
|
-
rescue ::NativeException
|
134
|
-
CORBA::Exception.native2r($!)
|
135
|
-
end
|
136
|
-
end
|
137
|
-
|
138
|
-
# ret ::String
|
139
|
-
def _repository_id()
|
140
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
141
|
-
## if this object ref has already been narrowed
|
142
|
-
return self._interface_repository_id if self.respond_to?(:_interface_repository_id)
|
143
|
-
## ask the remote side
|
144
|
-
begin
|
145
|
-
self.objref_._repository_id()
|
146
|
-
rescue ::NativeException
|
147
|
-
CORBA::Exception.native2r($!)
|
148
|
-
end
|
149
|
-
end
|
150
|
-
|
151
|
-
#def PolicyType policy_type
|
152
|
-
# ret Policy
|
153
|
-
def _get_policy(policy_type)
|
154
|
-
raise ::CORBA::NO_IMPLEMENT
|
155
|
-
end
|
156
|
-
|
157
|
-
#PolicyList policies
|
158
|
-
#SetOverrideType set_add
|
159
|
-
#ret ::CORBA::Object
|
160
|
-
def _set_policy_overrides(policies, set_add )
|
161
|
-
raise ::CORBA::NO_IMPLEMENT
|
162
|
-
end
|
163
|
-
|
164
|
-
#int[] types
|
165
|
-
#ret PolicyList
|
166
|
-
def _get_policy_overrides(types)
|
167
|
-
raise ::CORBA::NO_IMPLEMENT
|
168
|
-
end
|
169
|
-
|
170
|
-
#PolicyList inconsistent_policies
|
171
|
-
#ret bool
|
172
|
-
def _validate_connection(inconsistent_policies)
|
173
|
-
raise ::CORBA::NO_IMPLEMENT
|
174
|
-
end
|
175
|
-
|
176
|
-
#ret ::CORBA::Object
|
177
|
-
def _get_component()
|
178
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
179
|
-
begin
|
180
|
-
CORBA::Object._wrap_native(self.objref_._get_component())
|
181
|
-
rescue ::NativeException
|
182
|
-
CORBA::Exception.native2r($!)
|
183
|
-
end
|
184
|
-
end
|
185
|
-
|
186
|
-
# ret CORBA::ORB
|
187
|
-
def _get_orb()
|
188
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
189
|
-
begin
|
190
|
-
CORBA::ORB._wrap_native(self.objref_.
|
191
|
-
rescue ::NativeException
|
192
|
-
CORBA::Exception.native2r($!)
|
193
|
-
end
|
194
|
-
end
|
195
|
-
|
196
|
-
def _request(operation)
|
197
|
-
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
198
|
-
begin
|
199
|
-
self.objref_._request(operation.to_s)
|
200
|
-
rescue ::NativeException
|
201
|
-
CORBA::Exception.native2r($!)
|
202
|
-
end
|
203
|
-
end
|
204
|
-
|
205
|
-
end # Object
|
206
|
-
end # CORBA
|
207
|
-
end # R2CORBA
|
208
|
-
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# Object.rb - Common CORBA Object definitions
|
3
|
+
#
|
4
|
+
# Author: Martin Corino
|
5
|
+
#
|
6
|
+
# This program is free software; you can redistribute it and/or
|
7
|
+
# modify it under the terms of the R2CORBA LICENSE which is
|
8
|
+
# included with this program.
|
9
|
+
#
|
10
|
+
# Copyright (c) Remedy IT Expertise BV
|
11
|
+
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
+
#--------------------------------------------------------------------
|
13
|
+
module R2CORBA
|
14
|
+
module CORBA
|
15
|
+
|
16
|
+
def CORBA.is_nil(obj)
|
17
|
+
if obj.nil?
|
18
|
+
return true
|
19
|
+
elsif obj.is_a?(R2CORBA::CORBA::Object) || obj.respond_to?(:_is_nil?)
|
20
|
+
return obj._is_nil?()
|
21
|
+
end
|
22
|
+
false
|
23
|
+
end
|
24
|
+
|
25
|
+
module Object
|
26
|
+
@@wrapper_klass = Class.new do
|
27
|
+
include CORBA::Object
|
28
|
+
def initialize(nobj)
|
29
|
+
@objref_ = nobj
|
30
|
+
end
|
31
|
+
def _free_ref
|
32
|
+
self._release
|
33
|
+
end
|
34
|
+
attr_reader :objref_
|
35
|
+
def self.name
|
36
|
+
'CORBA::Object'
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def self._wrap_native(nobj)
|
41
|
+
raise ArgumentError, 'Expected org.omg.CORBA.Object' unless nobj.nil? || nobj.is_a?(Native::Object)
|
42
|
+
(nobj.nil? || (nobj.respond_to?(:_is_nil) && nobj._is_nil)) ? nil : @@wrapper_klass.new(nobj)
|
43
|
+
end
|
44
|
+
|
45
|
+
def self._narrow(obj)
|
46
|
+
raise CORBA::BAD_PARAM.new('not an object reference', 0, CORBA::COMPLETED_NO) unless obj.nil? || obj.is_a?(CORBA::Object) || obj.is_a?(Native::Object)
|
47
|
+
obj = self._wrap_native(obj) if obj.is_a?(Native::Object)
|
48
|
+
obj
|
49
|
+
end
|
50
|
+
|
51
|
+
#------------------- 4.3 "Object Reference Operations"
|
52
|
+
|
53
|
+
def ==(other)
|
54
|
+
self.class == other.class && self.objref_.eql?(other.objref_)
|
55
|
+
end
|
56
|
+
|
57
|
+
def hash
|
58
|
+
self.objref_.hash
|
59
|
+
end
|
60
|
+
|
61
|
+
def dup
|
62
|
+
self
|
63
|
+
end
|
64
|
+
|
65
|
+
def clone
|
66
|
+
self
|
67
|
+
end
|
68
|
+
|
69
|
+
#ret InterfaceDef
|
70
|
+
def _get_interface()
|
71
|
+
raise ::CORBA::NO_IMPLEMENT
|
72
|
+
end
|
73
|
+
|
74
|
+
#ret boolean
|
75
|
+
def _is_nil?()
|
76
|
+
self.objref_.nil? || (self.objref_.respond_to?(:_is_nil) && self.objref_._is_nil)
|
77
|
+
end
|
78
|
+
|
79
|
+
#ret ::CORBA::Object
|
80
|
+
def _duplicate()
|
81
|
+
return nil if self._is_nil?()
|
82
|
+
begin
|
83
|
+
self._wrap_native(self.objref_._duplicate)
|
84
|
+
rescue ::NativeException
|
85
|
+
CORBA::Exception.native2r($!)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
# ret void
|
90
|
+
def _release()
|
91
|
+
self.objref_._release unless self.objref_.nil?
|
92
|
+
@objref_ = nil
|
93
|
+
end
|
94
|
+
|
95
|
+
# ::String logical_type_id
|
96
|
+
# ret boolean
|
97
|
+
def _is_a?(logical_type_id)
|
98
|
+
return false if self._is_nil?()
|
99
|
+
begin
|
100
|
+
self.objref_._is_a(logical_type_id)
|
101
|
+
rescue ::NativeException
|
102
|
+
CORBA::Exception.native2r($!)
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
# ret boolean
|
107
|
+
def _non_existent?()
|
108
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
109
|
+
begin
|
110
|
+
self.objref_._non_existent
|
111
|
+
rescue ::NativeException
|
112
|
+
CORBA::Exception.native2r($!)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
# ::CORBA::Object other_object
|
117
|
+
# ret boolean
|
118
|
+
def _is_equivalent?(other_object)
|
119
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
120
|
+
begin
|
121
|
+
self.objref_._is_equivalent(other_object)
|
122
|
+
rescue ::NativeException
|
123
|
+
CORBA::Exception.native2r($!)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
# Integer(ulong) maximum
|
128
|
+
# ret unsigned long
|
129
|
+
def _hash(maximum)
|
130
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
131
|
+
begin
|
132
|
+
self.objref_._hash(maximum)
|
133
|
+
rescue ::NativeException
|
134
|
+
CORBA::Exception.native2r($!)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
# ret ::String
|
139
|
+
def _repository_id()
|
140
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
141
|
+
## if this object ref has already been narrowed
|
142
|
+
return self._interface_repository_id if self.respond_to?(:_interface_repository_id)
|
143
|
+
## ask the remote side
|
144
|
+
begin
|
145
|
+
self.objref_._repository_id()
|
146
|
+
rescue ::NativeException
|
147
|
+
CORBA::Exception.native2r($!)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
#def PolicyType policy_type
|
152
|
+
# ret Policy
|
153
|
+
def _get_policy(policy_type)
|
154
|
+
raise ::CORBA::NO_IMPLEMENT
|
155
|
+
end
|
156
|
+
|
157
|
+
#PolicyList policies
|
158
|
+
#SetOverrideType set_add
|
159
|
+
#ret ::CORBA::Object
|
160
|
+
def _set_policy_overrides(policies, set_add )
|
161
|
+
raise ::CORBA::NO_IMPLEMENT
|
162
|
+
end
|
163
|
+
|
164
|
+
#int[] types
|
165
|
+
#ret PolicyList
|
166
|
+
def _get_policy_overrides(types)
|
167
|
+
raise ::CORBA::NO_IMPLEMENT
|
168
|
+
end
|
169
|
+
|
170
|
+
#PolicyList inconsistent_policies
|
171
|
+
#ret bool
|
172
|
+
def _validate_connection(inconsistent_policies)
|
173
|
+
raise ::CORBA::NO_IMPLEMENT
|
174
|
+
end
|
175
|
+
|
176
|
+
#ret ::CORBA::Object
|
177
|
+
def _get_component()
|
178
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
179
|
+
begin
|
180
|
+
CORBA::Object._wrap_native(self.objref_._get_component())
|
181
|
+
rescue ::NativeException
|
182
|
+
CORBA::Exception.native2r($!)
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
186
|
+
# ret CORBA::ORB
|
187
|
+
def _get_orb()
|
188
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
189
|
+
begin
|
190
|
+
CORBA::ORB._wrap_native(self.objref_._get_orb)
|
191
|
+
rescue ::NativeException
|
192
|
+
CORBA::Exception.native2r($!)
|
193
|
+
end
|
194
|
+
end
|
195
|
+
|
196
|
+
def _request(operation)
|
197
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
198
|
+
begin
|
199
|
+
self.objref_._request(operation.to_s)
|
200
|
+
rescue ::NativeException
|
201
|
+
CORBA::Exception.native2r($!)
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
end # Object
|
206
|
+
end # CORBA
|
207
|
+
end # R2CORBA
|
208
|
+
|
data/lib/corba/common/Request.rb
CHANGED
@@ -1,20 +1,20 @@
|
|
1
|
-
#--------------------------------------------------------------------
|
2
|
-
# Request.rb - Common CORBA Request definitions
|
3
|
-
#
|
4
|
-
# Author: Martin Corino
|
5
|
-
#
|
6
|
-
# This program is free software; you can redistribute it and/or
|
7
|
-
# modify it under the terms of the R2CORBA LICENSE which is
|
8
|
-
# included with this program.
|
9
|
-
#
|
10
|
-
# Copyright (c) Remedy IT Expertise BV
|
11
|
-
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
-
#--------------------------------------------------------------------
|
13
|
-
module R2CORBA
|
14
|
-
module CORBA
|
15
|
-
|
16
|
-
module Request
|
17
|
-
end
|
18
|
-
|
19
|
-
end # CORBA
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# Request.rb - Common CORBA Request definitions
|
3
|
+
#
|
4
|
+
# Author: Martin Corino
|
5
|
+
#
|
6
|
+
# This program is free software; you can redistribute it and/or
|
7
|
+
# modify it under the terms of the R2CORBA LICENSE which is
|
8
|
+
# included with this program.
|
9
|
+
#
|
10
|
+
# Copyright (c) Remedy IT Expertise BV
|
11
|
+
# Chamber of commerce Rotterdam nr.276339, The Netherlands
|
12
|
+
#--------------------------------------------------------------------
|
13
|
+
module R2CORBA
|
14
|
+
module CORBA
|
15
|
+
|
16
|
+
module Request
|
17
|
+
end
|
18
|
+
|
19
|
+
end # CORBA
|
20
20
|
end # R2CORBA
|