r2corba 1.5.5 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (165) hide show
  1. checksums.yaml +4 -4
  2. data/ext/libr2tao/any.cpp +11 -10
  3. data/ext/libr2tao/exception.cpp +6 -8
  4. data/ext/libr2tao/exception.h +1 -1
  5. data/ext/libr2tao/longdouble.cpp +5 -9
  6. data/ext/libr2tao/object.cpp +33 -49
  7. data/ext/libr2tao/orb.cpp +38 -65
  8. data/ext/libr2tao/r2tao_ext.h +8 -7
  9. data/ext/libr2tao/required.cpp +1 -6
  10. data/ext/libr2tao/required.h +9 -23
  11. data/ext/libr2tao/values.cpp +92 -93
  12. data/ext/libr2tao/values.h +28 -30
  13. data/ext/librpoa/iortable.cpp +3 -4
  14. data/ext/librpoa/poa.cpp +22 -25
  15. data/ext/librpoa/servant.cpp +24 -23
  16. data/ext/librpoa/servant.h +10 -10
  17. data/lib/corba.rb +1 -1
  18. data/lib/corba/cbase/ORB.rb +19 -16
  19. data/lib/corba/cbase/Request.rb +3 -3
  20. data/lib/corba/cbase/Values.rb +4 -2
  21. data/lib/corba/cbase/exception.rb +4 -2
  22. data/lib/corba/cbase/poa.rb +1 -1
  23. data/lib/corba/cbase/policies.rb +1 -1
  24. data/lib/corba/cbase/require.rb +8 -1
  25. data/lib/corba/common/Any.rb +2 -1
  26. data/lib/corba/common/IDL.rb +1 -1
  27. data/lib/corba/common/ORB.rb +21 -21
  28. data/lib/corba/common/Object.rb +14 -13
  29. data/lib/corba/common/Servant.rb +4 -4
  30. data/lib/corba/common/Stub.rb +6 -6
  31. data/lib/corba/common/Typecode.rb +35 -8
  32. data/lib/corba/common/Union.rb +5 -0
  33. data/lib/corba/common/Values.rb +1 -0
  34. data/lib/corba/common/const.rb +1 -1
  35. data/lib/corba/common/exception.rb +2 -1
  36. data/lib/corba/common/version.rb +2 -2
  37. data/lib/corba/idl/IDL.rb +1 -1
  38. data/lib/corba/jbase/Any.rb +6 -4
  39. data/lib/corba/jbase/ORB.rb +2 -2
  40. data/lib/corba/jbase/Object.rb +13 -13
  41. data/lib/corba/jbase/Request.rb +3 -3
  42. data/lib/corba/jbase/Streams.rb +64 -0
  43. data/lib/corba/jbase/Typecode.rb +3 -2
  44. data/lib/corba/jbase/Values.rb +2 -0
  45. data/lib/corba/jbase/exception.rb +1 -0
  46. data/lib/corba/jbase/poa.rb +18 -18
  47. data/lib/corba/jbase/policies.rb +29 -29
  48. data/lib/corba/jbase/require.rb +4 -0
  49. data/lib/corba/svcs/ins/cos_naming.rb +10 -1
  50. data/lib/corba/svcs/ins/ins.rb +45 -45
  51. data/lib/corba/svcs/ins/naming_service.rb +6 -6
  52. data/lib/ridlbe/ruby/config.rb +27 -20
  53. data/lib/ridlbe/ruby/walker.rb +276 -253
  54. data/mkrf_conf_srcgem.rb +2 -2
  55. data/rakelib/build.rake +1 -1
  56. data/rakelib/config.rake +1 -1
  57. data/rakelib/config.rb +9 -9
  58. data/rakelib/ext.rake +6 -65
  59. data/rakelib/ext_r2tao.rb +2 -39
  60. data/rakelib/gem.rake +20 -20
  61. data/rakelib/gem.rb +1 -1
  62. data/rakelib/package.rake +1 -1
  63. data/test/BiDirectional/client.rb +16 -16
  64. data/test/BiDirectional/run_test.rb +10 -10
  65. data/test/BiDirectional/server.rb +20 -20
  66. data/test/CORBA_Services/Naming/BindingIterator/client.rb +14 -14
  67. data/test/CORBA_Services/Naming/BindingIterator/run_test.rb +12 -12
  68. data/test/CORBA_Services/Naming/BindingIterator/server.rb +17 -17
  69. data/test/CORBA_Services/Naming/Corbaname/client.rb +14 -14
  70. data/test/CORBA_Services/Naming/Corbaname/run_test.rb +12 -12
  71. data/test/CORBA_Services/Naming/Corbaname/server.rb +20 -20
  72. data/test/CORBA_Services/Naming/Simple/client.rb +14 -14
  73. data/test/CORBA_Services/Naming/Simple/run_test.rb +12 -12
  74. data/test/CORBA_Services/Naming/Simple/server.rb +17 -17
  75. data/test/Collocation/run_test.rb +10 -10
  76. data/test/Collocation/test.rb +26 -19
  77. data/test/Connect_Timeout/client.rb +15 -15
  78. data/test/Connect_Timeout/run_test.rb +10 -10
  79. data/test/DII/client.rb +27 -27
  80. data/test/DII/run_test.rb +10 -10
  81. data/test/DII/server.rb +15 -15
  82. data/test/DSI/client.rb +15 -15
  83. data/test/DSI/run_test.rb +10 -10
  84. data/test/DSI/server.rb +16 -16
  85. data/test/Exceptions/client.rb +19 -19
  86. data/test/Exceptions/run_test.rb +10 -10
  87. data/test/Exceptions/server.rb +15 -15
  88. data/test/Hello/client.rb +15 -15
  89. data/test/Hello/run_test.rb +10 -10
  90. data/test/Hello/server.rb +16 -16
  91. data/test/IDL_Test/client.rb +20 -20
  92. data/test/IDL_Test/run_test.rb +10 -10
  93. data/test/IDL_Test/server.rb +18 -18
  94. data/test/IORMap/client.rb +14 -14
  95. data/test/IORMap/run_test.rb +10 -10
  96. data/test/IORMap/server.rb +22 -22
  97. data/test/IORTable/client.rb +14 -14
  98. data/test/IORTable/run_test.rb +10 -10
  99. data/test/IORTable/server.rb +22 -22
  100. data/test/Implicit_Conversion/client.rb +19 -16
  101. data/test/Implicit_Conversion/run_test.rb +10 -10
  102. data/test/Implicit_Conversion/server.rb +15 -15
  103. data/test/Multi_Threading/Multiple_ORB/client.rb +13 -13
  104. data/test/Multi_Threading/Multiple_ORB/run_test.rb +10 -10
  105. data/test/Multi_Threading/Multiple_ORB/server.rb +16 -16
  106. data/test/Multi_Threading/Simple/client.rb +15 -15
  107. data/test/Multi_Threading/Simple/run_test.rb +10 -10
  108. data/test/Multi_Threading/Simple/server.rb +15 -15
  109. data/test/Multi_Threading/Threads/client.rb +15 -15
  110. data/test/Multi_Threading/Threads/run_test.rb +10 -10
  111. data/test/Multi_Threading/Threads/server.rb +17 -17
  112. data/test/Multi_Threading/Threads/watchdog.rb +15 -15
  113. data/test/Multiple_Servant_Interfaces/client.rb +13 -13
  114. data/test/Multiple_Servant_Interfaces/run_test.rb +10 -10
  115. data/test/Multiple_Servant_Interfaces/server.rb +17 -17
  116. data/test/Nil/run_test.rb +10 -10
  117. data/test/Nil/test.rb +13 -13
  118. data/test/OBV/AbstractInterface/client.rb +13 -13
  119. data/test/OBV/AbstractInterface/run_test.rb +10 -10
  120. data/test/OBV/AbstractInterface/server.rb +19 -18
  121. data/test/OBV/Custom/OBV_impl.rb +2 -0
  122. data/test/OBV/Custom/client.rb +13 -13
  123. data/test/OBV/Custom/run_test.rb +10 -10
  124. data/test/OBV/Custom/server.rb +15 -15
  125. data/test/OBV/Simple/OBV_impl.rb +1 -0
  126. data/test/OBV/Simple/client.rb +13 -13
  127. data/test/OBV/Simple/run_test.rb +10 -10
  128. data/test/OBV/Simple/server.rb +15 -15
  129. data/test/OBV/Simple_Event/Event_impl.rb +1 -0
  130. data/test/OBV/Simple_Event/client.rb +13 -13
  131. data/test/OBV/Simple_Event/run_test.rb +10 -10
  132. data/test/OBV/Simple_Event/server.rb +15 -15
  133. data/test/OBV/Supports/client.rb +18 -18
  134. data/test/OBV/Supports/run_test.rb +10 -10
  135. data/test/OBV/Supports/server.rb +14 -14
  136. data/test/OBV/Supports/supports_impl.rb +3 -0
  137. data/test/OBV/Tree/client.rb +13 -13
  138. data/test/OBV/Tree/run_test.rb +10 -10
  139. data/test/OBV/Tree/server.rb +18 -18
  140. data/test/OBV/Truncatable/client.rb +56 -56
  141. data/test/OBV/Truncatable/run_test.rb +10 -10
  142. data/test/OBV/Truncatable/server.rb +14 -14
  143. data/test/OBV/ValueBox/client.rb +148 -147
  144. data/test/OBV/ValueBox/run_test.rb +10 -10
  145. data/test/OBV/ValueBox/server.rb +15 -15
  146. data/test/Object/client.rb +13 -13
  147. data/test/Object/run_test.rb +10 -10
  148. data/test/Object/server.rb +18 -18
  149. data/test/POA/run_test.rb +10 -10
  150. data/test/POA/test.rb +15 -15
  151. data/test/Param_Test/client.rb +47 -47
  152. data/test/Param_Test/run_test.rb +10 -10
  153. data/test/Param_Test/server.rb +55 -55
  154. data/test/Performance/Simple/client.rb +15 -15
  155. data/test/Performance/Simple/run_test.rb +10 -10
  156. data/test/Performance/Simple/server.rb +15 -15
  157. data/test/Policies/run_test.rb +10 -10
  158. data/test/Policies/test.rb +23 -23
  159. data/test/Timeout/client.rb +17 -17
  160. data/test/Timeout/run_test.rb +10 -10
  161. data/test/Timeout/server.rb +18 -18
  162. data/test/lib/test.rb +13 -7
  163. data/test/test_runner.rb +19 -19
  164. metadata +4 -5
  165. data/ext/extload/extload.c +0 -59
