package graphdriver

import "github.com/dotcloud/docker/daemon/graphdriver"

Index

Constants

const (
	FsMagicBtrfs = FsMagic(0x9123683E)
	FsMagicAufs  = FsMagic(0x61756673)
)

Variables

var (
	DefaultDriver string

	ErrNotSupported   = errors.New("driver not supported")
	ErrPrerequisites  = errors.New("prerequisites for driver not satisfied (wrong filesystem?)")
	ErrIncompatibleFS = fmt.Errorf("backing file system is unsupported for this graph driver")
)

Functions

func MakePrivate

func MakePrivate(mountPoint string) error

func Register

func Register(name string, initFunc InitFunc) error

Types

type Differ

type Differ interface {
	Diff(id string) (archive.Archive, error)
	Changes(id string) ([]archive.Change, error)
	ApplyDiff(id string, diff archive.ArchiveReader) error
	DiffSize(id string) (bytes int64, err error)
}

type Driver

type Driver interface {
	String() string

	Create(id, parent string) error
	Remove(id string) error

	Get(id, mountLabel string) (dir string, err error)
	Put(id string)
	Exists(id string) bool

	Status() [][2]string

	Cleanup() error
}

func GetDriver

func GetDriver(name, home string, options []string) (Driver, error)

func New

func New(root string, options []string) (driver Driver, err error)

type FsMagic

type FsMagic uint64

type InitFunc

type InitFunc func(root string, options []string) (Driver, error)

Source Files

driver.go

Directories

PathSynopsis
daemon/graphdriver/aufs
daemon/graphdriver/btrfs
daemon/graphdriver/devmapper
daemon/graphdriver/graphtest
daemon/graphdriver/vfs
Version
v1.0.1
Published
Jun 19, 2014
Platform
js/wasm
Imports
6 packages
Last checked
10 seconds ago

Tools for package owners.