Class: Protobuf::Field::Sfixed32Field

Inherits:
Int32Field show all
Defined in:
lib/protobuf/field/sfixed32_field.rb

Constant Summary

Constants inherited from VarintField

VarintField::INT32_MAX, VarintField::INT32_MIN, VarintField::INT64_MAX, VarintField::INT64_MIN, VarintField::UINT32_MAX, VarintField::UINT64_MAX

Constants inherited from BaseField

BaseField::PACKED_TYPES

Instance Attribute Summary

Attributes inherited from BaseField

#message_class, #name, #options, #rule, #tag, #type_class

Instance Method Summary collapse

Methods inherited from Int32Field

max, min

Methods inherited from VarintField

#acceptable?, default, encode

Methods inherited from BaseField

#acceptable?, #coerce!, default, #default, #default_value, #deprecated?, #enum?, #extension?, #getter, #initialize, #message?, #optional?, #packed?, #repeated?, #repeated_message?, #required?, #set, #setter, #to_s, #type, #warn_if_deprecated

Methods included from Logging

initialize_logger, #log_exception, #log_signature, #logger, logger, logger=, #sign_message

Constructor Details

This class inherits a constructor from Protobuf::Field::BaseField

Instance Method Details

#decode(bytes) ⇒ Object

Public Instance Methods



11
12
13
14
15
# File 'lib/protobuf/field/sfixed32_field.rb', line 11

def decode(bytes)
  value  = bytes.unpack('V').first
  value -= 0x1_0000_0000 if (value & 0x8000_0000).nonzero?
  value
end

#encode(value) ⇒ Object



17
18
19
# File 'lib/protobuf/field/sfixed32_field.rb', line 17

def encode(value)
  [value].pack('V')
end

#wire_typeObject



21
22
23
# File 'lib/protobuf/field/sfixed32_field.rb', line 21

def wire_type
  ::Protobuf::WireType::FIXED32
end