Compare commits
No commits in common. "main" and "v0.1.1" have entirely different histories.
9 changed files with 100 additions and 367 deletions
34
address.go
34
address.go
|
|
@ -1,34 +0,0 @@
|
||||||
package rabbit
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
"fmt"
|
|
||||||
"net/url"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Address struct {
|
|
||||||
Username string
|
|
||||||
Password string
|
|
||||||
Host string
|
|
||||||
Port uint16
|
|
||||||
Vhost string
|
|
||||||
}
|
|
||||||
|
|
||||||
func (a *Address) makeAddr() (string, error) {
|
|
||||||
if a.Host == "" {
|
|
||||||
return "", errors.New("no host provided")
|
|
||||||
}
|
|
||||||
|
|
||||||
if a.Vhost == "" {
|
|
||||||
return "", errors.New("no vhost provided")
|
|
||||||
}
|
|
||||||
|
|
||||||
//"amqp://username:password@host:port/vhost"
|
|
||||||
return fmt.Sprintf("amqp://%v:%v@%v:%v/%v",
|
|
||||||
url.QueryEscape(a.Username),
|
|
||||||
url.QueryEscape(a.Password),
|
|
||||||
a.Host,
|
|
||||||
a.Port,
|
|
||||||
url.PathEscape(a.Vhost),
|
|
||||||
), nil
|
|
||||||
}
|
|
||||||
97
consumer.go
97
consumer.go
|
|
@ -3,111 +3,52 @@ package rabbit
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
amqp "github.com/rabbitmq/amqp091-go"
|
amqp "github.com/rabbitmq/amqp091-go"
|
||||||
"golang.org/x/time/rate"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Consumer interface {
|
func runConsumer(ctx context.Context, queue *Client, msgCh chan []byte) {
|
||||||
Start(ctx context.Context, chanLen uint) <-chan []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
type consumeHandler struct {
|
|
||||||
client *Client
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *consumeHandler) Start(ctx context.Context, chanLen uint) <-chan []byte {
|
|
||||||
msgCh := make(chan []byte, chanLen)
|
|
||||||
go runConsumer(ctx, c.client, msgCh)
|
|
||||||
|
|
||||||
return msgCh
|
|
||||||
}
|
|
||||||
|
|
||||||
func runConsumer(ctx context.Context, client *Client, msgCh chan []byte) {
|
|
||||||
runCtx, cancel := context.WithCancel(ctx)
|
runCtx, cancel := context.WithCancel(ctx)
|
||||||
defer cancel()
|
defer cancel()
|
||||||
|
|
||||||
limiter := rate.NewLimiter(rate.Every(client.opts.consumerRateLimit), client.opts.consumerBurstSize)
|
deliveries, err := queue.Consume()
|
||||||
|
|
||||||
reconnectSignal := make(chan struct{}, 1)
|
|
||||||
reconnectTrigger := func() {
|
|
||||||
select {
|
|
||||||
case reconnectSignal <- struct{}{}:
|
|
||||||
default:
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// initial consume
|
|
||||||
deliveries, err := client.consume()
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
client.logger.Printf("Could not start consuming: %s\n", err)
|
log.Printf("Could not start consuming: %s\n", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
chClosedCh := make(chan *amqp.Error, 1)
|
chClosedCh := make(chan *amqp.Error, 1)
|
||||||
client.Channel.NotifyClose(chClosedCh)
|
queue.Channel.NotifyClose(chClosedCh)
|
||||||
|
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
|
|
||||||
case <-runCtx.Done():
|
case <-runCtx.Done():
|
||||||
err = client.Close()
|
err = queue.Close()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
client.logger.Printf("Close failed: %s\n", err)
|
log.Printf("Close failed: %s\n", err)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
||||||
case <-reconnectSignal:
|
|
||||||
select {
|
|
||||||
case <-runCtx.Done():
|
|
||||||
return
|
|
||||||
case <-time.After(client.opts.reconnectDelay):
|
|
||||||
}
|
|
||||||
|
|
||||||
deliveries, err = client.consume()
|
|
||||||
if err != nil {
|
|
||||||
client.logger.Printf("Consume reconnect failed, retry: %s\n", err)
|
|
||||||
reconnectTrigger()
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
// re-create closing chan
|
|
||||||
chClosedCh = make(chan *amqp.Error, 1)
|
|
||||||
client.Channel.NotifyClose(chClosedCh)
|
|
||||||
client.logger.Println("Consume reconnect success")
|
|
||||||
|
|
||||||
case amqErr := <-chClosedCh:
|
case amqErr := <-chClosedCh:
|
||||||
client.logger.Printf("AMQP Channel closed due to: %s Reconnecting...\n", amqErr)
|
log.Printf("AMQP Channel closed due to: %s\n", amqErr)
|
||||||
reconnectTrigger()
|
|
||||||
|
|
||||||
case delivery, ok := <-deliveries:
|
deliveries, err = queue.Consume()
|
||||||
if !ok {
|
if err != nil {
|
||||||
client.logger.Println("Deliveries channel closed unexpectedly")
|
log.Println("Error trying to consume, will try again")
|
||||||
reconnectTrigger()
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
if err = limiter.Wait(runCtx); err != nil {
|
chClosedCh = make(chan *amqp.Error, 1)
|
||||||
client.logger.Printf("Wait limiter failed: %s\n", err)
|
queue.Channel.NotifyClose(chClosedCh)
|
||||||
}
|
|
||||||
|
|
||||||
select {
|
case delivery := <-deliveries:
|
||||||
case <-runCtx.Done():
|
msgCh <- delivery.Body
|
||||||
if err = delivery.Nack(false, true); err != nil {
|
log.Printf("Received message: %s\n", delivery.Body)
|
||||||
client.logger.Printf("Error nacking message: %s\n", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
err = client.Close()
|
|
||||||
if err != nil {
|
|
||||||
client.logger.Printf("Close failed: %s\n", err)
|
|
||||||
}
|
|
||||||
return
|
|
||||||
|
|
||||||
case msgCh <- delivery.Body:
|
|
||||||
client.logger.Printf("Received message: %s\n", delivery.Body)
|
|
||||||
if err = delivery.Ack(false); err != nil {
|
if err = delivery.Ack(false); err != nil {
|
||||||
client.logger.Printf("Error acknowledging message: %s\n", err)
|
log.Printf("Error acknowledging message: %s\n", err)
|
||||||
}
|
}
|
||||||
}
|
<-time.After(time.Second * 2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -3,5 +3,3 @@ module repo.nqws.ru/merch-tracker-v2/mt-rabbit
|
||||||
go 1.25.0
|
go 1.25.0
|
||||||
|
|
||||||
require github.com/rabbitmq/amqp091-go v1.10.0
|
require github.com/rabbitmq/amqp091-go v1.10.0
|
||||||
|
|
||||||
require golang.org/x/time v0.14.0 // indirect
|
|
||||||
|
|
|
||||||
2
go.sum
2
go.sum
|
|
@ -2,5 +2,3 @@ github.com/rabbitmq/amqp091-go v1.10.0 h1:STpn5XsHlHGcecLmMFCtg7mqq0RnD+zFr4uzuk
|
||||||
github.com/rabbitmq/amqp091-go v1.10.0/go.mod h1:Hy4jKW5kQART1u+JkDTF9YYOQUHXqMuhrgxOEeS7G4o=
|
github.com/rabbitmq/amqp091-go v1.10.0/go.mod h1:Hy4jKW5kQART1u+JkDTF9YYOQUHXqMuhrgxOEeS7G4o=
|
||||||
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
|
go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto=
|
||||||
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
|
go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE=
|
||||||
golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI=
|
|
||||||
golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4=
|
|
||||||
|
|
|
||||||
124
handler.go
124
handler.go
|
|
@ -1,10 +1,9 @@
|
||||||
package rabbit
|
package rabbit
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
|
||||||
amqp "github.com/rabbitmq/amqp091-go"
|
amqp "github.com/rabbitmq/amqp091-go"
|
||||||
"io"
|
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
@ -13,7 +12,7 @@ import (
|
||||||
|
|
||||||
type Client struct {
|
type Client struct {
|
||||||
mutex *sync.Mutex
|
mutex *sync.Mutex
|
||||||
queueOptions *QueueOpts
|
queueName string
|
||||||
logger *log.Logger
|
logger *log.Logger
|
||||||
connection *amqp.Connection
|
connection *amqp.Connection
|
||||||
Channel *amqp.Channel
|
Channel *amqp.Channel
|
||||||
|
|
@ -22,109 +21,50 @@ type Client struct {
|
||||||
notifyChanClose chan *amqp.Error
|
notifyChanClose chan *amqp.Error
|
||||||
notifyConfirm chan amqp.Confirmation
|
notifyConfirm chan amqp.Confirmation
|
||||||
isReady bool
|
isReady bool
|
||||||
opts options
|
|
||||||
connected chan struct{}
|
|
||||||
}
|
|
||||||
|
|
||||||
type options struct {
|
|
||||||
connectTimeout time.Duration
|
|
||||||
reconnectDelay time.Duration
|
reconnectDelay time.Duration
|
||||||
reInitDelay time.Duration
|
reInitDelay time.Duration
|
||||||
resendDelay time.Duration
|
resendDelay time.Duration
|
||||||
consumerRateLimit time.Duration
|
|
||||||
consumerBurstSize int
|
|
||||||
logger *log.Logger
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type QueueOpts struct {
|
//const (
|
||||||
|
// reconnectDelay = 5 * time.Second
|
||||||
|
// reInitDelay = 2 * time.Second
|
||||||
|
// resendDelay = 5 * time.Second
|
||||||
|
//)
|
||||||
|
|
||||||
|
type Deps struct {
|
||||||
|
ReconnectDelay time.Duration
|
||||||
|
ReInitDelay time.Duration
|
||||||
|
ResendDelay time.Duration
|
||||||
QueueName string
|
QueueName string
|
||||||
Durable bool
|
Addr string
|
||||||
AutoDelete bool
|
|
||||||
Exclusive bool
|
|
||||||
NoWait bool
|
|
||||||
Args amqp.Table
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewClient(address Address, queueOpts QueueOpts, opts ...Option) (*Client, error) {
|
var (
|
||||||
l := log.New(os.Stdout, "", log.LstdFlags)
|
errNotConnected = errors.New("not connected to a server")
|
||||||
|
errAlreadyClosed = errors.New("already closed: not connected to the server")
|
||||||
addr, err := address.makeAddr()
|
errShutdown = errors.New("client is shutting down")
|
||||||
if err != nil {
|
)
|
||||||
return nil, errors.Join(errBadAddr, err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if queueOpts.QueueName == "" {
|
|
||||||
l.Fatal(errNoQueue)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
func NewClient(deps Deps) *Client {
|
||||||
client := Client{
|
client := Client{
|
||||||
mutex: &sync.Mutex{},
|
mutex: &sync.Mutex{},
|
||||||
queueOptions: &queueOpts,
|
logger: log.New(os.Stdout, "", log.LstdFlags),
|
||||||
|
queueName: deps.QueueName,
|
||||||
done: make(chan bool),
|
done: make(chan bool),
|
||||||
connected: make(chan struct{}),
|
reconnectDelay: deps.ReconnectDelay,
|
||||||
logger: l,
|
reInitDelay: deps.ReInitDelay,
|
||||||
|
resendDelay: deps.ResendDelay,
|
||||||
}
|
}
|
||||||
|
|
||||||
o := options{
|
go client.handleReconnect(deps.Addr)
|
||||||
connectTimeout: 15 * time.Second,
|
|
||||||
reconnectDelay: 5 * time.Second,
|
return &client
|
||||||
reInitDelay: 2 * time.Second,
|
|
||||||
resendDelay: 5 * time.Second,
|
|
||||||
consumerRateLimit: time.Millisecond * 500,
|
|
||||||
consumerBurstSize: 10,
|
|
||||||
logger: log.New(io.Discard, "", 0),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, opt := range opts {
|
func StartConsumer(ctx context.Context, client *Client, chanLen int) chan []byte {
|
||||||
opt(&o)
|
msgCh := make(chan []byte, chanLen)
|
||||||
}
|
go runConsumer(ctx, client, msgCh)
|
||||||
|
|
||||||
client.logger = o.logger
|
return msgCh
|
||||||
|
|
||||||
if err = client.connectAndSignal(addr, o.connectTimeout); err != nil {
|
|
||||||
return nil, fmt.Errorf("failed to connect: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
go client.handleReconnect(addr)
|
|
||||||
|
|
||||||
return &client, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewPublisher(client *Client) Publisher {
|
|
||||||
return &pubHandler{client: client}
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewConsumer(client *Client) Consumer {
|
|
||||||
return &consumeHandler{client: client}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (c *Client) connectAndSignal(addr string, timeout time.Duration) error {
|
|
||||||
type result struct {
|
|
||||||
conn *amqp.Connection
|
|
||||||
err error
|
|
||||||
}
|
|
||||||
resCh := make(chan result, 1)
|
|
||||||
|
|
||||||
go func() {
|
|
||||||
conn, err := amqp.Dial(addr)
|
|
||||||
resCh <- result{conn, err}
|
|
||||||
}()
|
|
||||||
|
|
||||||
select {
|
|
||||||
case <-time.After(timeout):
|
|
||||||
return fmt.Errorf("connection timeout after %v", timeout)
|
|
||||||
case res := <-resCh:
|
|
||||||
if res.err != nil {
|
|
||||||
return res.err
|
|
||||||
}
|
|
||||||
|
|
||||||
c.changeConnection(res.conn)
|
|
||||||
if err := c.init(res.conn); err != nil {
|
|
||||||
res.conn.Close()
|
|
||||||
return fmt.Errorf("init failed: %w", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
close(c.connected)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
11
messages.go
11
messages.go
|
|
@ -1,11 +0,0 @@
|
||||||
package rabbit
|
|
||||||
|
|
||||||
import "errors"
|
|
||||||
|
|
||||||
var (
|
|
||||||
errBadAddr = errors.New("bad address")
|
|
||||||
errNoQueue = errors.New("no queue")
|
|
||||||
errNotConnected = errors.New("not connected to a server")
|
|
||||||
errAlreadyClosed = errors.New("already closed: not connected to the server")
|
|
||||||
errShutdown = errors.New("client is shutting down")
|
|
||||||
)
|
|
||||||
60
options.go
60
options.go
|
|
@ -1,60 +0,0 @@
|
||||||
package rabbit
|
|
||||||
|
|
||||||
import (
|
|
||||||
"io"
|
|
||||||
"log"
|
|
||||||
"os"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Option func(*options)
|
|
||||||
|
|
||||||
func WithConnectTimeout(t time.Duration) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.connectTimeout = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithReconnectDelay(t time.Duration) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.reconnectDelay = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithReInitDelay(t time.Duration) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.reInitDelay = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithResendDelay(t time.Duration) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.resendDelay = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithConsumerRateLimit(t time.Duration) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.consumerRateLimit = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithConsumerBurstSize(t int) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
op.consumerBurstSize = t
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithLogger(l *log.Logger) Option {
|
|
||||||
return func(op *options) { op.logger = l }
|
|
||||||
}
|
|
||||||
|
|
||||||
func WithLogging(enabled bool) Option {
|
|
||||||
return func(op *options) {
|
|
||||||
if enabled {
|
|
||||||
op.logger = log.New(os.Stdout, "", log.LstdFlags)
|
|
||||||
} else {
|
|
||||||
op.logger = log.New(io.Discard, "", 0)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
65
publisher.go
65
publisher.go
|
|
@ -1,65 +0,0 @@
|
||||||
package rabbit
|
|
||||||
|
|
||||||
import (
|
|
||||||
"context"
|
|
||||||
"errors"
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Publisher interface {
|
|
||||||
Start(ctx context.Context, chanLen uint) chan<- []byte
|
|
||||||
}
|
|
||||||
|
|
||||||
type pubHandler struct {
|
|
||||||
client *Client
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *pubHandler) Start(ctx context.Context, chanLen uint) chan<- []byte {
|
|
||||||
ch := make(chan []byte, chanLen)
|
|
||||||
go func() {
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-ctx.Done():
|
|
||||||
for msg := range ch {
|
|
||||||
if err := p.push(msg); err != nil {
|
|
||||||
p.client.logger.Printf("Error publishing message (shutdown): %s", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
p.client.logger.Println("Publisher stopped")
|
|
||||||
return
|
|
||||||
|
|
||||||
case msg := <-ch:
|
|
||||||
if err := p.push(msg); err != nil {
|
|
||||||
p.client.logger.Printf("Error publishing message: %s", err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
return ch
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *pubHandler) push(data []byte) error {
|
|
||||||
p.client.mutex.Lock()
|
|
||||||
if !p.client.isReady {
|
|
||||||
p.client.mutex.Unlock()
|
|
||||||
return errors.New("failed to push: not connected")
|
|
||||||
}
|
|
||||||
p.client.mutex.Unlock()
|
|
||||||
for {
|
|
||||||
err := p.client.unsafePush(data)
|
|
||||||
if err != nil {
|
|
||||||
p.client.logger.Println("Push failed. Retrying...")
|
|
||||||
select {
|
|
||||||
case <-p.client.done:
|
|
||||||
return errShutdown
|
|
||||||
case <-time.After(p.client.opts.resendDelay):
|
|
||||||
}
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
confirm := <-p.client.notifyConfirm
|
|
||||||
if confirm.Ack {
|
|
||||||
p.client.logger.Printf("Push confirmed [%d]!", confirm.DeliveryTag)
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
58
service.go
58
service.go
|
|
@ -2,12 +2,17 @@ package rabbit
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
amqp "github.com/rabbitmq/amqp091-go"
|
amqp "github.com/rabbitmq/amqp091-go"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Client) handleReconnect(addr string) {
|
func (c *Client) handleReconnect(addr string) {
|
||||||
for {
|
for {
|
||||||
|
c.mutex.Lock()
|
||||||
|
c.isReady = false
|
||||||
|
c.mutex.Unlock()
|
||||||
|
|
||||||
c.logger.Println("Connecting to server...")
|
c.logger.Println("Connecting to server...")
|
||||||
|
|
||||||
conn, err := c.connect(addr)
|
conn, err := c.connect(addr)
|
||||||
|
|
@ -17,7 +22,7 @@ func (c *Client) handleReconnect(addr string) {
|
||||||
select {
|
select {
|
||||||
case <-c.done:
|
case <-c.done:
|
||||||
return
|
return
|
||||||
case <-time.After(c.opts.reconnectDelay):
|
case <-time.After(c.reconnectDelay):
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
@ -41,6 +46,10 @@ func (c *Client) connect(addr string) (*amqp.Connection, error) {
|
||||||
|
|
||||||
func (c *Client) handleReInit(conn *amqp.Connection) bool {
|
func (c *Client) handleReInit(conn *amqp.Connection) bool {
|
||||||
for {
|
for {
|
||||||
|
c.mutex.Lock()
|
||||||
|
c.isReady = false
|
||||||
|
c.mutex.Unlock()
|
||||||
|
|
||||||
if err := c.init(conn); err != nil {
|
if err := c.init(conn); err != nil {
|
||||||
c.logger.Printf("Failed to initialize connection: %s", err)
|
c.logger.Printf("Failed to initialize connection: %s", err)
|
||||||
|
|
||||||
|
|
@ -50,7 +59,7 @@ func (c *Client) handleReInit(conn *amqp.Connection) bool {
|
||||||
case <-c.notifyConnClose:
|
case <-c.notifyConnClose:
|
||||||
c.logger.Println("Connection closed. Reconnecting...")
|
c.logger.Println("Connection closed. Reconnecting...")
|
||||||
return false
|
return false
|
||||||
case <-time.After(c.opts.reInitDelay):
|
case <-time.After(c.reInitDelay):
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
@ -78,16 +87,7 @@ func (c *Client) init(conn *amqp.Connection) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
//_, err = ch.QueueDeclare(c.queueName, false, false, false, false, nil)
|
_, err = ch.QueueDeclare(c.queueName, false, false, false, false, nil)
|
||||||
_, err = ch.QueueDeclare(
|
|
||||||
c.queueOptions.QueueName,
|
|
||||||
c.queueOptions.Durable,
|
|
||||||
c.queueOptions.AutoDelete,
|
|
||||||
c.queueOptions.Exclusive,
|
|
||||||
c.queueOptions.NoWait,
|
|
||||||
c.queueOptions.Args,
|
|
||||||
)
|
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
@ -115,7 +115,33 @@ func (c *Client) changeChannel(channel *amqp.Channel) {
|
||||||
c.Channel.NotifyPublish(c.notifyConfirm)
|
c.Channel.NotifyPublish(c.notifyConfirm)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) unsafePush(data []byte) error {
|
func (c *Client) Push(data []byte) error {
|
||||||
|
c.mutex.Lock()
|
||||||
|
if !c.isReady {
|
||||||
|
c.mutex.Unlock()
|
||||||
|
return errors.New("failed to push: not connected")
|
||||||
|
}
|
||||||
|
c.mutex.Unlock()
|
||||||
|
for {
|
||||||
|
err := c.UnsafePush(data)
|
||||||
|
if err != nil {
|
||||||
|
c.logger.Println("Push failed. Retrying...")
|
||||||
|
select {
|
||||||
|
case <-c.done:
|
||||||
|
return errShutdown
|
||||||
|
case <-time.After(c.resendDelay):
|
||||||
|
}
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
confirm := <-c.notifyConfirm
|
||||||
|
if confirm.Ack {
|
||||||
|
c.logger.Printf("Push confirmed [%d]!", confirm.DeliveryTag)
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (c *Client) UnsafePush(data []byte) error {
|
||||||
c.mutex.Lock()
|
c.mutex.Lock()
|
||||||
if !c.isReady {
|
if !c.isReady {
|
||||||
c.mutex.Unlock()
|
c.mutex.Unlock()
|
||||||
|
|
@ -129,7 +155,7 @@ func (c *Client) unsafePush(data []byte) error {
|
||||||
return c.Channel.PublishWithContext(
|
return c.Channel.PublishWithContext(
|
||||||
ctx,
|
ctx,
|
||||||
"",
|
"",
|
||||||
c.queueOptions.QueueName,
|
c.queueName,
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
amqp.Publishing{
|
amqp.Publishing{
|
||||||
|
|
@ -139,7 +165,7 @@ func (c *Client) unsafePush(data []byte) error {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Client) consume() (<-chan amqp.Delivery, error) {
|
func (c *Client) Consume() (<-chan amqp.Delivery, error) {
|
||||||
c.mutex.Lock()
|
c.mutex.Lock()
|
||||||
if !c.isReady {
|
if !c.isReady {
|
||||||
c.mutex.Unlock()
|
c.mutex.Unlock()
|
||||||
|
|
@ -156,7 +182,7 @@ func (c *Client) consume() (<-chan amqp.Delivery, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.Channel.Consume(
|
return c.Channel.Consume(
|
||||||
c.queueOptions.QueueName,
|
c.queueName,
|
||||||
"",
|
"",
|
||||||
false,
|
false,
|
||||||
false,
|
false,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue