Class: Async::IO::Generic

Inherits:
Wrapper
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/async/io/generic.rb

Overview

Represents an asynchronous IO within a reactor.

Constant Summary collapse

WRAPPERS =
{}

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Class Attribute Details

.wrapped_klassObject (readonly)

Returns the value of attribute wrapped_klass.



58
59
60
# File 'lib/async/io/generic.rb', line 58

def wrapped_klass
  @wrapped_klass
end

Instance Attribute Details

#timeoutObject

Returns the value of attribute timeout.



194
195
196
# File 'lib/async/io/generic.rb', line 194

def timeout
  @timeout
end

Class Method Details

.wrap(*args) ⇒ Object

Instantiate a wrapped instance of the class, and optionally yield it to a given block, closing it afterwards.



72
73
74
75
76
77
78
79
80
81
82
# File 'lib/async/io/generic.rb', line 72

def wrap(*args)
	wrapper = self.new(@wrapped_klass.new(*args))
	
	return wrapper unless block_given?
	
	begin
		yield wrapper
	ensure
		wrapper.close
	end
end

.wrap_blocking_method(new_name, method_name, invert: true, &block) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/async/io/generic.rb', line 41

def wrap_blocking_method(new_name, method_name, invert: true, &block)
	if block_given?
		define_method(new_name, &block)
	else
		define_method(new_name) do |*args|
			async_send(method_name, *args)
		end
	end
	
	if invert
		# We wrap the original _nonblock method, ignoring options.
		define_method(method_name) do |*args, exception: false|
			async_send(method_name, *args)
		end
	end
end

.wraps(klass, *additional_methods) ⇒ Object



60
61
62
63
64
65
66
67
68
69
# File 'lib/async/io/generic.rb', line 60

def wraps(klass, *additional_methods)
	@wrapped_klass = klass
	WRAPPERS[klass] = self
	
	# These are methods implemented by the wrapped class, that we aren't overriding, that may be of interest:
	# fallback_methods = klass.instance_methods(false) - instance_methods
	# puts "Forwarding #{klass} methods #{fallback_methods} to @io"
	
	def_delegators :@io, *additional_methods
end

Instance Method Details

#<<(buffer) ⇒ Object



154
155
156
157
# File 'lib/async/io/generic.rb', line 154

def << buffer
	write(buffer)
	return self
end

#connected?Boolean

Returns:

  • (Boolean)


190
191
192
# File 'lib/async/io/generic.rb', line 190

def connected?
	!@io.closed?
end

#dupObject



159
160
161
162
163
# File 'lib/async/io/generic.rb', line 159

def dup
	super.tap do |copy|
		copy.timeout = self.timeout
	end
end

#nonblockObject



178
179
180
# File 'lib/async/io/generic.rb', line 178

def nonblock
	true
end

#nonblock=(value) ⇒ Object



182
183
184
# File 'lib/async/io/generic.rb', line 182

def nonblock= value
	true
end

#nonblock?Boolean

Returns:

  • (Boolean)


186
187
188
# File 'lib/async/io/generic.rb', line 186

def nonblock?
	true
end

#read(length = nil, buffer = nil) ⇒ Object

Read ‘length` bytes of data from the underlying I/O. If length is unspecified, read everything.



95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# File 'lib/async/io/generic.rb', line 95

def read(length = nil, buffer = nil)
	if buffer
		buffer.clear
	else
		buffer = String.new
	end
	
	if length
		return String.new(encoding: Encoding::BINARY) if length <= 0
		
		# Fast path:
		if buffer = self.sysread(length, buffer)
			
			# Slow path:
			while buffer.bytesize < length
				# Slow path:
				if chunk = self.sysread(length - buffer.bytesize)
					buffer << chunk
				else
					break
				end
			end
			
			return buffer
		else
			return nil
		end
	else
		buffer = self.sysread(BLOCK_SIZE, buffer)
		
		while chunk = self.sysread(BLOCK_SIZE)
			buffer << chunk
		end
		
		return buffer
	end
end

#sysreadObject

Read the specified number of bytes from the input stream. This is fast path. Invokes ‘read_nonblock` on the underlying io. If the operation would block, the current task is paused until the operation can succeed, at which point it’s resumed and the operation is completed.

Examples:

data = io.sysread(512)


90
# File 'lib/async/io/generic.rb', line 90

wrap_blocking_method :sysread, :read_nonblock

#syswriteObject

Write entire buffer to output stream. This is fast path. Invokes ‘write_nonblock` on the underlying io. If the operation would block, the current task is paused until the operation can succeed, at which point it’s resumed and the operation is completed.

Examples:

io.syswrite("Hello World")


136
# File 'lib/async/io/generic.rb', line 136

wrap_blocking_method :syswrite, :write_nonblock

#wait(timeout = self.timeout, mode = :read) ⇒ Object



165
166
167
168
169
170
171
172
173
174
175
176
# File 'lib/async/io/generic.rb', line 165

def wait(timeout = self.timeout, mode = :read)
	case mode
	when :read
		wait_readable(timeout)
	when :write
		wait_writable(timeout)
	else
		wait_any(timeout)
	end
rescue TimeoutError
	return nil
end

#write(buffer) ⇒ Object



138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/async/io/generic.rb', line 138

def write(buffer)
	# Fast path:
	written = self.syswrite(buffer)
	remaining = buffer.bytesize - written
	
	while remaining > 0
		# Slow path:
		length = self.syswrite(buffer.byteslice(written, remaining))
		
		remaining -= length
		written += length
	end
	
	return written
end