-
Notifications
You must be signed in to change notification settings - Fork 19
/
manager_factory.go
96 lines (81 loc) · 2.81 KB
/
manager_factory.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
94
95
96
// Copyright Amazon.com Inc. or its affiliates. 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. A copy of the
// License is located at
//
// http://aws.amazon.com/apache2.0/
//
// or in the "license" file accompanying this file. This file 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.
// Code generated by ack-generate. DO NOT EDIT.
package platform_endpoint
import (
"fmt"
"sync"
ackv1alpha1 "github.com/aws-controllers-k8s/runtime/apis/core/v1alpha1"
ackcfg "github.com/aws-controllers-k8s/runtime/pkg/config"
ackmetrics "github.com/aws-controllers-k8s/runtime/pkg/metrics"
acktypes "github.com/aws-controllers-k8s/runtime/pkg/types"
"github.com/aws/aws-sdk-go/aws/session"
"github.com/go-logr/logr"
svcresource "github.com/aws-controllers-k8s/sns-controller/pkg/resource"
)
// resourceManagerFactory produces resourceManager objects. It implements the
// `types.AWSResourceManagerFactory` interface.
type resourceManagerFactory struct {
sync.RWMutex
// rmCache contains resource managers for a particular AWS account ID
rmCache map[string]*resourceManager
}
// ResourcePrototype returns an AWSResource that resource managers produced by
// this factory will handle
func (f *resourceManagerFactory) ResourceDescriptor() acktypes.AWSResourceDescriptor {
return &resourceDescriptor{}
}
// ManagerFor returns a resource manager object that can manage resources for a
// supplied AWS account
func (f *resourceManagerFactory) ManagerFor(
cfg ackcfg.Config,
log logr.Logger,
metrics *ackmetrics.Metrics,
rr acktypes.Reconciler,
sess *session.Session,
id ackv1alpha1.AWSAccountID,
region ackv1alpha1.AWSRegion,
) (acktypes.AWSResourceManager, error) {
rmId := fmt.Sprintf("%s/%s", id, region)
f.RLock()
rm, found := f.rmCache[rmId]
f.RUnlock()
if found {
return rm, nil
}
f.Lock()
defer f.Unlock()
rm, err := newResourceManager(cfg, log, metrics, rr, sess, id, region)
if err != nil {
return nil, err
}
f.rmCache[rmId] = rm
return rm, nil
}
// IsAdoptable returns true if the resource is able to be adopted
func (f *resourceManagerFactory) IsAdoptable() bool {
return true
}
// RequeueOnSuccessSeconds returns true if the resource should be requeued after specified seconds
// Default is false which means resource will not be requeued after success.
func (f *resourceManagerFactory) RequeueOnSuccessSeconds() int {
return 0
}
func newResourceManagerFactory() *resourceManagerFactory {
return &resourceManagerFactory{
rmCache: map[string]*resourceManager{},
}
}
func init() {
svcresource.RegisterManagerFactory(newResourceManagerFactory())
}