2015-09-06 13:26:40 -04:00
|
|
|
// Package builder defines interfaces for any Docker builder to implement.
|
|
|
|
//
|
|
|
|
// Historically, only server-side Dockerfile interpreters existed.
|
|
|
|
// This package allows for other implementations of Docker builders.
|
|
|
|
package builder
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"os"
|
2015-12-10 09:35:53 -05:00
|
|
|
"time"
|
2015-09-06 13:26:40 -04:00
|
|
|
|
2017-01-25 19:54:18 -05:00
|
|
|
"github.com/docker/distribution/reference"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types"
|
2016-03-16 19:07:41 -04:00
|
|
|
"github.com/docker/docker/api/types/backend"
|
2016-09-06 14:18:12 -04:00
|
|
|
"github.com/docker/docker/api/types/container"
|
2016-04-07 17:29:18 -04:00
|
|
|
"github.com/docker/docker/image"
|
2016-03-18 17:42:40 -04:00
|
|
|
"golang.org/x/net/context"
|
2015-09-06 13:26:40 -04:00
|
|
|
)
|
|
|
|
|
2016-02-11 14:59:59 -05:00
|
|
|
const (
|
|
|
|
// DefaultDockerfileName is the Default filename with Docker commands, read by docker build
|
|
|
|
DefaultDockerfileName string = "Dockerfile"
|
|
|
|
)
|
|
|
|
|
2015-09-06 13:26:40 -04:00
|
|
|
// Context represents a file system tree.
|
|
|
|
type Context interface {
|
|
|
|
// Close allows to signal that the filesystem tree won't be used anymore.
|
|
|
|
// For Context implementations using a temporary directory, it is recommended to
|
|
|
|
// delete the temporary directory in Close().
|
|
|
|
Close() error
|
|
|
|
// Stat returns an entry corresponding to path if any.
|
|
|
|
// It is recommended to return an error if path was not found.
|
2015-11-04 16:42:08 -05:00
|
|
|
// If path is a symlink it also returns the path to the target file.
|
|
|
|
Stat(path string) (string, FileInfo, error)
|
2015-09-06 13:26:40 -04:00
|
|
|
// Open opens path from the context and returns a readable stream of it.
|
|
|
|
Open(path string) (io.ReadCloser, error)
|
|
|
|
// Walk walks the tree of the context with the function passed to it.
|
|
|
|
Walk(root string, walkFn WalkFunc) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// WalkFunc is the type of the function called for each file or directory visited by Context.Walk().
|
|
|
|
type WalkFunc func(path string, fi FileInfo, err error) error
|
|
|
|
|
|
|
|
// ModifiableContext represents a modifiable Context.
|
|
|
|
// TODO: remove this interface once we can get rid of Remove()
|
|
|
|
type ModifiableContext interface {
|
|
|
|
Context
|
|
|
|
// Remove deletes the entry specified by `path`.
|
|
|
|
// It is usual for directory entries to delete all its subentries.
|
|
|
|
Remove(path string) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// FileInfo extends os.FileInfo to allow retrieving an absolute path to the file.
|
|
|
|
// TODO: remove this interface once pkg/archive exposes a walk function that Context can use.
|
|
|
|
type FileInfo interface {
|
|
|
|
os.FileInfo
|
|
|
|
Path() string
|
|
|
|
}
|
|
|
|
|
|
|
|
// PathFileInfo is a convenience struct that implements the FileInfo interface.
|
|
|
|
type PathFileInfo struct {
|
|
|
|
os.FileInfo
|
|
|
|
// FilePath holds the absolute path to the file.
|
|
|
|
FilePath string
|
2016-12-12 04:11:41 -05:00
|
|
|
// FileName holds the basename for the file.
|
2015-11-04 16:42:08 -05:00
|
|
|
FileName string
|
2015-09-06 13:26:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Path returns the absolute path to the file.
|
|
|
|
func (fi PathFileInfo) Path() string {
|
|
|
|
return fi.FilePath
|
|
|
|
}
|
|
|
|
|
2015-11-04 16:42:08 -05:00
|
|
|
// Name returns the basename of the file.
|
|
|
|
func (fi PathFileInfo) Name() string {
|
|
|
|
if fi.FileName != "" {
|
|
|
|
return fi.FileName
|
|
|
|
}
|
|
|
|
return fi.FileInfo.Name()
|
|
|
|
}
|
|
|
|
|
2015-09-06 13:26:40 -04:00
|
|
|
// Hashed defines an extra method intended for implementations of os.FileInfo.
|
|
|
|
type Hashed interface {
|
|
|
|
// Hash returns the hash of a file.
|
|
|
|
Hash() string
|
|
|
|
SetHash(string)
|
|
|
|
}
|
|
|
|
|
|
|
|
// HashedFileInfo is a convenient struct that augments FileInfo with a field.
|
|
|
|
type HashedFileInfo struct {
|
|
|
|
FileInfo
|
|
|
|
// FileHash represents the hash of a file.
|
|
|
|
FileHash string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hash returns the hash of a file.
|
|
|
|
func (fi HashedFileInfo) Hash() string {
|
|
|
|
return fi.FileHash
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetHash sets the hash of a file.
|
|
|
|
func (fi *HashedFileInfo) SetHash(h string) {
|
|
|
|
fi.FileHash = h
|
|
|
|
}
|
|
|
|
|
2015-12-10 09:35:53 -05:00
|
|
|
// Backend abstracts calls to a Docker Daemon.
|
|
|
|
type Backend interface {
|
2015-09-06 13:26:40 -04:00
|
|
|
// TODO: use digest reference instead of name
|
|
|
|
|
2016-03-26 10:06:45 -04:00
|
|
|
// GetImageOnBuild looks up a Docker image referenced by `name`.
|
2016-01-20 18:32:02 -05:00
|
|
|
GetImageOnBuild(name string) (Image, error)
|
2016-12-12 04:11:41 -05:00
|
|
|
// TagImageWithReference tags an image with newTag
|
2016-04-07 17:29:18 -04:00
|
|
|
TagImageWithReference(image.ID, reference.Named) error
|
2016-03-26 10:06:45 -04:00
|
|
|
// PullOnBuild tells Docker to pull image referenced by `name`.
|
2016-03-18 17:42:40 -04:00
|
|
|
PullOnBuild(ctx context.Context, name string, authConfigs map[string]types.AuthConfig, output io.Writer) (Image, error)
|
2016-03-26 10:06:45 -04:00
|
|
|
// ContainerAttachRaw attaches to container.
|
2016-01-05 16:23:24 -05:00
|
|
|
ContainerAttachRaw(cID string, stdin io.ReadCloser, stdout, stderr io.Writer, stream bool) error
|
2015-12-10 09:35:53 -05:00
|
|
|
// ContainerCreate creates a new Docker container and returns potential warnings
|
2016-11-30 13:22:07 -05:00
|
|
|
ContainerCreate(config types.ContainerCreateConfig) (container.ContainerCreateCreatedBody, error)
|
2015-12-10 09:35:53 -05:00
|
|
|
// ContainerRm removes a container specified by `id`.
|
|
|
|
ContainerRm(name string, config *types.ContainerRmConfig) error
|
2015-09-06 13:26:40 -04:00
|
|
|
// Commit creates a new Docker image from an existing Docker container.
|
2016-03-16 19:07:41 -04:00
|
|
|
Commit(string, *backend.ContainerCommitConfig) (string, error)
|
2016-03-26 10:06:45 -04:00
|
|
|
// ContainerKill stops the container execution abruptly.
|
2015-12-10 09:35:53 -05:00
|
|
|
ContainerKill(containerID string, sig uint64) error
|
2016-03-26 10:06:45 -04:00
|
|
|
// ContainerStart starts a new container
|
2016-11-30 13:22:07 -05:00
|
|
|
ContainerStart(containerID string, hostConfig *container.HostConfig, checkpoint string, checkpointDir string) error
|
2015-12-10 09:35:53 -05:00
|
|
|
// ContainerWait stops processing until the given container is stopped.
|
|
|
|
ContainerWait(containerID string, timeout time.Duration) (int, error)
|
2016-03-26 10:06:45 -04:00
|
|
|
// ContainerUpdateCmdOnBuild updates container.Path and container.Args
|
2016-01-20 18:32:02 -05:00
|
|
|
ContainerUpdateCmdOnBuild(containerID string, cmd []string) error
|
2016-11-29 23:05:47 -05:00
|
|
|
// ContainerCreateWorkdir creates the workdir
|
2016-11-16 18:02:27 -05:00
|
|
|
ContainerCreateWorkdir(containerID string) error
|
2015-12-10 09:35:53 -05:00
|
|
|
|
|
|
|
// ContainerCopy copies/extracts a source FileInfo to a destination path inside a container
|
2015-09-06 13:26:40 -04:00
|
|
|
// specified by a container object.
|
|
|
|
// TODO: make an Extract method instead of passing `decompress`
|
|
|
|
// TODO: do not pass a FileInfo, instead refactor the archive package to export a Walk function that can be used
|
|
|
|
// with Context.Walk
|
2016-04-21 12:08:37 -04:00
|
|
|
// ContainerCopy(name string, res string) (io.ReadCloser, error)
|
2015-12-10 09:35:53 -05:00
|
|
|
// TODO: use copyBackend api
|
2016-01-20 18:32:02 -05:00
|
|
|
CopyOnBuild(containerID string, destPath string, src FileInfo, decompress bool) error
|
2016-04-21 12:08:37 -04:00
|
|
|
|
|
|
|
// HasExperimental checks if the backend supports experimental features
|
|
|
|
HasExperimental() bool
|
|
|
|
|
|
|
|
// SquashImage squashes the fs layers from the provided image down to the specified `to` image
|
|
|
|
SquashImage(from string, to string) (string, error)
|
2017-03-15 18:28:06 -04:00
|
|
|
|
|
|
|
// MountImage returns mounted path with rootfs of an image.
|
|
|
|
MountImage(name string) (string, func() error, error)
|
2016-01-20 18:32:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Image represents a Docker image used by the builder.
|
|
|
|
type Image interface {
|
|
|
|
ImageID() string
|
|
|
|
RunConfig() *container.Config
|
2015-09-06 13:26:40 -04:00
|
|
|
}
|
|
|
|
|
2016-09-22 17:38:00 -04:00
|
|
|
// ImageCacheBuilder represents a generator for stateful image cache.
|
|
|
|
type ImageCacheBuilder interface {
|
|
|
|
// MakeImageCache creates a stateful image cache.
|
|
|
|
MakeImageCache(cacheFrom []string) ImageCache
|
|
|
|
}
|
|
|
|
|
|
|
|
// ImageCache abstracts an image cache.
|
2015-09-06 13:26:40 -04:00
|
|
|
// (parent image, child runconfig) -> child image
|
|
|
|
type ImageCache interface {
|
2016-12-12 04:11:41 -05:00
|
|
|
// GetCache returns a reference to a cached image whose parent equals `parent`
|
2015-09-06 13:26:40 -04:00
|
|
|
// and runconfig equals `cfg`. A cache miss is expected to return an empty ID and a nil error.
|
2016-09-22 17:38:00 -04:00
|
|
|
GetCache(parentID string, cfg *container.Config) (imageID string, err error)
|
2015-09-06 13:26:40 -04:00
|
|
|
}
|