Skip to content

Commit 1bac9ac

Browse files
committed
change controller.NewController with function options
1 parent aa5e40c commit 1bac9ac

File tree

4 files changed

+69
-40
lines changed

4 files changed

+69
-40
lines changed

cmd/db-controller/main.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ func main() {
8080

8181
c := controller.NewController(
8282
logger,
83-
globalInterfaceNameFlag,
84-
myHostAddress,
85-
uint16(dbServingPortFlag),
86-
dbReplicaUserNameFlag,
87-
dbReplicaPassword,
88-
uint16(dbReplicaSourcePortFlag),
89-
chainNameForDBAclFlag,
83+
controller.WithGlobalInterfaceName(globalInterfaceNameFlag),
84+
controller.WithHostAddress(myHostAddress),
85+
controller.WithDBServingPort(uint16(dbServingPortFlag)),
86+
controller.WithDBReplicaUserName(dbReplicaUserNameFlag),
87+
controller.WithDBReplicaPassword(dbReplicaPassword),
88+
controller.WithDBReplicaSourcePort(uint16(dbReplicaSourcePortFlag)),
89+
controller.WithDBAclChainName(chainNameForDBAclFlag),
9090
)
9191

9292
// start goroutines

pkg/controller/controller.go

+1-15
Original file line numberDiff line numberDiff line change
@@ -119,24 +119,10 @@ type Controller struct {
119119

120120
func NewController(
121121
logger *slog.Logger,
122-
globalInterfaceName string,
123-
hostAddress string,
124-
dbServingPort uint16,
125-
dbReplicaUserName string,
126-
dbReplicaPassword string,
127-
dbReplicaSourcePort uint16,
128-
dbAclChainName string,
129122
configs ...ControllerConfig,
130123
) *Controller {
131124
c := &Controller{
132-
logger: logger,
133-
globalInterfaceName: globalInterfaceName,
134-
hostAddress: hostAddress,
135-
dbServingPort: dbServingPort,
136-
dbReplicaUserName: dbReplicaUserName,
137-
dbReplicaPassword: dbReplicaPassword,
138-
dbReplicaSourcePort: dbReplicaSourcePort,
139-
dbAclChainName: dbAclChainName,
125+
logger: logger,
140126

141127
currentState: StateInitial,
142128
currentNeighbors: newNeighborSet(),

pkg/controller/controller_config.go

+50-7
Original file line numberDiff line numberDiff line change
@@ -24,28 +24,71 @@ import (
2424
// ControllerConfig is the configuration that is applied into Controller.
2525
type ControllerConfig func(c *Controller)
2626

27-
// SystemdConnector generates a config that sets the systemd.Connector into Controller.
28-
func SystemdConnector(connector systemd.Connector) ControllerConfig {
27+
func WithGlobalInterfaceName(globalInterfaceName string) ControllerConfig {
28+
return func(c *Controller) {
29+
c.globalInterfaceName = globalInterfaceName
30+
}
31+
}
32+
33+
func WithHostAddress(hostAddress string) ControllerConfig {
34+
return func(c *Controller) {
35+
c.hostAddress = hostAddress
36+
}
37+
}
38+
39+
func WithDBServingPort(dbServingPort uint16) ControllerConfig {
40+
return func(c *Controller) {
41+
c.dbServingPort = dbServingPort
42+
}
43+
}
44+
45+
func WithDBReplicaUserName(dbReplicaUserName string) ControllerConfig {
46+
return func(c *Controller) {
47+
c.dbReplicaUserName = dbReplicaUserName
48+
}
49+
}
50+
51+
func WithDBReplicaPassword(dbReplicaPassword string) ControllerConfig {
52+
return func(c *Controller) {
53+
c.dbReplicaPassword = dbReplicaPassword
54+
}
55+
}
56+
57+
func WithDBReplicaSourcePort(dbReplicaSourcePort uint16) ControllerConfig {
58+
return func(c *Controller) {
59+
c.dbReplicaSourcePort = dbReplicaSourcePort
60+
}
61+
}
62+
63+
func WithDBAclChainName(dbAclChainName string) ControllerConfig {
64+
return func(c *Controller) {
65+
c.dbAclChainName = dbAclChainName
66+
}
67+
}
68+
69+
// WithSystemdConnector generates a config that sets the systemd.Connector into Controller.
70+
func WithSystemdConnector(connector systemd.Connector) ControllerConfig {
2971
return func(c *Controller) {
3072
c.systemdConnector = connector
3173
}
3274
}
3375

34-
func MariaDBConnector(connector mariadb.Connector) ControllerConfig {
76+
// WithMariaDBConnector generates a config that sets the mariadb.Connector into Controller.
77+
func WithMariaDBConnector(connector mariadb.Connector) ControllerConfig {
3578
return func(c *Controller) {
3679
c.mariaDBConnector = connector
3780
}
3881
}
3982

40-
// NftablesConnector generates a config that sets the nftables.Connector into Controller.
41-
func NftablesConnector(connector nftables.Connector) ControllerConfig {
83+
// WithNftablesConnector generates a config that sets the nftables.Connector into Controller.
84+
func WithNftablesConnector(connector nftables.Connector) ControllerConfig {
4285
return func(c *Controller) {
4386
c.nftablesConnector = connector
4487
}
4588
}
4689

47-
// BGPdConnector generates a config that sets the vtysh.BGPdConnector into Controller.
48-
func BGPdConnector(connector bgpd.BGPdConnector) ControllerConfig {
90+
// WithBGPdConnector generates a config that sets the vtysh.WithBGPdConnector into Controller.
91+
func WithBGPdConnector(connector bgpd.BGPdConnector) ControllerConfig {
4992
return func(c *Controller) {
5093
c.bgpdConnector = connector
5194
}

pkg/controller/test_helper.go

+11-11
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ func _newFakeController() *Controller {
2828
logger := slog.New(slog.NewJSONHandler(os.Stderr, &slog.HandlerOptions{}))
2929
c := NewController(
3030
logger,
31-
"dummy-global-interface-name",
32-
"10.0.0.1",
33-
3306,
34-
"repl",
35-
"dummy-db-replica-password",
36-
0,
37-
"dummy-chain-name",
38-
SystemdConnector(systemd.NewFakeSystemdConnector()),
39-
MariaDBConnector(mariadb.NewFakeMariaDBConnector()),
40-
NftablesConnector(nftables.NewFakeNftablesConnector()),
41-
BGPdConnector(bgpd.NewFakeBGPdConnector()),
31+
WithGlobalInterfaceName("dummy-global-interface-name"),
32+
WithHostAddress("10.0.0.1"),
33+
WithDBServingPort(3306),
34+
WithDBReplicaUserName("repl"),
35+
WithDBReplicaPassword("dummy-db-replica-password"),
36+
WithDBReplicaSourcePort(0),
37+
WithDBAclChainName("dummy-chain-name"),
38+
WithSystemdConnector(systemd.NewFakeSystemdConnector()),
39+
WithMariaDBConnector(mariadb.NewFakeMariaDBConnector()),
40+
WithNftablesConnector(nftables.NewFakeNftablesConnector()),
41+
WithBGPdConnector(bgpd.NewFakeBGPdConnector()),
4242
)
4343

4444
return c

0 commit comments

Comments
 (0)