-
Notifications
You must be signed in to change notification settings - Fork 65
/
options.go
58 lines (50 loc) · 1.43 KB
/
options.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
// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2022, Unikraft GmbH and The KraftKit Authors.
// Licensed under the BSD-3-Clause License (the "License").
// You may not use this file except in compliance with the License.
package plat
import "kraftkit.sh/kconfig"
// PlatformOption is a function that modifies a PlatformConfig.
type PlatformOption func(*PlatformConfig) error
// WithName sets the name of the platform.
func WithName(name string) PlatformOption {
return func(pc *PlatformConfig) error {
pc.name = name
return nil
}
}
// WithVersion sets the version of the platform.
func WithVersion(version string) PlatformOption {
return func(pc *PlatformConfig) error {
pc.version = version
return nil
}
}
// WithSource sets the source of the platform.
func WithSource(source string) PlatformOption {
return func(pc *PlatformConfig) error {
pc.source = source
return nil
}
}
// WithPath sets the path of the platform.
func WithPath(path string) PlatformOption {
return func(pc *PlatformConfig) error {
pc.path = path
return nil
}
}
// WithInternal sets the internal flag of the platform.
func WithInternal(internal bool) PlatformOption {
return func(pc *PlatformConfig) error {
pc.internal = internal
return nil
}
}
// WithKConfig sets the kconfig of the platform.
func WithKConfig(kconfig kconfig.KeyValueMap) PlatformOption {
return func(pc *PlatformConfig) error {
pc.kconfig = kconfig
return nil
}
}