Class: MessageBus::Backends::Postgres::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/message_bus/backends/postgres.rb

Defined Under Namespace

Classes: Listener

Constant Summary collapse

INHERITED_CONNECTIONS =
[]

Instance Method Summary collapse

Constructor Details

#initialize(config) ⇒ Client

Returns a new instance of Client.



42
43
44
45
46
47
48
49
50
51
# File 'lib/message_bus/backends/postgres.rb', line 42

def initialize(config)
  @config = config
  @listening_on = {}
  @available = []
  @allocated = {}
  @subscribe_connection = nil
  @subscribed = false
  @mutex = Mutex.new
  @pid = Process.pid
end

Instance Method Details

#add(channel, value) ⇒ Object



53
54
55
# File 'lib/message_bus/backends/postgres.rb', line 53

def add(channel, value)
  hold { |conn| exec_prepared(conn, 'insert_message', [channel, value]) { |r| r.getvalue(0, 0).to_i } }
end

#after_forkObject



90
91
92
93
94
95
96
97
# File 'lib/message_bus/backends/postgres.rb', line 90

def after_fork
  sync do
    @pid = Process.pid
    INHERITED_CONNECTIONS.concat(@available)
    @available.clear
    @listening_on.clear
  end
end

#backlog(channel, backlog_id) ⇒ Object



74
75
76
77
78
# File 'lib/message_bus/backends/postgres.rb', line 74

def backlog(channel, backlog_id)
  hold do |conn|
    exec_prepared(conn, 'channel_backlog', [channel, backlog_id]) { |r| r.values.each { |a| a[0] = a[0].to_i } }
  end || []
end

#clear_channel_backlog(channel, backlog_id, num_to_keep) ⇒ Object



64
65
66
67
# File 'lib/message_bus/backends/postgres.rb', line 64

def clear_channel_backlog(channel, backlog_id, num_to_keep)
  hold { |conn| exec_prepared(conn, 'clear_channel_backlog', [channel, backlog_id, num_to_keep]) }
  nil
end

#clear_global_backlog(backlog_id, num_to_keep) ⇒ Object



57
58
59
60
61
62
# File 'lib/message_bus/backends/postgres.rb', line 57

def clear_global_backlog(backlog_id, num_to_keep)
  if backlog_id > num_to_keep
    hold { |conn| exec_prepared(conn, 'clear_global_backlog', [backlog_id - num_to_keep]) }
    nil
  end
end

#destroyObject



107
108
109
110
111
112
# File 'lib/message_bus/backends/postgres.rb', line 107

def destroy
  sync do
    @available.each(&:close)
    @available.clear
  end
end

#expire(max_backlog_age) ⇒ Object



69
70
71
72
# File 'lib/message_bus/backends/postgres.rb', line 69

def expire(max_backlog_age)
  hold { |conn| exec_prepared(conn, 'expire', [max_backlog_age]) }
  nil
end

#expire_all_backlogs!Object

use with extreme care, will nuke all of the data



115
116
117
# File 'lib/message_bus/backends/postgres.rb', line 115

def expire_all_backlogs!
  reset!
end

#get_value(channel, id) ⇒ Object



86
87
88
# File 'lib/message_bus/backends/postgres.rb', line 86

def get_value(channel, id)
  hold { |conn| exec_prepared(conn, 'get_message', [channel, id]) { |r| r.getvalue(0, 0) } }
end

#global_backlog(backlog_id) ⇒ Object



80
81
82
83
84
# File 'lib/message_bus/backends/postgres.rb', line 80

def global_backlog(backlog_id)
  hold do |conn|
    exec_prepared(conn, 'global_backlog', [backlog_id]) { |r| r.values.each { |a| a[0] = a[0].to_i } }
  end || []
end

#max_id(channel = nil) ⇒ Object



119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
# File 'lib/message_bus/backends/postgres.rb', line 119

def max_id(channel = nil)
  block = proc do |r|
    if r.ntuples > 0
      r.getvalue(0, 0).to_i
    else
      0
    end
  end

  if channel
    hold { |conn| exec_prepared(conn, 'max_channel_id', [channel], &block) }
  else
    hold { |conn| exec_prepared(conn, 'max_id', &block) }
  end
end

#max_ids(*channels) ⇒ Object



135
136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/message_bus/backends/postgres.rb', line 135

def max_ids(*channels)
  block = proc do |pg_result|
    ids = Array.new(channels.size, 0)
    pg_result.ntuples.times do |i|
      channel = pg_result.getvalue(i, 0)
      max_id = pg_result.getvalue(i, 1)
      channel_index = channels.index(channel)
      ids[channel_index] = max_id.to_i
    end
    ids
  end

  hold { |conn| exec_prepared(conn, 'max_channel_ids', [PG::TextEncoder::Array.new.encode(channels)], &block) }
end

#publish(channel, data) ⇒ Object



150
151
152
# File 'lib/message_bus/backends/postgres.rb', line 150

def publish(channel, data)
  hold { |conn| exec_prepared(conn, 'publish', [channel, data]) }
end

#reset!Object

Dangerous, drops the message_bus table containing the backlog if it exists.



100
101
102
103
104
105
# File 'lib/message_bus/backends/postgres.rb', line 100

def reset!
  hold do |conn|
    conn.exec 'DROP TABLE IF EXISTS message_bus'
    create_table(conn)
  end
end

#subscribe(channel) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/message_bus/backends/postgres.rb', line 154

def subscribe(channel)
  obj = Object.new
  sync { @listening_on[channel] = obj }
  listener = Listener.new
  yield listener

  conn = @subscribe_connection = raw_pg_connection
  conn.exec "LISTEN #{channel}"
  listener.do_sub.call
  while listening_on?(channel, obj)
    conn.wait_for_notify(10) do |_, _, payload|
      break unless listening_on?(channel, obj)

      listener.do_message.call(nil, payload)
    end
  end
  listener.do_unsub.call

  conn.exec "UNLISTEN #{channel}"
  nil
ensure
  @subscribe_connection&.close
  @subscribe_connection = nil
end

#unsubscribeObject



179
180
181
# File 'lib/message_bus/backends/postgres.rb', line 179

def unsubscribe
  sync { @listening_on.clear }
end