api.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  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, options StartOptions) error
  31. // Stop executes the equivalent to a `compose stop`
  32. Stop(ctx context.Context, project *types.Project) error
  33. // Up executes the equivalent to a `compose up`
  34. Up(ctx context.Context, project *types.Project, options UpOptions) error
  35. // Down executes the equivalent to a `compose down`
  36. Down(ctx context.Context, projectName string, options DownOptions) error
  37. // Logs executes the equivalent to a `compose logs`
  38. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  39. // Ps executes the equivalent to a `compose ps`
  40. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  41. // List executes the equivalent to a `docker stack ls`
  42. List(ctx context.Context) ([]Stack, error)
  43. // Convert translate compose model into backend's native format
  44. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  45. // Kill executes the equivalent to a `compose kill`
  46. Kill(ctx context.Context, project *types.Project, options KillOptions) error
  47. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  48. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  49. // Remove executes the equivalent to a `compose rm`
  50. Remove(ctx context.Context, project *types.Project, options RemoveOptions) error
  51. }
  52. // CreateOptions group options of the Create API
  53. type CreateOptions struct {
  54. // Remove legacy containers for services that are not defined in the project
  55. RemoveOrphans bool
  56. // Recreate define the strategy to apply on existing containers
  57. Recreate string
  58. }
  59. // StartOptions group options of the Start API
  60. type StartOptions struct {
  61. // Attach will attach to service containers and send container logs and events
  62. Attach ContainerEventListener
  63. }
  64. // UpOptions group options of the Up API
  65. type UpOptions struct {
  66. // Detach will create services and return immediately
  67. Detach bool
  68. }
  69. // DownOptions group options of the Down API
  70. type DownOptions struct {
  71. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  72. RemoveOrphans bool
  73. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  74. Project *types.Project
  75. }
  76. // ConvertOptions group options of the Convert API
  77. type ConvertOptions struct {
  78. // Format define the output format used to dump converted application model (json|yaml)
  79. Format string
  80. // Output defines the path to save the application model
  81. Output string
  82. }
  83. // KillOptions group options of the Kill API
  84. type KillOptions struct {
  85. // Signal to send to containers
  86. Signal string
  87. }
  88. // RemoveOptions group options of the Remove API
  89. type RemoveOptions struct {
  90. // Volumes remove anonymous volumes
  91. Volumes bool
  92. // Force don't ask to confirm removal
  93. Force bool
  94. }
  95. // RunOptions options to execute compose run
  96. type RunOptions struct {
  97. Service string
  98. Command []string
  99. Detach bool
  100. AutoRemove bool
  101. Writer io.Writer
  102. Reader io.Reader
  103. }
  104. // PsOptions group options of the Ps API
  105. type PsOptions struct {
  106. All bool
  107. }
  108. // PortPublisher hold status about published port
  109. type PortPublisher struct {
  110. URL string
  111. TargetPort int
  112. PublishedPort int
  113. Protocol string
  114. }
  115. // ContainerSummary hold high-level description of a container
  116. type ContainerSummary struct {
  117. ID string
  118. Name string
  119. Project string
  120. Service string
  121. State string
  122. Health string
  123. Publishers []PortPublisher
  124. }
  125. // ServiceStatus hold status about a service
  126. type ServiceStatus struct {
  127. ID string
  128. Name string
  129. Replicas int
  130. Desired int
  131. Ports []string
  132. Publishers []PortPublisher
  133. }
  134. // LogOptions defines optional parameters for the `Log` API
  135. type LogOptions struct {
  136. Services []string
  137. Tail string
  138. Follow bool
  139. }
  140. const (
  141. // STARTING indicates that stack is being deployed
  142. STARTING string = "Starting"
  143. // RUNNING indicates that stack is deployed and services are running
  144. RUNNING string = "Running"
  145. // UPDATING indicates that some stack resources are being recreated
  146. UPDATING string = "Updating"
  147. // REMOVING indicates that stack is being deleted
  148. REMOVING string = "Removing"
  149. // UNKNOWN indicates unknown stack state
  150. UNKNOWN string = "Unknown"
  151. // FAILED indicates that stack deployment failed
  152. FAILED string = "Failed"
  153. )
  154. const (
  155. // RecreateDiverged to recreate services which configuration diverges from compose model
  156. RecreateDiverged = "diverged"
  157. // RecreateForce to force service container being recreated
  158. RecreateForce = "force"
  159. // RecreateNever to never recreate existing service containers
  160. RecreateNever = "never"
  161. )
  162. // Stack holds the name and state of a compose application/stack
  163. type Stack struct {
  164. ID string
  165. Name string
  166. Status string
  167. Reason string
  168. }
  169. // LogConsumer is a callback to process log messages from services
  170. type LogConsumer interface {
  171. Log(service, container, message string)
  172. Status(service, container, msg string)
  173. Register(service string, source string)
  174. }
  175. // ContainerEventListener is a callback to process ContainerEvent from services
  176. type ContainerEventListener func(event ContainerEvent)
  177. // ContainerEvent notify an event has been collected on Source container implementing Service
  178. type ContainerEvent struct {
  179. Type int
  180. Source string
  181. Service string
  182. Line string
  183. ExitCode int
  184. }
  185. const (
  186. // ContainerEventLog is a ContainerEvent of type log. Line is set
  187. ContainerEventLog = iota
  188. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  189. ContainerEventAttach
  190. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  191. ContainerEventExit
  192. )