gmutex

package
v0.7.9 Latest Latest
Warning

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

Go to latest
Published: Sep 14, 2023 License: MIT Imports: 16 Imported by: 0

Documentation

Overview

Package gmutex implements a global mutex using Google Cloud Storage.

Index

Constants

This section is empty.

Variables

View Source
var HTTPClient *http.Client

HTTPClient should be set to an http.Client before first use. If unset google.DefaultClient will be used.

Functions

This section is empty.

Types

type Mutex

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

A Mutex is a global, mutual exclusion lock that uses an object in Google Cloud Storage to serialize computations across the internet.

A Mutex can optionally have data attached to it while it is held. While there is no limit to the size of this data, it is best kept small. Provided data must be of type *bytes.Buffer, *bytes.Reader, or *strings.Reader.

Given the latency and scalability properties of Google Cloud Storage, a Mutex is best used to serialize long-running, high-latency compute processes. Critical sections should span seconds. Expect an uncontended mutex to take tens to hundreds of milliseconds to acquire, and a contended one multiple seconds after release.

An instance of Mutex is not associated with a particular goroutine (it is allowed for one goroutine to lock a Mutex and then arrange for another goroutine to unlock it), but it is not safe for concurrent use by multiple goroutines.

func New added in v0.5.3

func New(ctx context.Context, bucket, object string, ttl time.Duration) (*Mutex, error)

New creates a new Mutex at the given bucket and object, with the given time-to-live.

func (*Mutex) Abandon added in v0.6.0

func (m *Mutex) Abandon() string

Abandon abandons m, returning a lock id that can be used to call Adopt.

func (*Mutex) Adopt added in v0.6.0

func (m *Mutex) Adopt(ctx context.Context, id string) error

Adopt adopts an abandoned lock into m, and calls Extend to ensure mutual exclusion.

func (*Mutex) AdoptData added in v0.6.0

func (m *Mutex) AdoptData(ctx context.Context, id string, data io.Reader) error

AdoptData adopts an abandoned lock into m, and calls UpdateData to ensure mutual exclusion.

func (*Mutex) AdoptJSON added in v0.6.8

func (m *Mutex) AdoptJSON(ctx context.Context, id string, v any) error

AdoptJSON calls AdoptData with the JSON encoding of v.

func (*Mutex) Extend added in v0.6.1

func (m *Mutex) Extend(ctx context.Context) error

Extend extends the expiration time of m, keeping any attached data. Returns an error if the lock has already expired, and mutual exclusion can not be ensured.

func (*Mutex) InspectData added in v0.7.0

func (m *Mutex) InspectData(ctx context.Context, data io.Writer) (bool, error)

InspectData inspects m, returning its locked state and fetching attached data.

func (*Mutex) InspectJSON added in v0.6.8

func (m *Mutex) InspectJSON(ctx context.Context, v any) (bool, error)

InspectJSON calls InspectData. Parses JSON-encoded data into the value pointed to by v.

func (*Mutex) Lock

func (m *Mutex) Lock(ctx context.Context) error

Lock locks m. If the lock is already in use, the calling goroutine blocks until the mutex is available, or the context expires. Returns nil if the lock was taken successfully.

func (*Mutex) LockData added in v0.6.0

func (m *Mutex) LockData(ctx context.Context, data io.Reader) error

LockData locks m with attached data. If the lock is already in use, the calling goroutine blocks until the mutex is available, or the context expires. Returns nil if the lock was taken successfully (and the attached data stored).

func (*Mutex) LockJSON added in v0.6.8

func (m *Mutex) LockJSON(ctx context.Context, v any) error

LockJSON calls LockData with the JSON encoding of v.

func (*Mutex) Locker added in v0.5.3

func (m *Mutex) Locker() sync.Locker

Locker gets a Locker that uses context.Background to call Lock and Unlock, and panics on error.

func (*Mutex) SetTTL added in v0.6.3

func (m *Mutex) SetTTL(ttl time.Duration)

SetTTL sets the time-to-live to use when the mutex is locked, extended, or updated. The time-to-live is rounded up to the nearest second. Negative or zero time-to-live means the lock never expires.

func (*Mutex) TTL added in v0.6.3

func (m *Mutex) TTL() time.Duration

TTL gets the time-to-live to use when the mutex is locked, extended, or updated.

func (*Mutex) TryLock added in v0.6.0

func (m *Mutex) TryLock(ctx context.Context) (bool, error)

TryLock tries to lock m. Returns true if the lock was taken successfully, false if the lock is already in use.

func (*Mutex) TryLockData added in v0.6.0

func (m *Mutex) TryLockData(ctx context.Context, data io.Reader) (bool, error)

TryLockData tries to lock m with attached data. Returns true if the lock was taken successfully (and the attached data stored). Returns false if the lock is already in use, fetching attached data if data satisfies io.Writer.

func (*Mutex) TryLockJSON added in v0.6.8

func (m *Mutex) TryLockJSON(ctx context.Context, v any) (bool, error)

TryLockJSON calls TryLockData with the JSON encoding of v. Parses JSON-encoded data into the value pointed to by v, if the lock is already in use and v is a pointer.

func (*Mutex) Unlock

func (m *Mutex) Unlock(ctx context.Context) error

Unlock unlocks m, deleting any attached data. Returns an error if the lock had already expired, and mutual exclusion was not ensured.

func (*Mutex) UpdateData added in v0.7.0

func (m *Mutex) UpdateData(ctx context.Context, data io.Reader) error

UpdateData updates attached data, extending the expiration time of m. Returns an error if the lock has already expired, and mutual exclusion can not be ensured.

func (*Mutex) UpdateJSON added in v0.6.8

func (m *Mutex) UpdateJSON(ctx context.Context, v any) error

UpdateJSON calls UpdateData with the JSON encoding of v.

Jump to

Keyboard shortcuts

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