sessionm-thrift 0.8.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +1 -0
- data/README +43 -0
- data/benchmark/Benchmark.thrift +24 -0
- data/benchmark/benchmark.rb +271 -0
- data/benchmark/client.rb +74 -0
- data/benchmark/server.rb +82 -0
- data/benchmark/thin_server.rb +44 -0
- data/ext/binary_protocol_accelerated.c +441 -0
- data/ext/binary_protocol_accelerated.h +20 -0
- data/ext/compact_protocol.c +618 -0
- data/ext/compact_protocol.h +20 -0
- data/ext/constants.h +96 -0
- data/ext/extconf.rb +30 -0
- data/ext/macros.h +41 -0
- data/ext/memory_buffer.c +131 -0
- data/ext/memory_buffer.h +20 -0
- data/ext/protocol.c +185 -0
- data/ext/protocol.h +20 -0
- data/ext/strlcpy.c +41 -0
- data/ext/strlcpy.h +30 -0
- data/ext/struct.c +691 -0
- data/ext/struct.h +25 -0
- data/ext/thrift_native.c +196 -0
- data/lib/thrift.rb +64 -0
- data/lib/thrift/client.rb +62 -0
- data/lib/thrift/core_ext.rb +23 -0
- data/lib/thrift/core_ext/fixnum.rb +29 -0
- data/lib/thrift/exceptions.rb +84 -0
- data/lib/thrift/processor.rb +57 -0
- data/lib/thrift/protocol/base_protocol.rb +290 -0
- data/lib/thrift/protocol/binary_protocol.rb +229 -0
- data/lib/thrift/protocol/binary_protocol_accelerated.rb +39 -0
- data/lib/thrift/protocol/compact_protocol.rb +426 -0
- data/lib/thrift/serializer/deserializer.rb +33 -0
- data/lib/thrift/serializer/serializer.rb +34 -0
- data/lib/thrift/server/base_server.rb +31 -0
- data/lib/thrift/server/mongrel_http_server.rb +58 -0
- data/lib/thrift/server/nonblocking_server.rb +305 -0
- data/lib/thrift/server/simple_server.rb +43 -0
- data/lib/thrift/server/thread_pool_server.rb +75 -0
- data/lib/thrift/server/threaded_server.rb +47 -0
- data/lib/thrift/struct.rb +237 -0
- data/lib/thrift/struct_union.rb +192 -0
- data/lib/thrift/thrift_native.rb +24 -0
- data/lib/thrift/transport/base_server_transport.rb +37 -0
- data/lib/thrift/transport/base_transport.rb +107 -0
- data/lib/thrift/transport/buffered_transport.rb +108 -0
- data/lib/thrift/transport/framed_transport.rb +116 -0
- data/lib/thrift/transport/http_client_transport.rb +51 -0
- data/lib/thrift/transport/io_stream_transport.rb +39 -0
- data/lib/thrift/transport/memory_buffer_transport.rb +125 -0
- data/lib/thrift/transport/server_socket.rb +63 -0
- data/lib/thrift/transport/socket.rb +137 -0
- data/lib/thrift/transport/unix_server_socket.rb +60 -0
- data/lib/thrift/transport/unix_socket.rb +40 -0
- data/lib/thrift/types.rb +101 -0
- data/lib/thrift/union.rb +179 -0
- data/spec/ThriftSpec.thrift +132 -0
- data/spec/base_protocol_spec.rb +160 -0
- data/spec/base_transport_spec.rb +351 -0
- data/spec/binary_protocol_accelerated_spec.rb +46 -0
- data/spec/binary_protocol_spec.rb +61 -0
- data/spec/binary_protocol_spec_shared.rb +375 -0
- data/spec/client_spec.rb +100 -0
- data/spec/compact_protocol_spec.rb +144 -0
- data/spec/exception_spec.rb +142 -0
- data/spec/http_client_spec.rb +64 -0
- data/spec/mongrel_http_server_spec.rb +117 -0
- data/spec/nonblocking_server_spec.rb +265 -0
- data/spec/processor_spec.rb +83 -0
- data/spec/serializer_spec.rb +69 -0
- data/spec/server_socket_spec.rb +80 -0
- data/spec/server_spec.rb +159 -0
- data/spec/socket_spec.rb +61 -0
- data/spec/socket_spec_shared.rb +104 -0
- data/spec/spec_helper.rb +58 -0
- data/spec/struct_spec.rb +295 -0
- data/spec/types_spec.rb +116 -0
- data/spec/union_spec.rb +193 -0
- data/spec/unix_socket_spec.rb +108 -0
- metadata +247 -0
@@ -0,0 +1,39 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
# Very very simple implementation of wrapping two objects, one with a #read
|
22
|
+
# method and one with a #write method, into a transport for thrift.
|
23
|
+
#
|
24
|
+
# Assumes both objects are open, remain open, don't require flushing, etc.
|
25
|
+
#
|
26
|
+
module Thrift
|
27
|
+
class IOStreamTransport < BaseTransport
|
28
|
+
def initialize(input, output)
|
29
|
+
@input = input
|
30
|
+
@output = output
|
31
|
+
end
|
32
|
+
|
33
|
+
def open?; not @input.closed? or not @output.closed? end
|
34
|
+
def read(sz); @input.read(sz) end
|
35
|
+
def write(buf); @output.write(buf) end
|
36
|
+
def close; @input.close; @output.close end
|
37
|
+
def to_io; @input end # we're assuming this is used in a IO.select for reading
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
module Thrift
|
22
|
+
class MemoryBufferTransport < BaseTransport
|
23
|
+
GARBAGE_BUFFER_SIZE = 4*(2**10) # 4kB
|
24
|
+
|
25
|
+
# If you pass a string to this, you should #dup that string
|
26
|
+
# unless you want it to be modified by #read and #write
|
27
|
+
#--
|
28
|
+
# this behavior is no longer required. If you wish to change it
|
29
|
+
# go ahead, just make sure the specs pass
|
30
|
+
def initialize(buffer = nil)
|
31
|
+
@buf = buffer || ''
|
32
|
+
@index = 0
|
33
|
+
end
|
34
|
+
|
35
|
+
def open?
|
36
|
+
return true
|
37
|
+
end
|
38
|
+
|
39
|
+
def open
|
40
|
+
end
|
41
|
+
|
42
|
+
def close
|
43
|
+
end
|
44
|
+
|
45
|
+
def peek
|
46
|
+
@index < @buf.size
|
47
|
+
end
|
48
|
+
|
49
|
+
# this method does not use the passed object directly but copies it
|
50
|
+
def reset_buffer(new_buf = '')
|
51
|
+
@buf.replace new_buf
|
52
|
+
@index = 0
|
53
|
+
end
|
54
|
+
|
55
|
+
def available
|
56
|
+
@buf.length - @index
|
57
|
+
end
|
58
|
+
|
59
|
+
def read(len)
|
60
|
+
data = @buf.slice(@index, len)
|
61
|
+
@index += len
|
62
|
+
@index = @buf.size if @index > @buf.size
|
63
|
+
if @index >= GARBAGE_BUFFER_SIZE
|
64
|
+
@buf = @buf.slice(@index..-1)
|
65
|
+
@index = 0
|
66
|
+
end
|
67
|
+
if data.size < len
|
68
|
+
raise EOFError, "Not enough bytes remain in buffer"
|
69
|
+
end
|
70
|
+
data
|
71
|
+
end
|
72
|
+
|
73
|
+
def read_byte
|
74
|
+
raise EOFError.new("Not enough bytes remain in buffer") if @index >= @buf.size
|
75
|
+
val = ::Thrift::TransportUtils.get_string_byte(@buf, @index)
|
76
|
+
@index += 1
|
77
|
+
if @index >= GARBAGE_BUFFER_SIZE
|
78
|
+
@buf = @buf.slice(@index..-1)
|
79
|
+
@index = 0
|
80
|
+
end
|
81
|
+
val
|
82
|
+
end
|
83
|
+
|
84
|
+
def read_into_buffer(buffer, size)
|
85
|
+
i = 0
|
86
|
+
while i < size
|
87
|
+
raise EOFError.new("Not enough bytes remain in buffer") if @index >= @buf.size
|
88
|
+
|
89
|
+
# The read buffer has some data now, so copy bytes over to the output buffer.
|
90
|
+
byte = ::Thrift::TransportUtils.get_string_byte(@buf, @index)
|
91
|
+
::Thrift::TransportUtils.set_string_byte(buffer, i, byte)
|
92
|
+
@index += 1
|
93
|
+
i += 1
|
94
|
+
end
|
95
|
+
if @index >= GARBAGE_BUFFER_SIZE
|
96
|
+
@buf = @buf.slice(@index..-1)
|
97
|
+
@index = 0
|
98
|
+
end
|
99
|
+
i
|
100
|
+
end
|
101
|
+
|
102
|
+
def write(wbuf)
|
103
|
+
@buf << wbuf
|
104
|
+
end
|
105
|
+
|
106
|
+
def flush
|
107
|
+
end
|
108
|
+
|
109
|
+
def inspect_buffer
|
110
|
+
out = []
|
111
|
+
for idx in 0...(@buf.size)
|
112
|
+
# if idx != 0
|
113
|
+
# out << " "
|
114
|
+
# end
|
115
|
+
|
116
|
+
if idx == @index
|
117
|
+
out << ">"
|
118
|
+
end
|
119
|
+
|
120
|
+
out << @buf[idx].ord.to_s(16)
|
121
|
+
end
|
122
|
+
out.join(" ")
|
123
|
+
end
|
124
|
+
end
|
125
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'socket'
|
22
|
+
|
23
|
+
module Thrift
|
24
|
+
class ServerSocket < BaseServerTransport
|
25
|
+
# call-seq: initialize(host = nil, port)
|
26
|
+
def initialize(host_or_port, port = nil)
|
27
|
+
if port
|
28
|
+
@host = host_or_port
|
29
|
+
@port = port
|
30
|
+
else
|
31
|
+
@host = nil
|
32
|
+
@port = host_or_port
|
33
|
+
end
|
34
|
+
@handle = nil
|
35
|
+
end
|
36
|
+
|
37
|
+
attr_reader :handle
|
38
|
+
|
39
|
+
def listen
|
40
|
+
@handle = TCPServer.new(@host, @port)
|
41
|
+
end
|
42
|
+
|
43
|
+
def accept
|
44
|
+
unless @handle.nil?
|
45
|
+
sock = @handle.accept
|
46
|
+
trans = Socket.new
|
47
|
+
trans.handle = sock
|
48
|
+
trans
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def close
|
53
|
+
@handle.close unless @handle.nil? or @handle.closed?
|
54
|
+
@handle = nil
|
55
|
+
end
|
56
|
+
|
57
|
+
def closed?
|
58
|
+
@handle.nil? or @handle.closed?
|
59
|
+
end
|
60
|
+
|
61
|
+
alias to_io handle
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,137 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'socket'
|
22
|
+
|
23
|
+
module Thrift
|
24
|
+
class Socket < BaseTransport
|
25
|
+
def initialize(host='localhost', port=9090, timeout=nil)
|
26
|
+
@host = host
|
27
|
+
@port = port
|
28
|
+
@timeout = timeout
|
29
|
+
@desc = "#{host}:#{port}"
|
30
|
+
@handle = nil
|
31
|
+
end
|
32
|
+
|
33
|
+
attr_accessor :handle, :timeout
|
34
|
+
|
35
|
+
def open
|
36
|
+
begin
|
37
|
+
addrinfo = ::Socket::getaddrinfo(@host, @port).first
|
38
|
+
@handle = ::Socket.new(addrinfo[4], ::Socket::SOCK_STREAM, 0)
|
39
|
+
sockaddr = ::Socket.sockaddr_in(addrinfo[1], addrinfo[3])
|
40
|
+
begin
|
41
|
+
@handle.connect_nonblock(sockaddr)
|
42
|
+
rescue Errno::EINPROGRESS
|
43
|
+
unless IO.select(nil, [ @handle ], nil, @timeout)
|
44
|
+
raise TransportException.new(TransportException::NOT_OPEN, "Connection timeout to #{@desc}")
|
45
|
+
end
|
46
|
+
begin
|
47
|
+
@handle.connect_nonblock(sockaddr)
|
48
|
+
rescue Errno::EISCONN
|
49
|
+
end
|
50
|
+
end
|
51
|
+
@handle
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TransportException.new(TransportException::NOT_OPEN, "Could not connect to #{@desc}: #{e}")
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def open?
|
58
|
+
!@handle.nil? and !@handle.closed?
|
59
|
+
end
|
60
|
+
|
61
|
+
def write(str)
|
62
|
+
raise IOError, "closed stream" unless open?
|
63
|
+
begin
|
64
|
+
if @timeout.nil? or @timeout == 0
|
65
|
+
@handle.write(str)
|
66
|
+
else
|
67
|
+
len = 0
|
68
|
+
start = Time.now
|
69
|
+
while Time.now - start < @timeout
|
70
|
+
rd, wr, = IO.select(nil, [@handle], nil, @timeout)
|
71
|
+
if wr and not wr.empty?
|
72
|
+
len += @handle.write_nonblock(str[len..-1])
|
73
|
+
break if len >= str.length
|
74
|
+
end
|
75
|
+
end
|
76
|
+
if len < str.length
|
77
|
+
raise TransportException.new(TransportException::TIMED_OUT, "Socket: Timed out writing #{str.length} bytes to #{@desc}")
|
78
|
+
else
|
79
|
+
len
|
80
|
+
end
|
81
|
+
end
|
82
|
+
rescue TransportException => e
|
83
|
+
# pass this on
|
84
|
+
raise e
|
85
|
+
rescue StandardError => e
|
86
|
+
@handle.close
|
87
|
+
@handle = nil
|
88
|
+
raise TransportException.new(TransportException::NOT_OPEN, e.message)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
def read(sz)
|
93
|
+
raise IOError, "closed stream" unless open?
|
94
|
+
|
95
|
+
begin
|
96
|
+
if @timeout.nil? or @timeout == 0
|
97
|
+
data = @handle.readpartial(sz)
|
98
|
+
else
|
99
|
+
# it's possible to interrupt select for something other than the timeout
|
100
|
+
# so we need to ensure we've waited long enough, but not too long
|
101
|
+
start = Time.now
|
102
|
+
timespent = 0
|
103
|
+
rd = loop do
|
104
|
+
rd, = IO.select([@handle], nil, nil, @timeout - timespent)
|
105
|
+
timespent = Time.now - start
|
106
|
+
break rd if (rd and not rd.empty?) or timespent >= @timeout
|
107
|
+
end
|
108
|
+
if rd.nil? or rd.empty?
|
109
|
+
raise TransportException.new(TransportException::TIMED_OUT, "Socket: Timed out reading #{sz} bytes from #{@desc}")
|
110
|
+
else
|
111
|
+
data = @handle.readpartial(sz)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
rescue TransportException => e
|
115
|
+
# don't let this get caught by the StandardError handler
|
116
|
+
raise e
|
117
|
+
rescue StandardError => e
|
118
|
+
@handle.close unless @handle.closed?
|
119
|
+
@handle = nil
|
120
|
+
raise TransportException.new(TransportException::NOT_OPEN, e.message)
|
121
|
+
end
|
122
|
+
if (data.nil? or data.length == 0)
|
123
|
+
raise TransportException.new(TransportException::UNKNOWN, "Socket: Could not read #{sz} bytes from #{@desc}")
|
124
|
+
end
|
125
|
+
data
|
126
|
+
end
|
127
|
+
|
128
|
+
def close
|
129
|
+
@handle.close unless @handle.nil? or @handle.closed?
|
130
|
+
@handle = nil
|
131
|
+
end
|
132
|
+
|
133
|
+
def to_io
|
134
|
+
@handle
|
135
|
+
end
|
136
|
+
end
|
137
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'socket'
|
22
|
+
|
23
|
+
module Thrift
|
24
|
+
class UNIXServerSocket < BaseServerTransport
|
25
|
+
def initialize(path)
|
26
|
+
@path = path
|
27
|
+
@handle = nil
|
28
|
+
end
|
29
|
+
|
30
|
+
attr_accessor :handle
|
31
|
+
|
32
|
+
def listen
|
33
|
+
@handle = ::UNIXServer.new(@path)
|
34
|
+
end
|
35
|
+
|
36
|
+
def accept
|
37
|
+
unless @handle.nil?
|
38
|
+
sock = @handle.accept
|
39
|
+
trans = UNIXSocket.new(nil)
|
40
|
+
trans.handle = sock
|
41
|
+
trans
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
def close
|
46
|
+
if @handle
|
47
|
+
@handle.close unless @handle.closed?
|
48
|
+
@handle = nil
|
49
|
+
# UNIXServer doesn't delete the socket file, so we have to do it ourselves
|
50
|
+
File.delete(@path)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def closed?
|
55
|
+
@handle.nil? or @handle.closed?
|
56
|
+
end
|
57
|
+
|
58
|
+
alias to_io handle
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# encoding: ascii-8bit
|
2
|
+
#
|
3
|
+
# Licensed to the Apache Software Foundation (ASF) under one
|
4
|
+
# or more contributor license agreements. See the NOTICE file
|
5
|
+
# distributed with this work for additional information
|
6
|
+
# regarding copyright ownership. The ASF licenses this file
|
7
|
+
# to you under the Apache License, Version 2.0 (the
|
8
|
+
# "License"); you may not use this file except in compliance
|
9
|
+
# with the License. You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing,
|
14
|
+
# software distributed under the License is distributed on an
|
15
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
16
|
+
# KIND, either express or implied. See the License for the
|
17
|
+
# specific language governing permissions and limitations
|
18
|
+
# under the License.
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'socket'
|
22
|
+
|
23
|
+
module Thrift
|
24
|
+
class UNIXSocket < Socket
|
25
|
+
def initialize(path, timeout=nil)
|
26
|
+
@path = path
|
27
|
+
@timeout = timeout
|
28
|
+
@desc = @path # for read()'s error
|
29
|
+
@handle = nil
|
30
|
+
end
|
31
|
+
|
32
|
+
def open
|
33
|
+
begin
|
34
|
+
@handle = ::UNIXSocket.new(@path)
|
35
|
+
rescue StandardError
|
36
|
+
raise TransportException.new(TransportException::NOT_OPEN, "Could not open UNIX socket at #{@path}")
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|