@@ -19,19 +19,19 @@ ARGV.options do |opts|
19
19
  script_name = File.basename($0)
20
20
  opts.banner = "Usage: ruby #{script_name} [options]"
21
21
 
22
- opts.separator ""
22
+ opts.separator ''
23
23
 
24
- opts.on("-d",
25
- "Run with debugging output.",
26
- "Default: false") { OPTIONS[:debug_opt] = '--d 10' }
27
- opts.on("--use-stubs",
28
- "Use stubs generated by RIDL.",
29
- "Default: false (uses embedded IDL)") { OPTIONS[:use_implement] = '' }
24
+ opts.on('-d',
25
+ 'Run with debugging output.',
26
+ 'Default: false') { OPTIONS[:debug_opt] = '--d 10' }
27
+ opts.on('--use-stubs',
28
+ 'Use stubs generated by RIDL.',
29
+ 'Default: false (uses embedded IDL)') { OPTIONS[:use_implement] = '' }
30
30
 
31
- opts.separator ""
31
+ opts.separator ''
32
32
 
33
- opts.on("-h", "--help",
34
- "Show this help message.") { puts opts; exit }
33
+ opts.on('-h', '--help',
34
+ 'Show this help message.') { puts opts; exit }
35
35
 
36
36
  opts.parse!
