1
0

api.go 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. // Remove legacy containers for services that are not defined in the project
  70. RemoveOrphans bool
  71. // Recreate define the strategy to apply on existing containers
  72. Recreate string
  73. }
  74. // StartOptions group options of the Start API
  75. type StartOptions struct {
  76. // Attach will attach to service containers and send container logs and events
  77. Attach ContainerEventListener
  78. }
  79. // StopOptions group options of the Stop API
  80. type StopOptions struct {
  81. // Timeout override container stop timeout
  82. Timeout *time.Duration
  83. }
  84. // UpOptions group options of the Up API
  85. type UpOptions struct {
  86. // Detach will create services and return immediately
  87. Detach bool
  88. }
  89. // DownOptions group options of the Down API
  90. type DownOptions struct {
  91. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  92. RemoveOrphans bool
  93. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  94. Project *types.Project
  95. // Timeout override container stop timeout
  96. Timeout *time.Duration
  97. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  98. Images string
  99. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  100. Volumes bool
  101. }
  102. // ConvertOptions group options of the Convert API
  103. type ConvertOptions struct {
  104. // Format define the output format used to dump converted application model (json|yaml)
  105. Format string
  106. // Output defines the path to save the application model
  107. Output string
  108. }
  109. // KillOptions group options of the Kill API
  110. type KillOptions struct {
  111. // Signal to send to containers
  112. Signal string
  113. }
  114. // RemoveOptions group options of the Remove API
  115. type RemoveOptions struct {
  116. // DryRun just list removable resources
  117. DryRun bool
  118. // Volumes remove anonymous volumes
  119. Volumes bool
  120. // Force don't ask to confirm removal
  121. Force bool
  122. }
  123. // RunOptions options to execute compose run
  124. type RunOptions struct {
  125. Name string
  126. Service string
  127. Command []string
  128. Entrypoint []string
  129. Detach bool
  130. AutoRemove bool
  131. Writer io.Writer
  132. Reader io.Reader
  133. Tty bool
  134. WorkingDir string
  135. User string
  136. Environment []string
  137. Labels types.Labels
  138. Privileged bool
  139. // used by exec
  140. Index int
  141. }
  142. // EnvironmentMap return RunOptions.Environment as a MappingWithEquals
  143. func (opts *RunOptions) EnvironmentMap() types.MappingWithEquals {
  144. environment := types.MappingWithEquals{}
  145. for _, s := range opts.Environment {
  146. parts := strings.SplitN(s, "=", 2)
  147. key := parts[0]
  148. switch {
  149. case len(parts) == 1:
  150. environment[key] = nil
  151. default:
  152. environment[key] = &parts[1]
  153. }
  154. }
  155. return environment
  156. }
  157. // ListOptions group options of the ls API
  158. type ListOptions struct {
  159. All bool
  160. }
  161. // PsOptions group options of the Ps API
  162. type PsOptions struct {
  163. All bool
  164. }
  165. // PortPublisher hold status about published port
  166. type PortPublisher struct {
  167. URL string
  168. TargetPort int
  169. PublishedPort int
  170. Protocol string
  171. }
  172. // ContainerSummary hold high-level description of a container
  173. type ContainerSummary struct {
  174. ID string
  175. Name string
  176. Project string
  177. Service string
  178. State string
  179. Health string
  180. Publishers []PortPublisher
  181. }
  182. // ServiceStatus hold status about a service
  183. type ServiceStatus struct {
  184. ID string
  185. Name string
  186. Replicas int
  187. Desired int
  188. Ports []string
  189. Publishers []PortPublisher
  190. }
  191. // LogOptions defines optional parameters for the `Log` API
  192. type LogOptions struct {
  193. Services []string
  194. Tail string
  195. Follow bool
  196. Timestamps bool
  197. }
  198. const (
  199. // STARTING indicates that stack is being deployed
  200. STARTING string = "Starting"
  201. // RUNNING indicates that stack is deployed and services are running
  202. RUNNING string = "Running"
  203. // UPDATING indicates that some stack resources are being recreated
  204. UPDATING string = "Updating"
  205. // REMOVING indicates that stack is being deleted
  206. REMOVING string = "Removing"
  207. // UNKNOWN indicates unknown stack state
  208. UNKNOWN string = "Unknown"
  209. // FAILED indicates that stack deployment failed
  210. FAILED string = "Failed"
  211. )
  212. const (
  213. // RecreateDiverged to recreate services which configuration diverges from compose model
  214. RecreateDiverged = "diverged"
  215. // RecreateForce to force service container being recreated
  216. RecreateForce = "force"
  217. // RecreateNever to never recreate existing service containers
  218. RecreateNever = "never"
  219. )
  220. // Stack holds the name and state of a compose application/stack
  221. type Stack struct {
  222. ID string
  223. Name string
  224. Status string
  225. Reason string
  226. }
  227. // LogConsumer is a callback to process log messages from services
  228. type LogConsumer interface {
  229. Log(name, service, container, message string)
  230. Status(name, container, msg string)
  231. Register(name string, source string)
  232. }
  233. // ContainerEventListener is a callback to process ContainerEvent from services
  234. type ContainerEventListener func(event ContainerEvent)
  235. // ContainerEvent notify an event has been collected on Source container implementing Service
  236. type ContainerEvent struct {
  237. Type int
  238. Source string
  239. Service string
  240. Name string
  241. Line string
  242. ExitCode int
  243. }
  244. const (
  245. // ContainerEventLog is a ContainerEvent of type log. Line is set
  246. ContainerEventLog = iota
  247. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  248. ContainerEventAttach
  249. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  250. ContainerEventExit
  251. // UserCancel user cancelled compose up, we are stopping containers
  252. UserCancel
  253. )