// helper method to asynchronously diff a permissions func (wr *Wrangler) diffPermissions(masterPermissions *myproto.Permissions, masterAlias topo.TabletAlias, alias topo.TabletAlias, wg *sync.WaitGroup, er concurrency.ErrorRecorder) { defer wg.Done() log.Infof("Gathering permissions for %v", alias) slavePermissions, err := wr.GetPermissions(alias) if err != nil { er.RecordError(err) return } log.Infof("Diffing permissions for %v", alias) myproto.DiffPermissions(masterAlias.String(), masterPermissions, alias.String(), slavePermissions, er) }
// helper method to asynchronously diff a schema func (wr *Wrangler) diffSchema(masterSchema *myproto.SchemaDefinition, masterTabletAlias, alias topo.TabletAlias, excludeTables []string, includeViews bool, wg *sync.WaitGroup, er concurrency.ErrorRecorder) { defer wg.Done() log.Infof("Gathering schema for %v", alias) slaveSchema, err := wr.GetSchema(alias, nil, excludeTables, includeViews) if err != nil { er.RecordError(err) return } log.Infof("Diffing schema for %v", alias) myproto.DiffSchema(masterTabletAlias.String(), masterSchema, alias.String(), slaveSchema, er) }
// helper method to asynchronously get and diff a version func (wr *Wrangler) diffVersion(masterVersion string, masterAlias topo.TabletAlias, alias topo.TabletAlias, wg *sync.WaitGroup, er concurrency.ErrorRecorder) { defer wg.Done() log.Infof("Gathering version for %v", alias) slaveVersion, err := wr.GetVersion(alias) if err != nil { er.RecordError(err) return } if masterVersion != slaveVersion { er.RecordError(fmt.Errorf("Master %v version %v is different than slave %v version %v", masterAlias, masterVersion, alias, slaveVersion)) } }
func diffPermissions(name, leftName string, left PermissionList, rightName string, right PermissionList, er concurrency.ErrorRecorder) { leftIndex := 0 rightIndex := 0 for leftIndex < left.Len() && rightIndex < right.Len() { l := left.Get(leftIndex) r := right.Get(rightIndex) // extra value on the left side if l.PrimaryKey() < r.PrimaryKey() { er.RecordError(fmt.Errorf("%v has an extra %v %v", leftName, name, l.PrimaryKey())) leftIndex++ continue } // extra value on the right side if l.PrimaryKey() > r.PrimaryKey() { er.RecordError(fmt.Errorf("%v has an extra %v %v", rightName, name, r.PrimaryKey())) rightIndex++ continue } // same name, let's see content if l.String() != r.String() { er.RecordError(fmt.Errorf("%v and %v disagree on %v %v:\n%v\n differs from:\n%v", leftName, rightName, name, l.PrimaryKey(), l.String(), r.String())) } leftIndex++ rightIndex++ } for leftIndex < left.Len() { er.RecordError(fmt.Errorf("%v has an extra %v %v", leftName, name, left.Get(leftIndex).PrimaryKey())) leftIndex++ } for rightIndex < right.Len() { er.RecordError(fmt.Errorf("%v has an extra %v %v", rightName, name, right.Get(rightIndex).PrimaryKey())) rightIndex++ } }
// generates a report on what's different between two SchemaDefinition // for now, we skip the VIEW entirely. func DiffSchema(leftName string, left *SchemaDefinition, rightName string, right *SchemaDefinition, er concurrency.ErrorRecorder) { if left.DatabaseSchema != right.DatabaseSchema { er.RecordError(fmt.Errorf("%v and %v don't agree on database creation command:\n%v\n differs from:\n%v", leftName, rightName, left.DatabaseSchema, right.DatabaseSchema)) } leftIndex := 0 rightIndex := 0 for leftIndex < len(left.TableDefinitions) && rightIndex < len(right.TableDefinitions) { // skip views if left.TableDefinitions[leftIndex].Type == TABLE_VIEW { leftIndex++ continue } if right.TableDefinitions[rightIndex].Type == TABLE_VIEW { rightIndex++ continue } // extra table on the left side if left.TableDefinitions[leftIndex].Name < right.TableDefinitions[rightIndex].Name { er.RecordError(fmt.Errorf("%v has an extra table named %v", leftName, left.TableDefinitions[leftIndex].Name)) leftIndex++ continue } // extra table on the right side if left.TableDefinitions[leftIndex].Name > right.TableDefinitions[rightIndex].Name { er.RecordError(fmt.Errorf("%v has an extra table named %v", rightName, right.TableDefinitions[rightIndex].Name)) rightIndex++ continue } // same name, let's see content if left.TableDefinitions[leftIndex].Schema != right.TableDefinitions[rightIndex].Schema { er.RecordError(fmt.Errorf("%v and %v disagree on schema for table %v:\n%v\n differs from:\n%v", leftName, rightName, left.TableDefinitions[leftIndex].Name, left.TableDefinitions[leftIndex].Schema, right.TableDefinitions[rightIndex].Schema)) } leftIndex++ rightIndex++ } for leftIndex < len(left.TableDefinitions) { if left.TableDefinitions[leftIndex].Type == TABLE_BASE_TABLE { er.RecordError(fmt.Errorf("%v has an extra table named %v", leftName, left.TableDefinitions[leftIndex].Name)) } leftIndex++ } for rightIndex < len(right.TableDefinitions) { if right.TableDefinitions[rightIndex].Type == TABLE_BASE_TABLE { er.RecordError(fmt.Errorf("%v has an extra table named %v", rightName, right.TableDefinitions[rightIndex].Name)) } rightIndex++ } }