2018-07-22 22:54:44 +02:00
|
|
|
package taskfile
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-09-10 03:29:29 +02:00
|
|
|
"strings"
|
2018-07-22 22:54:44 +02:00
|
|
|
)
|
|
|
|
|
2018-09-10 03:29:29 +02:00
|
|
|
// NamespaceSeparator contains the character that separates namescapes
|
|
|
|
const NamespaceSeparator = ":"
|
|
|
|
|
2018-07-22 22:54:44 +02:00
|
|
|
// Merge merges the second Taskfile into the first
|
2018-09-10 03:29:29 +02:00
|
|
|
func Merge(t1, t2 *Taskfile, namespaces ...string) error {
|
2018-07-22 22:54:44 +02:00
|
|
|
if t1.Version != t2.Version {
|
|
|
|
return fmt.Errorf(`Taskfiles versions should match. First is "%s" but second is "%s"`, t1.Version, t2.Version)
|
|
|
|
}
|
|
|
|
|
|
|
|
if t2.Expansions != 0 && t2.Expansions != 2 {
|
|
|
|
t1.Expansions = t2.Expansions
|
|
|
|
}
|
|
|
|
if t2.Output != "" {
|
|
|
|
t1.Output = t2.Output
|
|
|
|
}
|
2018-12-02 18:17:32 +02:00
|
|
|
|
|
|
|
if t1.Includes == nil {
|
2021-01-01 23:27:50 +02:00
|
|
|
t1.Includes = &IncludedTaskfiles{}
|
2018-09-10 03:29:29 +02:00
|
|
|
}
|
2021-01-01 23:27:50 +02:00
|
|
|
t1.Includes.Merge(t2.Includes)
|
2018-12-02 18:17:32 +02:00
|
|
|
|
|
|
|
if t1.Vars == nil {
|
2020-03-29 21:54:59 +02:00
|
|
|
t1.Vars = &Vars{}
|
2018-12-02 18:17:32 +02:00
|
|
|
}
|
2019-01-02 17:20:12 +02:00
|
|
|
if t1.Env == nil {
|
2020-03-29 21:54:59 +02:00
|
|
|
t1.Env = &Vars{}
|
2019-01-02 17:20:12 +02:00
|
|
|
}
|
2020-03-29 21:54:59 +02:00
|
|
|
t1.Vars.Merge(t2.Vars)
|
|
|
|
t1.Env.Merge(t2.Env)
|
2019-01-02 17:20:12 +02:00
|
|
|
|
2018-12-02 18:17:32 +02:00
|
|
|
if t1.Tasks == nil {
|
|
|
|
t1.Tasks = make(Tasks)
|
|
|
|
}
|
2018-07-22 22:54:44 +02:00
|
|
|
for k, v := range t2.Tasks {
|
2018-12-09 19:54:58 +02:00
|
|
|
// FIXME(@andreynering): Refactor this block, otherwise we can
|
|
|
|
// have serious side-effects in the future, since we're editing
|
|
|
|
// the original references instead of deep copying them.
|
|
|
|
|
2018-09-10 03:29:29 +02:00
|
|
|
t1.Tasks[taskNameWithNamespace(k, namespaces...)] = v
|
2018-12-09 19:54:58 +02:00
|
|
|
|
|
|
|
for _, dep := range v.Deps {
|
|
|
|
dep.Task = taskNameWithNamespace(dep.Task, namespaces...)
|
|
|
|
}
|
|
|
|
for _, cmd := range v.Cmds {
|
2021-11-26 11:20:05 +02:00
|
|
|
if cmd != nil && cmd.Task != "" {
|
2018-12-09 19:54:58 +02:00
|
|
|
cmd.Task = taskNameWithNamespace(cmd.Task, namespaces...)
|
|
|
|
}
|
|
|
|
}
|
2018-07-22 22:54:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-09-10 03:29:29 +02:00
|
|
|
|
|
|
|
func taskNameWithNamespace(taskName string, namespaces ...string) string {
|
2019-02-03 01:12:57 +02:00
|
|
|
if strings.HasPrefix(taskName, ":") {
|
|
|
|
return strings.TrimPrefix(taskName, ":")
|
|
|
|
}
|
2018-09-10 03:29:29 +02:00
|
|
|
return strings.Join(append(namespaces, taskName), NamespaceSeparator)
|
|
|
|
}
|