-
Notifications
You must be signed in to change notification settings - Fork 459
/
Copy pathclamp.go
93 lines (77 loc) · 2.74 KB
/
clamp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Copyright (c) 2018 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package linear
import (
"fmt"
"math"
"github.com/m3db/m3/src/query/block"
"github.com/m3db/m3/src/query/functions/lazy"
"github.com/m3db/m3/src/query/parser"
)
const (
// ClampMinType ensures all values except NaNs are greater
// than or equal to the provided argument.
ClampMinType = "clamp_min"
// ClampMaxType ensures all values except NaNs are lesser
// than or equal to provided argument.
ClampMaxType = "clamp_max"
)
type clampOp struct {
opType string
scalar float64
}
func parseClampArgs(args []interface{}) (float64, error) {
if len(args) != 1 {
return 0, fmt.Errorf("invalid number of args for clamp: %d", len(args))
}
scalar, ok := args[0].(float64)
if !ok {
return 0, fmt.Errorf("unable to cast to scalar argument: %v", args[0])
}
return scalar, nil
}
func clampFn(max bool, roundTo float64) block.ValueTransform {
if max {
return func(v float64) float64 { return math.Min(v, roundTo) }
}
return func(v float64) float64 { return math.Max(v, roundTo) }
}
func removeName(meta []block.SeriesMeta) []block.SeriesMeta {
for i, m := range meta {
meta[i].Tags = m.Tags.WithoutName()
}
return meta
}
// NewClampOp creates a new clamp op based on the type and arguments
func NewClampOp(args []interface{}, opType string) (parser.Params, error) {
isMax := opType == ClampMaxType
if opType != ClampMinType && !isMax {
return nil, fmt.Errorf("unknown clamp type: %s", opType)
}
clampTo, err := parseClampArgs(args)
if err != nil {
return nil, err
}
fn := clampFn(isMax, clampTo)
lazyOpts := block.NewLazyOptions().
SetValueTransform(fn).
SetSeriesMetaTransform(removeName)
return lazy.NewLazyOp(opType, lazyOpts)
}