This package was created with inspiration from Thomas' go-ruler to run a simple set of rules against an entity.
This version includes a couple more features including, AND and OR composites and the ability to add custom comparators.
Note: This package only compares two types: string
and float64
, this plays nicely with encoding/json
.
// Create a new instance of an engine with some default comparators
e, err := NewJSONEngine(json.RawMessage(`{"composites":[{"operator":"or","rules":[{"comparator":"always-false","path":"user.name","value":"Trevor"},{"comparator":"eq","path":"user.name","value":"Trevor"}]}]}`))
if err != nil {
panic(err)
}
// Add a new, custom comparator
e = e.AddComparator("always-false", func(a, b interface{}) bool {
return false
})
// Give some properties, this map can be deeper and supports interfaces
props := map[string]interface{}{
"user": map[string]interface{}{
"name": "Trevor",
}
}
// Run the engine on the props
res := e.Evaluate(props)
// res == true
eq
will return true ifa == b
neq
will return true ifa != b
lt
will return true ifa < b
lte
will return true ifa <= b
gt
will return true ifa > b
gte
will return true ifa >= b
contains
will return true ifa
containsb
ncontains
will return true ifa
does not containb
oneof
will return true ifa
is one ofb
noneof
will return true ifa
is not one ofb
regex
will return true ifa
matchesb
contains
and ncontains
work for substring comparisons as well as item-in-collection comparisons.
When used for item-in-collection comparisons, contains
expects the first argument to be a slice. contains
is different than oneof
in that oneof
expects the second argument to be a slice.
Benchmark | N | Speed | Used | Allocs |
---|---|---|---|---|
BenchmarkEqual-12 | 650602549 | 5.52 ns/op | 0 B/op | 0 allocs/op |
BenchmarkNotEqual-12 | 876894124 | 4.09 ns/op | 0 B/op | 0 allocs/op |
BenchmarkLessThan-12 | 1000000000 | 2.84 ns/op | 0 B/op | 0 allocs/op |
BenchmarkLessThanEqual-12 | 1000000000 | 2.57 ns/op | 0 B/op | 0 allocs/op |
BenchmarkGreaterThan-12 | 1000000000 | 2.07 ns/op | 0 B/op | 0 allocs/op |
BenchmarkGreaterThanEqual-12 | 1000000000 | 2.86 ns/op | 0 B/op | 0 allocs/op |
BenchmarkRegex-12 | 4524237 | 793 ns/op | 753 B/op | 11 allocs/op |
BenchmarkRegexPhone-12 | 1000000 | 3338 ns/op | 3199 B/op | 30 allocs/op |
BenchmarkContains-12 | 499627219 | 7.16 ns/op | 0 B/op | 0 allocs/op |
BenchmarkStringContains-12 | 405497102 | 8.87 ns/op | 0 B/op | 0 allocs/op |
BenchmarkContainsLong50000-12 | 18992 | 184016 ns/op | 0 B/op | 0 allocs/op |
BenchmarkNotContains-12 | 292932907 | 12.3 ns/op | 0 B/op | 0 allocs/op |
BenchmarkStringNotContains-12 | 392618857 | 9.14 ns/op | 0 B/op | 0 allocs/op |
BenchmarkNotContainsLong50000-12 | 19243 | 191787 ns/op | 0 B/op | 0 allocs/op |
BenchmarkOneOf-12 | 1000000000 | 1.80 ns/op | 0 B/op | 0 allocs/op |
BenchmarkNoneOf-12 | 1000000000 | 1.79 ns/op | 0 B/op | 0 allocs/op |
BenchmarkPluckShallow-12 | 85997188 | 41.6 ns/op | 16 B/op | 1 allocs/op |
BenchmarkPluckDeep-12 | 18789103 | 194 ns/op | 112 B/op | 1 allocs/op |
BenchmarkRule_evaluate-12 | 69558996 | 51.1 ns/op | 16 B/op | 1 allocs/op |
BenchmarkComposite_evaluate-12 | 59484760 | 55.7 ns/op | 16 B/op | 1 allocs/op |
BenchmarkEngine_Evaluate-12 | 47892318 | 75.0 ns/op | 16 B/op | 1 allocs/op |
To run benchmarks:
go test -run none -bench . -benchtime 3s -benchmem
All benchmarks were run on:
MacOS High Sierra 2.6Ghz Intel Core i7 16 GB 2400 MHz DDR4
Copyright © 2019 Trevor Hutto
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or 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.