mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
ef5bfad321
Since the layer store was introduced, the level above the graphdriver now differentiates between read/write and read-only layers. This distinction is useful for graphdrivers that need to take special steps when creating a layer based on whether it is read-only or not. Adding this parameter allows the graphdrivers to differentiate, which in the case of the Windows graphdriver, removes our dependence on parsing the id of the parent for "-init" in order to infer this information. This will also set the stage for unblocking some of the layer store unit tests in the next preview build of Windows. Signed-off-by: Stefan J. Wernli <swernli@microsoft.com>
225 lines
5.1 KiB
Go
225 lines
5.1 KiB
Go
// +build experimental
|
|
|
|
package graphdriver
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/docker/docker/pkg/archive"
|
|
)
|
|
|
|
type graphDriverProxy struct {
|
|
name string
|
|
client pluginClient
|
|
}
|
|
|
|
type graphDriverRequest struct {
|
|
ID string `json:",omitempty"`
|
|
Parent string `json:",omitempty"`
|
|
MountLabel string `json:",omitempty"`
|
|
}
|
|
|
|
type graphDriverResponse struct {
|
|
Err string `json:",omitempty"`
|
|
Dir string `json:",omitempty"`
|
|
Exists bool `json:",omitempty"`
|
|
Status [][2]string `json:",omitempty"`
|
|
Changes []archive.Change `json:",omitempty"`
|
|
Size int64 `json:",omitempty"`
|
|
Metadata map[string]string `json:",omitempty"`
|
|
}
|
|
|
|
type graphDriverInitRequest struct {
|
|
Home string
|
|
Opts []string
|
|
}
|
|
|
|
func (d *graphDriverProxy) Init(home string, opts []string) error {
|
|
args := &graphDriverInitRequest{
|
|
Home: home,
|
|
Opts: opts,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Init", args, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) String() string {
|
|
return d.name
|
|
}
|
|
|
|
func (d *graphDriverProxy) CreateReadWrite(id, parent, mountLabel string, storageOpt map[string]string) error {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
Parent: parent,
|
|
MountLabel: mountLabel,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.CreateReadWrite", args, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Create(id, parent, mountLabel string, storageOpt map[string]string) error {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
Parent: parent,
|
|
MountLabel: mountLabel,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Create", args, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Remove(id string) error {
|
|
args := &graphDriverRequest{ID: id}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Remove", args, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Get(id, mountLabel string) (string, error) {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
MountLabel: mountLabel,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Get", args, &ret); err != nil {
|
|
return "", err
|
|
}
|
|
var err error
|
|
if ret.Err != "" {
|
|
err = errors.New(ret.Err)
|
|
}
|
|
return ret.Dir, err
|
|
}
|
|
|
|
func (d *graphDriverProxy) Put(id string) error {
|
|
args := &graphDriverRequest{ID: id}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Put", args, &ret); err != nil {
|
|
return err
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Exists(id string) bool {
|
|
args := &graphDriverRequest{ID: id}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Exists", args, &ret); err != nil {
|
|
return false
|
|
}
|
|
return ret.Exists
|
|
}
|
|
|
|
func (d *graphDriverProxy) Status() [][2]string {
|
|
args := &graphDriverRequest{}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Status", args, &ret); err != nil {
|
|
return nil
|
|
}
|
|
return ret.Status
|
|
}
|
|
|
|
func (d *graphDriverProxy) GetMetadata(id string) (map[string]string, error) {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.GetMetadata", args, &ret); err != nil {
|
|
return nil, err
|
|
}
|
|
if ret.Err != "" {
|
|
return nil, errors.New(ret.Err)
|
|
}
|
|
return ret.Metadata, nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Cleanup() error {
|
|
args := &graphDriverRequest{}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Cleanup", args, &ret); err != nil {
|
|
return nil
|
|
}
|
|
if ret.Err != "" {
|
|
return errors.New(ret.Err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Diff(id, parent string) (archive.Archive, error) {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
Parent: parent,
|
|
}
|
|
body, err := d.client.Stream("GraphDriver.Diff", args)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return archive.Archive(body), nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) Changes(id, parent string) ([]archive.Change, error) {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
Parent: parent,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.Changes", args, &ret); err != nil {
|
|
return nil, err
|
|
}
|
|
if ret.Err != "" {
|
|
return nil, errors.New(ret.Err)
|
|
}
|
|
|
|
return ret.Changes, nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) ApplyDiff(id, parent string, diff archive.Reader) (int64, error) {
|
|
var ret graphDriverResponse
|
|
if err := d.client.SendFile(fmt.Sprintf("GraphDriver.ApplyDiff?id=%s&parent=%s", id, parent), diff, &ret); err != nil {
|
|
return -1, err
|
|
}
|
|
if ret.Err != "" {
|
|
return -1, errors.New(ret.Err)
|
|
}
|
|
return ret.Size, nil
|
|
}
|
|
|
|
func (d *graphDriverProxy) DiffSize(id, parent string) (int64, error) {
|
|
args := &graphDriverRequest{
|
|
ID: id,
|
|
Parent: parent,
|
|
}
|
|
var ret graphDriverResponse
|
|
if err := d.client.Call("GraphDriver.DiffSize", args, &ret); err != nil {
|
|
return -1, err
|
|
}
|
|
if ret.Err != "" {
|
|
return -1, errors.New(ret.Err)
|
|
}
|
|
return ret.Size, nil
|
|
}
|