glusterfs

package
v1.14.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 4, 2019 License: Apache-2.0 Imports: 28 Imported by: 0

Documentation

Overview

Package glusterfs contains the internal representation of glusterfs volumes.

Index

Constants

This section is empty.

Variables

View Source
var (
	//ErrConflict returned when value is already in use.
	ErrConflict = errors.New("number already allocated")

	//ErrInvalidRange returned invalid range, for eg# min > max
	ErrInvalidRange = errors.New("invalid range")

	//ErrOutOfRange returned when value is not in pool range.
	ErrOutOfRange = errors.New("out of range")

	//ErrRangeFull returned when no more free values in the pool.
	ErrRangeFull = errors.New("range full")

	//ErrInternal returned when no free item found, but a.free != 0.
	ErrInternal = errors.New("internal error")
)

Functions

func ProbeVolumePlugins

func ProbeVolumePlugins() []volume.VolumePlugin

ProbeVolumePlugins is the primary entrypoint for volume plugins.

Types

type MinMaxAllocator added in v1.6.0

type MinMaxAllocator struct {
	// contains filtered or unexported fields
}

MinMaxAllocator defines allocator struct.

func NewMinMaxAllocator added in v1.6.0

func NewMinMaxAllocator(min, max int) (*MinMaxAllocator, error)

NewMinMaxAllocator return a new allocator or error based on provided min/max value.

func (*MinMaxAllocator) Allocate added in v1.6.0

func (a *MinMaxAllocator) Allocate(i int) (bool, error)

Allocate allocates provided value in the allocator and mark it as used.

func (*MinMaxAllocator) AllocateNext added in v1.6.0

func (a *MinMaxAllocator) AllocateNext() (int, bool, error)

AllocateNext allocates next value from the allocator.

func (*MinMaxAllocator) Free added in v1.6.0

func (a *MinMaxAllocator) Free() int

Free returns the number of free values in the allocator.

func (*MinMaxAllocator) Has added in v1.6.0

func (a *MinMaxAllocator) Has(i int) bool

Has check whether the provided value is used in the allocator

func (*MinMaxAllocator) Release added in v1.6.0

func (a *MinMaxAllocator) Release(i int) error

Release free/delete provided value from the allocator.

func (*MinMaxAllocator) SetRange added in v1.6.0

func (a *MinMaxAllocator) SetRange(min, max int) error

SetRange defines the range/pool with provided min and max values.

type Rangeable added in v1.6.0

type Rangeable interface {
	Allocate(int) (bool, error)
	AllocateNext() (int, bool, error)
	Release(int) error
	Has(int) bool
	Free() int
	SetRange(min, max int) error
}

Rangeable is an Interface that can adjust its min/max range. Rangeable should be threadsafe

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL