packet_encoder.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. package sarama
  2. import "github.com/rcrowley/go-metrics"
  3. // PacketEncoder is the interface providing helpers for writing with Kafka's encoding rules.
  4. // Types implementing Encoder only need to worry about calling methods like PutString,
  5. // not about how a string is represented in Kafka.
  6. type packetEncoder interface {
  7. // Primitives
  8. putInt8(in int8)
  9. putInt16(in int16)
  10. putInt32(in int32)
  11. putInt64(in int64)
  12. putArrayLength(in int) error
  13. // Collections
  14. putBytes(in []byte) error
  15. putRawBytes(in []byte) error
  16. putString(in string) error
  17. putStringArray(in []string) error
  18. putInt32Array(in []int32) error
  19. putInt64Array(in []int64) error
  20. // Provide the current offset to record the batch size metric
  21. offset() int
  22. // Stacks, see PushEncoder
  23. push(in pushEncoder)
  24. pop() error
  25. // To record metrics when provided
  26. metricRegistry() metrics.Registry
  27. }
  28. // PushEncoder is the interface for encoding fields like CRCs and lengths where the value
  29. // of the field depends on what is encoded after it in the packet. Start them with PacketEncoder.Push() where
  30. // the actual value is located in the packet, then PacketEncoder.Pop() them when all the bytes they
  31. // depend upon have been written.
  32. type pushEncoder interface {
  33. // Saves the offset into the input buffer as the location to actually write the calculated value when able.
  34. saveOffset(in int)
  35. // Returns the length of data to reserve for the output of this encoder (eg 4 bytes for a CRC32).
  36. reserveLength() int
  37. // Indicates that all required data is now available to calculate and write the field.
  38. // SaveOffset is guaranteed to have been called first. The implementation should write ReserveLength() bytes
  39. // of data to the saved offset, based on the data between the saved offset and curOffset.
  40. run(curOffset int, buf []byte) error
  41. }