37
37
  end
@@ -22,25 +22,25 @@ ARGV.options do |opts|
22
22
  script_name = File.basename($0)
23
23
  opts.banner = "Usage: ruby #{script_name} [options]"
24
24
 
25
- opts.separator ""
25
+ opts.separator ''
26
26
 
27
- opts.on("--o IORFILE",
28
- "Set IOR filename.",
27
+ opts.on('--o IORFILE',
28
+ 'Set IOR filename.',
29
29
  "Default: 'server.ior'") { |v| OPTIONS[:iorfile] = v }
30
- opts.on("--d LVL",
31
- "Set ORBDebugLevel value.",
32
- "Default: 0") { |v| OPTIONS[:orb_debuglevel] = v }
33
- opts.on("--use-implement",
34
- "Load IDL through CORBA.implement() instead of precompiled code.",
35
- "Default: off") { |v| OPTIONS[:use_implement] = v }
36
- opts.on("--i ITERATIONS",
37
- "Set number of iterations.",
38
- "Default: 10", Integer) { |v| OPTIONS[:iter_num] = v }
30
+ opts.on('--d LVL',
31
+ 'Set ORBDebugLevel value.',
32
+ 'Default: 0') { |v| OPTIONS[:orb_debuglevel] = v }
33
+ opts.on('--use-implement',
34
+ 'Load IDL through CORBA.implement() instead of precompiled code.',
35
+ 'Default: off') { |v| OPTIONS[:use_implement] = v }
36
+ opts.on('--i ITERATIONS',
37
+ 'Set number of iterations.',
38
+ 'Default: 10', Integer) { |v| OPTIONS[:iter_num] = v }
39
39
 
40
- opts.separator ""
40
+ opts.separator ''
41
41
 
42
- opts.on("-h", "--help",
43
- "Show this help message.") { puts opts; exit }
42
+ opts.on('-h', '--help',
43
+ 'Show this help message.') { puts opts; exit }
44
44
 
45
45
  opts.parse!
46
46
  end
@@ -92,19 +92,19 @@ class Simple_Server_i < POA::Simple_Server
92
92
  return 0
93
93
  end
94
94
 
95
- end #of servant Simple_Server_i
95
+ end # of servant Simple_Server_i
96
96
 
97
97
  if defined?(JRUBY_VERSION)
98
98
  ## JacORB needs explicit activation of this option
99
99
  props = {
100
- "org.omg.PortableInterceptor.ORBInitializerClass.bidir_init" =>
101
- "org.jacorb.orb.giop.BiDirConnectionInitializer"
100
+ 'org.omg.PortableInterceptor.ORBInitializerClass.bidir_init' =>
101
+ 'org.jacorb.orb.giop.BiDirConnectionInitializer'
102
102
  }
103
103
  else
104
104
  props = {}
105
105
  end
106
106
 
107
- orb = CORBA.ORB_init(["-ORBDebugLevel", OPTIONS[:orb_debuglevel]], 'myORB', props)
107
+ orb = CORBA.ORB_init(['-ORBDebugLevel', OPTIONS[:orb_debuglevel]], 'myORB', props)
108
108
 
109
109
  obj = orb.resolve_initial_references('RootPOA')
110
110
 
@@ -143,7 +143,7 @@ open(OPTIONS[:iorfile], 'w') { |io|
143
143
  }
144
144
 
145
145
  Signal.trap('INT') do
146
- puts "SIGINT - shutting down ORB..."
146
+ puts 'SIGINT - shutting down ORB...'
147
147
  orb.shutdown()
148
148
  end
149
149
 
@@ -23,22 +23,22 @@ ARGV.options do |opts|
23
23
  script_name = File.basename($0)
24
24
  opts.banner = "Usage: ruby #{script_name} [options]"
25
25
 
26
- opts.separator ""
26
+ opts.separator ''
27
27
 
28
- opts.on("--k IORFILE",
29
- "Set IOR.",
28
+ opts.on('--k IORFILE',
29
+ 'Set IOR.',
30
30
  "Default: 'file://ins.ior'") { |v| OPTIONS[:iorfile] = v }
31
- opts.on("--d LVL",
32
- "Set ORBDebugLevel value.",
33
- "Default: 0") { |v| OPTIONS[:orb_debuglevel] = v }
34
- opts.on("--use-implement",
35
- "Load IDL through CORBA.implement() instead of precompiled code.",
36
- "Default: off") { |v| OPTIONS[:use_implement] = v }
31
+ opts.on('--d LVL',
32
+ 'Set ORBDebugLevel value.',
33
+ 'Default: 0') { |v| OPTIONS[:orb_debuglevel] = v }
34
+ opts.on('--use-implement',
35
+ 'Load IDL through CORBA.implement() instead of precompiled code.',
36
+ 'Default: off') { |v| OPTIONS[:use_implement] = v }
37
37
 
38
- opts.separator ""
38
+ opts.separator ''
39
39
 
40
- opts.on("-h", "--help",
41
- "Show this help message.") { puts opts; exit }
40
+ opts.on('-h', '--help',
41
+ 'Show this help message.') { puts opts; exit }
42
42
 
43
43
  opts.parse!
44
44
  end
@@ -51,7 +51,7 @@ else
51
51
  end
52
52
  require 'corba/naming'
53
53
 
54
- orb = CORBA.ORB_init(["-ORBDebugLevel", OPTIONS[:orb_debuglevel]], 'myORB')
54
+ orb = CORBA.ORB_init(['-ORBDebugLevel', OPTIONS[:orb_debuglevel]], 'myORB')
55
55
 
56
56
  begin
57
57
 
@@ -60,7 +60,7 @@ begin
60
60
 
61
61
  nc = CosNaming::NamingContextExt._narrow(obj)
62
62
 
63
- assert_not "ERROR: INS IOR resolved to nil object!", CORBA::is_nil(nc)
63
+ assert_not 'ERROR: INS IOR resolved to nil object!', CORBA::is_nil(nc)
64
64
 
65
65
  # list registered items in context
66
66
  binding_list, binding_iterator = nc.list(1)
@@ -20,19 +20,19 @@ ARGV.options do |opts|
20
20
  script_name = File.basename($0)
21
21
  opts.banner = "Usage: ruby #{script_name} [options]"
22
22
 
23
- opts.separator ""
23
+ opts.separator ''
24
24
 
25
- opts.on("-d",
26
- "Run with debugging output.",
27
- "Default: false") { OPTIONS[:debug_opt] = '--d 10' }
28
- opts.on("--use-stubs",
29
- "Use stubs generated by RIDL.",
30
- "Default: false (uses embedded IDL)") { OPTIONS[:use_implement] = '' }
25
+ opts.on('-d',
26
+ 'Run with debugging output.',
27
+ 'Default: false') { OPTIONS[:debug_opt] = '--d 10' }
28
+ opts.on('--use-stubs',
29
+ 'Use stubs generated by RIDL.',
30
+ 'Default: false (uses embedded IDL)') { OPTIONS[:use_implement] = '' }
31
31
 
32
- opts.separator ""
32
+ opts.separator ''
33
33
 
34
- opts.on("-h", "--help",
35
- "Show this help message.") { puts opts; exit }
34
+ opts.on('-h', '--help',
35
+ 'Show this help message.') { puts opts; exit }
36
36
 
37
37
  opts.parse!
38
38
  end
@@ -42,7 +42,7 @@ include TestUtil
42
42
 
43
43
  def do_exit(rc)
44
44
  ins_stop = Test.new
45
- ins_stop.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", "-- stop --no-daemon")
45
+ ins_stop.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", '-- stop --no-daemon')
46
46
  ins_stop.wait(50)
47
47
  exit(rc)
48
48
  end
@@ -53,7 +53,7 @@ TestUtil.remove_file(ior_file)
53
53
 
54
54
  ins = Test.new
55
55
 
56
- exit(255) if !ins.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", "-- start")
56
+ exit(255) if !ins.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", '-- start')
57
57
 
58
58
  do_exit(255) if !TestUtil.wait_for_file(ior_file, 400)
59
59
 
@@ -23,22 +23,22 @@ ARGV.options do |opts|
23
23
  script_name = File.basename($0)
24
24
  opts.banner = "Usage: ruby #{script_name} [options]"
25
25
 
26
- opts.separator ""
26
+ opts.separator ''
27
27
 
28
- opts.on("--k IORFILE",
29
- "Set INS IOR filename.",
28
+ opts.on('--k IORFILE',
29
+ 'Set INS IOR filename.',
30
30
  "Default: 'file://ins.ior'") { |v| OPTIONS[:iorfile] = v }
31
- opts.on("--d LVL",
32
- "Set ORBDebugLevel value.",
33
- "Default: 0") { |v| OPTIONS[:orb_debuglevel] = v }
34
- opts.on("--use-implement",
35
- "Load IDL through CORBA.implement() instead of precompiled code.",
36
- "Default: off") { |v| OPTIONS[:use_implement] = v }
31
+ opts.on('--d LVL',
32
+ 'Set ORBDebugLevel value.',
33
+ 'Default: 0') { |v| OPTIONS[:orb_debuglevel] = v }
34
+ opts.on('--use-implement',
35
+ 'Load IDL through CORBA.implement() instead of precompiled code.',
36
+ 'Default: off') { |v| OPTIONS[:use_implement] = v }
37
37
 
38
- opts.separator ""
38
+ opts.separator ''
39
39
 
40
- opts.on("-h", "--help",
41
- "Show this help message.") { puts opts; exit }
40
+ opts.on('-h', '--help',
41
+ 'Show this help message.') { puts opts; exit }
42
42
 
43
43
  opts.parse!
44
44
  end
@@ -57,23 +57,23 @@ class MyHello < POA::Test::Hello
57
57
  end
58
58
 
59
59
  def get_string()
60
- "Hello there!"
60
+ 'Hello there!'
61
61
  end
62
62
 
63
63
  def shutdown()
64
64
  @orb.shutdown()
65
65
  end
66
- end #of servant MyHello
66
+ end # of servant MyHello
67
67
 
68
68
  # initialize ORB
69
- orb = CORBA.ORB_init(["-ORBDebugLevel", OPTIONS[:orb_debuglevel]], 'myORB')
69
+ orb = CORBA.ORB_init(['-ORBDebugLevel', OPTIONS[:orb_debuglevel]], 'myORB')
70
70
 
71
71
  # resolve NamingContext
72
72
  obj = orb.string_to_object(OPTIONS[:iorfile])
73
73
 
74
74
  nc = CosNaming::NamingContextExt._narrow(obj)
75
75
 
76
- assert_not "ERROR: INS IOR resolved to nil object!", CORBA::is_nil(nc)
76
+ assert_not 'ERROR: INS IOR resolved to nil object!', CORBA::is_nil(nc)
77
77
 
78
78
  # initialize POA
79
79
  obj = orb.resolve_initial_references('RootPOA')
@@ -96,7 +96,7 @@ end
96
96
 
97
97
  # initialize signal handling
98
98
  Signal.trap('INT') do
99
- puts "SIGINT - shutting down ORB..."
99
+ puts 'SIGINT - shutting down ORB...'
100
100
  orb.shutdown()
101
101
  end
102
102
 
@@ -23,22 +23,22 @@ ARGV.options do |opts|
23
23
  script_name = File.basename($0)
24
24
  opts.banner = "Usage: ruby #{script_name} [options]"
25
25
 
26
- opts.separator ""
26
+ opts.separator ''
27
27
 
28
- opts.on("--k IORFILE",
29
- "Set IOR file.",
28
+ opts.on('--k IORFILE',
29
+ 'Set IOR file.',
30
30
  "Default: 'corbaname.ior'") { |v| OPTIONS[:iorfile] = v }
31
- opts.on("--d LVL",
32
- "Set ORBDebugLevel value.",
33
- "Default: 0") { |v| OPTIONS[:orb_debuglevel] = v }
34
- opts.on("--use-implement",
35
- "Load IDL through CORBA.implement() instead of precompiled code.",
36
- "Default: off") { |v| OPTIONS[:use_implement] = v }
31
+ opts.on('--d LVL',
32
+ 'Set ORBDebugLevel value.',
33
+ 'Default: 0') { |v| OPTIONS[:orb_debuglevel] = v }
34
+ opts.on('--use-implement',
35
+ 'Load IDL through CORBA.implement() instead of precompiled code.',
36
+ 'Default: off') { |v| OPTIONS[:use_implement] = v }
37
37
 
38
- opts.separator ""
38
+ opts.separator ''
39
39
 
40
- opts.on("-h", "--help",
41
- "Show this help message.") { puts opts; exit }
40
+ opts.on('-h', '--help',
41
+ 'Show this help message.') { puts opts; exit }
42
42
 
43
43
  opts.parse!
44
44
  end
@@ -51,7 +51,7 @@ else
51
51
  end
52
52
  require 'corba/naming'
53
53
 
54
- orb = CORBA.ORB_init(["-ORBDebugLevel", OPTIONS[:orb_debuglevel]], 'myORB')
54
+ orb = CORBA.ORB_init(['-ORBDebugLevel', OPTIONS[:orb_debuglevel]], 'myORB')
55
55
 
56
56
  begin
57
57
 
@@ -69,7 +69,7 @@ begin
69
69
  # narrow object ref and call
70
70
  hello_obj = Test::Hello._narrow(obj)
71
71
 
72
- assert_not "ERROR: corbaname resolved to nil object!", CORBA::is_nil(hello_obj)
72
+ assert_not 'ERROR: corbaname resolved to nil object!', CORBA::is_nil(hello_obj)
73
73
 
74
74
  the_string = hello_obj.get_string()
75
75
 
@@ -20,19 +20,19 @@ ARGV.options do |opts|
20
20
  script_name = File.basename($0)
21
21
  opts.banner = "Usage: ruby #{script_name} [options]"
22
22
 
23
- opts.separator ""
23
+ opts.separator ''
24
24
 
25
- opts.on("-d",
26
- "Run with debugging output.",
27
- "Default: false") { OPTIONS[:debug_opt] = '--d 10' }
28
- opts.on("--use-stubs",
29
- "Use stubs generated by RIDL.",
30
- "Default: false (uses embedded IDL)") { OPTIONS[:use_implement] = '' }
25
+ opts.on('-d',
26
+ 'Run with debugging output.',
27
+ 'Default: false') { OPTIONS[:debug_opt] = '--d 10' }
28
+ opts.on('--use-stubs',
29
+ 'Use stubs generated by RIDL.',
30
+ 'Default: false (uses embedded IDL)') { OPTIONS[:use_implement] = '' }
31
31
 
32
- opts.separator ""
32
+ opts.separator ''
33
33
 
34
- opts.on("-h", "--help",
35
- "Show this help message.") { puts opts; exit }
34
+ opts.on('-h', '--help',
35
+ 'Show this help message.') { puts opts; exit }
36
36
 
37
37
  opts.parse!
38
38
  end
@@ -42,7 +42,7 @@ include TestUtil
42
42
 
43
43
  def do_exit(rc)
44
44
  ins_stop = Test.new
45
- ins_stop.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", "-- stop --no-daemon")
45
+ ins_stop.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", '-- stop --no-daemon')
46
46
  ins_stop.wait(50)
47
47
  exit(rc)
48
48
  end
@@ -56,7 +56,7 @@ TestUtil.remove_file(corbaname_file)
56
56
 
57
57
  ins = Test.new
58
58
 
59
- exit(255) if !ins.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", "-- start -l 2345")
59
+ exit(255) if !ins.run("-e \'require \"corba/svcs/ins/ins.rb\"\' -e \'R2CORBA::INS.run\'", '-- start -l 2345')
60
60
 
61
61
  do_exit(255) if !TestUtil.wait_for_file(ior_file, 400)
62
62
 
@@ -24,25 +24,25 @@ ARGV.options do |opts|
24
24
  script_name = File.basename($0)
25
25
  opts.banner = "Usage: ruby #{script_name} [options]"
26
26
 
27
- opts.separator ""
27
+ opts.separator ''
28
28
 
29
- opts.on("--o FILENAME",
30
- "Set corbaname IOR filename.",
29
+ opts.on('--o FILENAME',
30
+ 'Set corbaname IOR filename.',
31
31
  "Default: 'corbaname.ior'") { |v| OPTIONS[:iorfile] = v }
32
- opts.on("--d LVL",
33
- "Set ORBDebugLevel value.",
34
- "Default: 0") { |v| OPTIONS[:orb_debuglevel] = v }
35
- opts.on("--p PORT", Integer,
36
- "INS port number.",
37
- "Default: 2345") { |v| OPTIONS[:ins_port] = v }
38
- opts.on("--use-implement",
39
- "Load IDL through CORBA.implement() instead of precompiled code.",
40
- "Default: off") { |v| OPTIONS[:use_implement] = v }
32
+ opts.on('--d LVL',
33
+ 'Set ORBDebugLevel value.',
34
+ 'Default: 0') { |v| OPTIONS[:orb_debuglevel] = v }
35
+ opts.on('--p PORT', Integer,
36
+ 'INS port number.',
37
+ 'Default: 2345') { |v| OPTIONS[:ins_port] = v }
38
+ opts.on('--use-implement',
39
+ 'Load IDL through CORBA.implement() instead of precompiled code.',
40
+ 'Default: off') { |v| OPTIONS[:use_implement] = v }
41
41
 
42
- opts.separator ""
42
+ opts.separator ''
43
43
 
44
- opts.on("-h", "--help",
45
- "Show this help message.") { puts opts; exit }
44
+ opts.on('-h', '--help',
45
+ 'Show this help message.') { puts opts; exit }
46
46
 
47
47
  opts.parse!
48
48
  end
@@ -61,16 +61,16 @@ class MyHello < POA::Test::Hello
61
61
  end
62
62
 
63
63
  def get_string()
64
- "Hello there!"
64
+ 'Hello there!'
65
65
  end
66
66
 
67
67
  def shutdown()
68
68
  @orb.shutdown()
69
69
  end
70
- end #of servant MyHello
70
+ end # of servant MyHello
71
71
 
72
72
  # initialize ORB
73
- orb = CORBA.ORB_init(["-ORBDebugLevel", OPTIONS[:orb_debuglevel]], 'myORB')
73
+ orb = CORBA.ORB_init(['-ORBDebugLevel', OPTIONS[:orb_debuglevel]], 'myORB')
74
74
 
75
75
  # create NameService corbaloc
76
76
  ins_url = "iiop:localhost:#{OPTIONS[:ins_port]}/NamingService"
@@ -90,7 +90,7 @@ full_name = [CosNaming::NameComponent.new('', 'root'),
90
90
  nc_new = nc.bind_new_context(full_name[0, 1])
91
91
  nc_new = nc_new.bind_new_context(full_name[1, 1])
92
92
 
93
- assert_not "ERROR: INS IOR resolved to nil object!", CORBA::is_nil(nc)
93
+ assert_not 'ERROR: INS IOR resolved to nil object!', CORBA::is_nil(nc)
94
94
 
95
95
  # initialize POA
96
96
  obj = orb.resolve_initial_references('RootPOA')
@@ -122,7 +122,7 @@ open(OPTIONS[:iorfile], 'w') { |io|
122
122
 
123
123
  # initialize signal handling
124
124
  Signal.trap('INT') do
125
- puts "SIGINT - shutting down ORB..."
125
+ puts 'SIGINT - shutting down ORB...'
126
126
  orb.shutdown()
127
127
  end
128
128