api.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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, consumer LogConsumer) 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) ([]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. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  46. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) error
  47. }
  48. // CreateOptions group options of the Create API
  49. type CreateOptions struct {
  50. // Remove legacy containers for services that are not defined in the project
  51. RemoveOrphans bool
  52. }
  53. // UpOptions group options of the Up API
  54. type UpOptions struct {
  55. // Detach will create services and return immediately
  56. Detach bool
  57. }
  58. // DownOptions group options of the Down API
  59. type DownOptions struct {
  60. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  61. RemoveOrphans bool
  62. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  63. Project *types.Project
  64. }
  65. // ConvertOptions group options of the Convert API
  66. type ConvertOptions struct {
  67. // Format define the output format used to dump converted application model (json|yaml)
  68. Format string
  69. }
  70. // RunOptions options to execute compose run
  71. type RunOptions struct {
  72. Service string
  73. Command []string
  74. Detach bool
  75. AutoRemove bool
  76. Writer io.Writer
  77. Reader io.Reader
  78. }
  79. // PortPublisher hold status about published port
  80. type PortPublisher struct {
  81. URL string
  82. TargetPort int
  83. PublishedPort int
  84. Protocol string
  85. }
  86. // ContainerSummary hold high-level description of a container
  87. type ContainerSummary struct {
  88. ID string
  89. Name string
  90. Project string
  91. Service string
  92. State string
  93. Publishers []PortPublisher
  94. }
  95. // ServiceStatus hold status about a service
  96. type ServiceStatus struct {
  97. ID string
  98. Name string
  99. Replicas int
  100. Desired int
  101. Ports []string
  102. Publishers []PortPublisher
  103. }
  104. // LogOptions defines optional parameters for the `Log` API
  105. type LogOptions struct {
  106. Services []string
  107. }
  108. const (
  109. // STARTING indicates that stack is being deployed
  110. STARTING string = "Starting"
  111. // RUNNING indicates that stack is deployed and services are running
  112. RUNNING string = "Running"
  113. // UPDATING indicates that some stack resources are being recreated
  114. UPDATING string = "Updating"
  115. // REMOVING indicates that stack is being deleted
  116. REMOVING string = "Removing"
  117. // UNKNOWN indicates unknown stack state
  118. UNKNOWN string = "Unknown"
  119. // FAILED indicates that stack deployment failed
  120. FAILED string = "Failed"
  121. )
  122. // Stack holds the name and state of a compose application/stack
  123. type Stack struct {
  124. ID string
  125. Name string
  126. Status string
  127. Reason string
  128. }
  129. // LogConsumer is a callback to process log messages from services
  130. type LogConsumer interface {
  131. Log(service, container, message string)
  132. }