This repository has been archived by the owner on Jan 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
config.go
91 lines (70 loc) · 1.92 KB
/
config.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
package jobs
import (
"fmt"
"github.com/spiral/roadrunner"
"github.com/spiral/roadrunner/service"
)
// Config defines settings for job broker, workers and job-pipeline mapping.
type Config struct {
// Workers configures roadrunner server and worker busy.
Workers *roadrunner.ServerConfig
// Dispatch defines where and how to match jobs.
Dispatch map[string]*Options
// Pipelines defines mapping between PHP job pipeline and associated job broker.
Pipelines map[string]*Pipeline
// Consuming specifies names of pipelines to be consumed on service start.
Consume []string
// parent config for broken options.
parent service.Config
pipelines Pipelines
route Dispatcher
}
// Hydrate populates config values.
func (c *Config) Hydrate(cfg service.Config) (err error) {
c.Workers = &roadrunner.ServerConfig{}
c.Workers.InitDefaults()
if err := cfg.Unmarshal(&c); err != nil {
return err
}
c.pipelines, err = initPipelines(c.Pipelines)
if err != nil {
return err
}
if c.Workers.Command != "" {
if err := c.Workers.Pool.Valid(); err != nil {
return c.Workers.Pool.Valid()
}
}
c.parent = cfg
c.route = initDispatcher(c.Dispatch)
return nil
}
// MatchPipeline locates the pipeline associated with the job.
func (c *Config) MatchPipeline(job *Job) (*Pipeline, *Options, error) {
opt := c.route.match(job)
pipe := ""
if job.Options != nil {
pipe = job.Options.Pipeline
}
if pipe == "" && opt != nil {
pipe = opt.Pipeline
}
if pipe == "" {
return nil, nil, fmt.Errorf("unable to locate pipeline for `%s`", job.Job)
}
if p := c.pipelines.Get(pipe); p != nil {
return p, opt, nil
}
return nil, nil, fmt.Errorf("undefined pipeline `%s`", pipe)
}
// Get underlying broker config.
func (c *Config) Get(service string) service.Config {
if c.parent == nil {
return nil
}
return c.parent.Get(service)
}
// Unmarshal is doing nothing.
func (c *Config) Unmarshal(out interface{}) error {
return nil
}