gh-ost/vendor/github.com/siddontang/go-mysql/replication/binlogstreamer.go

62 lines
1.2 KiB
Go
Raw Normal View History

2016-06-16 09:15:56 +00:00
package replication
import (
2017-02-12 11:13:54 +00:00
"golang.org/x/net/context"
2016-06-16 09:15:56 +00:00
"github.com/juju/errors"
2017-02-12 11:13:54 +00:00
"github.com/ngaut/log"
2016-06-16 09:15:56 +00:00
)
var (
2017-02-12 11:13:54 +00:00
ErrNeedSyncAgain = errors.New("Last sync error or closed, try sync and get event again")
ErrSyncClosed = errors.New("Sync was closed")
2016-06-16 09:15:56 +00:00
)
2017-02-12 11:13:54 +00:00
// BinlogStreamer gets the streaming event.
2016-06-16 09:15:56 +00:00
type BinlogStreamer struct {
ch chan *BinlogEvent
ech chan error
err error
}
2017-02-12 11:13:54 +00:00
// GetEvent gets the binlog event one by one, it will block until Syncer receives any events from MySQL
// or meets a sync error. You can pass a context (like Cancel or Timeout) to break the block.
func (s *BinlogStreamer) GetEvent(ctx context.Context) (*BinlogEvent, error) {
2016-06-16 09:15:56 +00:00
if s.err != nil {
return nil, ErrNeedSyncAgain
}
select {
case c := <-s.ch:
return c, nil
case s.err = <-s.ech:
return nil, s.err
2017-02-12 11:13:54 +00:00
case <-ctx.Done():
return nil, ctx.Err()
2016-06-16 09:15:56 +00:00
}
}
func (s *BinlogStreamer) close() {
s.closeWithError(ErrSyncClosed)
}
func (s *BinlogStreamer) closeWithError(err error) {
if err == nil {
err = ErrSyncClosed
}
2017-02-12 11:13:54 +00:00
log.Errorf("close sync with err: %v", err)
2016-06-16 09:15:56 +00:00
select {
case s.ech <- err:
default:
}
}
func newBinlogStreamer() *BinlogStreamer {
s := new(BinlogStreamer)
2017-02-12 11:13:54 +00:00
s.ch = make(chan *BinlogEvent, 10240)
2016-06-16 09:15:56 +00:00
s.ech = make(chan error, 4)
return s
}