milvus/internal/core/src/index/VectorIndex.h
yihao.dai 37fe3393d1
Remove const to enable move semantics and improve schema util functions (#25193)
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2023-06-29 11:04:22 +08:00

96 lines
2.4 KiB
C++

// 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.
#pragma once
#include <map>
#include <memory>
#include <string>
#include <vector>
#include <boost/dynamic_bitset.hpp>
#include "knowhere/factory.h"
#include "index/Index.h"
#include "common/Types.h"
#include "common/BitsetView.h"
#include "common/QueryResult.h"
#include "common/QueryInfo.h"
namespace milvus::index {
class VectorIndex : public IndexBase {
public:
explicit VectorIndex(const IndexType& index_type,
const MetricType& metric_type)
: index_type_(index_type), metric_type_(metric_type) {
}
public:
void
BuildWithRawData(size_t n,
const void* values,
const Config& config = {}) override {
PanicInfo("vector index don't support build index with raw data");
};
virtual void
AddWithDataset(const DatasetPtr& dataset, const Config& config) {
PanicInfo("vector index don't support add with dataset");
}
virtual std::unique_ptr<SearchResult>
Query(const DatasetPtr dataset,
const SearchInfo& search_info,
const BitsetView& bitset) = 0;
virtual const bool
HasRawData() const = 0;
virtual std::vector<uint8_t>
GetVector(const DatasetPtr dataset) const = 0;
IndexType
GetIndexType() const {
return index_type_;
}
MetricType
GetMetricType() const {
return metric_type_;
}
int64_t
GetDim() const {
return dim_;
}
void
SetDim(int64_t dim) {
dim_ = dim;
}
virtual void
CleanLocalData() {
}
private:
IndexType index_type_;
MetricType metric_type_;
int64_t dim_;
};
} // namespace milvus::index