api.go 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. "io"
  17. "github.com/compose-spec/compose-go/types"
  18. )
  19. // Service manages a compose project
  20. type Service interface {
  21. // Build executes the equivalent to a `compose build`
  22. Build(ctx context.Context, project *types.Project) error
  23. // Push executes the equivalent ot a `compose push`
  24. Push(ctx context.Context, project *types.Project) error
  25. // Pull executes the equivalent of a `compose pull`
  26. Pull(ctx context.Context, project *types.Project) error
  27. // Create executes the equivalent to a `compose create`
  28. Create(ctx context.Context, project *types.Project, opts CreateOptions) error
  29. // Start executes the equivalent to a `compose start`
  30. Start(ctx context.Context, project *types.Project, consumer LogConsumer) error
  31. // Up executes the equivalent to a `compose up`
  32. Up(ctx context.Context, project *types.Project, options UpOptions) error
  33. // Down executes the equivalent to a `compose down`
  34. Down(ctx context.Context, projectName string, options DownOptions) error
  35. // Logs executes the equivalent to a `compose logs`
  36. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  37. // Ps executes the equivalent to a `compose ps`
  38. Ps(ctx context.Context, projectName string) ([]ContainerSummary, error)
  39. // List executes the equivalent to a `docker stack ls`
  40. List(ctx context.Context, projectName string) ([]Stack, error)
  41. // Convert translate compose model into backend's native format
  42. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  43. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  44. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) error
  45. }
  46. // CreateOptions group options of the Create API
  47. type CreateOptions struct {
  48. // Remove legacy containers for services that are not defined in the project
  49. RemoveOrphans bool
  50. }
  51. // UpOptions group options of the Up API
  52. type UpOptions struct {
  53. // Detach will create services and return immediately
  54. Detach bool
  55. }
  56. // DownOptions group options of the Down API
  57. type DownOptions struct {
  58. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  59. RemoveOrphans bool
  60. }
  61. // ConvertOptions group options of the Convert API
  62. type ConvertOptions struct {
  63. // Format define the output format used to dump converted application model (json|yaml)
  64. Format string
  65. }
  66. // RunOptions options to execute compose run
  67. type RunOptions struct {
  68. Service string
  69. Command []string
  70. Detach bool
  71. AutoRemove bool
  72. Writer io.Writer
  73. Reader io.Reader
  74. }
  75. // PortPublisher hold status about published port
  76. type PortPublisher struct {
  77. URL string
  78. TargetPort int
  79. PublishedPort int
  80. Protocol string
  81. }
  82. // ContainerSummary hold high-level description of a container
  83. type ContainerSummary struct {
  84. ID string
  85. Name string
  86. Project string
  87. Service string
  88. State string
  89. Publishers []PortPublisher
  90. }
  91. // ServiceStatus hold status about a service
  92. type ServiceStatus struct {
  93. ID string
  94. Name string
  95. Replicas int
  96. Desired int
  97. Ports []string
  98. Publishers []PortPublisher
  99. }
  100. // LogOptions defines optional parameters for the `Log` API
  101. type LogOptions struct {
  102. Services []string
  103. }
  104. const (
  105. // STARTING indicates that stack is being deployed
  106. STARTING string = "Starting"
  107. // RUNNING indicates that stack is deployed and services are running
  108. RUNNING string = "Running"
  109. // UPDATING indicates that some stack resources are being recreated
  110. UPDATING string = "Updating"
  111. // REMOVING indicates that stack is being deleted
  112. REMOVING string = "Removing"
  113. // UNKNOWN indicates unknown stack state
  114. UNKNOWN string = "Unknown"
  115. // FAILED indicates that stack deployment failed
  116. FAILED string = "Failed"
  117. )
  118. // Stack holds the name and state of a compose application/stack
  119. type Stack struct {
  120. ID string
  121. Name string
  122. Status string
  123. Reason string
  124. }
  125. // LogConsumer is a callback to process log messages from services
  126. type LogConsumer interface {
  127. Log(service, container, message string)
  128. }