compose.go 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. Copyright 2020 Docker Compose CLI authors
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. package compose
  14. import (
  15. "context"
  16. "encoding/json"
  17. "fmt"
  18. "io"
  19. "strings"
  20. "github.com/compose-spec/compose-go/types"
  21. "github.com/distribution/distribution/v3/reference"
  22. "github.com/docker/cli/cli/command"
  23. "github.com/docker/cli/cli/config/configfile"
  24. "github.com/docker/cli/cli/flags"
  25. "github.com/docker/cli/cli/streams"
  26. moby "github.com/docker/docker/api/types"
  27. "github.com/docker/docker/api/types/filters"
  28. "github.com/docker/docker/client"
  29. "github.com/opencontainers/go-digest"
  30. "github.com/pkg/errors"
  31. "gopkg.in/yaml.v2"
  32. "github.com/docker/compose/v2/pkg/api"
  33. )
  34. // NewComposeService create a local implementation of the compose.Service API
  35. func NewComposeService(dockerCli command.Cli) api.Service {
  36. return &composeService{
  37. dockerCli: dockerCli,
  38. maxConcurrency: -1,
  39. dryRun: false,
  40. }
  41. }
  42. type composeService struct {
  43. dockerCli command.Cli
  44. maxConcurrency int
  45. dryRun bool
  46. }
  47. func (s *composeService) apiClient() client.APIClient {
  48. return s.dockerCli.Client()
  49. }
  50. func (s *composeService) configFile() *configfile.ConfigFile {
  51. return s.dockerCli.ConfigFile()
  52. }
  53. func (s *composeService) MaxConcurrency(i int) {
  54. s.maxConcurrency = i
  55. }
  56. func (s *composeService) DryRunMode(dryRun bool) error {
  57. if dryRun {
  58. cli, err := command.NewDockerCli()
  59. if err != nil {
  60. return err
  61. }
  62. err = cli.Initialize(flags.NewClientOptions(), command.WithInitializeClient(func(cli *command.DockerCli) (client.APIClient, error) {
  63. dryRunClient := api.NewDryRunClient()
  64. dryRunClient.WithAPIClient(s.apiClient())
  65. return dryRunClient, nil
  66. }))
  67. if err != nil {
  68. return err
  69. }
  70. s.dockerCli = cli
  71. }
  72. return nil
  73. }
  74. func (s *composeService) stdout() *streams.Out {
  75. return s.dockerCli.Out()
  76. }
  77. func (s *composeService) stdin() *streams.In {
  78. return s.dockerCli.In()
  79. }
  80. func (s *composeService) stderr() io.Writer {
  81. return s.dockerCli.Err()
  82. }
  83. func getCanonicalContainerName(c moby.Container) string {
  84. if len(c.Names) == 0 {
  85. // corner case, sometime happens on removal. return short ID as a safeguard value
  86. return c.ID[:12]
  87. }
  88. // Names return container canonical name /foo + link aliases /linked_by/foo
  89. for _, name := range c.Names {
  90. if strings.LastIndex(name, "/") == 0 {
  91. return name[1:]
  92. }
  93. }
  94. return c.Names[0][1:]
  95. }
  96. func getContainerNameWithoutProject(c moby.Container) string {
  97. name := getCanonicalContainerName(c)
  98. project := c.Labels[api.ProjectLabel]
  99. prefix := fmt.Sprintf("%s_%s_", project, c.Labels[api.ServiceLabel])
  100. if strings.HasPrefix(name, prefix) {
  101. return name[len(project)+1:]
  102. }
  103. return name
  104. }
  105. func (s *composeService) Convert(ctx context.Context, project *types.Project, options api.ConvertOptions) ([]byte, error) {
  106. if options.ResolveImageDigests {
  107. info, err := s.apiClient().Info(ctx)
  108. if err != nil {
  109. return nil, err
  110. }
  111. err = project.ResolveImages(func(named reference.Named) (digest.Digest, error) {
  112. auth, err := encodedAuth(named, info, s.configFile())
  113. if err != nil {
  114. return "", err
  115. }
  116. inspect, err := s.apiClient().DistributionInspect(ctx, named.String(), auth)
  117. if err != nil {
  118. return "", err
  119. }
  120. return inspect.Descriptor.Digest, nil
  121. })
  122. if err != nil {
  123. return nil, err
  124. }
  125. }
  126. switch options.Format {
  127. case "json":
  128. return json.MarshalIndent(project, "", " ")
  129. case "yaml":
  130. return yaml.Marshal(project)
  131. default:
  132. return nil, fmt.Errorf("unsupported format %q", options.Format)
  133. }
  134. }
  135. // projectFromName builds a types.Project based on actual resources with compose labels set
  136. func (s *composeService) projectFromName(containers Containers, projectName string, services ...string) (*types.Project, error) {
  137. project := &types.Project{
  138. Name: projectName,
  139. }
  140. if len(containers) == 0 {
  141. return project, errors.Wrap(api.ErrNotFound, fmt.Sprintf("no container found for project %q", projectName))
  142. }
  143. set := map[string]*types.ServiceConfig{}
  144. for _, c := range containers {
  145. serviceLabel := c.Labels[api.ServiceLabel]
  146. _, ok := set[serviceLabel]
  147. if !ok {
  148. set[serviceLabel] = &types.ServiceConfig{
  149. Name: serviceLabel,
  150. Image: c.Image,
  151. Labels: c.Labels,
  152. }
  153. }
  154. set[serviceLabel].Scale++
  155. }
  156. for _, service := range set {
  157. dependencies := service.Labels[api.DependenciesLabel]
  158. if len(dependencies) > 0 {
  159. service.DependsOn = types.DependsOnConfig{}
  160. for _, dc := range strings.Split(dependencies, ",") {
  161. dcArr := strings.Split(dc, ":")
  162. condition := ServiceConditionRunningOrHealthy
  163. dependency := dcArr[0]
  164. // backward compatibility
  165. if len(dcArr) > 1 {
  166. condition = dcArr[1]
  167. }
  168. service.DependsOn[dependency] = types.ServiceDependency{Condition: condition}
  169. }
  170. }
  171. project.Services = append(project.Services, *service)
  172. }
  173. SERVICES:
  174. for _, qs := range services {
  175. for _, es := range project.Services {
  176. if es.Name == qs {
  177. continue SERVICES
  178. }
  179. }
  180. return project, errors.Wrapf(api.ErrNotFound, "no such service: %q", qs)
  181. }
  182. err := project.ForServices(services)
  183. if err != nil {
  184. return project, err
  185. }
  186. return project, nil
  187. }
  188. func (s *composeService) actualVolumes(ctx context.Context, projectName string) (types.Volumes, error) {
  189. volumes, err := s.apiClient().VolumeList(ctx, filters.NewArgs(projectFilter(projectName)))
  190. if err != nil {
  191. return nil, err
  192. }
  193. actual := types.Volumes{}
  194. for _, vol := range volumes.Volumes {
  195. actual[vol.Labels[api.VolumeLabel]] = types.VolumeConfig{
  196. Name: vol.Name,
  197. Driver: vol.Driver,
  198. Labels: vol.Labels,
  199. }
  200. }
  201. return actual, nil
  202. }
  203. func (s *composeService) actualNetworks(ctx context.Context, projectName string) (types.Networks, error) {
  204. networks, err := s.apiClient().NetworkList(ctx, moby.NetworkListOptions{
  205. Filters: filters.NewArgs(projectFilter(projectName)),
  206. })
  207. if err != nil {
  208. return nil, err
  209. }
  210. actual := types.Networks{}
  211. for _, net := range networks {
  212. actual[net.Labels[api.NetworkLabel]] = types.NetworkConfig{
  213. Name: net.Name,
  214. Driver: net.Driver,
  215. Labels: net.Labels,
  216. }
  217. }
  218. return actual, nil
  219. }