-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: migrate importer and watcher from tidb-tools to tidb (#33846)
close #32999
- Loading branch information
1 parent
d3e076c
commit 1dc419a
Showing
10 changed files
with
1,654 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Copyright 2022 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package importer | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/pingcap/tidb/util/dbutil" | ||
) | ||
|
||
// Config is the configuration. | ||
type Config struct { | ||
TableSQL string `toml:"table-sql" json:"table-sql"` | ||
|
||
IndexSQL string `toml:"index-sql" json:"index-sql"` | ||
|
||
LogLevel string `toml:"log-level" json:"log-level"` | ||
|
||
WorkerCount int `toml:"worker-count" json:"worker-count"` | ||
|
||
JobCount int `toml:"job-count" json:"job-count"` | ||
|
||
Batch int `toml:"batch" json:"batch"` | ||
|
||
DBCfg dbutil.DBConfig `toml:"db" json:"db"` | ||
} | ||
|
||
func (c *Config) String() string { | ||
if c == nil { | ||
return "<nil>" | ||
} | ||
return fmt.Sprintf("Config(%+v)", *c) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
// Copyright 2022 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package importer | ||
|
||
import ( | ||
"fmt" | ||
"sync" | ||
"time" | ||
) | ||
|
||
var defaultStep int64 = 1 | ||
|
||
type datum struct { | ||
sync.Mutex | ||
|
||
intValue int64 | ||
minIntValue int64 | ||
maxIntValue int64 | ||
timeValue time.Time | ||
step int64 | ||
|
||
init bool | ||
useRange bool | ||
} | ||
|
||
func newDatum() *datum { | ||
return &datum{intValue: -1, step: 1} | ||
} | ||
|
||
func (d *datum) setInitInt64Value(step int64, min int64, max int64) { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
if d.init { | ||
return | ||
} | ||
|
||
d.step = step | ||
|
||
if min != -1 { | ||
d.minIntValue = min | ||
d.intValue = min | ||
} | ||
|
||
if min < max { | ||
d.maxIntValue = max | ||
d.useRange = true | ||
} | ||
|
||
d.init = true | ||
} | ||
|
||
func (d *datum) uniqInt64() int64 { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
data := d.intValue | ||
if d.useRange { | ||
if d.intValue+d.step > d.maxIntValue { | ||
return data | ||
} | ||
} | ||
|
||
d.intValue += d.step | ||
return data | ||
} | ||
|
||
// nolint: unused, deadcode | ||
func (d *datum) uniqFloat64() float64 { | ||
data := d.uniqInt64() | ||
return float64(data) | ||
} | ||
|
||
func (d *datum) uniqString(n int) string { | ||
d.Lock() | ||
d.intValue++ | ||
data := d.intValue | ||
d.Unlock() | ||
|
||
var value []byte | ||
for ; ; n-- { | ||
if n == 0 { | ||
break | ||
} | ||
|
||
idx := data % int64(len(alphabet)) | ||
data = data / int64(len(alphabet)) | ||
|
||
value = append(value, alphabet[idx]) | ||
|
||
if data == 0 { | ||
break | ||
} | ||
} | ||
|
||
for i, j := 0, len(value)-1; i < j; i, j = i+1, j-1 { | ||
value[i], value[j] = value[j], value[i] | ||
} | ||
|
||
return string(value) | ||
} | ||
|
||
func (d *datum) uniqTime() string { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
if d.timeValue.IsZero() { | ||
d.timeValue = time.Now() | ||
} else { | ||
d.timeValue = d.timeValue.Add(time.Duration(d.step) * time.Second) | ||
} | ||
|
||
return fmt.Sprintf("%02d:%02d:%02d", d.timeValue.Hour(), d.timeValue.Minute(), d.timeValue.Second()) | ||
} | ||
|
||
func (d *datum) uniqDate() string { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
if d.timeValue.IsZero() { | ||
d.timeValue = time.Now() | ||
} else { | ||
d.timeValue = d.timeValue.AddDate(0, 0, int(d.step)) | ||
} | ||
|
||
return fmt.Sprintf("%04d-%02d-%02d", d.timeValue.Year(), d.timeValue.Month(), d.timeValue.Day()) | ||
} | ||
|
||
func (d *datum) uniqTimestamp() string { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
if d.timeValue.IsZero() { | ||
d.timeValue = time.Now() | ||
} else { | ||
d.timeValue = d.timeValue.Add(time.Duration(d.step) * time.Second) | ||
} | ||
|
||
return fmt.Sprintf("%04d-%02d-%02d %02d:%02d:%02d", | ||
d.timeValue.Year(), d.timeValue.Month(), d.timeValue.Day(), | ||
d.timeValue.Hour(), d.timeValue.Minute(), d.timeValue.Second()) | ||
} | ||
|
||
func (d *datum) uniqYear() string { | ||
d.Lock() | ||
defer d.Unlock() | ||
|
||
if d.timeValue.IsZero() { | ||
d.timeValue = time.Now() | ||
} else { | ||
d.timeValue = d.timeValue.AddDate(int(d.step), 0, 0) | ||
} | ||
|
||
return fmt.Sprintf("%04d", d.timeValue.Year()) | ||
} |
Oops, something went wrong.