123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package canal
- import (
- "io/ioutil"
- "math/rand"
- "time"
- "github.com/BurntSushi/toml"
- "github.com/juju/errors"
- "github.com/siddontang/go-mysql/mysql"
- )
- type DumpConfig struct {
- // mysqldump execution path, like mysqldump or /usr/bin/mysqldump, etc...
- // If not set, ignore using mysqldump.
- ExecutionPath string `toml:"mysqldump"`
- // Will override Databases, tables is in database table_db
- Tables []string `toml:"tables"`
- TableDB string `toml:"table_db"`
- Databases []string `toml:"dbs"`
- // Ignore table format is db.table
- IgnoreTables []string `toml:"ignore_tables"`
- // If true, discard error msg, else, output to stderr
- DiscardErr bool `toml:"discard_err"`
- // Set true to skip --master-data if we have no privilege to do
- // 'FLUSH TABLES WITH READ LOCK'
- SkipMasterData bool `toml:"skip_master_data"`
- // Set to change the default max_allowed_packet size
- MaxAllowedPacketMB int `toml:"max_allowed_packet_mb"`
- }
- type Config struct {
- Addr string `toml:"addr"`
- User string `toml:"user"`
- Password string `toml:"password"`
- Charset string `toml:"charset"`
- ServerID uint32 `toml:"server_id"`
- Flavor string `toml:"flavor"`
- HeartbeatPeriod time.Duration `toml:"heartbeat_period"`
- ReadTimeout time.Duration `toml:"read_timeout"`
- // IncludeTableRegex or ExcludeTableRegex should contain database name
- // Only a table which matches IncludeTableRegex and dismatches ExcludeTableRegex will be processed
- // eg, IncludeTableRegex : [".*\\.canal"], ExcludeTableRegex : ["mysql\\..*"]
- // this will include all database's 'canal' table, except database 'mysql'
- // Default IncludeTableRegex and ExcludeTableRegex are empty, this will include all tables
- IncludeTableRegex []string `toml:include_table_regex`
- ExcludeTableRegex []string `toml:exclude_table_regex`
- // discard row event without table meta
- DiscardNoMetaRowEvent bool `toml:"discard_no_meta_row_event"`
- Dump DumpConfig `toml:"dump"`
- UseDecimal bool `toml:"use_decimal"`
- }
- func NewConfigWithFile(name string) (*Config, error) {
- data, err := ioutil.ReadFile(name)
- if err != nil {
- return nil, errors.Trace(err)
- }
- return NewConfig(string(data))
- }
- func NewConfig(data string) (*Config, error) {
- var c Config
- _, err := toml.Decode(data, &c)
- if err != nil {
- return nil, errors.Trace(err)
- }
- return &c, nil
- }
- func NewDefaultConfig() *Config {
- c := new(Config)
- c.Addr = "127.0.0.1:3306"
- c.User = "root"
- c.Password = ""
- c.Charset = mysql.DEFAULT_CHARSET
- rand.Seed(time.Now().Unix())
- c.ServerID = uint32(rand.Intn(1000)) + 1001
- c.Flavor = "mysql"
- c.Dump.ExecutionPath = "mysqldump"
- c.Dump.DiscardErr = true
- c.Dump.SkipMasterData = false
- return c
- }
|