mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
34c88cea32
Signed-off-by: xige-16 <xi.ge@zilliz.com> Signed-off-by: xige-16 <xi.ge@zilliz.com>
92 lines
2.3 KiB
Go
92 lines
2.3 KiB
Go
package indexcgowrapper
|
|
|
|
/*
|
|
#cgo pkg-config: milvus_common milvus_storage
|
|
|
|
#include <stdlib.h> // free
|
|
#include "common/binary_set_c.h"
|
|
#include "storage/storage_c.h"
|
|
*/
|
|
import "C"
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"unsafe"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
)
|
|
|
|
func GetBinarySetKeys(cBinarySet C.CBinarySet) ([]string, error) {
|
|
size := int(C.GetBinarySetSize(cBinarySet))
|
|
if size == 0 {
|
|
return nil, fmt.Errorf("BinarySet size is zero")
|
|
}
|
|
datas := make([]unsafe.Pointer, size)
|
|
|
|
C.GetBinarySetKeys(cBinarySet, unsafe.Pointer(&datas[0]))
|
|
ret := make([]string, size)
|
|
for i := 0; i < size; i++ {
|
|
ret[i] = C.GoString((*C.char)(datas[i]))
|
|
}
|
|
|
|
return ret, nil
|
|
}
|
|
|
|
func GetBinarySetValue(cBinarySet C.CBinarySet, key string) ([]byte, error) {
|
|
cIndexKey := C.CString(key)
|
|
defer C.free(unsafe.Pointer(cIndexKey))
|
|
ret := C.GetBinarySetValueSize(cBinarySet, cIndexKey)
|
|
size := int(ret)
|
|
if size == 0 {
|
|
return nil, fmt.Errorf("GetBinarySetValueSize size is zero")
|
|
}
|
|
value := make([]byte, size)
|
|
status := C.CopyBinarySetValue(unsafe.Pointer(&value[0]), cIndexKey, cBinarySet)
|
|
|
|
if err := HandleCStatus(&status, "CopyBinarySetValue failed"); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return value, nil
|
|
}
|
|
|
|
func GetBinarySetSize(cBinarySet C.CBinarySet, key string) (int64, error) {
|
|
cIndexKey := C.CString(key)
|
|
defer C.free(unsafe.Pointer(cIndexKey))
|
|
ret := C.GetBinarySetValueSize(cBinarySet, cIndexKey)
|
|
return int64(ret), nil
|
|
}
|
|
|
|
// HandleCStatus deal with the error returned from CGO
|
|
func HandleCStatus(status *C.CStatus, extraInfo string) error {
|
|
if status.error_code == 0 {
|
|
return nil
|
|
}
|
|
errorCode := status.error_code
|
|
errorName, ok := commonpb.ErrorCode_name[int32(errorCode)]
|
|
if !ok {
|
|
errorName = "UnknownError"
|
|
}
|
|
errorMsg := C.GoString(status.error_msg)
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
finalMsg := fmt.Sprintf("[%s] %s", errorName, errorMsg)
|
|
logMsg := fmt.Sprintf("%s, C Runtime Exception: %s\n", extraInfo, finalMsg)
|
|
log.Warn(logMsg)
|
|
return errors.New(finalMsg)
|
|
}
|
|
|
|
func GetLocalUsedSize() (int64, error) {
|
|
var availableSize int64
|
|
cSize := (*C.int64_t)(&availableSize)
|
|
|
|
status := C.GetLocalUsedSize(cSize)
|
|
err := HandleCStatus(&status, "get local used size failed")
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return availableSize, nil
|
|
}
|