r2corba 1.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES +159 -0
- data/LICENSE +59 -0
- data/README +62 -0
- data/THANKS +52 -0
- data/bin/r2corba +8 -0
- data/bin/ridlc +11 -0
- data/bin/rins +7 -0
- data/ext/ext.mwc +6 -0
- data/ext/extload/extload.c +60 -0
- data/ext/libr2tao/any.cpp +1543 -0
- data/ext/libr2tao/exception.cpp +202 -0
- data/ext/libr2tao/exception.h +104 -0
- data/ext/libr2tao/longdouble.cpp +173 -0
- data/ext/libr2tao/longdouble.h +31 -0
- data/ext/libr2tao/object.cpp +1150 -0
- data/ext/libr2tao/object.h +38 -0
- data/ext/libr2tao/orb.cpp +1029 -0
- data/ext/libr2tao/orb.h +36 -0
- data/ext/libr2tao/r2tao_export.h +45 -0
- data/ext/libr2tao/r2tao_ext.h +38 -0
- data/ext/libr2tao/required.cpp +463 -0
- data/ext/libr2tao/required.h +187 -0
- data/ext/libr2tao/typecode.cpp +888 -0
- data/ext/libr2tao/typecode.h +45 -0
- data/ext/libr2tao/values.cpp +2938 -0
- data/ext/libr2tao/values.h +396 -0
- data/ext/librpoa/iortable.cpp +250 -0
- data/ext/librpoa/poa.cpp +1076 -0
- data/ext/librpoa/poa.h +24 -0
- data/ext/librpoa/rpoa_export.h +44 -0
- data/ext/librpoa/servant.cpp +1338 -0
- data/ext/librpoa/servant.h +116 -0
- data/ext/librpoa/srvreq_fix.cpp +283 -0
- data/ext/librpoa/srvreq_fix.h +149 -0
- data/ext/librpol/policies.cpp +763 -0
- data/ext/librpol/policies.h +15 -0
- data/ext/librpol/rpol_export.h +44 -0
- data/lib/corba/cbase/IORMap.rb +33 -0
- data/lib/corba/cbase/ORB.rb +231 -0
- data/lib/corba/cbase/Request.rb +134 -0
- data/lib/corba/cbase/Streams.rb +129 -0
- data/lib/corba/cbase/Stub.rb +19 -0
- data/lib/corba/cbase/Typecode.rb +441 -0
- data/lib/corba/cbase/Values.rb +129 -0
- data/lib/corba/cbase/exception.rb +66 -0
- data/lib/corba/cbase/poa.rb +23 -0
- data/lib/corba/cbase/policies.rb +78 -0
- data/lib/corba/cbase/post_require.rb +14 -0
- data/lib/corba/cbase/require.rb +28 -0
- data/lib/corba/cmds/base.rb +85 -0
- data/lib/corba/cmds/test.rb +30 -0
- data/lib/corba/common/Any.rb +91 -0
- data/lib/corba/common/IDL.rb +104 -0
- data/lib/corba/common/ORB.rb +368 -0
- data/lib/corba/common/Object.rb +208 -0
- data/lib/corba/common/Request.rb +20 -0
- data/lib/corba/common/Servant.rb +108 -0
- data/lib/corba/common/Struct.rb +22 -0
- data/lib/corba/common/Stub.rb +79 -0
- data/lib/corba/common/Typecode.rb +1121 -0
- data/lib/corba/common/Union.rb +56 -0
- data/lib/corba/common/Values.rb +92 -0
- data/lib/corba/common/const.rb +22 -0
- data/lib/corba/common/exception.rb +68 -0
- data/lib/corba/common/require.rb +27 -0
- data/lib/corba/common/version.rb +22 -0
- data/lib/corba/idl/IDL.rb +21 -0
- data/lib/corba/idl/IORTable.pidl +62 -0
- data/lib/corba/idl/TAO_Ext.pidl +46 -0
- data/lib/corba/idl/require.rb +20 -0
- data/lib/corba/jbase/Any.rb +273 -0
- data/lib/corba/jbase/IORMap.rb +36 -0
- data/lib/corba/jbase/ORB.rb +99 -0
- data/lib/corba/jbase/Object.rb +98 -0
- data/lib/corba/jbase/Request.rb +226 -0
- data/lib/corba/jbase/Servant.rb +247 -0
- data/lib/corba/jbase/ServerRequest.rb +128 -0
- data/lib/corba/jbase/Streams.rb +671 -0
- data/lib/corba/jbase/Stub.rb +38 -0
- data/lib/corba/jbase/Typecode.rb +520 -0
- data/lib/corba/jbase/Values.rb +173 -0
- data/lib/corba/jbase/exception.rb +106 -0
- data/lib/corba/jbase/poa.rb +229 -0
- data/lib/corba/jbase/policies.rb +300 -0
- data/lib/corba/jbase/post_require.rb +14 -0
- data/lib/corba/jbase/require.rb +86 -0
- data/lib/corba/naming.rb +14 -0
- data/lib/corba/naming_service.rb +15 -0
- data/lib/corba/poa.rb +15 -0
- data/lib/corba/policies.rb +18 -0
- data/lib/corba/require.rb +17 -0
- data/lib/corba/svcs/ins/cos_naming.rb +426 -0
- data/lib/corba/svcs/ins/ins.rb +526 -0
- data/lib/corba/svcs/ins/naming_service.rb +119 -0
- data/lib/corba.rb +16 -0
- data/lib/ridlbe/ruby/config.rb +336 -0
- data/lib/ridlbe/ruby/require.rb +16 -0
- data/lib/ridlbe/ruby/walker.rb +1582 -0
- data/mkrf_conf_srcgem.rb +186 -0
- data/rakelib/bin.rake +80 -0
- data/rakelib/bin.rb +146 -0
- data/rakelib/build.rake +87 -0
- data/rakelib/config.rake +52 -0
- data/rakelib/config.rb +450 -0
- data/rakelib/ext.rake +242 -0
- data/rakelib/ext.rb +308 -0
- data/rakelib/ext_r2tao.rb +232 -0
- data/rakelib/gem.rake +212 -0
- data/rakelib/gem.rb +146 -0
- data/rakelib/package.rake +26 -0
- data/rakelib/test.rake +23 -0
- data/test/BiDirectional/Test.idl +34 -0
- data/test/BiDirectional/client.rb +132 -0
- data/test/BiDirectional/run_test.rb +68 -0
- data/test/BiDirectional/server.rb +169 -0
- data/test/CORBA_Services/Naming/BindingIterator/Test.idl +27 -0
- data/test/CORBA_Services/Naming/BindingIterator/client.rb +121 -0
- data/test/CORBA_Services/Naming/BindingIterator/run_test.rb +82 -0
- data/test/CORBA_Services/Naming/BindingIterator/server.rb +109 -0
- data/test/CORBA_Services/Naming/Corbaname/Test.idl +27 -0
- data/test/CORBA_Services/Naming/Corbaname/client.rb +85 -0
- data/test/CORBA_Services/Naming/Corbaname/run_test.rb +88 -0
- data/test/CORBA_Services/Naming/Corbaname/server.rb +135 -0
- data/test/CORBA_Services/Naming/Simple/Test.idl +27 -0
- data/test/CORBA_Services/Naming/Simple/client.rb +84 -0
- data/test/CORBA_Services/Naming/Simple/run_test.rb +82 -0
- data/test/CORBA_Services/Naming/Simple/server.rb +109 -0
- data/test/Collocation/Diamond.idl +39 -0
- data/test/Collocation/run_test.rb +52 -0
- data/test/Collocation/test.rb +195 -0
- data/test/Connect_Timeout/Test.idl +27 -0
- data/test/Connect_Timeout/client.rb +111 -0
- data/test/Connect_Timeout/run_test.rb +52 -0
- data/test/DII/Test.idl +27 -0
- data/test/DII/client.rb +115 -0
- data/test/DII/run_test.rb +69 -0
- data/test/DII/server.rb +95 -0
- data/test/DSI/Test.idl +27 -0
- data/test/DSI/client.rb +66 -0
- data/test/DSI/run_test.rb +69 -0
- data/test/DSI/server.rb +106 -0
- data/test/Exceptions/Test.idl +48 -0
- data/test/Exceptions/client.rb +118 -0
- data/test/Exceptions/run_test.rb +69 -0
- data/test/Exceptions/server.rb +131 -0
- data/test/Hello/Test.idl +27 -0
- data/test/Hello/client.rb +78 -0
- data/test/Hello/run_test.rb +71 -0
- data/test/Hello/server.rb +95 -0
- data/test/IDL_Test/Test.idl +113 -0
- data/test/IDL_Test/Test_inc.idl +17 -0
- data/test/IDL_Test/client.rb +102 -0
- data/test/IDL_Test/run_test.rb +69 -0
- data/test/IDL_Test/server.rb +99 -0
- data/test/IORMap/Test.idl +27 -0
- data/test/IORMap/client.rb +73 -0
- data/test/IORMap/run_test.rb +69 -0
- data/test/IORMap/server.rb +114 -0
- data/test/IORTable/Test.idl +27 -0
- data/test/IORTable/client.rb +75 -0
- data/test/IORTable/run_test.rb +69 -0
- data/test/IORTable/server.rb +130 -0
- data/test/Implicit_Conversion/Test.idl +31 -0
- data/test/Implicit_Conversion/client.rb +110 -0
- data/test/Implicit_Conversion/run_test.rb +69 -0
- data/test/Implicit_Conversion/server.rb +99 -0
- data/test/Multi_Threading/Multiple_ORB/Test.idl +27 -0
- data/test/Multi_Threading/Multiple_ORB/client.rb +82 -0
- data/test/Multi_Threading/Multiple_ORB/run_test.rb +71 -0
- data/test/Multi_Threading/Multiple_ORB/server.rb +108 -0
- data/test/Multi_Threading/Simple/Test.idl +27 -0
- data/test/Multi_Threading/Simple/client.rb +88 -0
- data/test/Multi_Threading/Simple/run_test.rb +69 -0
- data/test/Multi_Threading/Simple/server.rb +118 -0
- data/test/Multi_Threading/Threads/Test.idl +31 -0
- data/test/Multi_Threading/Threads/client.rb +80 -0
- data/test/Multi_Threading/Threads/run_test.rb +76 -0
- data/test/Multi_Threading/Threads/server.rb +119 -0
- data/test/Multi_Threading/Threads/watchdog.rb +87 -0
- data/test/Multiple_Servant_Interfaces/Test.idl +34 -0
- data/test/Multiple_Servant_Interfaces/client.rb +70 -0
- data/test/Multiple_Servant_Interfaces/run_test.rb +69 -0
- data/test/Multiple_Servant_Interfaces/server.rb +102 -0
- data/test/Nil/Test.idl +27 -0
- data/test/Nil/run_test.rb +52 -0
- data/test/Nil/test.rb +78 -0
- data/test/OBV/AbstractInterface/client.rb +179 -0
- data/test/OBV/AbstractInterface/run_test.rb +69 -0
- data/test/OBV/AbstractInterface/server.rb +149 -0
- data/test/OBV/AbstractInterface/test.idl +53 -0
- data/test/OBV/Custom/OBV.idl +18 -0
- data/test/OBV/Custom/OBV_impl.rb +40 -0
- data/test/OBV/Custom/client.rb +86 -0
- data/test/OBV/Custom/run_test.rb +69 -0
- data/test/OBV/Custom/server.rb +100 -0
- data/test/OBV/Simple/OBV.idl +15 -0
- data/test/OBV/Simple/OBV_impl.rb +26 -0
- data/test/OBV/Simple/client.rb +86 -0
- data/test/OBV/Simple/run_test.rb +69 -0
- data/test/OBV/Simple/server.rb +100 -0
- data/test/OBV/Simple_Event/Event.idl +15 -0
- data/test/OBV/Simple_Event/Event_impl.rb +26 -0
- data/test/OBV/Simple_Event/client.rb +86 -0
- data/test/OBV/Simple_Event/run_test.rb +69 -0
- data/test/OBV/Simple_Event/server.rb +100 -0
- data/test/OBV/Supports/client.rb +116 -0
- data/test/OBV/Supports/run_test.rb +69 -0
- data/test/OBV/Supports/server.rb +103 -0
- data/test/OBV/Supports/supports.idl +33 -0
- data/test/OBV/Supports/supports_impl.rb +57 -0
- data/test/OBV/Tree/client.rb +116 -0
- data/test/OBV/Tree/run_test.rb +69 -0
- data/test/OBV/Tree/server.rb +117 -0
- data/test/OBV/Tree/test.idl +32 -0
- data/test/OBV/Truncatable/Extra.idl +27 -0
- data/test/OBV/Truncatable/Truncatable.idl +105 -0
- data/test/OBV/Truncatable/Truncatable_impl.rb +86 -0
- data/test/OBV/Truncatable/client.rb +279 -0
- data/test/OBV/Truncatable/run_test.rb +69 -0
- data/test/OBV/Truncatable/server.rb +89 -0
- data/test/OBV/ValueBox/client.rb +497 -0
- data/test/OBV/ValueBox/run_test.rb +69 -0
- data/test/OBV/ValueBox/server.rb +271 -0
- data/test/OBV/ValueBox/valuebox.idl +101 -0
- data/test/OBV/ValueBox/vb_basic.idl +75 -0
- data/test/OBV/ValueBox/vb_struct.idl +68 -0
- data/test/OBV/ValueBox/vb_union.idl +21 -0
- data/test/Object/Test.idl +27 -0
- data/test/Object/client.rb +103 -0
- data/test/Object/run_test.rb +69 -0
- data/test/Object/server.rb +126 -0
- data/test/POA/Test.idl +27 -0
- data/test/POA/run_test.rb +52 -0
- data/test/POA/test.rb +112 -0
- data/test/Param_Test/Test.idl +182 -0
- data/test/Param_Test/client.rb +277 -0
- data/test/Param_Test/run_test.rb +69 -0
- data/test/Param_Test/server.rb +296 -0
- data/test/Performance/Simple/Test.idl +27 -0
- data/test/Performance/Simple/client.rb +90 -0
- data/test/Performance/Simple/run_test.rb +69 -0
- data/test/Performance/Simple/server.rb +95 -0
- data/test/Policies/Test.idl +27 -0
- data/test/Policies/run_test.rb +52 -0
- data/test/Policies/test.rb +144 -0
- data/test/Timeout/client.rb +207 -0
- data/test/Timeout/run_test.rb +69 -0
- data/test/Timeout/server.rb +109 -0
- data/test/Timeout/test.idl +19 -0
- data/test/lib/assert.rb +43 -0
- data/test/lib/test.rb +542 -0
- data/test/test_runner.rb +193 -0
- metadata +334 -0
@@ -0,0 +1,106 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# exception.rb - Java/JacORB specific CORBA Exception 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
|
+
|
14
|
+
# import all java CORBA exceptions into the R2CORBA::CORBA namespace
|
15
|
+
module R2CORBA
|
16
|
+
module CORBA
|
17
|
+
class Exception
|
18
|
+
def self.native2r(jex)
|
19
|
+
if ::NativeException === jex
|
20
|
+
if jex.cause.is_a? Native::SystemException
|
21
|
+
SystemException._raise(jex)
|
22
|
+
elsif jex.cause.is_a? Native::UserException
|
23
|
+
UserException._raise(jex)
|
24
|
+
else
|
25
|
+
raise CORBA::InternalError.new(jex)
|
26
|
+
end
|
27
|
+
else
|
28
|
+
raise jex
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
class UserException
|
34
|
+
def self._raise(jex)
|
35
|
+
STDERR.puts "#{jex}\n#{jex.backtrace.join("\n")}" if $VERBOSE and (NativeException === jex)
|
36
|
+
if (NativeException === jex and jex.cause.is_a?(Native::UnknownUserException)) or jex.is_a?(Native::UnknownUserException)
|
37
|
+
java_ex = jex.is_a?(Native::UnknownUserException) ? jex : jex.cause
|
38
|
+
ex = Any.from_java(java_ex.except)
|
39
|
+
ex.set_backtrace(jex.backtrace) if NativeException === jex
|
40
|
+
raise ex
|
41
|
+
elsif (NativeException === jex and jex.cause.is_a?(Native::UserException)) or jex.is_a?(Native::UserException)
|
42
|
+
java_ex = jex.is_a?(Native::UserException) ? jex : jex.cause
|
43
|
+
exname = java_ex.class.name.split('::').last
|
44
|
+
tcs = CORBA::TypeCode.typecodes_for_name(exname) || []
|
45
|
+
extc = tcs.detect {|tc| tc.is_a?(TypeCode::Except) && tc.is_compatible?(java_ex)}
|
46
|
+
if extc
|
47
|
+
ex = extc.from_java(java_ex)
|
48
|
+
ex.set_backtrace(jex.backtrace) if NativeException === jex
|
49
|
+
raise ex
|
50
|
+
end
|
51
|
+
end
|
52
|
+
raise CORBA::UNKNOWN.new("#{jex}", 0, CORBA::COMPLETED_MAYBE)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
class InternalError
|
57
|
+
def initialize(jex)
|
58
|
+
@ex_ = jex
|
59
|
+
super(@ex_.message)
|
60
|
+
self.set_backtrace(@ex_.backtrace)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
class SystemException
|
65
|
+
def self._raise(jex)
|
66
|
+
raise ArgumentError unless (NativeException === jex and jex.cause.is_a?(Native::SystemException)) or jex.is_a?(Native::SystemException)
|
67
|
+
java_ex = jex.is_a?(Native::SystemException) ? jex : jex.cause
|
68
|
+
exname = java_ex.class.name.split('::').last
|
69
|
+
exklass = CORBA.const_get(exname.to_sym)
|
70
|
+
unless exklass
|
71
|
+
# define hitherto unknown CORBA system exception
|
72
|
+
CORBA.define_system_exception(exname)
|
73
|
+
CORBA.const_get(exname.to_sym) || InternalError
|
74
|
+
end
|
75
|
+
raise exklass.new(jex)
|
76
|
+
end
|
77
|
+
def initialize(*args)
|
78
|
+
if (NativeException === args.first and args.first.cause.is_a? Native::SystemException) or args.first.is_a?(Native::SystemException)
|
79
|
+
java_ex = args.first.is_a?(Native::SystemException) ? args.first : args.first.cause
|
80
|
+
super(java_ex.getMessage)
|
81
|
+
@minor = java_ex.minor
|
82
|
+
@completed = java_ex.completed.value
|
83
|
+
self.set_backtrace(args.first.backtrace) if NativeException === args.first
|
84
|
+
else
|
85
|
+
super(args.shift.to_s)
|
86
|
+
@minor, @completed = (args + [0,0][args.size..2])
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end # CORBA
|
91
|
+
end # R2CORBA
|
92
|
+
|
93
|
+
# extend Ruby wrapper for Native java exceptions
|
94
|
+
class NativeException
|
95
|
+
alias method_missing_corba_backup method_missing
|
96
|
+
def method_missing(method, *args)
|
97
|
+
if self.cause.is_a?(R2CORBA::CORBA::Native::SystemException) and args.empty?
|
98
|
+
return self.cause.minor if method == :minor
|
99
|
+
return self.cause.completed.value if method == :completed
|
100
|
+
return self.cause.getMessage if method == :reason
|
101
|
+
elsif self.cause.is_a? R2CORBA::CORBA::Native::UserException
|
102
|
+
return self.cause.send(method, *args)
|
103
|
+
end
|
104
|
+
self.method_missing_corba_backup
|
105
|
+
end
|
106
|
+
end
|
@@ -0,0 +1,229 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# poa.rb - Java/JacORB R2CORBA POA loader
|
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
|
+
|
14
|
+
module R2CORBA
|
15
|
+
module PortableServer
|
16
|
+
module Native
|
17
|
+
include_package 'org.omg.PortableServer'
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'corba/common/Servant.rb'
|
23
|
+
require 'corba/idl/POAC.rb'
|
24
|
+
require 'corba/jbase/Servant.rb'
|
25
|
+
require 'corba/jbase/ServerRequest.rb'
|
26
|
+
|
27
|
+
module R2CORBA
|
28
|
+
module PortableServer
|
29
|
+
def self.string_to_ObjectId(s)
|
30
|
+
raise CORBA::NO_IMPLEMENT
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.ObjectId_to_string(oid)
|
34
|
+
raise CORBA::NO_IMPLEMENT
|
35
|
+
end
|
36
|
+
|
37
|
+
module POA
|
38
|
+
def destroy(etherealize_objects, wait_for_completion)
|
39
|
+
begin
|
40
|
+
self.objref_.destroy(etherealize_objects!=false, wait_for_completion!=false)
|
41
|
+
rescue ::NativeException
|
42
|
+
CORBA::Exception.native2r($!)
|
43
|
+
end
|
44
|
+
end #of operation destroy
|
45
|
+
|
46
|
+
def the_name()
|
47
|
+
begin
|
48
|
+
self.objref_.the_name()
|
49
|
+
rescue ::NativeException
|
50
|
+
CORBA::Exception.native2r($!)
|
51
|
+
end
|
52
|
+
end #of attribute get_the_name
|
53
|
+
|
54
|
+
def the_POAManager()
|
55
|
+
begin
|
56
|
+
PortableServer::POAManager._narrow(CORBA::Object._wrap_native(self.objref_.the_POAManager()))
|
57
|
+
rescue ::NativeException
|
58
|
+
CORBA::Exception.native2r($!)
|
59
|
+
end
|
60
|
+
end #of attribute get_the_POAManager
|
61
|
+
|
62
|
+
def the_parent()
|
63
|
+
begin
|
64
|
+
PortableServer::POA._narrow(CORBA::Object._wrap_native(self.objref_.the_parent()))
|
65
|
+
rescue ::NativeException
|
66
|
+
CORBA::Exception.native2r($!)
|
67
|
+
end
|
68
|
+
end #of attribute get_the_parent
|
69
|
+
|
70
|
+
def the_children()
|
71
|
+
begin
|
72
|
+
self.objref_.the_children().collect {|c| PortableServer::POA._narrow(CORBA::Object._wrap_native(c)) }
|
73
|
+
rescue ::NativeException
|
74
|
+
CORBA::Exception.native2r($!)
|
75
|
+
end
|
76
|
+
end #of attribute get_the_children
|
77
|
+
|
78
|
+
def activate_object(p_servant)
|
79
|
+
begin
|
80
|
+
String.from_java_bytes(self.objref_.activate_object(p_servant.srvref_))
|
81
|
+
rescue ::NativeException
|
82
|
+
CORBA::Exception.native2r($!)
|
83
|
+
end
|
84
|
+
end #of operation activate_object
|
85
|
+
|
86
|
+
def activate_object_with_id(r_id, p_servant)
|
87
|
+
begin
|
88
|
+
self.objref_.activate_object_with_id(r_id.to_s.to_java_bytes, p_servant.srvref_)
|
89
|
+
rescue ::NativeException
|
90
|
+
CORBA::Exception.native2r($!)
|
91
|
+
end
|
92
|
+
end #of operation activate_object_with_id
|
93
|
+
|
94
|
+
def deactivate_object(oid)
|
95
|
+
begin
|
96
|
+
self.objref_.deactivate_object(oid.to_s.to_java_bytes)
|
97
|
+
rescue ::NativeException
|
98
|
+
CORBA::Exception.native2r($!)
|
99
|
+
end
|
100
|
+
end #of operation deactivate_object
|
101
|
+
|
102
|
+
def create_reference(intf)
|
103
|
+
begin
|
104
|
+
CORBA::Object._wrap_native(self.objref_.create_reference(intf.to_s))
|
105
|
+
rescue ::NativeException
|
106
|
+
CORBA::Exception.native2r($!)
|
107
|
+
end
|
108
|
+
end #of operation create_reference
|
109
|
+
|
110
|
+
def create_reference_with_id(oid, intf)
|
111
|
+
begin
|
112
|
+
CORBA::Object._wrap_native(self.objref_.create_reference_with_id(oid.to_s.to_java_bytes, intf.to_s))
|
113
|
+
rescue ::NativeException
|
114
|
+
CORBA::Exception.native2r($!)
|
115
|
+
end
|
116
|
+
end #of operation create_reference_with_id
|
117
|
+
|
118
|
+
def servant_to_id(p_servant)
|
119
|
+
begin
|
120
|
+
String.from_java_bytes(self.objref_.servant_to_id(p_servant.srvref_))
|
121
|
+
rescue ::NativeException
|
122
|
+
CORBA::Exception.native2r($!)
|
123
|
+
end
|
124
|
+
end #of operation servant_to_id
|
125
|
+
|
126
|
+
def servant_to_reference(p_servant)
|
127
|
+
begin
|
128
|
+
CORBA::Object._wrap_native(self.objref_.servant_to_reference(p_servant.srvref_))
|
129
|
+
rescue ::NativeException
|
130
|
+
CORBA::Exception.native2r($!)
|
131
|
+
end
|
132
|
+
end #of operation servant_to_reference
|
133
|
+
|
134
|
+
def reference_to_servant(reference)
|
135
|
+
begin
|
136
|
+
self.objref_.reference_to_servant(reference.objref_).rbServant
|
137
|
+
rescue ::NativeException
|
138
|
+
CORBA::Exception.native2r($!)
|
139
|
+
end
|
140
|
+
end #of operation reference_to_servant
|
141
|
+
|
142
|
+
def reference_to_id(reference)
|
143
|
+
begin
|
144
|
+
String.from_java_bytes(self.objref_.reference_to_id(reference.objref_))
|
145
|
+
rescue ::NativeException
|
146
|
+
CORBA::Exception.native2r($!)
|
147
|
+
end
|
148
|
+
end #of operation reference_to_id
|
149
|
+
|
150
|
+
def id_to_servant(oid)
|
151
|
+
begin
|
152
|
+
self.objref_.id_to_servant(oid.to_s.to_java_bytes).rbServant
|
153
|
+
rescue ::NativeException
|
154
|
+
CORBA::Exception.native2r($!)
|
155
|
+
end
|
156
|
+
end #of operation id_to_servant
|
157
|
+
|
158
|
+
def id_to_reference(oid)
|
159
|
+
begin
|
160
|
+
CORBA::Object._wrap_native(self.objref_.id_to_reference(oid.to_s.to_java_bytes))
|
161
|
+
rescue ::NativeException
|
162
|
+
CORBA::Exception.native2r($!)
|
163
|
+
end
|
164
|
+
end #of operation id_to_reference
|
165
|
+
|
166
|
+
def create_POA(adapter_name, a_POAManager, policies)
|
167
|
+
raise CORBA::BAD_PARAM.new('expected POAManager', 0, CORBA::COMPLETED_NO) unless a_POAManager.is_a?(PortableServer::POAManager)
|
168
|
+
CORBA::PolicyList._tc.validate(policies) unless policies.nil? || policies.empty?
|
169
|
+
jpolicies = CORBA::Native::Reflect::Array.newInstance(CORBA::Native::Policy.java_class, policies.nil? ? 0 : policies.size)
|
170
|
+
policies.each_with_index {|p,i| jpolicies[i] = p.objref_ } unless policies.nil?
|
171
|
+
begin
|
172
|
+
PortableServer::POA._narrow(CORBA::Object._wrap_native(self.objref_.create_POA(adapter_name, a_POAManager.objref_, jpolicies)))
|
173
|
+
rescue ::NativeException
|
174
|
+
CORBA::Exception.native2r($!)
|
175
|
+
end
|
176
|
+
end #of operation create_POA
|
177
|
+
|
178
|
+
def find_POA(adapter_name, activate_it)
|
179
|
+
begin
|
180
|
+
PortableServer::POA._narrow(CORBA::Object._wrap_native(self.objref_.find_POA(adapter_name, activate_it)))
|
181
|
+
rescue ::NativeException
|
182
|
+
CORBA::Exception.native2r($!)
|
183
|
+
end
|
184
|
+
end #of operation find_POA
|
185
|
+
end # POA
|
186
|
+
|
187
|
+
module POAManager
|
188
|
+
def activate()
|
189
|
+
begin
|
190
|
+
self.objref_.activate()
|
191
|
+
rescue ::NativeException
|
192
|
+
CORBA::Exception.native2r($!)
|
193
|
+
end
|
194
|
+
end # activate
|
195
|
+
|
196
|
+
def hold_requests(wait_for_completion)
|
197
|
+
begin
|
198
|
+
self.objref_.hold_requests(wait_for_completion)
|
199
|
+
rescue ::NativeException
|
200
|
+
CORBA::Exception.native2r($!)
|
201
|
+
end
|
202
|
+
end # hold_requests
|
203
|
+
|
204
|
+
def discard_requests(wait_for_completion)
|
205
|
+
begin
|
206
|
+
self.objref_.discard_requests(wait_for_completion)
|
207
|
+
rescue ::NativeException
|
208
|
+
CORBA::Exception.native2r($!)
|
209
|
+
end
|
210
|
+
end # discard_requests
|
211
|
+
|
212
|
+
def deactivate(etherealize_objects, wait_for_completion)
|
213
|
+
begin
|
214
|
+
self.objref_.deactivate(etherealize_objects, wait_for_completion)
|
215
|
+
rescue ::NativeException
|
216
|
+
CORBA::Exception.native2r($!)
|
217
|
+
end
|
218
|
+
end # deactivate
|
219
|
+
|
220
|
+
def get_state()
|
221
|
+
begin
|
222
|
+
self.objref_.get_state().value()
|
223
|
+
rescue ::NativeException
|
224
|
+
CORBA::Exception.native2r($!)
|
225
|
+
end
|
226
|
+
end # get_state
|
227
|
+
end # POAManager
|
228
|
+
end
|
229
|
+
end
|
@@ -0,0 +1,300 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# policies.rb - Java/JacORB R2CORBA Policy support loader
|
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
|
+
|
14
|
+
module R2CORBA
|
15
|
+
|
16
|
+
module CORBA
|
17
|
+
|
18
|
+
module ORB
|
19
|
+
def create_policy(type, val)
|
20
|
+
raise CORBA::BAD_PARAM.new('Any expected',0,CORBA::COMPLETED_NO) unless CORBA::Any === val
|
21
|
+
begin
|
22
|
+
Policy._wrap_native(self.orb_.create_policy(type.to_i, val.to_java(self.orb_)))
|
23
|
+
rescue ::NativeException
|
24
|
+
CORBA::Exception.native2r($!)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end # ORB
|
28
|
+
|
29
|
+
module Object
|
30
|
+
def _get_policy(policy_type)
|
31
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
32
|
+
begin
|
33
|
+
pol = Policy._wrap_native(self.objref_._get_policy(policy_type))
|
34
|
+
rescue ::NativeException
|
35
|
+
CORBA::Exception.native2r($!)
|
36
|
+
end
|
37
|
+
raise CORBA::INV_POLICY if CORBA.is_nil(pol) # provide spec compliance
|
38
|
+
end
|
39
|
+
|
40
|
+
def _get_policy_overrides(ts)
|
41
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
42
|
+
## currently JacORB does not support #_get_policy_overrides so we emulate it in that case
|
43
|
+
unless self.objref_.respond_to?(:_get_policy_overrides)
|
44
|
+
begin
|
45
|
+
ts.collect { |pt| Policy._wrap_native(self.objref_._get_policy(pt)) }.compact
|
46
|
+
rescue ::NativeException
|
47
|
+
CORBA::Exception.native2r($!)
|
48
|
+
end
|
49
|
+
else
|
50
|
+
begin
|
51
|
+
jpolicies = self.objref_._get_policy_overrides(ts.to_java(:int))
|
52
|
+
rescue ::NativeException
|
53
|
+
CORBA::Exception.native2r($!)
|
54
|
+
end
|
55
|
+
jpolicies.collect {|jpol| Policy._wrap_native(jpol) }
|
56
|
+
end
|
57
|
+
end #of operation get_policy_overrides
|
58
|
+
|
59
|
+
def _set_policy_overrides(policies, set_add)
|
60
|
+
raise CORBA::INV_OBJREF.new if self._is_nil?()
|
61
|
+
jpolicies = CORBA::Native::Reflect::Array.newInstance(CORBA::Native::Policy.java_class, policies.size)
|
62
|
+
policies.each_with_index {|e,i| jpolicies[i] = e.objref_ }
|
63
|
+
begin
|
64
|
+
obj = self.objref_._set_policy_override(jpolicies, Native::SetOverrideType.from_int(set_add))
|
65
|
+
rescue ::NativeException
|
66
|
+
CORBA::Exception.native2r($!)
|
67
|
+
end
|
68
|
+
CORBA::Object._wrap_native(obj)
|
69
|
+
end
|
70
|
+
|
71
|
+
## Currently unsupported by JacORB
|
72
|
+
# def _validate_connection(inconsistent_policies)
|
73
|
+
# raise CORBA::INV_OBJREF.new if self._is_nil?()
|
74
|
+
# jpollist = CORBA::Native::PolicyListHolder.new
|
75
|
+
# ret = self.objref_._validate_connection(jpollist) rescue CORBA::Exception.native2r($!)
|
76
|
+
# jpollist.value.each {|jpol| inconsistent_policies << Policy._wrap_native(jpol) }
|
77
|
+
# ret
|
78
|
+
# end
|
79
|
+
end # Object
|
80
|
+
|
81
|
+
module Policy
|
82
|
+
def self._wrap_native(jpol)
|
83
|
+
raise ArgumentError, 'Expected org.omg.CORBA.Policy' unless jpol.nil? || jpol.is_a?(Native::Policy)
|
84
|
+
Policy._narrow(CORBA::Object._wrap_native(jpol))
|
85
|
+
end
|
86
|
+
|
87
|
+
#------------------- "Policy Operations"
|
88
|
+
|
89
|
+
def policy_type()
|
90
|
+
begin
|
91
|
+
self.objref_.policy_type()
|
92
|
+
rescue ::NativeException
|
93
|
+
CORBA::Exception.native2r($!)
|
94
|
+
end
|
95
|
+
end #of attribute get_policy_type
|
96
|
+
|
97
|
+
def copy()
|
98
|
+
begin
|
99
|
+
Policy._wrap_native(self.objref_.copy())
|
100
|
+
rescue ::NativeException
|
101
|
+
CORBA::Exception.native2r($!)
|
102
|
+
end
|
103
|
+
end #of operation copy
|
104
|
+
|
105
|
+
def destroy()
|
106
|
+
begin
|
107
|
+
self.objref_.destroy()
|
108
|
+
rescue ::NativeException
|
109
|
+
CORBA::Exception.native2r($!)
|
110
|
+
end
|
111
|
+
@objref_ = nil
|
112
|
+
end #of operation destroy
|
113
|
+
end # Policy
|
114
|
+
|
115
|
+
module PolicyManager
|
116
|
+
#------------------- "PolicyManager Operations"
|
117
|
+
|
118
|
+
def get_policy_overrides(ts)
|
119
|
+
begin
|
120
|
+
jpolicies = self.objref_.get_policy_overrides(ts.to_java(:int))
|
121
|
+
rescue ::NativeException
|
122
|
+
CORBA::Exception.native2r($!)
|
123
|
+
end
|
124
|
+
jpolicies.collect {|jpol| Policy._wrap_native(jpol) }
|
125
|
+
end #of operation get_policy_overrides
|
126
|
+
|
127
|
+
def set_policy_overrides(policies, set_add)
|
128
|
+
jpolicies = CORBA::Native::Reflect::Array.newInstance(CORBA::Native::Policy.java_class, policies.size)
|
129
|
+
policies.each_with_index {|e,i| jpolicies[i] = e.objref_ }
|
130
|
+
begin
|
131
|
+
self.objref_.set_policy_overrides(jpolicies, Native::SetOverrideType.from_int(set_add))
|
132
|
+
rescue ::NativeException
|
133
|
+
CORBA::Exception.native2r($!)
|
134
|
+
end
|
135
|
+
end #of operation set_policy_overrides
|
136
|
+
end # Policy
|
137
|
+
|
138
|
+
end # CORBA
|
139
|
+
|
140
|
+
module PortableServer
|
141
|
+
|
142
|
+
module POA
|
143
|
+
def create_thread_policy(value)
|
144
|
+
begin
|
145
|
+
PortableServer::ThreadPolicy._narrow(
|
146
|
+
CORBA::Object._wrap_native(
|
147
|
+
self.objref_.create_thread_policy(PortableServer::Native::ThreadPolicyValue.from_int(value))))
|
148
|
+
rescue ::NativeException
|
149
|
+
CORBA::Exception.native2r($!)
|
150
|
+
end
|
151
|
+
end #of operation create_thread_policy
|
152
|
+
|
153
|
+
def create_lifespan_policy(value)
|
154
|
+
begin
|
155
|
+
PortableServer::LifespanPolicy._narrow(
|
156
|
+
CORBA::Object._wrap_native(
|
157
|
+
self.objref_.create_lifespan_policy(PortableServer::Native::LifespanPolicyValue.from_int(value))))
|
158
|
+
rescue ::NativeException
|
159
|
+
CORBA::Exception.native2r($!)
|
160
|
+
end
|
161
|
+
end #of operation create_lifespan_policy
|
162
|
+
|
163
|
+
def create_id_uniqueness_policy(value)
|
164
|
+
begin
|
165
|
+
PortableServer::IdUniquenessPolicy._narrow(
|
166
|
+
CORBA::Object._wrap_native(
|
167
|
+
self.objref_.create_id_uniqueness_policy(PortableServer::Native::IdUniquenessPolicyValue.from_int(value))))
|
168
|
+
rescue ::NativeException
|
169
|
+
CORBA::Exception.native2r($!)
|
170
|
+
end
|
171
|
+
end #of operation create_id_uniqueness_policy
|
172
|
+
|
173
|
+
def create_id_assignment_policy(value)
|
174
|
+
begin
|
175
|
+
PortableServer::IdAssignmentPolicy._narrow(
|
176
|
+
CORBA::Object._wrap_native(
|
177
|
+
self.objref_.create_id_assignment_policy(PortableServer::Native::IdAssignmentPolicyValue.from_int(value))))
|
178
|
+
rescue ::NativeException
|
179
|
+
CORBA::Exception.native2r($!)
|
180
|
+
end
|
181
|
+
end #of operation create_id_assignment_policy
|
182
|
+
|
183
|
+
def create_implicit_activation_policy(value)
|
184
|
+
begin
|
185
|
+
PortableServer::ImplicitActivationPolicy._narrow(
|
186
|
+
CORBA::Object._wrap_native(
|
187
|
+
self.objref_.create_implicit_activation_policy(PortableServer::Native::ImplicitActivationPolicyValue.from_int(value))))
|
188
|
+
rescue ::NativeException
|
189
|
+
CORBA::Exception.native2r($!)
|
190
|
+
end
|
191
|
+
end #of operation create_implicit_activation_policy
|
192
|
+
|
193
|
+
def create_servant_retention_policy(value)
|
194
|
+
begin
|
195
|
+
PortableServer::ServantRetentionPolicy._narrow(
|
196
|
+
CORBA::Object._wrap_native(
|
197
|
+
self.objref_.create_servant_retention_policy(PortableServer::Native::ServantRetentionPolicyValue.from_int(value))))
|
198
|
+
rescue ::NativeException
|
199
|
+
CORBA::Exception.native2r($!)
|
200
|
+
end
|
201
|
+
end #of operation create_servant_retention_policy
|
202
|
+
|
203
|
+
def create_request_processing_policy(value)
|
204
|
+
begin
|
205
|
+
PortableServer::RequestProcessingPolicy._narrow(
|
206
|
+
CORBA::Object._wrap_native(
|
207
|
+
self.objref_.create_request_processing_policy(PortableServer::Native::RequestProcessingPolicyValue.from_int(value))))
|
208
|
+
rescue ::NativeException
|
209
|
+
CORBA::Exception.native2r($!)
|
210
|
+
end
|
211
|
+
end #of operation create_request_processing_policy
|
212
|
+
end # POA
|
213
|
+
|
214
|
+
module ThreadPolicy ## interface
|
215
|
+
def value()
|
216
|
+
begin
|
217
|
+
self.objref_.value().value()
|
218
|
+
rescue ::NativeException
|
219
|
+
CORBA::Exception.native2r($!)
|
220
|
+
end
|
221
|
+
end #of attribute get_value
|
222
|
+
end #of interface ThreadPolicy
|
223
|
+
|
224
|
+
module LifespanPolicy ## interface
|
225
|
+
def value()
|
226
|
+
begin
|
227
|
+
self.objref_.value().value()
|
228
|
+
rescue ::NativeException
|
229
|
+
CORBA::Exception.native2r($!)
|
230
|
+
end
|
231
|
+
end #of attribute get_value
|
232
|
+
end #of interface LifespanPolicy
|
233
|
+
|
234
|
+
module IdUniquenessPolicy ## interface
|
235
|
+
def value()
|
236
|
+
begin
|
237
|
+
self.objref_.value().value()
|
238
|
+
rescue ::NativeException
|
239
|
+
CORBA::Exception.native2r($!)
|
240
|
+
end
|
241
|
+
end #of attribute get_value
|
242
|
+
end #of interface IdUniquenessPolicy
|
243
|
+
|
244
|
+
module IdAssignmentPolicy ## interface
|
245
|
+
def value()
|
246
|
+
begin
|
247
|
+
self.objref_.value().value()
|
248
|
+
rescue ::NativeException
|
249
|
+
CORBA::Exception.native2r($!)
|
250
|
+
end
|
251
|
+
end #of attribute get_value
|
252
|
+
end #of interface IdAssignmentPolicy
|
253
|
+
|
254
|
+
module ImplicitActivationPolicy ## interface
|
255
|
+
def value()
|
256
|
+
begin
|
257
|
+
self.objref_.value().value()
|
258
|
+
rescue ::NativeException
|
259
|
+
CORBA::Exception.native2r($!)
|
260
|
+
end
|
261
|
+
end #of attribute get_value
|
262
|
+
end #of interface ImplicitActivationPolicy
|
263
|
+
|
264
|
+
module ServantRetentionPolicy ## interface
|
265
|
+
def value()
|
266
|
+
begin
|
267
|
+
self.objref_.value().value()
|
268
|
+
rescue ::NativeException
|
269
|
+
CORBA::Exception.native2r($!)
|
270
|
+
end
|
271
|
+
end #of attribute get_value
|
272
|
+
end #of interface RequestProcessingPolicy
|
273
|
+
|
274
|
+
module RequestProcessingPolicy ## interface
|
275
|
+
def value()
|
276
|
+
begin
|
277
|
+
self.objref_.value().value()
|
278
|
+
rescue ::NativeException
|
279
|
+
CORBA::Exception.native2r($!)
|
280
|
+
end
|
281
|
+
end #of attribute get_value
|
282
|
+
end #of interface RequestProcessingPolicy
|
283
|
+
|
284
|
+
end # PortableServer
|
285
|
+
|
286
|
+
module BiDirPolicy
|
287
|
+
|
288
|
+
module BidirectionalPolicy ## interface
|
289
|
+
def value()
|
290
|
+
begin
|
291
|
+
self.objref_.value().value()
|
292
|
+
rescue ::NativeException
|
293
|
+
CORBA::Exception.native2r($!)
|
294
|
+
end
|
295
|
+
end #of attribute get_value
|
296
|
+
end #of interface BidirectionalPolicy
|
297
|
+
|
298
|
+
end # BiDirPolicy
|
299
|
+
|
300
|
+
end # R2CORBA
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#--------------------------------------------------------------------
|
2
|
+
# require.rb - R2CORBA loader finalizer
|
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
|
+
|
14
|
+
require 'corba/jbase/IORMap'
|