-
Notifications
You must be signed in to change notification settings - Fork 126
/
config_jasper.go
54 lines (46 loc) · 1.87 KB
/
config_jasper.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
package evergreen
import (
"context"
"github.com/mongodb/anser/bsonutil"
"github.com/pkg/errors"
"go.mongodb.org/mongo-driver/bson"
)
// HostJasperConfig represents the configuration of the Jasper service running
// on non-legacy hosts.
type HostJasperConfig struct {
BinaryName string `yaml:"binary_name" bson:"binary_name" json:"binary_name"`
DownloadFileName string `yaml:"download_file_name" bson:"download_file_name" json:"download_file_name"`
Port int `yaml:"port" bson:"port" json:"port"`
URL string `yaml:"url" bson:"url" json:"url"`
Version string `yaml:"version" bson:"version" json:"version"`
}
var (
hostJasperBinaryNameKey = bsonutil.MustHaveTag(HostJasperConfig{}, "BinaryName")
hostJasperDownloadFileNameKey = bsonutil.MustHaveTag(HostJasperConfig{}, "DownloadFileName")
hostJasperPortKey = bsonutil.MustHaveTag(HostJasperConfig{}, "Port")
hostJasperURLKey = bsonutil.MustHaveTag(HostJasperConfig{}, "URL")
hostJasperVersionKey = bsonutil.MustHaveTag(HostJasperConfig{}, "Version")
)
func (c *HostJasperConfig) SectionId() string { return "host_jasper" }
func (c *HostJasperConfig) Get(ctx context.Context) error {
return getConfigSection(ctx, c)
}
func (c *HostJasperConfig) Set(ctx context.Context) error {
return errors.Wrapf(setConfigSection(ctx, c.SectionId(), bson.M{
"$set": bson.M{
hostJasperBinaryNameKey: c.BinaryName,
hostJasperDownloadFileNameKey: c.DownloadFileName,
hostJasperPortKey: c.Port,
hostJasperURLKey: c.URL,
hostJasperVersionKey: c.Version,
}}), "updating config section '%s'", c.SectionId(),
)
}
func (c *HostJasperConfig) ValidateAndDefault() error {
if c.Port == 0 {
c.Port = DefaultJasperPort
} else if c.Port < 0 {
return errors.Errorf("Jasper port must be a positive integer")
}
return nil
}