config.go 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package canal
  2. import (
  3. "io/ioutil"
  4. "math/rand"
  5. "time"
  6. "github.com/BurntSushi/toml"
  7. "github.com/juju/errors"
  8. "github.com/siddontang/go-mysql/mysql"
  9. )
  10. type DumpConfig struct {
  11. // mysqldump execution path, like mysqldump or /usr/bin/mysqldump, etc...
  12. // If not set, ignore using mysqldump.
  13. ExecutionPath string `toml:"mysqldump"`
  14. // Will override Databases, tables is in database table_db
  15. Tables []string `toml:"tables"`
  16. TableDB string `toml:"table_db"`
  17. Databases []string `toml:"dbs"`
  18. // Ignore table format is db.table
  19. IgnoreTables []string `toml:"ignore_tables"`
  20. // If true, discard error msg, else, output to stderr
  21. DiscardErr bool `toml:"discard_err"`
  22. // Set true to skip --master-data if we have no privilege to do
  23. // 'FLUSH TABLES WITH READ LOCK'
  24. SkipMasterData bool `toml:"skip_master_data"`
  25. // Set to change the default max_allowed_packet size
  26. MaxAllowedPacketMB int `toml:"max_allowed_packet_mb"`
  27. }
  28. type Config struct {
  29. Addr string `toml:"addr"`
  30. User string `toml:"user"`
  31. Password string `toml:"password"`
  32. Charset string `toml:"charset"`
  33. ServerID uint32 `toml:"server_id"`
  34. Flavor string `toml:"flavor"`
  35. HeartbeatPeriod time.Duration `toml:"heartbeat_period"`
  36. ReadTimeout time.Duration `toml:"read_timeout"`
  37. // IncludeTableRegex or ExcludeTableRegex should contain database name
  38. // Only a table which matches IncludeTableRegex and dismatches ExcludeTableRegex will be processed
  39. // eg, IncludeTableRegex : [".*\\.canal"], ExcludeTableRegex : ["mysql\\..*"]
  40. // this will include all database's 'canal' table, except database 'mysql'
  41. // Default IncludeTableRegex and ExcludeTableRegex are empty, this will include all tables
  42. IncludeTableRegex []string `toml:include_table_regex`
  43. ExcludeTableRegex []string `toml:exclude_table_regex`
  44. // discard row event without table meta
  45. DiscardNoMetaRowEvent bool `toml:"discard_no_meta_row_event"`
  46. Dump DumpConfig `toml:"dump"`
  47. UseDecimal bool `toml:"use_decimal"`
  48. }
  49. func NewConfigWithFile(name string) (*Config, error) {
  50. data, err := ioutil.ReadFile(name)
  51. if err != nil {
  52. return nil, errors.Trace(err)
  53. }
  54. return NewConfig(string(data))
  55. }
  56. func NewConfig(data string) (*Config, error) {
  57. var c Config
  58. _, err := toml.Decode(data, &c)
  59. if err != nil {
  60. return nil, errors.Trace(err)
  61. }
  62. return &c, nil
  63. }
  64. func NewDefaultConfig() *Config {
  65. c := new(Config)
  66. c.Addr = "127.0.0.1:3306"
  67. c.User = "root"
  68. c.Password = ""
  69. c.Charset = mysql.DEFAULT_CHARSET
  70. rand.Seed(time.Now().Unix())
  71. c.ServerID = uint32(rand.Intn(1000)) + 1001
  72. c.Flavor = "mysql"
  73. c.Dump.ExecutionPath = "mysqldump"
  74. c.Dump.DiscardErr = true
  75. c.Dump.SkipMasterData = false
  76. return c
  77. }