Class: Deimos::SchemaClass::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/deimos/schema_class/base.rb

Overview

Base Class for Schema Classes generated from Avro.

Direct Known Subclasses

Enum, Record

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*_args) ⇒ Base

:nodoc:



11
12
# File 'lib/deimos/schema_class/base.rb', line 11

def initialize(*_args)
end

Class Method Details

.initialize_from_value(value) ⇒ Object

Initializes this class from a given value

Parameters:

  • value (Object)

Raises:

  • (NotImplementedError)


50
51
52
# File 'lib/deimos/schema_class/base.rb', line 50

def self.initialize_from_value(value)
  raise NotImplementedError
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



33
34
35
36
37
38
39
40
# File 'lib/deimos/schema_class/base.rb', line 33

def ==(other)
  comparison = other
  if other.class == self.class
    comparison = other.as_json
  end

  comparison == self.as_json
end

#as_json(_opts = {}) ⇒ Hash

Converts the object to a hash which can be used for debugging or comparing objects.

Returns:

  • (Hash)

    a hash representation of the payload



22
23
24
# File 'lib/deimos/schema_class/base.rb', line 22

def as_json(_opts={})
  JSON.parse(to_json)
end

#to_hHash

Converts the object attributes to a hash which can be used for Kafka

Returns:

  • (Hash)

    the payload as a hash.

Raises:

  • (NotImplementedError)


28
29
30
# File 'lib/deimos/schema_class/base.rb', line 28

def to_h
  raise NotImplementedError
end

#to_json(*_args) ⇒ String

Converts the object to a string that represents a JSON object

Returns:

  • (String)

    a JSON string



16
17
18
# File 'lib/deimos/schema_class/base.rb', line 16

def to_json(*_args)
  to_h.to_json
end

#to_sObject

:nodoc:



43
44
45
46
# File 'lib/deimos/schema_class/base.rb', line 43

def to_s
  klass = self.class
  "#{klass}(#{self.as_json.symbolize_keys.to_s[1..-2]})"
end