api.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  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 api
  14. import (
  15. "context"
  16. "fmt"
  17. "io"
  18. "strings"
  19. "time"
  20. "github.com/compose-spec/compose-go/types"
  21. )
  22. // Service manages a compose project
  23. type Service interface {
  24. // Build executes the equivalent to a `compose build`
  25. Build(ctx context.Context, project *types.Project, options BuildOptions) error
  26. // Push executes the equivalent ot a `compose push`
  27. Push(ctx context.Context, project *types.Project, options PushOptions) error
  28. // Pull executes the equivalent of a `compose pull`
  29. Pull(ctx context.Context, project *types.Project, opts PullOptions) error
  30. // Create executes the equivalent to a `compose create`
  31. Create(ctx context.Context, project *types.Project, opts CreateOptions) error
  32. // Start executes the equivalent to a `compose start`
  33. Start(ctx context.Context, project *types.Project, options StartOptions) error
  34. // Restart restarts containers
  35. Restart(ctx context.Context, project *types.Project, options RestartOptions) error
  36. // Stop executes the equivalent to a `compose stop`
  37. Stop(ctx context.Context, project *types.Project, options StopOptions) error
  38. // Up executes the equivalent to a `compose up`
  39. Up(ctx context.Context, project *types.Project, options UpOptions) error
  40. // Down executes the equivalent to a `compose down`
  41. Down(ctx context.Context, projectName string, options DownOptions) error
  42. // Logs executes the equivalent to a `compose logs`
  43. Logs(ctx context.Context, projectName string, consumer LogConsumer, options LogOptions) error
  44. // Ps executes the equivalent to a `compose ps`
  45. Ps(ctx context.Context, projectName string, options PsOptions) ([]ContainerSummary, error)
  46. // List executes the equivalent to a `docker stack ls`
  47. List(ctx context.Context, options ListOptions) ([]Stack, error)
  48. // Convert translate compose model into backend's native format
  49. Convert(ctx context.Context, project *types.Project, options ConvertOptions) ([]byte, error)
  50. // Kill executes the equivalent to a `compose kill`
  51. Kill(ctx context.Context, project *types.Project, options KillOptions) error
  52. // RunOneOffContainer creates a service oneoff container and starts its dependencies
  53. RunOneOffContainer(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  54. // Remove executes the equivalent to a `compose rm`
  55. Remove(ctx context.Context, project *types.Project, options RemoveOptions) error
  56. // Exec executes a command in a running service container
  57. Exec(ctx context.Context, project *types.Project, opts RunOptions) (int, error)
  58. // Copy copies a file/folder between a service container and the local filesystem
  59. Copy(ctx context.Context, project *types.Project, opts CopyOptions) error
  60. // Pause executes the equivalent to a `compose pause`
  61. Pause(ctx context.Context, project string, options PauseOptions) error
  62. // UnPause executes the equivalent to a `compose unpause`
  63. UnPause(ctx context.Context, project string, options PauseOptions) error
  64. // Top executes the equivalent to a `compose top`
  65. Top(ctx context.Context, projectName string, services []string) ([]ContainerProcSummary, error)
  66. // Events executes the equivalent to a `compose events`
  67. Events(ctx context.Context, project string, options EventsOptions) error
  68. // Port executes the equivalent to a `compose port`
  69. Port(ctx context.Context, project string, service string, port int, options PortOptions) (string, int, error)
  70. // Images executes the equivalent of a `compose images`
  71. Images(ctx context.Context, projectName string, options ImagesOptions) ([]ImageSummary, error)
  72. }
  73. // BuildOptions group options of the Build API
  74. type BuildOptions struct {
  75. // Pull always attempt to pull a newer version of the image
  76. Pull bool
  77. // Progress set type of progress output ("auto", "plain", "tty")
  78. Progress string
  79. // Args set build-time args
  80. Args types.MappingWithEquals
  81. // NoCache disables cache use
  82. NoCache bool
  83. // Quiet make the build process not output to the console
  84. Quiet bool
  85. // Services passed in the command line to be built
  86. Services []string
  87. }
  88. // CreateOptions group options of the Create API
  89. type CreateOptions struct {
  90. // Services defines the services user interacts with
  91. Services []string
  92. // Remove legacy containers for services that are not defined in the project
  93. RemoveOrphans bool
  94. // Recreate define the strategy to apply on existing containers
  95. Recreate string
  96. // RecreateDependencies define the strategy to apply on dependencies services
  97. RecreateDependencies string
  98. // Inherit reuse anonymous volumes from previous container
  99. Inherit bool
  100. // Timeout set delay to wait for container to gracelfuly stop before sending SIGKILL
  101. Timeout *time.Duration
  102. // QuietPull makes the pulling process quiet
  103. QuietPull bool
  104. }
  105. // StartOptions group options of the Start API
  106. type StartOptions struct {
  107. // Attach to container and forward logs if not nil
  108. Attach LogConsumer
  109. // AttachTo set the services to attach to
  110. AttachTo []string
  111. // CascadeStop stops the application when a container stops
  112. CascadeStop bool
  113. // ExitCodeFrom return exit code from specified service
  114. ExitCodeFrom string
  115. }
  116. // RestartOptions group options of the Restart API
  117. type RestartOptions struct {
  118. // Timeout override container restart timeout
  119. Timeout *time.Duration
  120. // Services passed in the command line to be restarted
  121. Services []string
  122. }
  123. // StopOptions group options of the Stop API
  124. type StopOptions struct {
  125. // Timeout override container stop timeout
  126. Timeout *time.Duration
  127. // Services passed in the command line to be stopped
  128. Services []string
  129. }
  130. // UpOptions group options of the Up API
  131. type UpOptions struct {
  132. Create CreateOptions
  133. Start StartOptions
  134. }
  135. // DownOptions group options of the Down API
  136. type DownOptions struct {
  137. // RemoveOrphans will cleanup containers that are not declared on the compose model but own the same labels
  138. RemoveOrphans bool
  139. // Project is the compose project used to define this app. Might be nil if user ran `down` just with project name
  140. Project *types.Project
  141. // Timeout override container stop timeout
  142. Timeout *time.Duration
  143. // Images remove image used by services. 'all': Remove all images. 'local': Remove only images that don't have a tag
  144. Images string
  145. // Volumes remove volumes, both declared in the `volumes` section and anonymous ones
  146. Volumes bool
  147. }
  148. // ConvertOptions group options of the Convert API
  149. type ConvertOptions struct {
  150. // Format define the output format used to dump converted application model (json|yaml)
  151. Format string
  152. // Output defines the path to save the application model
  153. Output string
  154. }
  155. // PushOptions group options of the Push API
  156. type PushOptions struct {
  157. IgnoreFailures bool
  158. }
  159. // PullOptions group options of the Pull API
  160. type PullOptions struct {
  161. Quiet bool
  162. IgnoreFailures bool
  163. }
  164. // ImagesOptions group options of the Images API
  165. type ImagesOptions struct {
  166. Services []string
  167. }
  168. // KillOptions group options of the Kill API
  169. type KillOptions struct {
  170. // Services passed in the command line to be killed
  171. Services []string
  172. // Signal to send to containers
  173. Signal string
  174. }
  175. // RemoveOptions group options of the Remove API
  176. type RemoveOptions struct {
  177. // DryRun just list removable resources
  178. DryRun bool
  179. // Volumes remove anonymous volumes
  180. Volumes bool
  181. // Force don't ask to confirm removal
  182. Force bool
  183. // Services passed in the command line to be removed
  184. Services []string
  185. }
  186. // RunOptions group options of the Run API
  187. type RunOptions struct {
  188. Name string
  189. Service string
  190. Command []string
  191. Entrypoint []string
  192. Detach bool
  193. AutoRemove bool
  194. Stdin io.ReadCloser
  195. Stdout io.WriteCloser
  196. Stderr io.WriteCloser
  197. Tty bool
  198. WorkingDir string
  199. User string
  200. Environment []string
  201. Labels types.Labels
  202. Privileged bool
  203. UseNetworkAliases bool
  204. NoDeps bool
  205. // used by exec
  206. Index int
  207. }
  208. // EventsOptions group options of the Events API
  209. type EventsOptions struct {
  210. Services []string
  211. Consumer func(event Event) error
  212. }
  213. // Event is a container runtime event served by Events API
  214. type Event struct {
  215. Timestamp time.Time
  216. Service string
  217. Container string
  218. Status string
  219. Attributes map[string]string
  220. }
  221. // PortOptions group options of the Port API
  222. type PortOptions struct {
  223. Protocol string
  224. Index int
  225. }
  226. func (e Event) String() string {
  227. t := e.Timestamp.Format("2006-01-02 15:04:05.000000")
  228. var attr []string
  229. for k, v := range e.Attributes {
  230. attr = append(attr, fmt.Sprintf("%s=%s", k, v))
  231. }
  232. return fmt.Sprintf("%s container %s %s (%s)\n", t, e.Status, e.Container, strings.Join(attr, ", "))
  233. }
  234. // ListOptions group options of the ls API
  235. type ListOptions struct {
  236. All bool
  237. }
  238. // PsOptions group options of the Ps API
  239. type PsOptions struct {
  240. All bool
  241. Services []string
  242. }
  243. // CopyOptions group options of the cp API
  244. type CopyOptions struct {
  245. Source string
  246. Destination string
  247. All bool
  248. Index int
  249. FollowLink bool
  250. CopyUIDGID bool
  251. }
  252. // PortPublisher hold status about published port
  253. type PortPublisher struct {
  254. URL string
  255. TargetPort int
  256. PublishedPort int
  257. Protocol string
  258. }
  259. // ContainerSummary hold high-level description of a container
  260. type ContainerSummary struct {
  261. ID string
  262. Name string
  263. Command string
  264. Project string
  265. Service string
  266. State string
  267. Health string
  268. ExitCode int
  269. Publishers []PortPublisher
  270. }
  271. // ContainerProcSummary holds container processes top data
  272. type ContainerProcSummary struct {
  273. ID string
  274. Name string
  275. Processes [][]string
  276. Titles []string
  277. }
  278. // ImageSummary holds container image description
  279. type ImageSummary struct {
  280. ID string
  281. ContainerName string
  282. Repository string
  283. Tag string
  284. Size int64
  285. }
  286. // ServiceStatus hold status about a service
  287. type ServiceStatus struct {
  288. ID string
  289. Name string
  290. Replicas int
  291. Desired int
  292. Ports []string
  293. Publishers []PortPublisher
  294. }
  295. // LogOptions defines optional parameters for the `Log` API
  296. type LogOptions struct {
  297. Services []string
  298. Tail string
  299. Since string
  300. Until string
  301. Follow bool
  302. Timestamps bool
  303. }
  304. // PauseOptions group options of the Pause API
  305. type PauseOptions struct {
  306. // Services passed in the command line to be started
  307. Services []string
  308. }
  309. const (
  310. // STARTING indicates that stack is being deployed
  311. STARTING string = "Starting"
  312. // RUNNING indicates that stack is deployed and services are running
  313. RUNNING string = "Running"
  314. // UPDATING indicates that some stack resources are being recreated
  315. UPDATING string = "Updating"
  316. // REMOVING indicates that stack is being deleted
  317. REMOVING string = "Removing"
  318. // UNKNOWN indicates unknown stack state
  319. UNKNOWN string = "Unknown"
  320. // FAILED indicates that stack deployment failed
  321. FAILED string = "Failed"
  322. )
  323. const (
  324. // RecreateDiverged to recreate services which configuration diverges from compose model
  325. RecreateDiverged = "diverged"
  326. // RecreateForce to force service container being recreated
  327. RecreateForce = "force"
  328. // RecreateNever to never recreate existing service containers
  329. RecreateNever = "never"
  330. )
  331. // Stack holds the name and state of a compose application/stack
  332. type Stack struct {
  333. ID string
  334. Name string
  335. Status string
  336. Reason string
  337. }
  338. // LogConsumer is a callback to process log messages from services
  339. type LogConsumer interface {
  340. Log(service, container, message string)
  341. Status(container, msg string)
  342. Register(container string)
  343. }
  344. // ContainerEventListener is a callback to process ContainerEvent from services
  345. type ContainerEventListener func(event ContainerEvent)
  346. // ContainerEvent notify an event has been collected on source container implementing Service
  347. type ContainerEvent struct {
  348. Type int
  349. Container string
  350. Service string
  351. Line string
  352. // ContainerEventExit only
  353. ExitCode int
  354. Restarting bool
  355. }
  356. const (
  357. // ContainerEventLog is a ContainerEvent of type log. Line is set
  358. ContainerEventLog = iota
  359. // ContainerEventAttach is a ContainerEvent of type attach. First event sent about a container
  360. ContainerEventAttach
  361. // ContainerEventExit is a ContainerEvent of type exit. ExitCode is set
  362. ContainerEventExit
  363. // UserCancel user cancelled compose up, we are stopping containers
  364. UserCancel
  365. )