forked from elodina/go-kafka-avro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added kafka avro encoder/decoder, schema registry client
- Loading branch information
Showing
5 changed files
with
559 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,10 @@ | ||
# go-kafka-avro | ||
go-kafka-avro | ||
=========== | ||
|
||
go-kafka-avro implements Avro encoding and decoding compatible with Confluent Schema Registry. | ||
|
||
Installation | ||
============ | ||
|
||
Install go 1.4 (or higher) http://golang.org/doc/install | ||
`$ go get github.com/elodina/go-kafka-avro` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
/* Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. */ | ||
|
||
package avro | ||
|
||
import ( | ||
"bytes" | ||
"encoding/binary" | ||
"errors" | ||
"fmt" | ||
avro "github.com/elodina/go-avro" | ||
) | ||
|
||
var magic_bytes = []byte{0} | ||
|
||
type KafkaAvroEncoder struct { | ||
primitiveSchemas map[string]avro.Schema | ||
schemaRegistry SchemaRegistryClient | ||
} | ||
|
||
func NewKafkaAvroEncoder(url string) *KafkaAvroEncoder { | ||
primitiveSchemas := make(map[string]avro.Schema) | ||
primitiveSchemas["Null"] = createPrimitiveSchema("null") | ||
primitiveSchemas["Boolean"] = createPrimitiveSchema("boolean") | ||
primitiveSchemas["Int"] = createPrimitiveSchema("int") | ||
primitiveSchemas["Long"] = createPrimitiveSchema("long") | ||
primitiveSchemas["Float"] = createPrimitiveSchema("float") | ||
primitiveSchemas["Double"] = createPrimitiveSchema("double") | ||
primitiveSchemas["String"] = createPrimitiveSchema("string") | ||
primitiveSchemas["Bytes"] = createPrimitiveSchema("bytes") | ||
|
||
return &KafkaAvroEncoder{ | ||
schemaRegistry: NewCachedSchemaRegistryClient(url), | ||
primitiveSchemas: primitiveSchemas, | ||
} | ||
} | ||
|
||
func (this *KafkaAvroEncoder) Encode(obj interface{}) ([]byte, error) { | ||
if obj == nil { | ||
return nil, nil | ||
} | ||
|
||
schema := this.getSchema(obj) | ||
subject := schema.GetName() + "-value" | ||
id, err := this.schemaRegistry.Register(subject, schema) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
buffer := &bytes.Buffer{} | ||
buffer.Write(magic_bytes) | ||
idSlice := make([]byte, 4) | ||
binary.BigEndian.PutUint32(idSlice, uint32(id)) | ||
buffer.Write(idSlice) | ||
|
||
enc := avro.NewBinaryEncoder(buffer) | ||
var writer avro.DatumWriter | ||
if _, ok := obj.(*avro.GenericRecord); ok { | ||
writer = avro.NewGenericDatumWriter() | ||
} else { | ||
writer = avro.NewSpecificDatumWriter() | ||
} | ||
writer.SetSchema(schema) | ||
writer.Write(obj, enc) | ||
|
||
return buffer.Bytes(), nil | ||
} | ||
|
||
func (this *KafkaAvroEncoder) getSchema(obj interface{}) avro.Schema { | ||
if obj == nil { | ||
return this.primitiveSchemas["Null"] | ||
} | ||
|
||
switch t := obj.(type) { | ||
case bool: | ||
return this.primitiveSchemas["Boolean"] | ||
case int32: | ||
return this.primitiveSchemas["Int"] | ||
case int64: | ||
return this.primitiveSchemas["Long"] | ||
case float32: | ||
return this.primitiveSchemas["Float"] | ||
case float64: | ||
return this.primitiveSchemas["Double"] | ||
case string: | ||
return this.primitiveSchemas["String"] | ||
case []byte: | ||
return this.primitiveSchemas["Bytes"] | ||
case avro.AvroRecord: | ||
return t.Schema() | ||
default: | ||
panic("Unsupported Avro type. Supported types are nil, bool, int32, int64, float32, float64, string, []byte and AvroRecord") | ||
} | ||
} | ||
|
||
func createPrimitiveSchema(schemaType string) avro.Schema { | ||
schema, err := avro.ParseSchema(fmt.Sprintf(`{"type" : "%s" }`, schemaType)) | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
return schema | ||
} | ||
|
||
type KafkaAvroDecoder struct { | ||
schemaRegistry SchemaRegistryClient | ||
} | ||
|
||
func NewKafkaAvroDecoder(url string) *KafkaAvroDecoder { | ||
return &KafkaAvroDecoder{ | ||
schemaRegistry: NewCachedSchemaRegistryClient(url), | ||
} | ||
} | ||
|
||
func (this *KafkaAvroDecoder) Decode(bytes []byte) (interface{}, error) { | ||
if bytes == nil { | ||
return nil, nil | ||
} else { | ||
if bytes[0] != 0 { | ||
return nil, errors.New("Unknown magic byte!") | ||
} | ||
id := int32(binary.BigEndian.Uint32(bytes[1:])) | ||
schema, err := this.schemaRegistry.GetByID(id) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if schema.Type() == avro.Bytes { | ||
return bytes[5:], nil | ||
} else { | ||
reader := avro.NewGenericDatumReader() | ||
reader.SetSchema(schema) | ||
value := avro.NewGenericRecord(schema) | ||
err := reader.Read(value, avro.NewBinaryDecoder(bytes[5:])) | ||
|
||
return value, err | ||
} | ||
} | ||
} | ||
|
||
func (this *KafkaAvroDecoder) DecodeSpecific(bytes []byte, value interface{}) error { | ||
if bytes == nil { | ||
return nil | ||
} else { | ||
if bytes[0] != 0 { | ||
return errors.New("Unknown magic byte!") | ||
} | ||
id := int32(binary.BigEndian.Uint32(bytes[1:])) | ||
schema, err := this.schemaRegistry.GetByID(id) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
reader := avro.NewSpecificDatumReader() | ||
reader.SetSchema(schema) | ||
return reader.Read(value, avro.NewBinaryDecoder(bytes[5:])) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. */ | ||
|
||
package avro | ||
|
||
import ( | ||
"github.com/elodina/go-avro" | ||
"reflect" | ||
"testing" | ||
) | ||
|
||
const ( | ||
schemaRepositoryUrl = "http://localhost:8081" | ||
rawMetricsSchema = `{"namespace": "net.elodina.kafka.metrics","type": "record","name": "Timings","fields": [{"name": "id", "type": "long"},{"name": "timings", "type": {"type":"array", "items": "long"} }]}` | ||
) | ||
|
||
func TestAvroKafkaEncoderDecoder(t *testing.T) { | ||
encoder := NewKafkaAvroEncoder(schemaRepositoryUrl) | ||
|
||
schema, err := avro.ParseSchema(rawMetricsSchema) | ||
assert(t, err, nil) | ||
|
||
record := avro.NewGenericRecord(schema) | ||
record.Set("id", int64(3)) | ||
record.Set("timings", []int64{123456, 654321}) | ||
|
||
bytes, err := encoder.Encode(record) | ||
assert(t, err, nil) | ||
|
||
decoder := NewKafkaAvroDecoder(schemaRepositoryUrl) | ||
decoded, err := decoder.Decode(bytes) | ||
assert(t, err, nil) | ||
|
||
decodedRecord, ok := decoded.(*avro.GenericRecord) | ||
assert(t, ok, true) | ||
|
||
assert(t, decodedRecord.Get("id"), record.Get("id")) | ||
assert(t, decodedRecord.Get("timings"), []interface{}{int64(123456), int64(654321)}) | ||
} | ||
|
||
func assert(t *testing.T, actual interface{}, expected interface{}) { | ||
if !reflect.DeepEqual(actual, expected) { | ||
t.Errorf("Expected %v, actual %v", expected, actual) | ||
} | ||
} | ||
|
||
func assertNot(t *testing.T, actual interface{}, expected interface{}) { | ||
if reflect.DeepEqual(actual, expected) { | ||
t.Errorf("%v should not be %v", actual, expected) | ||
} | ||
} |
Oops, something went wrong.