2020-12-18 15:44:27 +08:00
|
|
|
package indexbuilder
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
|
|
|
|
|
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_indexbuilder -Wl,-rpath=${SRCDIR}/../core/output/lib
|
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
#include <stdlib.h> // free
|
2020-12-18 15:44:27 +08:00
|
|
|
#include "segcore/collection_c.h"
|
|
|
|
#include "indexbuilder/index_c.h"
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
import (
|
2020-12-29 17:53:27 +08:00
|
|
|
"errors"
|
|
|
|
"strconv"
|
2020-12-21 16:36:07 +08:00
|
|
|
"unsafe"
|
2020-12-18 15:44:27 +08:00
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/indexcgopb"
|
2020-12-25 11:10:31 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/storage"
|
2020-12-18 15:44:27 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// TODO: use storage.Blob instead later
|
2020-12-25 11:10:31 +08:00
|
|
|
type Blob = storage.Blob
|
2020-12-18 15:44:27 +08:00
|
|
|
|
|
|
|
type Index interface {
|
|
|
|
Serialize() ([]*Blob, error)
|
|
|
|
Load([]*Blob) error
|
2020-12-28 10:00:02 +08:00
|
|
|
BuildFloatVecIndexWithoutIds(vectors []float32) error
|
|
|
|
BuildBinaryVecIndexWithoutIds(vectors []byte) error
|
2020-12-18 15:44:27 +08:00
|
|
|
Delete() error
|
|
|
|
}
|
|
|
|
|
|
|
|
type CIndex struct {
|
|
|
|
indexPtr C.CIndex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *CIndex) Serialize() ([]*Blob, error) {
|
2020-12-21 16:36:07 +08:00
|
|
|
/*
|
2020-12-29 17:53:27 +08:00
|
|
|
CStatus
|
|
|
|
SerializeToSlicedBuffer(CIndex index, int32_t* buffer_size, char** res_buffer);
|
2020-12-21 16:36:07 +08:00
|
|
|
*/
|
2020-12-29 17:53:27 +08:00
|
|
|
|
|
|
|
var cDumpedSlicedBuffer *C.char
|
2020-12-21 16:36:07 +08:00
|
|
|
var bufferSize int32
|
2020-12-29 17:53:27 +08:00
|
|
|
status := C.SerializeToSlicedBuffer(index.indexPtr, (*C.int32_t)(unsafe.Pointer(&bufferSize)), &cDumpedSlicedBuffer)
|
|
|
|
errorCode := status.error_code
|
|
|
|
if errorCode != 0 {
|
|
|
|
errorMsg := C.GoString(status.error_msg)
|
|
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
return nil, errors.New("SerializeToSlicedBuffer failed, C runtime error detected, error code = " + strconv.Itoa(int(errorCode)) + ", error msg = " + errorMsg)
|
|
|
|
}
|
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
defer C.free(unsafe.Pointer(cDumpedSlicedBuffer))
|
|
|
|
|
|
|
|
dumpedSlicedBuffer := C.GoBytes(unsafe.Pointer(cDumpedSlicedBuffer), (C.int32_t)(bufferSize))
|
|
|
|
var blobs indexcgopb.BinarySet
|
|
|
|
err := proto.Unmarshal(dumpedSlicedBuffer, &blobs)
|
2020-12-18 15:44:27 +08:00
|
|
|
if err != nil {
|
2020-12-21 16:36:07 +08:00
|
|
|
return nil, err
|
2020-12-18 15:44:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ret := make([]*Blob, 0)
|
2020-12-21 16:36:07 +08:00
|
|
|
for _, data := range blobs.Datas {
|
|
|
|
ret = append(ret, &Blob{Key: data.Key, Value: data.Value})
|
2020-12-18 15:44:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
|
|
|
}
|
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
func (index *CIndex) Load(blobs []*Blob) error {
|
|
|
|
binarySet := &indexcgopb.BinarySet{Datas: make([]*indexcgopb.Binary, 0)}
|
|
|
|
for _, blob := range blobs {
|
|
|
|
binarySet.Datas = append(binarySet.Datas, &indexcgopb.Binary{Key: blob.Key, Value: blob.Value})
|
|
|
|
}
|
|
|
|
|
|
|
|
datas, err := proto.Marshal(binarySet)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2020-12-30 18:16:34 +08:00
|
|
|
CStatus
|
2020-12-25 11:10:31 +08:00
|
|
|
LoadFromSlicedBuffer(CIndex index, const char* serialized_sliced_blob_buffer, int32_t size);
|
2020-12-21 16:36:07 +08:00
|
|
|
*/
|
2020-12-30 18:16:34 +08:00
|
|
|
status := C.LoadFromSlicedBuffer(index.indexPtr, (*C.char)(unsafe.Pointer(&datas[0])), (C.int32_t)(len(datas)))
|
|
|
|
errorCode := status.error_code
|
|
|
|
if errorCode != 0 {
|
|
|
|
errorMsg := C.GoString(status.error_msg)
|
|
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
return errors.New("BuildFloatVecIndexWithoutIds failed, C runtime error detected, error code = " + strconv.Itoa(int(errorCode)) + ", error msg = " + errorMsg)
|
|
|
|
}
|
2020-12-18 15:44:27 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-28 10:00:02 +08:00
|
|
|
func (index *CIndex) BuildFloatVecIndexWithoutIds(vectors []float32) error {
|
2020-12-21 16:36:07 +08:00
|
|
|
/*
|
2020-12-29 17:53:27 +08:00
|
|
|
CStatus
|
2020-12-28 10:00:02 +08:00
|
|
|
BuildFloatVecIndexWithoutIds(CIndex index, int64_t float_value_num, const float* vectors);
|
2020-12-21 16:36:07 +08:00
|
|
|
*/
|
2020-12-29 17:53:27 +08:00
|
|
|
status := C.BuildFloatVecIndexWithoutIds(index.indexPtr, (C.int64_t)(len(vectors)), (*C.float)(&vectors[0]))
|
|
|
|
errorCode := status.error_code
|
|
|
|
if errorCode != 0 {
|
|
|
|
errorMsg := C.GoString(status.error_msg)
|
|
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
return errors.New("BuildFloatVecIndexWithoutIds failed, C runtime error detected, error code = " + strconv.Itoa(int(errorCode)) + ", error msg = " + errorMsg)
|
|
|
|
}
|
2020-12-28 10:00:02 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *CIndex) BuildBinaryVecIndexWithoutIds(vectors []byte) error {
|
|
|
|
/*
|
2020-12-29 17:53:27 +08:00
|
|
|
CStatus
|
2020-12-28 10:00:02 +08:00
|
|
|
BuildBinaryVecIndexWithoutIds(CIndex index, int64_t data_size, const uint8_t* vectors);
|
|
|
|
*/
|
2020-12-29 17:53:27 +08:00
|
|
|
status := C.BuildBinaryVecIndexWithoutIds(index.indexPtr, (C.int64_t)(len(vectors)), (*C.uint8_t)(&vectors[0]))
|
|
|
|
errorCode := status.error_code
|
|
|
|
if errorCode != 0 {
|
|
|
|
errorMsg := C.GoString(status.error_msg)
|
|
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
return errors.New(" failed, C runtime error detected, error code = " + strconv.Itoa(int(errorCode)) + ", error msg = " + errorMsg)
|
|
|
|
}
|
2020-12-18 15:44:27 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (index *CIndex) Delete() error {
|
2020-12-21 16:36:07 +08:00
|
|
|
/*
|
|
|
|
void
|
|
|
|
DeleteIndex(CIndex index);
|
|
|
|
*/
|
2020-12-18 15:44:27 +08:00
|
|
|
C.DeleteIndex(index.indexPtr)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewCIndex(typeParams, indexParams map[string]string) (Index, error) {
|
2020-12-21 16:36:07 +08:00
|
|
|
protoTypeParams := &indexcgopb.TypeParams{
|
|
|
|
Params: make([]*commonpb.KeyValuePair, 0),
|
|
|
|
}
|
|
|
|
for key, value := range typeParams {
|
|
|
|
protoTypeParams.Params = append(protoTypeParams.Params, &commonpb.KeyValuePair{Key: key, Value: value})
|
|
|
|
}
|
2020-12-29 14:43:40 +08:00
|
|
|
typeParamsStr := proto.MarshalTextString(protoTypeParams)
|
2020-12-18 15:44:27 +08:00
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
protoIndexParams := &indexcgopb.IndexParams{
|
|
|
|
Params: make([]*commonpb.KeyValuePair, 0),
|
|
|
|
}
|
|
|
|
for key, value := range indexParams {
|
|
|
|
protoIndexParams.Params = append(protoIndexParams.Params, &commonpb.KeyValuePair{Key: key, Value: value})
|
|
|
|
}
|
2020-12-29 14:43:40 +08:00
|
|
|
indexParamsStr := proto.MarshalTextString(protoIndexParams)
|
2020-12-18 15:44:27 +08:00
|
|
|
|
2020-12-29 14:43:40 +08:00
|
|
|
typeParamsPointer := C.CString(typeParamsStr)
|
|
|
|
indexParamsPointer := C.CString(indexParamsStr)
|
2020-12-28 16:55:50 +08:00
|
|
|
|
2020-12-21 16:36:07 +08:00
|
|
|
/*
|
2020-12-29 17:53:27 +08:00
|
|
|
CStatus
|
2020-12-28 16:55:50 +08:00
|
|
|
CreateIndex(const char* serialized_type_params,
|
2020-12-29 17:53:27 +08:00
|
|
|
const char* serialized_index_params,
|
|
|
|
CIndex* res_index);
|
2020-12-21 16:36:07 +08:00
|
|
|
*/
|
2020-12-29 17:53:27 +08:00
|
|
|
var indexPtr C.CIndex
|
|
|
|
status := C.CreateIndex(typeParamsPointer, indexParamsPointer, &indexPtr)
|
|
|
|
errorCode := status.error_code
|
|
|
|
if errorCode != 0 {
|
|
|
|
errorMsg := C.GoString(status.error_msg)
|
|
|
|
defer C.free(unsafe.Pointer(status.error_msg))
|
|
|
|
return nil, errors.New(" failed, C runtime error detected, error code = " + strconv.Itoa(int(errorCode)) + ", error msg = " + errorMsg)
|
|
|
|
}
|
|
|
|
|
2020-12-18 15:44:27 +08:00
|
|
|
return &CIndex{
|
2020-12-29 17:53:27 +08:00
|
|
|
indexPtr: indexPtr,
|
2020-12-18 15:44:27 +08:00
|
|
|
}, nil
|
|
|
|
}
|