api.go 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  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. "strings"
  18. "time"
  19. "github.com/compose-spec/compose-go/types"
  20. )
  21. // Service manages a compose project
  22. type Service interface {
  23. // Build executes the equivalent to a `compose build`
  24. Build(ctx context.Context, project *types.Project, options BuildOptions) error
  25. // Push executes the equivalent ot a `compose push`
  26. Push(ctx context.Context, project *types.Project) error
  27. // Pull executes the equivalent of a `compose pull`
  28. Pull(ctx context.Context, project *types.Project) error
  29. // Create executes the equivalent to a `compose create`
  30. Create(ctx context.Context, project *types.Project, opts CreateOptions) error
  31. // Start executes the equivalent to a `compose start`
  32. Start(ctx context.Context, project *types.Project, options StartOptions) error
  33. // Stop executes the equivalent to a `compose stop`
  34. Stop(ctx context.Context, project *types.Project, options StopOptions) error
  35. // Up executes the equivalent to a `compose up`
  36. Up(ctx context.Context, project *types.Project, options UpOptions) error
  37. // Down executes the equivalent to a `compose down`
  38. Down(ctx context.Context, projectName string, options DownOptions) error
  39. // Logs executes the equivalent to a `compose logs`
  40. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  41. // Ps executes the equivalent to a `compose ps`
  42. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  43. // List executes the equivalent to a `docker stack ls`
  44. List(ctx context.Context, options ListOptions) ([]Stack, error)
  45. // Convert translate compose model into backend's native format
  46. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  47. // Kill executes the equivalent to a `compose kill`
  48. Kill(ctx context.Context, project *types.Project, options KillOptions) error
  49. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  50. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  51. // Remove executes the equivalent to a `compose rm`
  52. Remove(ctx context.Context, project *types.Project, options RemoveOptions) ([]string, error)
  53. // Exec executes a command in a running service container
  54. Exec(ctx context.Context, project *types.Project, opts RunOptions) error
  55. // Pause executes the equivalent to a `compose pause`
  56. Pause(ctx context.Context, project *types.Project) error
  57. // UnPause executes the equivalent to a `compose unpause`
  58. UnPause(ctx context.Context, project *types.Project) error
  59. }
  60. // BuildOptions group options of the Build API
  61. type BuildOptions struct {
  62. // Pull always attempt to pull a newer version of the image
  63. Pull bool
  64. // Progress set type of progress output ("auto", "plain", "tty")
  65. Progress string
  66. }
  67. // CreateOptions group options of the Create API
  68. type CreateOptions struct {
  69. // Services defines the services user interacts with
  70. Services []string
  71. // Remove legacy containers for services that are not defined in the project
  72. RemoveOrphans bool
  73. // Recreate define the strategy to apply on existing containers
  74. Recreate string
  75. // RecreateDependencies define the strategy to apply on dependencies services
  76. RecreateDependencies string
  77. // Inherit reuse anonymous volumes from previous container
  78. Inherit bool
  79. // Timeout set delay to wait for container to gracelfuly stop before sending SIGKILL
  80. Timeout *time.Duration
  81. }
  82. // StartOptions group options of the Start API
  83. type StartOptions struct {
  84. // Attach will attach to service containers and send container logs and events
  85. Attach ContainerEventListener
  86. }
  87. // StopOptions group options of the Stop API
  88. type StopOptions struct {
  89. // Timeout override container stop timeout
  90. Timeout *time.Duration
  91. }
  92. // UpOptions group options of the Up API
  93. type UpOptions struct {
  94. // Detach will create services and return immediately
  95. Detach bool
  96. }
  97. // DownOptions group options of the Down API
  98. type DownOptions struct {
  99. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  100. RemoveOrphans bool
  101. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  102. Project *types.Project
  103. // Timeout override container stop timeout
  104. Timeout *time.Duration
  105. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  106. Images string
  107. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  108. Volumes bool
  109. }
  110. // ConvertOptions group options of the Convert API
  111. type ConvertOptions struct {
  112. // Format define the output format used to dump converted application model (json|yaml)
  113. Format string
  114. // Output defines the path to save the application model
  115. Output string
  116. }
  117. // KillOptions group options of the Kill API
  118. type KillOptions struct {
  119. // Signal to send to containers
  120. Signal string
  121. }
  122. // RemoveOptions group options of the Remove API
  123. type RemoveOptions struct {
  124. // DryRun just list removable resources
  125. DryRun bool
  126. // Volumes remove anonymous volumes
  127. Volumes bool
  128. // Force don't ask to confirm removal
  129. Force bool
  130. }
  131. // RunOptions options to execute compose run
  132. type RunOptions struct {
  133. Name string
  134. Service string
  135. Command []string
  136. Entrypoint []string
  137. Detach bool
  138. AutoRemove bool
  139. Writer io.Writer
  140. Reader io.Reader
  141. Tty bool
  142. WorkingDir string
  143. User string
  144. Environment []string
  145. Labels types.Labels
  146. Privileged bool
  147. // used by exec
  148. Index int
  149. }
  150. // EnvironmentMap return RunOptions.Environment as a MappingWithEquals
  151. func (opts *RunOptions) EnvironmentMap() types.MappingWithEquals {
  152. environment := types.MappingWithEquals{}
  153. for _, s := range opts.Environment {
  154. parts := strings.SplitN(s, "=", 2)
  155. key := parts[0]
  156. switch {
  157. case len(parts) == 1:
  158. environment[key] = nil
  159. default:
  160. environment[key] = &parts[1]
  161. }
  162. }
  163. return environment
  164. }
  165. // ListOptions group options of the ls API
  166. type ListOptions struct {
  167. All bool
  168. }
  169. // PsOptions group options of the Ps API
  170. type PsOptions struct {
  171. All bool
  172. }
  173. // PortPublisher hold status about published port
  174. type PortPublisher struct {
  175. URL string
  176. TargetPort int
  177. PublishedPort int
  178. Protocol string
  179. }
  180. // ContainerSummary hold high-level description of a container
  181. type ContainerSummary struct {
  182. ID string
  183. Name string
  184. Project string
  185. Service string
  186. State string
  187. Health string
  188. Publishers []PortPublisher
  189. }
  190. // ServiceStatus hold status about a service
  191. type ServiceStatus struct {
  192. ID string
  193. Name string
  194. Replicas int
  195. Desired int
  196. Ports []string
  197. Publishers []PortPublisher
  198. }
  199. // LogOptions defines optional parameters for the `Log` API
  200. type LogOptions struct {
  201. Services []string
  202. Tail string
  203. Follow bool
  204. Timestamps bool
  205. }
  206. const (
  207. // STARTING indicates that stack is being deployed
  208. STARTING string = "Starting"
  209. // RUNNING indicates that stack is deployed and services are running
  210. RUNNING string = "Running"
  211. // UPDATING indicates that some stack resources are being recreated
  212. UPDATING string = "Updating"
  213. // REMOVING indicates that stack is being deleted
  214. REMOVING string = "Removing"
  215. // UNKNOWN indicates unknown stack state
  216. UNKNOWN string = "Unknown"
  217. // FAILED indicates that stack deployment failed
  218. FAILED string = "Failed"
  219. )
  220. const (
  221. // RecreateDiverged to recreate services which configuration diverges from compose model
  222. RecreateDiverged = "diverged"
  223. // RecreateForce to force service container being recreated
  224. RecreateForce = "force"
  225. // RecreateNever to never recreate existing service containers
  226. RecreateNever = "never"
  227. )
  228. // Stack holds the name and state of a compose application/stack
  229. type Stack struct {
  230. ID string
  231. Name string
  232. Status string
  233. Reason string
  234. }
  235. // LogConsumer is a callback to process log messages from services
  236. type LogConsumer interface {
  237. Log(name, service, container, message string)
  238. Status(name, container, msg string)
  239. Register(name string, source string)
  240. }
  241. // ContainerEventListener is a callback to process ContainerEvent from services
  242. type ContainerEventListener func(event ContainerEvent)
  243. // ContainerEvent notify an event has been collected on Source container implementing Service
  244. type ContainerEvent struct {
  245. Type int
  246. Source string
  247. Service string
  248. Name string
  249. Line string
  250. ExitCode int
  251. }
  252. const (
  253. // ContainerEventLog is a ContainerEvent of type log. Line is set
  254. ContainerEventLog = iota
  255. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  256. ContainerEventAttach
  257. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  258. ContainerEventExit
  259. // UserCancel user cancelled compose up, we are stopping containers
  260. UserCancel
  261. )