Sha256: 109374a0c4b18876f27cad2ea179db8ca64dc14a7c8c02cba5bf569a7dd27c64

Contents?: true

Size: 1.04 KB

Versions: 27

Compression:

Stored size: 1.04 KB

Contents

# encoding: ascii-8bit

# Copyright 2014 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

require 'cosmos/ext/cosmos_io'

# COSMOS specific additions to the Ruby IO and StringIO classes
module CosmosIO
  # Reads a length field and then return the String resulting from reading the
  # number of bytes the length field indicates
  #
  # For example:
  #   io = StringIO.new
  #   # where io is "\x02\x01\x02\x03\x04...."
  #   result = io.read_length_bytes(1)
  #   # result will be "\x01x02" because the length field was given
  #   # to be 1 byte. We read 1 byte which is a 2. So we then read two
  #   # bytes and return.
  #
  # @param length_num_bytes [Integer] Number of bytes in the length field
  # @return [String] A String of "length field" number of bytes
  # def read_length_bytes(length_num_bytes)
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
cosmos-3.9.2 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.9.1 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.8.3 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.8.2 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.8.1 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.8.0 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.7.1 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.7.0 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.6.3 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.6.2 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.6.1 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.6.0 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.5.3 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.5.2 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.5.0 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.4.2 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.4.1 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.4.0 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.3.3 lib/cosmos/core_ext/cosmos_io.rb
cosmos-3.3.2 lib/cosmos/core_ext/cosmos_io.rb