2014-05-24 17:36:12 +00:00
|
|
|
package rados
|
|
|
|
|
|
|
|
// #cgo LDFLAGS: -lrados
|
|
|
|
// #include <stdlib.h>
|
|
|
|
// #include <rados/librados.h>
|
|
|
|
import "C"
|
|
|
|
|
2019-12-12 20:30:01 +00:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2020-01-22 17:25:58 +00:00
|
|
|
// ErrNotConnected is returned when functions are called without a RADOS connection
|
2019-12-12 20:30:01 +00:00
|
|
|
ErrNotConnected = errors.New("RADOS not connected")
|
|
|
|
)
|
2014-05-24 17:36:12 +00:00
|
|
|
|
2014-08-31 01:03:23 +00:00
|
|
|
// ClusterStat represents Ceph cluster statistics.
|
2014-05-26 19:43:44 +00:00
|
|
|
type ClusterStat struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
Kb uint64
|
|
|
|
Kb_used uint64
|
|
|
|
Kb_avail uint64
|
|
|
|
Num_objects uint64
|
2014-05-26 19:43:44 +00:00
|
|
|
}
|
|
|
|
|
2014-08-31 01:03:23 +00:00
|
|
|
// Conn is a connection handle to a Ceph cluster.
|
2014-05-24 17:36:12 +00:00
|
|
|
type Conn struct {
|
2018-07-28 21:23:18 +00:00
|
|
|
cluster C.rados_t
|
|
|
|
connected bool
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2019-12-18 22:25:37 +00:00
|
|
|
// ClusterRef represents a fundamental RADOS cluster connection.
|
|
|
|
type ClusterRef C.rados_t
|
|
|
|
|
|
|
|
// Cluster returns the underlying RADOS cluster reference for this Conn.
|
|
|
|
func (c *Conn) Cluster() ClusterRef {
|
|
|
|
return ClusterRef(c.cluster)
|
|
|
|
}
|
|
|
|
|
2014-08-30 17:29:17 +00:00
|
|
|
// PingMonitor sends a ping to a monitor and returns the reply.
|
2014-05-24 17:36:12 +00:00
|
|
|
func (c *Conn) PingMonitor(id string) (string, error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
c_id := C.CString(id)
|
|
|
|
defer C.free(unsafe.Pointer(c_id))
|
2014-05-24 17:36:12 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
var strlen C.size_t
|
|
|
|
var strout *C.char
|
2014-05-24 17:36:12 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rados_ping_monitor(c.cluster, c_id, &strout, &strlen)
|
|
|
|
defer C.rados_buffer_free(strout)
|
2014-05-24 17:36:12 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
if ret == 0 {
|
|
|
|
reply := C.GoStringN(strout, (C.int)(strlen))
|
|
|
|
return reply, nil
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return "", RadosError(int(ret))
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-05-24 18:41:58 +00:00
|
|
|
// Connect establishes a connection to a RADOS cluster. It returns an error,
|
|
|
|
// if any.
|
2014-05-24 17:36:12 +00:00
|
|
|
func (c *Conn) Connect() error {
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rados_connect(c.cluster)
|
2018-10-06 21:35:07 +00:00
|
|
|
if ret != 0 {
|
2015-02-11 21:21:05 +00:00
|
|
|
return RadosError(int(ret))
|
|
|
|
}
|
2018-10-06 21:35:07 +00:00
|
|
|
c.connected = true
|
|
|
|
return nil
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 17:29:17 +00:00
|
|
|
// Shutdown disconnects from the cluster.
|
2014-05-24 17:36:12 +00:00
|
|
|
func (c *Conn) Shutdown() {
|
2018-07-28 21:57:10 +00:00
|
|
|
if err := c.ensure_connected(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2019-11-26 09:52:37 +00:00
|
|
|
freeConn(c)
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 17:29:17 +00:00
|
|
|
// ReadConfigFile configures the connection using a Ceph configuration file.
|
2014-05-24 17:36:12 +00:00
|
|
|
func (c *Conn) ReadConfigFile(path string) error {
|
2015-02-11 21:21:05 +00:00
|
|
|
c_path := C.CString(path)
|
|
|
|
defer C.free(unsafe.Pointer(c_path))
|
|
|
|
ret := C.rados_conf_read_file(c.cluster, c_path)
|
2019-12-20 18:30:16 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2014-08-30 17:29:17 +00:00
|
|
|
// ReadDefaultConfigFile configures the connection using a Ceph configuration
|
|
|
|
// file located at default locations.
|
2014-05-24 17:36:12 +00:00
|
|
|
func (c *Conn) ReadDefaultConfigFile() error {
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rados_conf_read_file(c.cluster, nil)
|
2019-12-20 18:30:16 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
|
|
|
|
2020-01-22 17:27:31 +00:00
|
|
|
// OpenIOContext creates and returns a new IOContext for the given pool.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rados_ioctx_create(rados_t cluster, const char *pool_name,
|
|
|
|
// rados_ioctx_t *ioctx);
|
2015-01-09 19:33:02 +00:00
|
|
|
func (c *Conn) OpenIOContext(pool string) (*IOContext, error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
c_pool := C.CString(pool)
|
|
|
|
defer C.free(unsafe.Pointer(c_pool))
|
|
|
|
ioctx := &IOContext{}
|
|
|
|
ret := C.rados_ioctx_create(c.cluster, c_pool, &ioctx.ioctx)
|
|
|
|
if ret == 0 {
|
|
|
|
return ioctx, nil
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return nil, RadosError(int(ret))
|
2014-05-24 17:36:12 +00:00
|
|
|
}
|
2014-05-26 17:53:30 +00:00
|
|
|
|
2014-08-30 17:29:17 +00:00
|
|
|
// ListPools returns the names of all existing pools.
|
2014-05-26 17:53:30 +00:00
|
|
|
func (c *Conn) ListPools() (names []string, err error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
buf := make([]byte, 4096)
|
|
|
|
for {
|
|
|
|
ret := int(C.rados_pool_list(c.cluster,
|
|
|
|
(*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf))))
|
|
|
|
if ret < 0 {
|
|
|
|
return nil, RadosError(int(ret))
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret > len(buf) {
|
|
|
|
buf = make([]byte, ret)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp := bytes.SplitAfter(buf[:ret-1], []byte{0})
|
|
|
|
for _, s := range tmp {
|
|
|
|
if len(s) > 0 {
|
|
|
|
name := C.GoString((*C.char)(unsafe.Pointer(&s[0])))
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return names, nil
|
|
|
|
}
|
2014-05-26 17:53:30 +00:00
|
|
|
}
|
2014-05-26 18:11:47 +00:00
|
|
|
|
2014-08-29 16:40:44 +00:00
|
|
|
// SetConfigOption sets the value of the configuration option identified by
|
|
|
|
// the given name.
|
2014-05-26 18:11:47 +00:00
|
|
|
func (c *Conn) SetConfigOption(option, value string) error {
|
2015-02-11 21:21:05 +00:00
|
|
|
c_opt, c_val := C.CString(option), C.CString(value)
|
|
|
|
defer C.free(unsafe.Pointer(c_opt))
|
|
|
|
defer C.free(unsafe.Pointer(c_val))
|
|
|
|
ret := C.rados_conf_set(c.cluster, c_opt, c_val)
|
2019-12-20 18:37:10 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-05-26 18:11:47 +00:00
|
|
|
}
|
2014-05-26 18:38:46 +00:00
|
|
|
|
2014-08-29 16:40:44 +00:00
|
|
|
// GetConfigOption returns the value of the Ceph configuration option
|
|
|
|
// identified by the given name.
|
2014-08-29 16:21:10 +00:00
|
|
|
func (c *Conn) GetConfigOption(name string) (value string, err error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
buf := make([]byte, 4096)
|
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
ret := int(C.rados_conf_get(c.cluster, c_name,
|
|
|
|
(*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf))))
|
|
|
|
// FIXME: ret may be -ENAMETOOLONG if the buffer is not large enough. We
|
|
|
|
// can handle this case, but we need a reliable way to test for
|
|
|
|
// -ENAMETOOLONG constant. Will the syscall/Errno stuff in Go help?
|
|
|
|
if ret == 0 {
|
|
|
|
value = C.GoString((*C.char)(unsafe.Pointer(&buf[0])))
|
|
|
|
return value, nil
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return "", RadosError(ret)
|
2014-08-29 16:21:10 +00:00
|
|
|
}
|
|
|
|
|
2014-05-26 18:38:46 +00:00
|
|
|
// WaitForLatestOSDMap blocks the caller until the latest OSD map has been
|
2014-08-29 16:40:44 +00:00
|
|
|
// retrieved.
|
2014-05-26 18:38:46 +00:00
|
|
|
func (c *Conn) WaitForLatestOSDMap() error {
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rados_wait_for_latest_osdmap(c.cluster)
|
2019-12-20 18:37:10 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-05-26 18:38:46 +00:00
|
|
|
}
|
2014-05-26 19:43:44 +00:00
|
|
|
|
2018-07-28 21:57:10 +00:00
|
|
|
func (c *Conn) ensure_connected() error {
|
|
|
|
if c.connected {
|
|
|
|
return nil
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return ErrNotConnected
|
2018-07-28 21:57:10 +00:00
|
|
|
}
|
|
|
|
|
2019-03-06 03:14:57 +00:00
|
|
|
// GetClusterStats returns statistics about the cluster associated with the
|
2014-08-29 16:40:44 +00:00
|
|
|
// connection.
|
2014-05-26 19:43:44 +00:00
|
|
|
func (c *Conn) GetClusterStats() (stat ClusterStat, err error) {
|
2018-07-28 21:57:10 +00:00
|
|
|
if err := c.ensure_connected(); err != nil {
|
|
|
|
return ClusterStat{}, err
|
|
|
|
}
|
2015-02-11 21:21:05 +00:00
|
|
|
c_stat := C.struct_rados_cluster_stat_t{}
|
|
|
|
ret := C.rados_cluster_stat(c.cluster, &c_stat)
|
|
|
|
if ret < 0 {
|
|
|
|
return ClusterStat{}, RadosError(int(ret))
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return ClusterStat{
|
|
|
|
Kb: uint64(c_stat.kb),
|
|
|
|
Kb_used: uint64(c_stat.kb_used),
|
|
|
|
Kb_avail: uint64(c_stat.kb_avail),
|
|
|
|
Num_objects: uint64(c_stat.num_objects),
|
|
|
|
}, nil
|
2014-05-26 19:43:44 +00:00
|
|
|
}
|
2014-05-28 03:12:17 +00:00
|
|
|
|
2014-08-29 16:40:44 +00:00
|
|
|
// ParseCmdLineArgs configures the connection from command line arguments.
|
2014-05-28 03:12:17 +00:00
|
|
|
func (c *Conn) ParseCmdLineArgs(args []string) error {
|
2015-02-11 21:21:05 +00:00
|
|
|
// add an empty element 0 -- Ceph treats the array as the actual contents
|
|
|
|
// of argv and skips the first element (the executable name)
|
|
|
|
argc := C.int(len(args) + 1)
|
|
|
|
argv := make([]*C.char, argc)
|
|
|
|
|
|
|
|
// make the first element a string just in case it is ever examined
|
|
|
|
argv[0] = C.CString("placeholder")
|
|
|
|
defer C.free(unsafe.Pointer(argv[0]))
|
|
|
|
|
|
|
|
for i, arg := range args {
|
|
|
|
argv[i+1] = C.CString(arg)
|
|
|
|
defer C.free(unsafe.Pointer(argv[i+1]))
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := C.rados_conf_parse_argv(c.cluster, argc, &argv[0])
|
2019-12-20 18:37:10 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-05-28 03:12:17 +00:00
|
|
|
}
|
2014-08-29 16:21:10 +00:00
|
|
|
|
2014-08-29 16:40:44 +00:00
|
|
|
// ParseDefaultConfigEnv configures the connection from the default Ceph
|
|
|
|
// environment variable(s).
|
2014-08-29 16:21:10 +00:00
|
|
|
func (c *Conn) ParseDefaultConfigEnv() error {
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rados_conf_parse_env(c.cluster, nil)
|
2019-12-20 18:30:16 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-08-29 16:21:10 +00:00
|
|
|
}
|
2014-08-29 22:56:17 +00:00
|
|
|
|
|
|
|
// GetFSID returns the fsid of the cluster as a hexadecimal string. The fsid
|
|
|
|
// is a unique identifier of an entire Ceph cluster.
|
|
|
|
func (c *Conn) GetFSID() (fsid string, err error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
buf := make([]byte, 37)
|
|
|
|
ret := int(C.rados_cluster_fsid(c.cluster,
|
|
|
|
(*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf))))
|
|
|
|
// FIXME: the success case isn't documented correctly in librados.h
|
|
|
|
if ret == 36 {
|
|
|
|
fsid = C.GoString((*C.char)(unsafe.Pointer(&buf[0])))
|
|
|
|
return fsid, nil
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return "", RadosError(int(ret))
|
2014-08-29 22:56:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetInstanceID returns a globally unique identifier for the cluster
|
|
|
|
// connection instance.
|
|
|
|
func (c *Conn) GetInstanceID() uint64 {
|
2015-02-11 21:21:05 +00:00
|
|
|
// FIXME: are there any error cases for this?
|
|
|
|
return uint64(C.rados_get_instance_id(c.cluster))
|
2014-08-29 22:56:17 +00:00
|
|
|
}
|
2014-08-30 17:28:24 +00:00
|
|
|
|
|
|
|
// MakePool creates a new pool with default settings.
|
|
|
|
func (c *Conn) MakePool(name string) error {
|
2015-02-11 21:21:05 +00:00
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
ret := int(C.rados_pool_create(c.cluster, c_name))
|
2019-12-20 18:30:16 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-08-30 17:28:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeletePool deletes a pool and all the data inside the pool.
|
|
|
|
func (c *Conn) DeletePool(name string) error {
|
2018-07-28 21:57:10 +00:00
|
|
|
if err := c.ensure_connected(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-11 21:21:05 +00:00
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
ret := int(C.rados_pool_delete(c.cluster, c_name))
|
2019-12-20 18:30:16 +00:00
|
|
|
return getRadosError(int(ret))
|
2014-08-30 17:28:24 +00:00
|
|
|
}
|
2015-02-10 20:13:56 +00:00
|
|
|
|
2019-10-14 12:09:30 +00:00
|
|
|
// GetPoolByName returns the ID of the pool with a given name.
|
|
|
|
func (c *Conn) GetPoolByName(name string) (int64, error) {
|
|
|
|
if err := c.ensure_connected(); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
ret := int64(C.rados_pool_lookup(c.cluster, c_name))
|
|
|
|
if ret < 0 {
|
|
|
|
return 0, RadosError(ret)
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return ret, nil
|
2019-10-14 12:09:30 +00:00
|
|
|
}
|
|
|
|
|
2019-10-14 15:38:52 +00:00
|
|
|
// GetPoolByID returns the name of a pool by a given ID.
|
|
|
|
func (c *Conn) GetPoolByID(id int64) (string, error) {
|
|
|
|
buf := make([]byte, 4096)
|
|
|
|
if err := c.ensure_connected(); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
c_id := C.int64_t(id)
|
|
|
|
ret := int(C.rados_pool_reverse_lookup(c.cluster, c_id, (*C.char)(unsafe.Pointer(&buf[0])), C.size_t(len(buf))))
|
|
|
|
if ret < 0 {
|
|
|
|
return "", RadosError(ret)
|
|
|
|
}
|
2019-12-20 18:43:51 +00:00
|
|
|
return C.GoString((*C.char)(unsafe.Pointer(&buf[0]))), nil
|
2019-10-14 15:38:52 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 20:13:56 +00:00
|
|
|
// MonCommand sends a command to one of the monitors
|
2015-02-11 18:56:41 +00:00
|
|
|
func (c *Conn) MonCommand(args []byte) (buffer []byte, info string, err error) {
|
2016-07-21 20:07:30 +00:00
|
|
|
return c.monCommand(args, nil)
|
|
|
|
}
|
|
|
|
|
2019-03-06 03:14:57 +00:00
|
|
|
// MonCommandWithInputBuffer sends a command to one of the monitors, with an input buffer
|
2016-07-21 20:07:30 +00:00
|
|
|
func (c *Conn) MonCommandWithInputBuffer(args, inputBuffer []byte) (buffer []byte, info string, err error) {
|
|
|
|
return c.monCommand(args, inputBuffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) monCommand(args, inputBuffer []byte) (buffer []byte, info string, err error) {
|
2016-03-25 02:13:09 +00:00
|
|
|
argv := C.CString(string(args))
|
|
|
|
defer C.free(unsafe.Pointer(argv))
|
2015-02-10 20:13:56 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
outs, outbuf *C.char
|
|
|
|
outslen, outbuflen C.size_t
|
|
|
|
)
|
2016-07-21 20:07:30 +00:00
|
|
|
inbuf := C.CString(string(inputBuffer))
|
|
|
|
inbufLen := len(inputBuffer)
|
2015-02-10 20:13:56 +00:00
|
|
|
defer C.free(unsafe.Pointer(inbuf))
|
|
|
|
|
|
|
|
ret := C.rados_mon_command(c.cluster,
|
2016-03-25 02:13:09 +00:00
|
|
|
&argv, 1,
|
2016-07-21 20:07:30 +00:00
|
|
|
inbuf, // bulk input (e.g. crush map)
|
|
|
|
C.size_t(inbufLen), // length inbuf
|
|
|
|
&outbuf, // buffer
|
|
|
|
&outbuflen, // buffer length
|
|
|
|
&outs, // status string
|
2015-02-10 20:13:56 +00:00
|
|
|
&outslen)
|
|
|
|
|
|
|
|
if outslen > 0 {
|
|
|
|
info = C.GoStringN(outs, C.int(outslen))
|
|
|
|
C.free(unsafe.Pointer(outs))
|
|
|
|
}
|
2015-02-11 18:56:41 +00:00
|
|
|
if outbuflen > 0 {
|
2015-02-11 19:13:35 +00:00
|
|
|
buffer = C.GoBytes(unsafe.Pointer(outbuf), C.int(outbuflen))
|
|
|
|
C.free(unsafe.Pointer(outbuf))
|
2015-02-11 18:56:41 +00:00
|
|
|
}
|
2015-02-10 20:13:56 +00:00
|
|
|
if ret != 0 {
|
|
|
|
err = RadosError(int(ret))
|
2015-02-11 18:56:41 +00:00
|
|
|
return nil, info, err
|
2015-02-10 20:13:56 +00:00
|
|
|
}
|
2015-02-11 18:56:41 +00:00
|
|
|
|
2015-02-10 20:13:56 +00:00
|
|
|
return
|
|
|
|
}
|
2019-12-12 04:29:16 +00:00
|
|
|
|
|
|
|
// PGCommand sends a command to one of the PGs
|
2020-01-22 17:27:54 +00:00
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rados_pg_command(rados_t cluster, const char *pgstr,
|
|
|
|
// const char **cmd, size_t cmdlen,
|
|
|
|
// const char *inbuf, size_t inbuflen,
|
|
|
|
// char **outbuf, size_t *outbuflen,
|
|
|
|
// char **outs, size_t *outslen);
|
2019-12-12 04:29:16 +00:00
|
|
|
func (c *Conn) PGCommand(pgid []byte, args [][]byte) (buffer []byte, info string, err error) {
|
|
|
|
return c.pgCommand(pgid, args, nil)
|
|
|
|
}
|
|
|
|
|
2020-01-22 17:27:54 +00:00
|
|
|
// PGCommandWithInputBuffer sends a command to one of the PGs, with an input buffer
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rados_pg_command(rados_t cluster, const char *pgstr,
|
|
|
|
// const char **cmd, size_t cmdlen,
|
|
|
|
// const char *inbuf, size_t inbuflen,
|
|
|
|
// char **outbuf, size_t *outbuflen,
|
|
|
|
// char **outs, size_t *outslen);
|
2019-12-12 04:29:16 +00:00
|
|
|
func (c *Conn) PGCommandWithInputBuffer(pgid []byte, args [][]byte, inputBuffer []byte) (buffer []byte, info string, err error) {
|
|
|
|
return c.pgCommand(pgid, args, inputBuffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Conn) pgCommand(pgid []byte, args [][]byte, inputBuffer []byte) (buffer []byte, info string, err error) {
|
|
|
|
name := C.CString(string(pgid))
|
|
|
|
defer C.free(unsafe.Pointer(name))
|
|
|
|
|
|
|
|
argc := len(args)
|
|
|
|
argv := make([]*C.char, argc)
|
|
|
|
|
|
|
|
for i, arg := range args {
|
|
|
|
argv[i] = C.CString(string(arg))
|
|
|
|
defer C.free(unsafe.Pointer(argv[i]))
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
outs, outbuf *C.char
|
|
|
|
outslen, outbuflen C.size_t
|
|
|
|
)
|
|
|
|
inbuf := C.CString(string(inputBuffer))
|
|
|
|
inbufLen := len(inputBuffer)
|
|
|
|
defer C.free(unsafe.Pointer(inbuf))
|
|
|
|
|
|
|
|
ret := C.rados_pg_command(c.cluster,
|
|
|
|
name,
|
|
|
|
&argv[0],
|
|
|
|
C.size_t(argc),
|
|
|
|
inbuf, // bulk input
|
|
|
|
C.size_t(inbufLen), // length inbuf
|
|
|
|
&outbuf, // buffer
|
|
|
|
&outbuflen, // buffer length
|
|
|
|
&outs, // status string
|
|
|
|
&outslen)
|
|
|
|
|
|
|
|
if outslen > 0 {
|
|
|
|
info = C.GoStringN(outs, C.int(outslen))
|
|
|
|
C.free(unsafe.Pointer(outs))
|
|
|
|
}
|
|
|
|
if outbuflen > 0 {
|
|
|
|
buffer = C.GoBytes(unsafe.Pointer(outbuf), C.int(outbuflen))
|
|
|
|
C.free(unsafe.Pointer(outbuf))
|
|
|
|
}
|
|
|
|
if ret != 0 {
|
|
|
|
err = RadosError(int(ret))
|
|
|
|
return nil, info, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|