Class: Radiator::Stream
Overview
Radiator::Stream allows a live view of the STEEM blockchain.
All values returned by ‘get_dynamic_global_properties` can be streamed.
For example, if you want to know which witness is currently signing blocks, use the following:
stream = Radiator::Stream.new
stream.current_witness do |witness|
puts witness
end
More importantly, full blocks, transactions, and operations can be streamed.
Constant Summary collapse
- INITIAL_TIMEOUT =
0.0200
- BLOCK_PRODUCTION =
Note, even though block production is advertised at 3 seconds, often blocks are available in 1.5 seconds. However, we still keep our expectations at 3 seconds.
3.0
- MAX_TIMEOUT =
80
- MAX_BLOCKS_PER_NODE =
10000
- RANGE_BEHIND_WARNING =
400
Constants inherited from Api
Api::DEFAULT_HIVE_FAILOVER_URLS, Api::DEFAULT_HIVE_RESTFUL_URL, Api::DEFAULT_HIVE_URL, Api::DEFAULT_STEEM_FAILOVER_URLS, Api::DEFAULT_STEEM_RESTFUL_URL, Api::DEFAULT_STEEM_URL, Api::HEALTH_URI, Api::POST_HEADERS
Instance Method Summary collapse
-
#blocks(start = nil, mode = :irreversible, max_blocks_per_node = MAX_BLOCKS_PER_NODE, &block) ⇒ ::Hash
Returns the latest blocks from the blockchain.
- #database_api ⇒ Object
-
#initialize(options = {}) ⇒ Stream
constructor
A new instance of Stream.
- #method_names ⇒ Object
- #method_params(method) ⇒ Object
-
#operations(type = nil, start = nil, mode = :irreversible, options = {include_virtual: false}, &block) ⇒ ::Hash
Returns the latest operations from the blockchain.
-
#shutdown ⇒ Object
Stops the persistant http connections.
-
#transactions(start = nil, mode = :irreversible, &block) ⇒ ::Hash
Returns the latest transactions from the blockchain.
Methods inherited from Api
#api_name, default_failover_urls, default_restful_url, default_url, #get_blocks, #inspect, network_api, #respond_to_missing?, #stopped?, #use_condenser_namespace?
Methods included from Utils
#debug, #error, #extract_signatures, #hexlify, #pakArr, #pakC, #pakHash, #pakI, #pakL!, #pakS, #pakStr, #pakc, #paks, #send_log, #unhexlify, #varint, #warning
Constructor Details
#initialize(options = {}) ⇒ Stream
Returns a new instance of Stream.
34 35 36 |
# File 'lib/radiator/stream.rb', line 34 def initialize( = {}) super end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(m, *args, &block) ⇒ Object (private)
452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 |
# File 'lib/radiator/stream.rb', line 452 def method_missing(m, *args, &block) super unless respond_to_missing?(m) @latest_values ||= [] @latest_values.shift(5) if @latest_values.size > 20 loop do break if stop? value = if (n = method_params(m)).nil? key_value = database_api.get_dynamic_global_properties.result[m] else key = n.keys.first if !!n[key] r = database_api.get_dynamic_global_properties.result key_value = param = r[n[key]] result = nil loop do break if stop? response = api.send(key, param) raise StreamError, JSON[response.error] if !!response.error result = response.result break if !!result warning "#{key}: #{param} result missing, retrying with timeout: #{current_timeout} seconds" reset_api timeout end reset_timeout result else key_value = database_api.get_dynamic_global_properties.result[key] end end unless @latest_values.include? key_value @latest_values << key_value if !!block yield value else return value end end sleep current_timeout end end |
Instance Method Details
#blocks(start = nil, mode = :irreversible, max_blocks_per_node = MAX_BLOCKS_PER_NODE, &block) ⇒ ::Hash
Returns the latest blocks from the blockchain.
stream = Radiator::Stream.new
stream.blocks do |bk, num|
puts "[#{num}] #{bk.to_json}"
end
For convenience and memory management, the api used to poll the current block data is also available inside the block, e.g.:
stream = Radiator::Stream.new
stream.blocks do |bk, num, api|
puts "[#{num}] #{bk.to_json}"
api.get_ops_in_block(num, true) do |vops, error|
puts vops
end
end
This idiom is useful for very long running scripts.
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
# File 'lib/radiator/stream.rb', line 249 def blocks(start = nil, mode = :irreversible, max_blocks_per_node = MAX_BLOCKS_PER_NODE, &block) reset_api replay = !!start counter = 0 latest_block_number = -1 @api_options[:max_requests] = [max_blocks_per_node * 2, @api_options[:max_requests].to_i].max loop do break if stop? catch :sequence do; begin head_block = database_api.get_dynamic_global_properties do |properties, error| if !!error standby "Node responded with: #{error. || 'unknown error'}, retrying ...", { error: error, and: {throw: :sequence} } end break if stop? if properties.nil? || properties.head_block_number.nil? # This can happen if a reverse proxy is acting up. standby "Bad block sequence after height: #{latest_block_number}", { and: {throw: :sequence} } end case mode.to_sym when :head then properties.head_block_number when :irreversible then properties.last_irreversible_block_num else; raise StreamError, '"mode" has to be "head" or "irreversible"' end end if head_block == latest_block_number # This can happen when there's a delay in block production. if current_timeout > BLOCK_PRODUCTION * 6 standby "Stream has stalled severely ...", { and: {backoff: api, throw: :sequence} } elsif current_timeout > BLOCK_PRODUCTION * 3 warning "Stream has stalled ..." end timeout and throw :sequence elsif head_block < latest_block_number # This can happen if a reverse proxy is acting up. standby "Invalid block sequence at height: #{head_block}", { and: {backoff: api, throw: :sequence} } end reset_timeout start ||= head_block range = (start..head_block) for n in range break if stop? if (counter += 1) > max_blocks_per_node reset_api counter = 0 end if !replay && range.size > RANGE_BEHIND_WARNING # When the range is above RANGE_BEHIND_WARNING blocks, it's time # to warn, unless we're replaying. r = [*range] index = r.index(n) current_range = r[index..-1] if current_range.size % RANGE_BEHIND_WARNING == 0 warning "Stream behind by #{current_range.size} blocks (about #{(current_range.size * 3) / 60.0} minutes)." end end scoped_api, = if use_condenser_namespace? [api, n] else [block_api, {block_num: n}] end scoped_api.get_block() do |current_block, error| if !!error if error. == 'Unable to acquire database lock' start = n timeout standby "Node was unable to acquire database lock, retrying ...", { and: {throw: :sequence} } else standby "Node responded with: #{error. || 'unknown error'}, retrying ...", { error: error, and: {throw: :sequence} } end end current_block = current_block.block unless use_condenser_namespace? if current_block.nil? standby "Node responded with: empty block, retrying ...", { and: {throw: :sequence} } end latest_block_number = n return current_block, n if block.nil? yield current_block, n, api end start = head_block + 1 sleep BLOCK_PRODUCTION / range.size end rescue StreamError; raise # rescue => e # warning "Unknown streaming error: #{e.inspect}, retrying ... " # warning e # redo end; end end end |
#database_api ⇒ Object
444 445 446 447 448 449 450 |
# File 'lib/radiator/stream.rb', line 444 def database_api @database_api ||= case @chain when :steem then Steem::DatabaseApi.new(url: @api.send(:uri).to_s) when :hive then Hive::DatabaseApi.new(url: @api.send(:uri).to_s) else; api end end |
#method_names ⇒ Object
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
# File 'lib/radiator/stream.rb', line 402 def method_names @method_names ||= [ :head_block_number, :head_block_id, :time, :current_witness, :total_pow, :num_pow_witnesses, :virtual_supply, :current_supply, :confidential_supply, :current_sbd_supply, :confidential_sbd_supply, :total_vesting_fund_steem, :total_vesting_shares, :total_reward_fund_steem, :total_reward_shares2, :total_activity_fund_steem, :total_activity_fund_shares, :sbd_interest_rate, :average_block_size, :maximum_block_size, :current_aslot, :recent_slots_filled, :participation_count, :last_irreversible_block_num, :max_virtual_bandwidth, :current_reserve_ratio, :block_numbers, :blocks ].freeze end |
#method_params(method) ⇒ Object
436 437 438 439 440 441 442 |
# File 'lib/radiator/stream.rb', line 436 def method_params(method) case method when :block_numbers then {head_block_number: nil} when :blocks then {get_block: :head_block_number} else; nil end end |
#operations(type = nil, start = nil, mode = :irreversible, options = {include_virtual: false}, &block) ⇒ ::Hash
Returns the latest operations from the blockchain.
stream = Radiator::Stream.new
stream.operations do |op|
puts op.to_json
end
If symbol are passed, then only that operation is returned. Expected symbols are:
account_create
account_create_with_delegation
account_update
account_witness_proxy
account_witness_vote
cancel_transfer_from_savings
change_recovery_account
claim_reward_balance
comment
convert
custom
custom_json
decline_voting_rights
delegate_vesting_shares
delete_comment
escrow_approve
escrow_dispute
escrow_release
escrow_transfer
feed_publish
limit_order_cancel
limit_order_create
limit_order_create2
pow
pow2
recover_account
request_account_recovery
set_withdraw_vesting_route
transfer
transfer_from_savings
transfer_to_savings
transfer_to_vesting
vote
withdraw_vesting
witness_update
For example, to stream only votes:
stream = Radiator::Stream.new
stream.operations(:vote) do |vote|
puts vote.to_json
end
You can also stream virtual operations:
stream = Radiator::Stream.new
stream.operations(:author_reward) do |vop|
puts "#{vop.} got paid for #{vop.permlink}: #{[vop.sbd_payout, vop.steem_payout, vop.vesting_payout]}"
end
… or multiple virtual operation types;
stream = Radiator::Stream.new
stream.operations([:producer_reward, :author_reward]) do |vop|
puts vop
end
… or all types, inluding virtual operation types;
stream = Radiator::Stream.new
stream.operations(nil, nil, :head, include_virtual: true) do |vop|
puts vop
end
Expected virtual operation types:
producer_reward
curation_reward
fill_convert_request
fill_order
fill_vesting_withdraw
interest
shutdown_witness
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/radiator/stream.rb', line 133 def operations(type = nil, start = nil, mode = :irreversible, = {include_virtual: false}, &block) type = [type].flatten.compact.map(&:to_sym) include_virtual = !![:include_virtual] if virtual_op_type?(type) include_virtual = true end latest_block_number = -1 transactions(start, mode) do |transaction, trx_id, block_number| virtual_ops_collected = latest_block_number == block_number latest_block_number = block_number ops = transaction.operations.map do |t, op| t = t.to_sym if type.size == 1 && type.first == t op elsif type.none? || type.include?(t) {t => op} end end.compact if include_virtual && !virtual_ops_collected catch :pop_vops do; begin api.get_ops_in_block(block_number, true) do |vops, error| if !!error standby "Node responded with: #{error. || 'unknown error'}, retrying ...", { error: error, and: {throw: :pop_vops} } end vops.each do |vtx| next unless defined? vtx.op t = vtx.op.first.to_sym op = vtx.op.last if type.size == 1 && type.first == t ops << op elsif type.none? || type.include?(t) ops << {t => op} end end end end; end virtual_ops_collected = true end next if ops.none? return ops unless !!block ops.each do |op| yield op, trx_id, block_number, api end end end |
#shutdown ⇒ Object
Stops the persistant http connections.
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 |
# File 'lib/radiator/stream.rb', line 378 def shutdown flappy = false begin unless @api.nil? flappy = @api.send(:flappy?) @api.shutdown end unless @block_api.nil? flappy = @block_api.send(:flappy?) unless flappy @block_api.shutdown end rescue => e warning("Unable to shut down: #{e}") end @api = nil @block_api = nil @database_api = nil if @api.nil? || @block_api.nil? GC.start end |
#transactions(start = nil, mode = :irreversible, &block) ⇒ ::Hash
206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/radiator/stream.rb', line 206 def transactions(start = nil, mode = :irreversible, &block) blocks(start, mode) do |b, block_number| next if (_transactions = b.transactions).nil? return _transactions unless !!block _transactions.each_with_index do |transaction, index| trx_id = if !!b['transaction_ids'] b['transaction_ids'][index] end yield transaction, trx_id, block_number, api end end end |