mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
8496ced7b1
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
115 lines
3.6 KiB
Go
115 lines
3.6 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you under the Apache License, Version 2.0 (the
|
|
// "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package querynode
|
|
|
|
/*
|
|
#cgo CFLAGS: -I${SRCDIR}/../core/output/include
|
|
#cgo LDFLAGS: -L${SRCDIR}/../core/output/lib -lmilvus_segcore -Wl,-rpath=${SRCDIR}/../core/output/lib
|
|
|
|
#include "segcore/plan_c.h"
|
|
#include "segcore/reduce_c.h"
|
|
|
|
*/
|
|
import "C"
|
|
import (
|
|
"errors"
|
|
"unsafe"
|
|
)
|
|
|
|
// SearchResult contains a pointer to the search result in C++ memory
|
|
type SearchResult struct {
|
|
cSearchResult C.CSearchResult
|
|
}
|
|
|
|
// MarshaledHits contains a pointer to the marshaled hits in C++ memory
|
|
type MarshaledHits struct {
|
|
cMarshaledHits C.CMarshaledHits
|
|
}
|
|
|
|
// RetrieveResult contains a pointer to the retrieve result in C++ memory
|
|
type RetrieveResult struct {
|
|
cRetrieveResult C.CRetrieveResult
|
|
}
|
|
|
|
func reduceSearchResultsAndFillData(plan *SearchPlan, searchResults []*SearchResult, numSegments int64) error {
|
|
if plan.cSearchPlan == nil {
|
|
return errors.New("nil search plan")
|
|
}
|
|
|
|
cSearchResults := make([]C.CSearchResult, 0)
|
|
for _, res := range searchResults {
|
|
cSearchResults = append(cSearchResults, res.cSearchResult)
|
|
}
|
|
cSearchResultPtr := (*C.CSearchResult)(&cSearchResults[0])
|
|
cNumSegments := C.long(numSegments)
|
|
|
|
status := C.ReduceSearchResultsAndFillData(plan.cSearchPlan, cSearchResultPtr, cNumSegments)
|
|
if err := HandleCStatus(&status, "ReduceSearchResultsAndFillData failed"); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func reorganizeSearchResults(searchResults []*SearchResult, numSegments int64) (*MarshaledHits, error) {
|
|
cSearchResults := make([]C.CSearchResult, 0)
|
|
for _, res := range searchResults {
|
|
cSearchResults = append(cSearchResults, res.cSearchResult)
|
|
}
|
|
cSearchResultPtr := (*C.CSearchResult)(&cSearchResults[0])
|
|
|
|
var cNumSegments = C.long(numSegments)
|
|
var cMarshaledHits C.CMarshaledHits
|
|
|
|
status := C.ReorganizeSearchResults(&cMarshaledHits, cSearchResultPtr, cNumSegments)
|
|
if err := HandleCStatus(&status, "ReorganizeSearchResults failed"); err != nil {
|
|
return nil, err
|
|
}
|
|
return &MarshaledHits{cMarshaledHits: cMarshaledHits}, nil
|
|
}
|
|
|
|
func (mh *MarshaledHits) getHitsBlobSize() int64 {
|
|
res := C.GetHitsBlobSize(mh.cMarshaledHits)
|
|
return int64(res)
|
|
}
|
|
|
|
func (mh *MarshaledHits) getHitsBlob() ([]byte, error) {
|
|
byteSize := mh.getHitsBlobSize()
|
|
result := make([]byte, byteSize)
|
|
cResultPtr := unsafe.Pointer(&result[0])
|
|
C.GetHitsBlob(mh.cMarshaledHits, cResultPtr)
|
|
return result, nil
|
|
}
|
|
|
|
func (mh *MarshaledHits) hitBlobSizeInGroup(groupOffset int64) ([]int64, error) {
|
|
cGroupOffset := (C.long)(groupOffset)
|
|
numQueries := C.GetNumQueriesPerGroup(mh.cMarshaledHits, cGroupOffset)
|
|
result := make([]int64, int64(numQueries))
|
|
cResult := (*C.long)(&result[0])
|
|
C.GetHitSizePerQueries(mh.cMarshaledHits, cGroupOffset, cResult)
|
|
return result, nil
|
|
}
|
|
|
|
func deleteMarshaledHits(hits *MarshaledHits) {
|
|
C.DeleteMarshaledHits(hits.cMarshaledHits)
|
|
}
|
|
|
|
func deleteSearchResults(results []*SearchResult) {
|
|
for _, result := range results {
|
|
C.DeleteSearchResult(result.cSearchResult)
|
|
}
|
|
}
|