Class: PostgresPR::Message
- Inherits:
-
Object
- Object
- PostgresPR::Message
show all
- Defined in:
- lib/postgres-pr/message.rb
Overview
Base class representing a PostgreSQL protocol message
Direct Known Subclasses
Authentification, BackendKeyData, CommandComplete, CopyInResponse, CopyOutResponse, DataRow, EmptyQueryResponse, ErrorResponse, NoticeResponse, ParameterStatus, Parse, ParseComplete, PasswordMessage, Query, ReadyForQuery, RowDescription, SSLRequest, StartupMessage, Terminate, UnknownMessageType
Constant Summary
collapse
- MsgTypeMap =
One character message-typecode to class map
Hash.new { UnknownMessageType }
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.create(buffer) ⇒ Object
45
46
47
48
49
|
# File 'lib/postgres-pr/message.rb', line 45
def self.create(buffer)
obj = allocate
obj.parse(buffer)
obj
end
|
.dump(*args) ⇒ Object
51
52
53
|
# File 'lib/postgres-pr/message.rb', line 51
def self.dump(*args)
new(*args).dump
end
|
.fields(*attribs) ⇒ Object
70
71
72
73
74
75
76
77
78
79
80
81
|
# File 'lib/postgres-pr/message.rb', line 70
def self.fields(*attribs)
names = attribs.map {|name, type| name.to_s}
arg_list = names.join(", ")
ivar_list = names.map {|name| "@" + name }.join(", ")
sym_list = names.map {|name| ":" + name }.join(", ")
class_eval %[
attr_accessor #{ sym_list }
def initialize(#{ arg_list })
#{ ivar_list } = #{ arg_list }
end
]
end
|
.read(stream, startup = false) ⇒ Object
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/postgres-pr/message.rb', line 30
def self.read(stream, startup=false)
type = stream.readbytes(1).unpack('C').first unless startup
length = stream.readbytes(4).unpack('N').first
raise ParseError unless length >= 4
buffer = Buffer.of_size(startup ? length : 1+length)
buffer.write_byte(type) unless startup
buffer.write_int32_network(length)
buffer.copy_from_stream(stream, length-4)
(startup ? StartupMessage : MsgTypeMap[type]).create(buffer)
end
|
.register_message_type(type) ⇒ Object
20
21
22
23
24
25
26
27
28
|
# File 'lib/postgres-pr/message.rb', line 20
def self.register_message_type(type)
raise ArgumentError if type < 0 or type > 255
raise "duplicate message type registration" if MsgTypeMap.has_key? type
MsgTypeMap[type] = self
self.const_set(:MsgType, type)
class_eval "def message_type; MsgType end"
end
|
Instance Method Details
#dump(body_size = 0) {|buffer| ... } ⇒ Object
55
56
57
58
59
60
61
62
|
# File 'lib/postgres-pr/message.rb', line 55
def dump(body_size=0)
buffer = Buffer.of_size(5 + body_size)
buffer.write_byte(self.message_type)
buffer.write_int32_network(4 + body_size)
yield buffer if block_given?
raise DumpError unless buffer.at_end?
return buffer.content
end
|
#parse(buffer) {|buffer| ... } ⇒ Object
64
65
66
67
68
|
# File 'lib/postgres-pr/message.rb', line 64
def parse(buffer)
buffer.position = 5
yield buffer if block_given?
raise ParseError, buffer.inspect unless buffer.at_end?
end
|