Documentation ¶
Index ¶
- func Apply(ctx context.Context, root string, r io.Reader, opts ...ApplyOpt) (int64, error)
- func AufsConvertWhiteout(_ *tar.Header, _ string) (bool, error)
- func Diff(ctx context.Context, a, b string) io.ReadCloser
- func OverlayConvertWhiteout(hdr *tar.Header, path string) (bool, error)
- func WriteDiff(ctx context.Context, w io.Writer, a, b string, opts ...WriteDiffOpt) error
- type ApplyOpt
- type ApplyOptions
- type ChangeWriter
- type ConvertWhiteout
- type Filter
- type WriteDiffOpt
- type WriteDiffOptions
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Apply ¶
Apply applies a tar stream of an OCI style diff tar. See https://github.com/opencontainers/image-spec/blob/main/layer.md#applying-changesets
func AufsConvertWhiteout ¶ added in v1.3.0
AufsConvertWhiteout converts whiteout files for aufs.
func Diff ¶
func Diff(ctx context.Context, a, b string) io.ReadCloser
Diff returns a tar stream of the computed filesystem difference between the provided directories.
Produces a tar using OCI style file markers for deletions. Deleted files will be prepended with the prefix ".wh.". This style is based off AUFS whiteouts. See https://github.com/opencontainers/image-spec/blob/main/layer.md
func OverlayConvertWhiteout ¶ added in v1.3.0
OverlayConvertWhiteout converts whiteout files for overlay.
func WriteDiff ¶
WriteDiff writes a tar stream of the computed difference between the provided paths.
Produces a tar using OCI style file markers for deletions. Deleted files will be prepended with the prefix ".wh.". This style is based off AUFS whiteouts. See https://github.com/opencontainers/image-spec/blob/main/layer.md
Types ¶
type ApplyOpt ¶ added in v1.1.0
type ApplyOpt func(options *ApplyOptions) error
ApplyOpt allows setting mutable archive apply properties on creation
func WithConvertWhiteout ¶ added in v1.3.0
func WithConvertWhiteout(c ConvertWhiteout) ApplyOpt
WithConvertWhiteout uses the convert function to convert the whiteout files.
func WithFilter ¶ added in v1.2.0
WithFilter uses the filter to select which files are to be extracted.
func WithParents ¶ added in v1.3.0
WithParents provides parent directories for resolving inherited attributes directory from the filesystem. Inherited attributes are searched from first to last, making the first element in the list the most immediate parent directory. NOTE: When applying to a filesystem which supports CoW, file attributes should be inherited by the filesystem.
type ApplyOptions ¶ added in v1.1.0
type ApplyOptions struct { Filter Filter // Filter tar headers ConvertWhiteout ConvertWhiteout // Convert whiteout files Parents []string // Parent directories to handle inherited attributes without CoW // contains filtered or unexported fields }
ApplyOptions provides additional options for an Apply operation
type ChangeWriter ¶ added in v1.6.0
type ChangeWriter struct {
// contains filtered or unexported fields
}
ChangeWriter provides tar stream from filesystem change information. The privided tar stream is styled as an OCI layer. Change information (add/modify/delete/unmodified) for each file needs to be passed to this writer through HandleChange method.
This should be used combining with continuity's diff computing functionality (e.g. `fs.Change` of github.com/containerd/continuity/fs).
See also https://github.com/opencontainers/image-spec/blob/main/layer.md for details about OCI layers
func NewChangeWriter ¶ added in v1.6.0
func NewChangeWriter(w io.Writer, source string) *ChangeWriter
NewChangeWriter returns ChangeWriter that writes tar stream of the source directory to the privided writer. Change information (add/modify/delete/unmodified) for each file needs to be passed through HandleChange method.
func (*ChangeWriter) Close ¶ added in v1.6.0
func (cw *ChangeWriter) Close() error
Close closes this writer.
func (*ChangeWriter) HandleChange ¶ added in v1.6.0
func (cw *ChangeWriter) HandleChange(k fs.ChangeKind, p string, f os.FileInfo, err error) error
HandleChange receives filesystem change information and reflect that information to the result tar stream. This function implements `fs.ChangeFunc` of continuity (github.com/containerd/continuity/fs) and should be used with that package.
type ConvertWhiteout ¶ added in v1.3.0
ConvertWhiteout converts whiteout files from the archive
type WriteDiffOpt ¶ added in v1.5.0
type WriteDiffOpt func(options *WriteDiffOptions) error
WriteDiffOpt allows setting mutable archive write properties on creation
type WriteDiffOptions ¶ added in v1.5.0
type WriteDiffOptions struct { ParentLayers []string // Windows needs the full list of parent layers // contains filtered or unexported fields }
WriteDiffOptions provides additional options for a WriteDiff operation