handler.go 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package canal
  2. import (
  3. "github.com/siddontang/go-mysql/mysql"
  4. "github.com/siddontang/go-mysql/replication"
  5. )
  6. type EventHandler interface {
  7. OnRotate(roateEvent *replication.RotateEvent) error
  8. OnDDL(nextPos mysql.Position, queryEvent *replication.QueryEvent) error
  9. OnRow(e *RowsEvent) error
  10. OnXID(nextPos mysql.Position) error
  11. OnGTID(gtid mysql.GTIDSet) error
  12. // OnPosSynced Use your own way to sync position. When force is true, sync position immediately.
  13. OnPosSynced(pos mysql.Position, force bool) error
  14. String() string
  15. }
  16. type DummyEventHandler struct {
  17. }
  18. func (h *DummyEventHandler) OnRotate(*replication.RotateEvent) error { return nil }
  19. func (h *DummyEventHandler) OnDDL(mysql.Position, *replication.QueryEvent) error {
  20. return nil
  21. }
  22. func (h *DummyEventHandler) OnRow(*RowsEvent) error { return nil }
  23. func (h *DummyEventHandler) OnXID(mysql.Position) error { return nil }
  24. func (h *DummyEventHandler) OnGTID(mysql.GTIDSet) error { return nil }
  25. func (h *DummyEventHandler) OnPosSynced(mysql.Position, bool) error { return nil }
  26. func (h *DummyEventHandler) String() string { return "DummyEventHandler" }
  27. // `SetEventHandler` registers the sync handler, you must register your
  28. // own handler before starting Canal.
  29. func (c *Canal) SetEventHandler(h EventHandler) {
  30. c.eventHandler = h
  31. }