2015-11-18 14:18:07 -08:00
|
|
|
package tarexport
|
|
|
|
|
|
|
|
import (
|
2016-05-25 19:11:51 -07:00
|
|
|
"github.com/docker/distribution"
|
2015-11-18 14:18:07 -08:00
|
|
|
"github.com/docker/docker/image"
|
|
|
|
"github.com/docker/docker/layer"
|
2015-12-04 13:55:15 -08:00
|
|
|
"github.com/docker/docker/reference"
|
2015-11-18 14:18:07 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
manifestFileName = "manifest.json"
|
|
|
|
legacyLayerFileName = "layer.tar"
|
|
|
|
legacyConfigFileName = "json"
|
|
|
|
legacyVersionFileName = "VERSION"
|
|
|
|
legacyRepositoriesFileName = "repositories"
|
|
|
|
)
|
|
|
|
|
|
|
|
type manifestItem struct {
|
2016-05-25 19:11:51 -07:00
|
|
|
Config string
|
|
|
|
RepoTags []string
|
|
|
|
Layers []string
|
2016-06-06 17:49:34 -07:00
|
|
|
Parent image.ID `json:",omitempty"`
|
|
|
|
LayerSources map[layer.DiffID]distribution.Descriptor `json:",omitempty"`
|
2015-11-18 14:18:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
type tarexporter struct {
|
2016-04-19 04:45:59 +00:00
|
|
|
is image.Store
|
|
|
|
ls layer.Store
|
|
|
|
rs reference.Store
|
|
|
|
loggerImgEvent LogImageEvent
|
|
|
|
}
|
|
|
|
|
|
|
|
// LogImageEvent defines interface for event generation related to image tar(load and save) operations
|
|
|
|
type LogImageEvent interface {
|
|
|
|
//LogImageEvent generates an event related to an image operation
|
|
|
|
LogImageEvent(imageID, refName, action string)
|
2015-11-18 14:18:07 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTarExporter returns new ImageExporter for tar packages
|
2016-04-19 04:45:59 +00:00
|
|
|
func NewTarExporter(is image.Store, ls layer.Store, rs reference.Store, loggerImgEvent LogImageEvent) image.Exporter {
|
2015-11-18 14:18:07 -08:00
|
|
|
return &tarexporter{
|
2016-04-19 04:45:59 +00:00
|
|
|
is: is,
|
|
|
|
ls: ls,
|
|
|
|
rs: rs,
|
|
|
|
loggerImgEvent: loggerImgEvent,
|
2015-11-18 14:18:07 -08:00
|
|
|
}
|
|
|
|
}
|