require "bindata/base_primitive" module BinData # A String is a sequence of bytes. This is the same as strings in Ruby 1.8. # The issue of character encoding is ignored by this class. # # require 'bindata' # # data = "abcdefghij" # # obj = BinData::String.new(:read_length => 5) # obj.read(data) # obj #=> "abcde" # # obj = BinData::String.new(:length => 6) # obj.read(data) # obj #=> "abcdef" # obj.assign("abcdefghij") # obj #=> "abcdef" # obj.assign("abcd") # obj #=> "abcd\000\000" # # obj = BinData::String.new(:length => 6, :trim_padding => true) # obj.assign("abcd") # obj #=> "abcd" # obj.to_binary_s #=> "abcd\000\000" # # obj = BinData::String.new(:length => 6, :pad_byte => 'A') # obj.assign("abcd") # obj #=> "abcdAA" # obj.to_binary_s #=> "abcdAA" # # == Parameters # # String objects accept all the params that BinData::BasePrimitive # does, as well as the following: # # :read_length:: The length in bytes to use when reading a value. # :length:: The fixed length of the string. If a shorter # string is set, it will be padded to this length. # :pad_byte:: The byte to use when padding a string to a # set length. Valid values are Integers and # Strings of length 1. "\0" is the default. # :trim_padding:: Boolean, default false. If set, #value will # return the value with all pad_bytes trimmed # from the end of the string. The value will # not be trimmed when writing. class String < BinData::BasePrimitive optional_parameters :read_length, :length, :trim_padding default_parameters :pad_byte => "\0" mutually_exclusive_parameters :read_length, :length mutually_exclusive_parameters :length, :value class << self def sanitize_parameters!(params) #:nodoc: params.warn_replacement_parameter(:initial_length, :read_length) params.warn_renamed_parameter(:pad_char, :pad_byte) # Remove this line in the future if params.has_parameter?(:pad_byte) byte = params[:pad_byte] params[:pad_byte] = sanitized_pad_byte(byte) end end #------------- private def sanitized_pad_byte(byte) result = byte.is_a?(Integer) ? byte.chr : byte_string(byte.to_s.dup) if result.length > 1 raise ArgumentError, ":pad_byte must not contain more than 1 byte" end result end def byte_string(str) if RUBY_VERSION >= "1.9" str.force_encoding(Encoding::BINARY) else str end end end def assign(val) super(byte_string(val.dup)) end def snapshot # override to trim padding result = super result = clamp_to_length(result) if get_parameter(:trim_padding) result = trim_padding(result) end result end #--------------- private def byte_string(str) if RUBY_VERSION >= "1.9" str.force_encoding(Encoding::BINARY) else str end end def clamp_to_length(str) str = byte_string(str) len = eval_parameter(:length) || str.length if str.length == len str elsif str.length > len str.slice(0, len) else str + (eval_parameter(:pad_byte) * (len - str.length)) end end def trim_padding(str) str.sub(/#{eval_parameter(:pad_byte)}*$/, "") end def value_to_binary_string(val) clamp_to_length(val) end def read_and_return_value(io) len = eval_parameter(:read_length) || eval_parameter(:length) || 0 io.readbytes(len) end def sensible_default "" end end end