api.go 4.4 KB

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