| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 | 
							- // +build local
 
- /*
 
-    Copyright 2020 Docker Compose CLI authors
 
-    Licensed under the Apache License, Version 2.0 (the "License");
 
-    you may not use this file except in compliance with the License.
 
-    You may obtain a copy of the License at
 
-        http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing, software
 
-    distributed under the License is distributed on an "AS IS" BASIS,
 
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
-    See the License for the specific language governing permissions and
 
-    limitations under the License.
 
- */
 
- package local
 
- import (
 
- 	"context"
 
- 	"fmt"
 
- 	"strings"
 
- 	"sync"
 
- 	"github.com/compose-spec/compose-go/types"
 
- 	"golang.org/x/sync/errgroup"
 
- )
 
- // ServiceStatus indicates the status of a service
 
- type ServiceStatus int
 
- // Services status flags
 
- const (
 
- 	ServiceStopped ServiceStatus = iota
 
- 	ServiceStarted
 
- )
 
- func inDependencyOrder(ctx context.Context, project *types.Project, fn func(context.Context, types.ServiceConfig) error) error {
 
- 	g := NewGraph(project.Services)
 
- 	if b, err := g.HasCycles(); b {
 
- 		return err
 
- 	}
 
- 	leaves := g.Leaves()
 
- 	eg, _ := errgroup.WithContext(ctx)
 
- 	eg.Go(func() error {
 
- 		return run(ctx, g, eg, leaves, fn)
 
- 	})
 
- 	return eg.Wait()
 
- }
 
- // Note: this could be `graph.walk` or whatever
 
- func run(ctx context.Context, graph *Graph, eg *errgroup.Group, nodes []*Vertex, fn func(context.Context, types.ServiceConfig) error) error {
 
- 	for _, node := range nodes {
 
- 		n := node
 
- 		// Don't start this service yet if all of its children have
 
- 		// not been started yet.
 
- 		if len(graph.FilterChildren(n.Service.Name, ServiceStopped)) != 0 {
 
- 			continue
 
- 		}
 
- 		eg.Go(func() error {
 
- 			err := fn(ctx, n.Service)
 
- 			if err != nil {
 
- 				return err
 
- 			}
 
- 			graph.UpdateStatus(n.Service.Name, ServiceStarted)
 
- 			return run(ctx, graph, eg, n.GetParents(), fn)
 
- 		})
 
- 	}
 
- 	return nil
 
- }
 
- // Graph represents project as service dependencies
 
- type Graph struct {
 
- 	Vertices map[string]*Vertex
 
- 	lock     sync.RWMutex
 
- }
 
- // Vertex represents a service in the dependencies structure
 
- type Vertex struct {
 
- 	Key      string
 
- 	Service  types.ServiceConfig
 
- 	Status   ServiceStatus
 
- 	Children map[string]*Vertex
 
- 	Parents  map[string]*Vertex
 
- }
 
- // GetParents returns a slice with the parent vertexes of the current Vertex
 
- func (v *Vertex) GetParents() []*Vertex {
 
- 	var res []*Vertex
 
- 	for _, p := range v.Parents {
 
- 		res = append(res, p)
 
- 	}
 
- 	return res
 
- }
 
- // NewGraph returns the dependency graph of the services
 
- func NewGraph(services types.Services) *Graph {
 
- 	graph := &Graph{
 
- 		lock:     sync.RWMutex{},
 
- 		Vertices: map[string]*Vertex{},
 
- 	}
 
- 	for _, s := range services {
 
- 		graph.AddVertex(s.Name, s)
 
- 	}
 
- 	for _, s := range services {
 
- 		for _, name := range s.GetDependencies() {
 
- 			_ = graph.AddEdge(s.Name, name)
 
- 		}
 
- 	}
 
- 	return graph
 
- }
 
- // NewVertex is the constructor function for the Vertex
 
- func NewVertex(key string, service types.ServiceConfig) *Vertex {
 
- 	return &Vertex{
 
- 		Key:      key,
 
- 		Service:  service,
 
- 		Status:   ServiceStopped,
 
- 		Parents:  map[string]*Vertex{},
 
- 		Children: map[string]*Vertex{},
 
- 	}
 
- }
 
