api.go 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. // 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) error
  49. }
  50. // CreateOptions group options of the Create API
  51. type CreateOptions struct {
  52. // Remove legacy containers for services that are not defined in the project
  53. RemoveOrphans bool
  54. // Recreate define the strategy to apply on existing containers
  55. Recreate string
  56. }
  57. // UpOptions group options of the Up API
  58. type UpOptions struct {
  59. // Detach will create services and return immediately
  60. Detach bool
  61. }
  62. // DownOptions group options of the Down API
  63. type DownOptions struct {
  64. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  65. RemoveOrphans bool
  66. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  67. Project *types.Project
  68. }
  69. // ConvertOptions group options of the Convert API
  70. type ConvertOptions struct {
  71. // Format define the output format used to dump converted application model (json|yaml)
  72. Format string
  73. }
  74. // KillOptions group options of the Kill API
  75. type KillOptions struct {
  76. // Signal to send to containers
  77. Signal string
  78. }
  79. // RunOptions options to execute compose run
  80. type RunOptions struct {
  81. Service string
  82. Command []string
  83. Detach bool
  84. AutoRemove bool
  85. Writer io.Writer
  86. Reader io.Reader
  87. }
  88. // PsOptions group options of the Ps API
  89. type PsOptions struct {
  90. All bool
  91. }
  92. // PortPublisher hold status about published port
  93. type PortPublisher struct {
  94. URL string
  95. TargetPort int
  96. PublishedPort int
  97. Protocol string
  98. }
  99. // ContainerSummary hold high-level description of a container
  100. type ContainerSummary struct {
  101. ID string
  102. Name string
  103. Project string
  104. Service string
  105. State string
  106. Health string
  107. Publishers []PortPublisher
  108. }
  109. // ServiceStatus hold status about a service
  110. type ServiceStatus struct {
  111. ID string
  112. Name string
  113. Replicas int
  114. Desired int
  115. Ports []string
  116. Publishers []PortPublisher
  117. }
  118. // LogOptions defines optional parameters for the `Log` API
  119. type LogOptions struct {
  120. Services []string
  121. Tail string
  122. Follow bool
  123. }
  124. const (
  125. // STARTING indicates that stack is being deployed
  126. STARTING string = "Starting"
  127. // RUNNING indicates that stack is deployed and services are running
  128. RUNNING string = "Running"
  129. // UPDATING indicates that some stack resources are being recreated
  130. UPDATING string = "Updating"
  131. // REMOVING indicates that stack is being deleted
  132. REMOVING string = "Removing"
  133. // UNKNOWN indicates unknown stack state
  134. UNKNOWN string = "Unknown"
  135. // FAILED indicates that stack deployment failed
  136. FAILED string = "Failed"
  137. )
  138. const (
  139. // RecreateDiverged to recreate services which configuration diverges from compose model
  140. RecreateDiverged = "diverged"
  141. // RecreateForce to force service container being recreated
  142. RecreateForce = "force"
  143. // RecreateNever to never recreate existing service containers
  144. RecreateNever = "never"
  145. )
  146. // Stack holds the name and state of a compose application/stack
  147. type Stack struct {
  148. ID string
  149. Name string
  150. Status string
  151. Reason string
  152. }
  153. // LogConsumer is a callback to process log messages from services
  154. type LogConsumer interface {
  155. Log(service, container, message string)
  156. }