Class: Async::IO::SSLEndpoint

Inherits:
Endpoint
  • Object
show all
Defined in:
lib/async/io/ssl_endpoint.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Endpoint

#accept, #bound, each, #linger, #local_address, parse, #reuse_address, #reuse_port, socket, ssl, tcp, #timeout, try_convert, udp, unix, #with

Constructor Details

#initialize(endpoint, **options) ⇒ SSLEndpoint

Returns a new instance of SSLEndpoint.



27
28
29
30
31
32
33
34
35
36
37
# File 'lib/async/io/ssl_endpoint.rb', line 27

def initialize(endpoint, **options)
	super(**options)
	
	@endpoint = endpoint
	
	if ssl_context = options[:ssl_context]
		@context = build_context(ssl_context)
	else
		@context = nil
	end
end

Instance Attribute Details

#endpointObject (readonly)

Returns the value of attribute endpoint.



51
52
53
# File 'lib/async/io/ssl_endpoint.rb', line 51

def endpoint
  @endpoint
end

#optionsObject (readonly)

Returns the value of attribute options.



52
53
54
# File 'lib/async/io/ssl_endpoint.rb', line 52

def options
  @options
end

Instance Method Details

#addressObject



43
44
45
# File 'lib/async/io/ssl_endpoint.rb', line 43

def address
	@endpoint.address
end

#bind {|Socket| ... } ⇒ Socket

Connect to the underlying endpoint and establish a SSL connection.

Yields:

  • (Socket)

    the socket which is being connected

Returns:

  • (Socket)

    the connected socket



76
77
78
79
80
81
82
83
84
# File 'lib/async/io/ssl_endpoint.rb', line 76

def bind
	if block_given?
		@endpoint.bind do |server|
			yield SSLServer.new(server, context)
		end
	else
		return SSLServer.new(@endpoint.bind, context)
	end
end

#build_context(context = ::OpenSSL::SSL::SSLContext.new) ⇒ Object



58
59
60
61
62
63
64
65
66
67
# File 'lib/async/io/ssl_endpoint.rb', line 58

def build_context(context = ::OpenSSL::SSL::SSLContext.new)
	if params = self.params
		context.set_params(params)
	end
	
	context.setup
	context.freeze
	
	return context
end

#connect {|Socket| ... } ⇒ Socket

Connect to the underlying endpoint and establish a SSL connection.

Yields:

  • (Socket)

    the socket which is being connected

Returns:

  • (Socket)

    the connected socket



89
90
91
# File 'lib/async/io/ssl_endpoint.rb', line 89

def connect(&block)
	SSLSocket.connect(@endpoint.connect, context, hostname, &block)
end

#contextObject



69
70
71
# File 'lib/async/io/ssl_endpoint.rb', line 69

def context
	@context ||= build_context
end

#eachObject



93
94
95
96
97
98
99
# File 'lib/async/io/ssl_endpoint.rb', line 93

def each
	return to_enum unless block_given?
	
	@endpoint.each do |endpoint|
		yield self.class.new(endpoint, **@options)
	end
end

#hostnameObject



47
48
49
# File 'lib/async/io/ssl_endpoint.rb', line 47

def hostname
	@options[:hostname] || @endpoint.hostname
end

#paramsObject



54
55
56
# File 'lib/async/io/ssl_endpoint.rb', line 54

def params
	@options[:ssl_params]
end

#to_sObject



39
40
41
# File 'lib/async/io/ssl_endpoint.rb', line 39

def to_s
	"\#<#{self.class} #{@endpoint}>"
end