- // AddVertex adds a vertex to the Graph
 
- func (g *Graph) AddVertex(key string, service types.ServiceConfig) {
 
- 	g.lock.Lock()
 
- 	defer g.lock.Unlock()
 
- 	v := NewVertex(key, service)
 
- 	g.Vertices[key] = v
 
- }
 
- // AddEdge adds a relationship of dependency between vertexes `source` and `destination`
 
- func (g *Graph) AddEdge(source string, destination string) error {
 
- 	g.lock.Lock()
 
- 	defer g.lock.Unlock()
 
- 	sourceVertex := g.Vertices[source]
 
- 	destinationVertex := g.Vertices[destination]
 
- 	if sourceVertex == nil {
 
- 		return fmt.Errorf("could not find %s", source)
 
- 	}
 
- 	if destinationVertex == nil {
 
- 		return fmt.Errorf("could not find %s", destination)
 
- 	}
 
- 	// If they are already connected
 
- 	if _, ok := sourceVertex.Children[destination]; ok {
 
- 		return nil
 
- 	}
 
- 	sourceVertex.Children[destination] = destinationVertex
 
- 	destinationVertex.Parents[source] = sourceVertex
 
- 	return nil
 
- }
 
- // Leaves returns the slice of leaves of the graph
 
- func (g *Graph) Leaves() []*Vertex {
 
- 	g.lock.Lock()
 
- 	defer g.lock.Unlock()
 
- 	var res []*Vertex
 
- 	for _, v := range g.Vertices {
 
- 		if len(v.Children) == 0 {
 
- 			res = append(res, v)
 
- 		}
 
- 	}
 
- 	return res
 
- }
 
- // UpdateStatus updates the status of a certain vertex
 
- func (g *Graph) UpdateStatus(key string, status ServiceStatus) {
 
- 	g.lock.Lock()
 
- 	defer g.lock.Unlock()
 
- 	g.Vertices[key].Status = status
 
- }
 
- // FilterChildren returns children of a certain vertex that are in a certain status
 
- func (g *Graph) FilterChildren(key string, status ServiceStatus) []*Vertex {
 
- 	g.lock.Lock()
 
- 	defer g.lock.Unlock()
 
- 	var res []*Vertex
 
- 	vertex := g.Vertices[key]
 
- 	for _, child := range vertex.Children {
 
- 		if child.Status == status {
 
- 			res = append(res, child)
 
- 		}
 
- 	}
 
- 	return res
 
- }
 
- // HasCycles detects cycles in the graph
 
- func (g *Graph) HasCycles() (bool, error) {
 
- 	discovered := []string{}
 
- 	finished := []string{}
 
- 	for _, vertex := range g.Vertices {
 
- 		path := []string{
 
- 			vertex.Key,
 
- 		}
 
- 		if !contains(discovered, vertex.Key) && !contains(finished, vertex.Key) {
 
- 			var err error
 
- 			discovered, finished, err = g.visit(vertex.Key, path, discovered, finished)
 
- 			if err != nil {
 
- 				return true, err
 
- 			}
 
- 		}
 
- 	}
 
- 	return false, nil
 
- }
 
- func (g *Graph) visit(key string, path []string, discovered []string, finished []string) ([]string, []string, error) {
 
- 	discovered = append(discovered, key)
 
- 	for _, v := range g.Vertices[key].Children {
 
- 		path := append(path, v.Key)
 
- 		if contains(discovered, v.Key) {
 
- 			return nil, nil, fmt.Errorf("cycle found: %s", strings.Join(path, " -> "))
 
- 		}
 
- 		if !contains(finished, v.Key) {
 
- 			if _, _, err := g.visit(v.Key, path, discovered, finished); err != nil {
 
- 				return nil, nil, err
 
- 			}
 
- 		}
 
- 	}
 
- 	discovered = remove(discovered, key)
 
- 	finished = append(finished, key)
 
- 	return discovered, finished, nil
 
- }
 
- func remove(slice []string, item string) []string {
 
- 	var s []string
 
- 	for _, i := range slice {
 
- 		if i != item {
 
- 			s = append(s, i)
 
- 		}
 
- 	}
 
- 	return s
 
- }
 
 
  |