Class: Deimos::SchemaBackends::AvroBase
- Inherits:
-
Base
- Object
- Base
- Deimos::SchemaBackends::AvroBase
show all
- Defined in:
- lib/deimos/schema_backends/avro_base.rb
Overview
Encode / decode using Avro, either locally or via schema registry.
Instance Attribute Summary collapse
Attributes inherited from Base
#key_schema, #namespace, #schema
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#coerce, #decode, #decode_payload, #encode, #encode_payload
Constructor Details
#initialize(schema:, namespace:) ⇒ AvroBase
Returns a new instance of AvroBase.
16
17
18
19
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 16
def initialize(schema:, namespace:)
super(schema: schema, namespace: namespace)
@schema_store = AvroTurf::MutableSchemaStore.new(path: Deimos.config.schema.path)
end
|
Instance Attribute Details
#schema_store ⇒ Object
Returns the value of attribute schema_store.
13
14
15
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 13
def schema_store
@schema_store
end
|
Class Method Details
.mock_backend ⇒ Object
54
55
56
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 54
def self.mock_backend
:avro_validation
end
|
Instance Method Details
#coerce_field(field, value) ⇒ Object
37
38
39
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 37
def coerce_field(field, value)
AvroSchemaCoercer.new(avro_schema).coerce_type(field.type, value)
end
|
#decode_key(payload, key_id) ⇒ Object
30
31
32
33
34
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 30
def decode_key(payload, key_id)
@key_schema ||= _generate_key_schema(key_id)
field_name = _field_name_from_schema(@key_schema)
decode(payload, schema: @key_schema['name'])[field_name]
end
|
#encode_key(key_id, key, topic: nil) ⇒ Object
22
23
24
25
26
27
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 22
def encode_key(key_id, key, topic: nil)
@key_schema ||= _generate_key_schema(key_id)
field_name = _field_name_from_schema(@key_schema)
payload = { field_name => key }
encode(payload, schema: @key_schema['name'], topic: topic)
end
|
#schema_fields ⇒ Object
42
43
44
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 42
def schema_fields
avro_schema.fields.map { |field| SchemaField.new(field.name, field.type) }
end
|
#validate(payload, schema:) ⇒ Object
47
48
49
50
51
|
# File 'lib/deimos/schema_backends/avro_base.rb', line 47
def validate(payload, schema:)
Avro::SchemaValidator.validate!(avro_schema(schema), payload,
recursive: true,
fail_on_extra_fields: true)
end
|