-
Notifications
You must be signed in to change notification settings - Fork 9
/
prepare.go
41 lines (31 loc) · 1.42 KB
/
prepare.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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package runtime
import (
"context"
"namespacelabs.dev/foundation/internal/fnerrors"
"namespacelabs.dev/foundation/std/cfg"
)
var (
prepareRegistrations = map[string]func(context.Context, cfg.Configuration, Cluster) (any, error){}
keyedPrepareRegistrations = map[string]func(context.Context, cfg.Configuration, Cluster, string) (any, error){}
)
func RegisterPrepare(key string, callback func(context.Context, cfg.Configuration, Cluster) (any, error)) {
prepareRegistrations[key] = callback
}
func RegisterKeyedPrepare(key string, callback func(context.Context, cfg.Configuration, Cluster, string) (any, error)) {
keyedPrepareRegistrations[key] = callback
}
func Prepare(ctx context.Context, key string, env cfg.Configuration, cluster Cluster) (any, error) {
if prepareRegistrations[key] == nil {
return nil, fnerrors.InternalError("%s: no such runtime support", key)
}
return prepareRegistrations[key](ctx, env, cluster)
}
func PrepareKeyed(ctx context.Context, stateKey string, env cfg.Configuration, cluster Cluster, key string) (any, error) {
if prepareRegistrations[stateKey] == nil {
return nil, fnerrors.InternalError("%s: no such runtime support", key)
}
return keyedPrepareRegistrations[stateKey](ctx, env, cluster, key)
}