-
Notifications
You must be signed in to change notification settings - Fork 720
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
resource_control: supports dynamictlly change the controller config
Signed-off-by: nolouch <[email protected]>
- Loading branch information
Showing
12 changed files
with
321 additions
and
31 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
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
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
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
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,68 @@ | ||
// Copyright 2023 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
// Copyright 2023 TiKV Project Authors. | ||
// | ||
// 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,g | ||
// 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 controller | ||
|
||
import ( | ||
"fmt" | ||
"strconv" | ||
"time" | ||
|
||
"github.com/pingcap/errors" | ||
) | ||
|
||
// Duration is a wrapper of time.Duration for TOML and JSON. | ||
type Duration struct { | ||
time.Duration | ||
} | ||
|
||
// NewDuration creates a Duration from time.Duration. | ||
func NewDuration(duration time.Duration) Duration { | ||
return Duration{Duration: duration} | ||
} | ||
|
||
// MarshalJSON returns the duration as a JSON string. | ||
func (d *Duration) MarshalJSON() ([]byte, error) { | ||
return []byte(fmt.Sprintf(`"%s"`, d.String())), nil | ||
} | ||
|
||
// UnmarshalJSON parses a JSON string into the duration. | ||
func (d *Duration) UnmarshalJSON(text []byte) error { | ||
s, err := strconv.Unquote(string(text)) | ||
if err != nil { | ||
return errors.WithStack(err) | ||
} | ||
duration, err := time.ParseDuration(s) | ||
if err != nil { | ||
return errors.WithStack(err) | ||
} | ||
d.Duration = duration | ||
return nil | ||
} | ||
|
||
// UnmarshalText parses a TOML string into the duration. | ||
func (d *Duration) UnmarshalText(text []byte) error { | ||
var err error | ||
d.Duration, err = time.ParseDuration(string(text)) | ||
return errors.WithStack(err) | ||
} | ||
|
||
// MarshalText returns the duration as a JSON string. | ||
func (d Duration) MarshalText() ([]byte, error) { | ||
return []byte(d.String()), nil | ||
} |
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,51 @@ | ||
// Copyright 2016 TiKV Project Authors. | ||
// | ||
// 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 controller | ||
|
||
import ( | ||
"encoding/json" | ||
"testing" | ||
|
||
"github.com/BurntSushi/toml" | ||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
type example struct { | ||
Interval Duration `json:"interval" toml:"interval"` | ||
} | ||
|
||
func TestDurationJSON(t *testing.T) { | ||
t.Parallel() | ||
re := require.New(t) | ||
example := &example{} | ||
|
||
text := []byte(`{"interval":"1h1m1s"}`) | ||
re.NoError(json.Unmarshal(text, example)) | ||
re.Equal(float64(60*60+60+1), example.Interval.Seconds()) | ||
|
||
b, err := json.Marshal(example) | ||
re.NoError(err) | ||
re.Equal(string(text), string(b)) | ||
} | ||
|
||
func TestDurationTOML(t *testing.T) { | ||
t.Parallel() | ||
re := require.New(t) | ||
example := &example{} | ||
|
||
text := []byte(`interval = "1h1m1s"`) | ||
re.Nil(toml.Unmarshal(text, example)) | ||
re.Equal(float64(60*60+60+1), example.Interval.Seconds()) | ||
} |
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
Oops, something went wrong.