Sha256: a10be3dc7961d1490e5faa837ef916659a5242f46ec20fa2c1509f0b831cb200

Contents?: true

Size: 1.43 KB

Versions: 14

Compression:

Stored size: 1.43 KB

Contents

module Bitcoin
  module Message
    # inventory class. inventory is a part of message.
    # https://bitcoin.org/en/developer-reference#term-inventory
    class Inventory

      SEGWIT_FLAG = 1 << 30

      MSG_TX = 1
      MSG_BLOCK = 2
      MSG_FILTERED_BLOCK = 3
      MSG_CMPCT_BLOCK = 4
      MSG_WITNESS_TX = SEGWIT_FLAG | MSG_TX
      MSG_WITNESS_BLOCK = SEGWIT_FLAG | MSG_BLOCK
      MSG_FILTERED_WITNESS_BLOCK = SEGWIT_FLAG | MSG_FILTERED_BLOCK

      attr_accessor :identifier
      attr_accessor :hash

      def initialize(identifier, hash)
        raise Error, "invalid type identifier specified. identifier = #{identifier}" unless valid_identifier?(identifier)
        @identifier = identifier
        @hash = hash
      end

      # parse inventory payload
      def self.parse_from_payload(payload)
        raise Error, 'invalid inventory size.' if payload.bytesize != 36
        identifier = payload[0..4].unpack1('V')
        hash = payload[4..-1].bth # internal byte order
        new(identifier, hash)
      end

      def to_payload
        [identifier].pack('V') << hash.htb
      end

      def block?
        [MSG_BLOCK, MSG_WITNESS_BLOCK, MSG_FILTERED_WITNESS_BLOCK].include?(identifier)
      end

      private

      def valid_identifier?(identifier)
        [MSG_TX, MSG_BLOCK, MSG_FILTERED_BLOCK, MSG_CMPCT_BLOCK, MSG_WITNESS_TX,
         MSG_WITNESS_BLOCK, MSG_FILTERED_WITNESS_BLOCK].include?(identifier)
      end

    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
bitcoinrb-1.7.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.6.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.5.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.4.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.3.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.2.1 lib/bitcoin/message/inventory.rb
bitcoinrb-1.2.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.1.1 lib/bitcoin/message/inventory.rb
bitcoinrb-1.1.0 lib/bitcoin/message/inventory.rb
bitcoinrb-1.0.0 lib/bitcoin/message/inventory.rb
bitcoinrb-0.9.0 lib/bitcoin/message/inventory.rb
bitcoinrb-0.8.0 lib/bitcoin/message/inventory.rb
bitcoinrb-0.7.0 lib/bitcoin/message/inventory.rb
bitcoinrb-0.6.0 lib/bitcoin/message/inventory.rb