Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions pkg/build/registry/buildconfig/circular.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
package buildconfig

import (
"errors"

"github.com/openshift/origin/pkg/build/api"
)

// deps contains all image repositories mapped to their dependencies
var deps = make(map[string]map[string]string)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since this datastructure is in no way persisted, you need some initialization logic that will rebuild it when the server starts.


// circularDeps checks for circular dependencies in build configurations
func circularDeps(config *api.BuildConfig) bool {
if config.Parameters.Output.To == nil || len(config.Triggers) == 0 {
return false
}

// Create output spec
if len(config.Parameters.Output.To.Namespace) == 0 {
config.Parameters.Output.To.Namespace = config.Namespace
}
if len(config.Parameters.Output.Tag) == 0 {
config.Parameters.Output.Tag = "latest"
}
to := config.Parameters.Output.To.Namespace + "/" + config.Parameters.Output.To.Name + ":" + config.Parameters.Output.Tag

for _, tr := range config.Triggers {
if tr.ImageChange == nil {
continue
}

// Create input spec
if len(tr.ImageChange.From.Namespace) == 0 {
tr.ImageChange.From.Namespace = config.Namespace
}
if len(tr.ImageChange.Tag) == 0 {
tr.ImageChange.Tag = "latest"
}
from := tr.ImageChange.From.Namespace + "/" + tr.ImageChange.From.Name + ":" + tr.ImageChange.Tag

// Check for any conflicts in dependencies
if err := findConflicts(from, to); err != nil {
return true
}
// The trigger is valid, add the relationship in deps
if _, ok := deps[from]; !ok {
deps[from] = make(map[string]string)
}
fromDeps := deps[from]
fromDeps[to] = config.Name

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

needs to include the config namespace.

}

return false
}

// findConflicts traces if there are any conflicts in the dependencies
// of From and To in a build configuration
func findConflicts(from, to string) error {
toDeps := deps[to]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should short circuit with a check if from==to, otherwise you may never catch that condition.


// Check the dependencies of the dependency we want to add
for toDep := range toDeps {
if from == toDep {
// From already depends on To
return errors.New("circular dependencies in buildConfigs")
}
if err := findConflicts(from, toDep); err != nil {
// From already depends on another repo that depends on To
return err
}
}
return nil
}

func deleteFromDeps(id string) {
for _, dep := range deps {
for repo, cfgName := range dep {
if cfgName == id {
delete(dep, repo)
}
}
}
}
Loading