mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 23:45:28 +08:00
60 lines
1.3 KiB
C++
60 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "db/meta/MetaTypes.h"
|
|
#include "Error.h"
|
|
|
|
namespace zilliz {
|
|
namespace milvus {
|
|
namespace server {
|
|
|
|
class ValidationUtil {
|
|
public:
|
|
static ErrorCode
|
|
ValidateTableName(const std::string &table_name);
|
|
|
|
static ErrorCode
|
|
ValidateTableDimension(int64_t dimension);
|
|
|
|
static ErrorCode
|
|
ValidateTableIndexType(int32_t index_type);
|
|
|
|
static ErrorCode
|
|
ValidateTableIndexNlist(int32_t nlist);
|
|
|
|
static ErrorCode
|
|
ValidateTableIndexFileSize(int64_t index_file_size);
|
|
|
|
static ErrorCode
|
|
ValidateTableIndexMetricType(int32_t metric_type);
|
|
|
|
static ErrorCode
|
|
ValidateSearchTopk(int64_t top_k, const engine::meta::TableSchema& table_schema);
|
|
|
|
static ErrorCode
|
|
ValidateSearchNprobe(int64_t nprobe, const engine::meta::TableSchema& table_schema);
|
|
|
|
static ErrorCode
|
|
ValidateGpuIndex(uint32_t gpu_index);
|
|
|
|
static ErrorCode
|
|
GetGpuMemory(uint32_t gpu_index, size_t &memory);
|
|
|
|
static ErrorCode
|
|
ValidateIpAddress(const std::string &ip_address);
|
|
|
|
static ErrorCode
|
|
ValidateStringIsNumber(const std::string &str);
|
|
|
|
static ErrorCode
|
|
ValidateStringIsBool(std::string &str);
|
|
|
|
static ErrorCode
|
|
ValidateStringIsDouble(const std::string &str, double &val);
|
|
|
|
static ErrorCode
|
|
ValidateDbURI(const std::string &uri);
|
|
};
|
|
|
|
}
|
|
}
|
|
} |