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
|
package server
import "fmt"
type Exchange interface {
route(route string, d *Delivery) error
addBinding(route string, q *Queue)
delBinding(route string)
}
type TopicExchange struct {
name string
bindings map[string]*Queue
}
func NewTopicExchange(name string) *TopicExchange {
return &TopicExchange{
name: name,
bindings: make(map[string]*Queue),
}
}
func (t *TopicExchange) addBinding(route string, q *Queue) {
t.bindings[route] = q
}
func (t *TopicExchange) delBinding(route string) {
delete(t.bindings, route)
}
func (t *TopicExchange) route(route string, d *Delivery) error {
for bname, q := range t.bindings {
if topicMatch(bname, route) {
q.data <- d
return nil
}
}
// The route doesnt match any binding, then will be discarded
return nil
}
type DirectExchange struct {
name string
bindings map[string]*Queue
}
func NewDirectExchange(name string) *DirectExchange {
return &DirectExchange{
name: name,
bindings: make(map[string]*Queue),
}
}
func (d *DirectExchange) addBinding(route string, q *Queue) {
if d.bindings == nil {
d.bindings = make(map[string]*Queue)
}
d.bindings[route] = q
}
func (d *DirectExchange) delBinding(route string) {
delete(d.bindings, route)
}
func (d *DirectExchange) route(route string, delivery *Delivery) error {
if q, ok := d.bindings[route]; ok {
q.data <- delivery
return nil
}
return fmt.Errorf("No bindings to route: %s", route)
}
|