1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
package sarama
type topicPartitionAssignment struct {
Topic string
Partition int32
}
type StickyAssignorUserData interface {
partitions() []topicPartitionAssignment
hasGeneration() bool
generation() int
}
// StickyAssignorUserDataV0 holds topic partition information for an assignment
type StickyAssignorUserDataV0 struct {
Topics map[string][]int32
topicPartitions []topicPartitionAssignment
}
func (m *StickyAssignorUserDataV0) encode(pe packetEncoder) error {
if err := pe.putArrayLength(len(m.Topics)); err != nil {
return err
}
for topic, partitions := range m.Topics {
if err := pe.putString(topic); err != nil {
return err
}
if err := pe.putInt32Array(partitions); err != nil {
return err
}
}
return nil
}
func (m *StickyAssignorUserDataV0) decode(pd packetDecoder) (err error) {
var topicLen int
if topicLen, err = pd.getArrayLength(); err != nil {
return
}
m.Topics = make(map[string][]int32, topicLen)
for i := 0; i < topicLen; i++ {
var topic string
if topic, err = pd.getString(); err != nil {
return
}
if m.Topics[topic], err = pd.getInt32Array(); err != nil {
return
}
}
m.topicPartitions = populateTopicPartitions(m.Topics)
return nil
}
func (m *StickyAssignorUserDataV0) partitions() []topicPartitionAssignment { return m.topicPartitions }
func (m *StickyAssignorUserDataV0) hasGeneration() bool { return false }
func (m *StickyAssignorUserDataV0) generation() int { return defaultGeneration }
// StickyAssignorUserDataV1 holds topic partition information for an assignment
type StickyAssignorUserDataV1 struct {
Topics map[string][]int32
Generation int32
topicPartitions []topicPartitionAssignment
}
func (m *StickyAssignorUserDataV1) encode(pe packetEncoder) error {
if err := pe.putArrayLength(len(m.Topics)); err != nil {
return err
}
for topic, partitions := range m.Topics {
if err := pe.putString(topic); err != nil {
return err
}
if err := pe.putInt32Array(partitions); err != nil {
return err
}
}
pe.putInt32(m.Generation)
return nil
}
func (m *StickyAssignorUserDataV1) decode(pd packetDecoder) (err error) {
var topicLen int
if topicLen, err = pd.getArrayLength(); err != nil {
return
}
m.Topics = make(map[string][]int32, topicLen)
for i := 0; i < topicLen; i++ {
var topic string
if topic, err = pd.getString(); err != nil {
return
}
if m.Topics[topic], err = pd.getInt32Array(); err != nil {
return
}
}
m.Generation, err = pd.getInt32()
if err != nil {
return err
}
m.topicPartitions = populateTopicPartitions(m.Topics)
return nil
}
func (m *StickyAssignorUserDataV1) partitions() []topicPartitionAssignment { return m.topicPartitions }
func (m *StickyAssignorUserDataV1) hasGeneration() bool { return true }
func (m *StickyAssignorUserDataV1) generation() int { return int(m.Generation) }
func populateTopicPartitions(topics map[string][]int32) []topicPartitionAssignment {
topicPartitions := make([]topicPartitionAssignment, 0)
for topic, partitions := range topics {
for _, partition := range partitions {
topicPartitions = append(topicPartitions, topicPartitionAssignment{Topic: topic, Partition: partition})
}
}
return topicPartitions
}
|