Class: Avromatic::Model::Types::IntegerType

Inherits:
AbstractType show all
Defined in:
lib/avromatic/model/types/integer_type.rb

Constant Summary collapse

VALUE_CLASSES =
[::Integer].freeze
MAX_RANGE =
2**31

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from AbstractType

#input_classes

Class Method Details

.in_range?(value) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/avromatic/model/types/integer_type.rb', line 13

def self.in_range?(value)
  value.is_a?(::Integer) && value.between?(-MAX_RANGE, MAX_RANGE - 1)
end

Instance Method Details

#coerce(input) ⇒ Object



25
26
27
28
29
30
31
# File 'lib/avromatic/model/types/integer_type.rb', line 25

def coerce(input)
  if coercible?(input)
    input
  else
    raise ArgumentError.new("Could not coerce '#{input.inspect}' to #{name}")
  end
end

#coercible?(input) ⇒ Boolean Also known as: coerced?

Returns:

  • (Boolean)


33
34
35
# File 'lib/avromatic/model/types/integer_type.rb', line 33

def coercible?(input)
  input.nil? || self.class.in_range?(input)
end

#nameObject



21
22
23
# File 'lib/avromatic/model/types/integer_type.rb', line 21

def name
  'integer'
end

#referenced_model_classesObject



43
44
45
# File 'lib/avromatic/model/types/integer_type.rb', line 43

def referenced_model_classes
  EMPTY_ARRAY
end

#serialize(value, _strict) ⇒ Object



39
40
41
# File 'lib/avromatic/model/types/integer_type.rb', line 39

def serialize(value, _strict)
  value
end

#value_classesObject



17
18
19
# File 'lib/avromatic/model/types/integer_type.rb', line 17

def value_classes
  VALUE_CLASSES
end