Class: DB::Postgres::Native::Connection

Inherits:
FFI::Pointer
  • Object
show all
Defined in:
lib/db/postgres/native/connection.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address, io, types) ⇒ Connection

Returns a new instance of Connection.



145
146
147
148
149
150
# File 'lib/db/postgres/native/connection.rb', line 145

def initialize(address, io, types)
	super(address)
	
	@io = io
	@types = types
end

Instance Attribute Details

#typesObject (readonly)

Returns the value of attribute types.



152
153
154
# File 'lib/db/postgres/native/connection.rb', line 152

def types
  @types
end

Class Method Details

.connect(wrapper: IO, types: DEFAULT_TYPES, **options) ⇒ Object



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
132
133
134
135
136
137
138
139
140
141
142
143
# File 'lib/db/postgres/native/connection.rb', line 106

def self.connect(wrapper: IO, types: DEFAULT_TYPES, **options)
	# Postgres expects "dbname" as the key name:
	if database = options.delete(:database)
		options[:dbname] = database
	end
	
	# Postgres expects "user" as the key name:
	if username = options.delete(:username)
		options[:user] = username
	end
	
	keys = Strings.new(options.keys)
	values = Strings.new(options.values)
	
	pointer = Native.connect_start_params(keys.array, values.array, 0)
	Native.set_nonblocking(pointer, 1)
	
	io = wrapper.new(Native.socket(pointer), "r+")
	
	while status = Native.connect_poll(pointer)
		break if status == :ok || status == :failed
		
		# one of :wait_readable or :wait_writable
		io.send(status)
	end
	
	if status == :failed
		io.close
		
		error_message = Native.error_message(pointer)
		
		Native.finish(pointer)
		
		raise Error, "Could not connect: #{error_message}"
	end
	
	return self.new(pointer, io, types)
end

Instance Method Details

#closeObject

Close the connection.



170
171
172
173
174
# File 'lib/db/postgres/native/connection.rb', line 170

def close
	Native.finish(self)
	
	@io.close
end

#discard_resultsObject

Silently discard any results that application didn’t read.



227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
# File 'lib/db/postgres/native/connection.rb', line 227

def discard_results
	while result = self.get_result
		status = Native.result_status(result)
		Native.clear(result)
		
		case status
		when :copy_in
			self.put_copy_end("Discard results")
		when :copy_out
			self.flush_copy_out
		end
	end
	
	return nil
end

#error_messageObject

Return the last error message.



160
161
162
# File 'lib/db/postgres/native/connection.rb', line 160

def error_message
	Native.error_message(self)
end

#escape_identifier(value) ⇒ Object



188
189
190
191
192
193
194
195
196
197
198
# File 'lib/db/postgres/native/connection.rb', line 188

def escape_identifier(value)
	value = value.to_s
	
	result = Native.escape_identifier(self, value, value.bytesize)
	
	string = result.read_string
	
	Native.free_memory(result)
	
	return string
end

#escape_literal(value) ⇒ Object



176
177
178
179
180
181
182
183
184
185
186
# File 'lib/db/postgres/native/connection.rb', line 176

def escape_literal(value)
	value = value.to_s
	
	result = Native.escape_literal(self, value, value.bytesize)
	
	string = result.read_string
	
	Native.free_memory(result)
	
	return string
end

#next_result(types: @types) ⇒ Object



210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
# File 'lib/db/postgres/native/connection.rb', line 210

def next_result(types: @types)
	if result = self.get_result
		status = Native.result_status(result)
		
		if status == :fatal_error
			message = Native.result_error_message(result)
			
			Native.clear(result)
			
			raise Error, message
		end
		
		return Result.new(self, types, result)
	end
end

#send_query(statement) ⇒ Object



204
205
206
207
208
# File 'lib/db/postgres/native/connection.rb', line 204

def send_query(statement)
	check! Native.send_query(self, statement)
	
	flush
end

#single_row_mode!Object



200
201
202
# File 'lib/db/postgres/native/connection.rb', line 200

def single_row_mode!
	Native.set_single_row_mode(self)
end

#socketObject

Return the underlying socket used for IO.



165
166
167
# File 'lib/db/postgres/native/connection.rb', line 165

def socket
	Native.socket(self)
end

#statusObject

Return the status of the connection.



155
156
157
# File 'lib/db/postgres/native/connection.rb', line 155

def status
	Native.status(self)
end