api.go 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. // Up executes the equivalent to a `compose up`
  22. Up(ctx context.Context, project *types.Project) error
  23. // Down executes the equivalent to a `compose down`
  24. Down(ctx context.Context, projectName string) error
  25. // Logs executes the equivalent to a `compose logs`
  26. Logs(ctx context.Context, projectName string, w io.Writer) error
  27. // Ps executes the equivalent to a `compose ps`
  28. Ps(ctx context.Context, projectName string) ([]ServiceStatus, error)
  29. // List executes the equivalent to a `docker stack ls`
  30. List(ctx context.Context, projectName string) ([]Stack, error)
  31. // Convert translate compose model into backend's native format
  32. Convert(ctx context.Context, project *types.Project) ([]byte, error)
  33. }
  34. // PortPublisher hold status about published port
  35. type PortPublisher struct {
  36. URL string
  37. TargetPort int
  38. PublishedPort int
  39. Protocol string
  40. }
  41. // ServiceStatus hold status about a service
  42. type ServiceStatus struct {
  43. ID string
  44. Name string
  45. Replicas int
  46. Desired int
  47. Ports []string
  48. Publishers []PortPublisher
  49. }
  50. const (
  51. // STARTING indicates that stack is being deployed
  52. STARTING string = "Starting"
  53. // RUNNING indicates that stack is deployed and services are running
  54. RUNNING string = "Running"
  55. // UPDATING indicates that some stack resources are being recreated
  56. UPDATING string = "Updating"
  57. // REMOVING indicates that stack is being deleted
  58. REMOVING string = "Removing"
  59. // UNKNOWN indicates unknown stack state
  60. UNKNOWN string = "Unknown"
  61. // FAILED indicates that stack deployment failed
  62. FAILED string = "Failed"
  63. )
  64. // Stack holds the name and state of a compose application/stack
  65. type Stack struct {
  66. ID string
  67. Name string
  68. Status string
  69. }