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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
|
package amqp
import (
"errors"
"github.com/NeowayLabs/wabbit"
"github.com/NeowayLabs/wabbit/utils"
"github.com/streadway/amqp"
)
// Channel is a wrapper channel structure for amqp.Channel
type Channel struct {
*amqp.Channel
}
func (ch *Channel) Publish(exc, route string, msg []byte, opt wabbit.Option) error {
amqpOpt, err := utils.ConvertOpt(opt)
if err != nil {
return err
}
amqpOpt.Body = msg
return ch.Channel.Publish(
exc, // publish to an exchange
route, // routing to 0 or more queues
false, // mandatory
false, // immediate
amqpOpt,
)
}
func (ch *Channel) Confirm(noWait bool) error {
return ch.Channel.Confirm(noWait)
}
func (ch *Channel) NotifyPublish(confirm chan wabbit.Confirmation) chan wabbit.Confirmation {
amqpConfirms := ch.Channel.NotifyPublish(make(chan amqp.Confirmation, cap(confirm)))
go func() {
for c := range amqpConfirms {
confirm <- Confirmation{c}
}
close(confirm)
}()
return confirm
}
func (ch *Channel) Consume(queue, consumer string, opt wabbit.Option) (<-chan wabbit.Delivery, error) {
var (
autoAck, exclusive, noLocal, noWait bool
args amqp.Table
)
if v, ok := opt["autoAck"]; ok {
autoAck, ok = v.(bool)
if !ok {
return nil, errors.New("durable option is of type bool")
}
}
if v, ok := opt["exclusive"]; ok {
exclusive, ok = v.(bool)
if !ok {
return nil, errors.New("exclusive option is of type bool")
}
}
if v, ok := opt["noLocal"]; ok {
noLocal, ok = v.(bool)
if !ok {
return nil, errors.New("noLocal option is of type bool")
}
}
if v, ok := opt["noWait"]; ok {
noWait, ok = v.(bool)
if !ok {
return nil, errors.New("noWait option is of type bool")
}
}
if v, ok := opt["args"]; ok {
args, ok = v.(amqp.Table)
if !ok {
return nil, errors.New("args is of type amqp.Table")
}
}
amqpd, err := ch.Channel.Consume(queue, consumer, autoAck, exclusive, noLocal, noWait, args)
if err != nil {
return nil, err
}
deliveries := make(chan wabbit.Delivery)
go func() {
for d := range amqpd {
delivery := d
deliveries <- &Delivery{&delivery}
}
close(deliveries)
}()
return deliveries, nil
}
func (ch *Channel) ExchangeDeclare(name, kind string, opt wabbit.Option) error {
return ch.exchangeDeclare(name, kind, false, opt)
}
func (ch *Channel) ExchangeDeclarePassive(name, kind string, opt wabbit.Option) error {
return ch.exchangeDeclare(name, kind, true, opt)
}
func (ch *Channel) exchangeDeclare(name, kind string, passive bool, opt wabbit.Option) error {
var (
durable, autoDelete, internal, noWait bool
args amqp.Table
)
if v, ok := opt["durable"]; ok {
durable, ok = v.(bool)
if !ok {
return errors.New("durable option is of type bool")
}
}
if v, ok := opt["autoDelete"]; ok {
autoDelete, ok = v.(bool)
if !ok {
return errors.New("autoDelete option is of type bool")
}
}
if v, ok := opt["internal"]; ok {
internal, ok = v.(bool)
if !ok {
return errors.New("internal option is of type bool")
}
}
if v, ok := opt["noWait"]; ok {
noWait, ok = v.(bool)
if !ok {
return errors.New("noWait option is of type bool")
}
}
if v, ok := opt["args"]; ok {
args, ok = v.(amqp.Table)
if !ok {
return errors.New("args is of type amqp.Table")
}
}
if passive {
return ch.Channel.ExchangeDeclarePassive(name, kind, durable, autoDelete, internal, noWait, args)
}
return ch.Channel.ExchangeDeclare(name, kind, durable, autoDelete, internal, noWait, args)
}
func (ch *Channel) QueueUnbind(name, route, exchange string, _ wabbit.Option) error {
return ch.Channel.QueueUnbind(name, route, exchange, nil)
}
// QueueBind binds the route key to queue
func (ch *Channel) QueueBind(name, key, exchange string, opt wabbit.Option) error {
var (
noWait bool
args amqp.Table
)
if v, ok := opt["noWait"]; ok {
noWait, ok = v.(bool)
if !ok {
return errors.New("noWait option is of type bool")
}
}
if v, ok := opt["args"]; ok {
args, ok = v.(amqp.Table)
if !ok {
return errors.New("args is of type amqp.Table")
}
}
return ch.Channel.QueueBind(name, key, exchange, noWait, args)
}
// QueueDeclare declares a new AMQP queue
func (ch *Channel) QueueDeclare(name string, opt wabbit.Option) (wabbit.Queue, error) {
return ch.queueDeclare(name, false, opt)
}
// QueueDeclarePassive declares an existing AMQP queue
func (ch *Channel) QueueDeclarePassive(name string, opt wabbit.Option) (wabbit.Queue, error) {
return ch.queueDeclare(name, true, opt)
}
func (ch *Channel) queueDeclare(name string, passive bool, opt wabbit.Option) (wabbit.Queue, error) {
var (
durable, autoDelete, exclusive, noWait bool
args amqp.Table
)
if v, ok := opt["durable"]; ok {
durable, ok = v.(bool)
if !ok {
return nil, errors.New("durable option is of type bool")
}
}
if v, ok := opt["autoDelete"]; ok {
autoDelete, ok = v.(bool)
if !ok {
return nil, errors.New("autoDelete option is of type bool")
}
}
if v, ok := opt["exclusive"]; ok {
exclusive, ok = v.(bool)
if !ok {
return nil, errors.New("Exclusive option is of type bool")
}
}
if v, ok := opt["noWait"]; ok {
noWait, ok = v.(bool)
if !ok {
return nil, errors.New("noWait option is of type bool")
}
}
if v, ok := opt["args"]; ok {
args, ok = v.(amqp.Table)
if !ok {
return nil, errors.New("args is of type amqp.Table")
}
}
var q amqp.Queue
var err error
if passive {
q, err = ch.Channel.QueueDeclarePassive(name, durable, autoDelete, exclusive, noWait, args)
} else {
q, err = ch.Channel.QueueDeclare(name, durable, autoDelete, exclusive, noWait, args)
}
if err != nil {
return nil, err
}
return &Queue{&q}, nil
}
func (ch *Channel) QueueDelete(name string, opt wabbit.Option) (int, error) {
var (
ifUnused, ifEmpty, noWait bool
)
if v, ok := opt["ifUnused"]; ok {
ifUnused, ok = v.(bool)
if !ok {
return 0, errors.New("ifUnused option is of type bool")
}
}
if v, ok := opt["ifEmpty"]; ok {
ifEmpty, ok = v.(bool)
if !ok {
return 0, errors.New("ifEmpty option is of type bool")
}
}
if v, ok := opt["noWait"]; ok {
noWait, ok = v.(bool)
if !ok {
return 0, errors.New("noWait option is of type bool")
}
}
return ch.Channel.QueueDelete(name, ifUnused, ifEmpty, noWait)
}
// Qos controls how many bytes or messages will be handled by channel or connection.
func (ch *Channel) Qos(prefetchCount, prefetchSize int, global bool) error {
return ch.Channel.Qos(prefetchCount, prefetchSize, global)
}
// NotifyClose registers a listener for close events.
// For more information see: https://godoc.org/github.com/streadway/amqp#Channel.NotifyClose
func (ch *Channel) NotifyClose(c chan wabbit.Error) chan wabbit.Error {
amqpErr := ch.Channel.NotifyClose(make(chan *amqp.Error, cap(c)))
go func() {
for err := range amqpErr {
var ne wabbit.Error
if err != nil {
ne = utils.NewError(
err.Code,
err.Reason,
err.Server,
err.Recover,
)
} else {
ne = nil
}
c <- ne
}
close(c)
}()
return c
}
|