2020-02-05 19:23:00 +00:00
|
|
|
package rados
|
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
/*
|
|
|
|
#cgo LDFLAGS: -lrados
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <rados/librados.h>
|
|
|
|
*/
|
2020-02-05 19:23:00 +00:00
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
2020-12-01 21:07:18 +00:00
|
|
|
"runtime"
|
2020-02-05 19:23:00 +00:00
|
|
|
"unsafe"
|
|
|
|
|
2021-01-04 19:17:22 +00:00
|
|
|
"github.com/ceph/go-ceph/internal/cutil"
|
2020-12-01 21:07:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// setOmapStep is a write op step. It holds C memory used in the operation.
|
|
|
|
type setOmapStep struct {
|
|
|
|
withRefs
|
|
|
|
withoutUpdate
|
|
|
|
|
|
|
|
// C arguments
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys cutil.CPtrCSlice
|
|
|
|
cValues cutil.CPtrCSlice
|
|
|
|
cLengths cutil.SizeTCSlice
|
2020-12-01 21:07:18 +00:00
|
|
|
cNum C.size_t
|
|
|
|
}
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
func newSetOmapStep(pairs map[string][]byte) *setOmapStep {
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2021-01-04 19:17:22 +00:00
|
|
|
maplen := len(pairs)
|
|
|
|
cKeys := cutil.NewCPtrCSlice(maplen)
|
|
|
|
cValues := cutil.NewCPtrCSlice(maplen)
|
|
|
|
cLengths := cutil.NewSizeTCSlice(maplen)
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
sos := &setOmapStep{
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys: cKeys,
|
|
|
|
cValues: cValues,
|
|
|
|
cLengths: cLengths,
|
|
|
|
cNum: C.size_t(maplen),
|
2020-12-01 21:07:18 +00:00
|
|
|
}
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
var i uintptr
|
2020-02-05 19:23:00 +00:00
|
|
|
for key, value := range pairs {
|
|
|
|
// key
|
2020-12-01 21:07:18 +00:00
|
|
|
ck := C.CString(key)
|
|
|
|
sos.add(unsafe.Pointer(ck))
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys[i] = cutil.CPtr(ck)
|
2020-02-05 19:23:00 +00:00
|
|
|
|
|
|
|
// value and its length
|
2021-01-04 19:17:22 +00:00
|
|
|
vlen := cutil.SizeT(len(value))
|
2020-12-01 21:07:18 +00:00
|
|
|
if vlen > 0 {
|
|
|
|
cv := C.CBytes(value)
|
|
|
|
sos.add(cv)
|
2021-01-04 19:17:22 +00:00
|
|
|
cValues[i] = cutil.CPtr(cv)
|
2020-02-05 19:23:00 +00:00
|
|
|
} else {
|
2021-01-04 19:17:22 +00:00
|
|
|
cValues[i] = nil
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 19:17:22 +00:00
|
|
|
cLengths[i] = vlen
|
2020-02-05 19:23:00 +00:00
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
runtime.SetFinalizer(sos, opStepFinalizer)
|
|
|
|
return sos
|
|
|
|
}
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
func (sos *setOmapStep) free() {
|
2021-01-04 19:17:22 +00:00
|
|
|
sos.cKeys.Free()
|
|
|
|
sos.cValues.Free()
|
|
|
|
sos.cLengths.Free()
|
2020-12-01 21:07:18 +00:00
|
|
|
sos.withRefs.free()
|
|
|
|
}
|
2020-02-05 19:23:00 +00:00
|
|
|
|
2020-12-01 21:36:41 +00:00
|
|
|
// OmapKeyValue items are returned by the GetOmapStep's Next call.
|
|
|
|
type OmapKeyValue struct {
|
|
|
|
Key string
|
|
|
|
Value []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOmapStep values are used to get the results of an GetOmapValues call
|
|
|
|
// on a WriteOp. Until the Operate method of the WriteOp is called the Next
|
|
|
|
// call will return an error. After Operate is called, the Next call will
|
|
|
|
// return valid results.
|
|
|
|
//
|
|
|
|
// The life cycle of the GetOmapStep is bound to the ReadOp, if the ReadOp
|
|
|
|
// Release method is called the public methods of the step must no longer be
|
|
|
|
// used and may return errors.
|
|
|
|
type GetOmapStep struct {
|
|
|
|
// inputs:
|
|
|
|
startAfter string
|
|
|
|
filterPrefix string
|
|
|
|
maxReturn uint64
|
|
|
|
|
|
|
|
// arguments:
|
|
|
|
cStartAfter *C.char
|
|
|
|
cFilterPrefix *C.char
|
|
|
|
|
|
|
|
// C returned data:
|
|
|
|
iter C.rados_omap_iter_t
|
|
|
|
more C.uchar
|
|
|
|
rval C.int
|
|
|
|
|
|
|
|
// internal state:
|
|
|
|
|
|
|
|
// canIterate is only set after the operation is performed and is
|
|
|
|
// intended to prevent premature fetching of data
|
|
|
|
canIterate bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func newGetOmapStep(startAfter, filterPrefix string, maxReturn uint64) *GetOmapStep {
|
|
|
|
gos := &GetOmapStep{
|
|
|
|
startAfter: startAfter,
|
|
|
|
filterPrefix: filterPrefix,
|
|
|
|
maxReturn: maxReturn,
|
|
|
|
cStartAfter: C.CString(startAfter),
|
|
|
|
cFilterPrefix: C.CString(filterPrefix),
|
|
|
|
}
|
|
|
|
runtime.SetFinalizer(gos, opStepFinalizer)
|
|
|
|
return gos
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gos *GetOmapStep) free() {
|
|
|
|
gos.canIterate = false
|
|
|
|
if gos.iter != nil {
|
|
|
|
C.rados_omap_get_end(gos.iter)
|
|
|
|
}
|
|
|
|
gos.iter = nil
|
|
|
|
gos.more = 0
|
|
|
|
gos.rval = 0
|
|
|
|
C.free(unsafe.Pointer(gos.cStartAfter))
|
|
|
|
gos.cStartAfter = nil
|
|
|
|
C.free(unsafe.Pointer(gos.cFilterPrefix))
|
|
|
|
gos.cFilterPrefix = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (gos *GetOmapStep) update() error {
|
|
|
|
err := getError(gos.rval)
|
|
|
|
gos.canIterate = (err == nil)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Next returns the next key value pair or nil if iteration is exhausted.
|
|
|
|
func (gos *GetOmapStep) Next() (*OmapKeyValue, error) {
|
|
|
|
if !gos.canIterate {
|
|
|
|
return nil, ErrOperationIncomplete
|
|
|
|
}
|
|
|
|
var (
|
|
|
|
cKey *C.char
|
|
|
|
cVal *C.char
|
|
|
|
cLen C.size_t
|
|
|
|
)
|
|
|
|
ret := C.rados_omap_get_next(gos.iter, &cKey, &cVal, &cLen)
|
|
|
|
if ret != 0 {
|
|
|
|
return nil, getError(ret)
|
|
|
|
}
|
|
|
|
if cKey == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return &OmapKeyValue{
|
|
|
|
Key: C.GoString(cKey),
|
|
|
|
Value: C.GoBytes(unsafe.Pointer(cVal), C.int(cLen)),
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// More returns true if there are more matching keys available.
|
|
|
|
func (gos *GetOmapStep) More() bool {
|
|
|
|
// tad bit hacky, but go can't automatically convert from
|
|
|
|
// unsigned char to bool
|
|
|
|
return gos.more != 0
|
|
|
|
}
|
|
|
|
|
2020-12-01 21:56:20 +00:00
|
|
|
// removeOmapKeysStep is a write operation step used to track state, especially
|
|
|
|
// C memory, across the setup and use of a WriteOp.
|
|
|
|
type removeOmapKeysStep struct {
|
|
|
|
withRefs
|
|
|
|
withoutUpdate
|
|
|
|
|
|
|
|
// arguments:
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys cutil.CPtrCSlice
|
2020-12-01 21:56:20 +00:00
|
|
|
cNum C.size_t
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRemoveOmapKeysStep(keys []string) *removeOmapKeysStep {
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys := cutil.NewCPtrCSlice(len(keys))
|
2020-12-01 21:56:20 +00:00
|
|
|
roks := &removeOmapKeysStep{
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys: cKeys,
|
2020-12-01 21:56:20 +00:00
|
|
|
cNum: C.size_t(len(keys)),
|
|
|
|
}
|
|
|
|
|
|
|
|
i := 0
|
|
|
|
for _, key := range keys {
|
2021-01-04 19:17:22 +00:00
|
|
|
cKeys[i] = cutil.CPtr(C.CString(key))
|
|
|
|
roks.add(unsafe.Pointer(cKeys[i]))
|
2020-12-01 21:56:20 +00:00
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
runtime.SetFinalizer(roks, opStepFinalizer)
|
|
|
|
return roks
|
|
|
|
}
|
|
|
|
|
|
|
|
func (roks *removeOmapKeysStep) free() {
|
2021-01-04 19:17:22 +00:00
|
|
|
roks.cKeys.Free()
|
2020-12-01 21:56:20 +00:00
|
|
|
roks.withRefs.free()
|
|
|
|
}
|
|
|
|
|
2020-12-01 21:07:18 +00:00
|
|
|
// SetOmap appends the map `pairs` to the omap `oid`
|
|
|
|
func (ioctx *IOContext) SetOmap(oid string, pairs map[string][]byte) error {
|
|
|
|
op := CreateWriteOp()
|
|
|
|
defer op.Release()
|
|
|
|
op.SetOmap(pairs)
|
|
|
|
return op.operateCompat(ioctx, oid)
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// OmapListFunc is the type of the function called for each omap key
|
|
|
|
// visited by ListOmapValues
|
|
|
|
type OmapListFunc func(key string, value []byte)
|
|
|
|
|
2020-02-05 19:32:21 +00:00
|
|
|
// ListOmapValues iterates over the keys and values in an omap by way of
|
|
|
|
// a callback function.
|
|
|
|
//
|
2020-02-05 19:23:00 +00:00
|
|
|
// `startAfter`: iterate only on the keys after this specified one
|
|
|
|
// `filterPrefix`: iterate only on the keys beginning with this prefix
|
|
|
|
// `maxReturn`: iterate no more than `maxReturn` key/value pairs
|
|
|
|
// `listFn`: the function called at each iteration
|
|
|
|
func (ioctx *IOContext) ListOmapValues(oid string, startAfter string, filterPrefix string, maxReturn int64, listFn OmapListFunc) error {
|
|
|
|
|
2020-12-01 21:36:41 +00:00
|
|
|
op := CreateReadOp()
|
|
|
|
defer op.Release()
|
|
|
|
gos := op.GetOmapValues(startAfter, filterPrefix, uint64(maxReturn))
|
|
|
|
err := op.operateCompat(ioctx, oid)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
2020-12-01 21:36:41 +00:00
|
|
|
kv, err := gos.Next()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
2020-12-01 21:36:41 +00:00
|
|
|
if kv == nil {
|
2020-02-05 19:23:00 +00:00
|
|
|
break
|
|
|
|
}
|
2020-12-01 21:36:41 +00:00
|
|
|
listFn(kv.Key, kv.Value)
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-05 19:32:21 +00:00
|
|
|
// GetOmapValues fetches a set of keys and their values from an omap and returns then as a map
|
2020-02-05 19:23:00 +00:00
|
|
|
// `startAfter`: retrieve only the keys after this specified one
|
|
|
|
// `filterPrefix`: retrieve only the keys beginning with this prefix
|
|
|
|
// `maxReturn`: retrieve no more than `maxReturn` key/value pairs
|
|
|
|
func (ioctx *IOContext) GetOmapValues(oid string, startAfter string, filterPrefix string, maxReturn int64) (map[string][]byte, error) {
|
|
|
|
omap := map[string][]byte{}
|
|
|
|
|
|
|
|
err := ioctx.ListOmapValues(
|
|
|
|
oid, startAfter, filterPrefix, maxReturn,
|
|
|
|
func(key string, value []byte) {
|
|
|
|
omap[key] = value
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
return omap, err
|
|
|
|
}
|
|
|
|
|
2020-02-05 19:32:21 +00:00
|
|
|
// GetAllOmapValues fetches all the keys and their values from an omap and returns then as a map
|
2020-02-05 19:23:00 +00:00
|
|
|
// `startAfter`: retrieve only the keys after this specified one
|
|
|
|
// `filterPrefix`: retrieve only the keys beginning with this prefix
|
|
|
|
// `iteratorSize`: internal number of keys to fetch during a read operation
|
|
|
|
func (ioctx *IOContext) GetAllOmapValues(oid string, startAfter string, filterPrefix string, iteratorSize int64) (map[string][]byte, error) {
|
|
|
|
omap := map[string][]byte{}
|
|
|
|
omapSize := 0
|
|
|
|
|
|
|
|
for {
|
|
|
|
err := ioctx.ListOmapValues(
|
|
|
|
oid, startAfter, filterPrefix, iteratorSize,
|
|
|
|
func(key string, value []byte) {
|
|
|
|
omap[key] = value
|
|
|
|
startAfter = key
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return omap, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// End of omap
|
|
|
|
if len(omap) == omapSize {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
omapSize = len(omap)
|
|
|
|
}
|
|
|
|
|
|
|
|
return omap, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RmOmapKeys removes the specified `keys` from the omap `oid`
|
|
|
|
func (ioctx *IOContext) RmOmapKeys(oid string, keys []string) error {
|
2020-12-01 21:56:20 +00:00
|
|
|
op := CreateWriteOp()
|
|
|
|
defer op.Release()
|
|
|
|
op.RmOmapKeys(keys)
|
|
|
|
return op.operateCompat(ioctx, oid)
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CleanOmap clears the omap `oid`
|
|
|
|
func (ioctx *IOContext) CleanOmap(oid string) error {
|
2020-12-01 21:59:08 +00:00
|
|
|
op := CreateWriteOp()
|
|
|
|
defer op.Release()
|
|
|
|
op.CleanOmap()
|
|
|
|
return op.operateCompat(ioctx, oid)
|
2020-02-05 19:23:00 +00:00
|
|
|
}
|