forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuuid.go
37 lines (27 loc) · 805 Bytes
/
uuid.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
// Copyright 2020 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package topdown
import (
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/internal/uuid"
)
type uuidCachingKey string
func builtinUUIDRFC4122(bctx BuiltinContext, args []*ast.Term, iter func(*ast.Term) error) error {
var result *ast.Term
var key = uuidCachingKey(args[0].Value.String())
if val, ok := bctx.Cache.Get(key); !ok {
s, err := uuid.New(bctx.Seed)
if err != nil {
return err
}
result = ast.NewTerm(ast.String(s))
bctx.Cache.Put(key, result)
} else {
result = val.(*ast.Term)
}
return iter(result)
}
func init() {
RegisterBuiltinFunc(ast.UUIDRFC4122.Name, builtinUUIDRFC4122)
}