mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-03 17:31:58 +08:00
79 lines
2.0 KiB
C++
79 lines
2.0 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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 <ctime>
|
|
#include <string>
|
|
|
|
#include "Options.h"
|
|
#include "db/Types.h"
|
|
#include "db/meta/MetaTypes.h"
|
|
|
|
namespace milvus {
|
|
namespace engine {
|
|
namespace utils {
|
|
|
|
int64_t
|
|
GetMicroSecTimeStamp();
|
|
|
|
Status
|
|
CreateTablePath(const DBMetaOptions& options, const std::string& table_id);
|
|
Status
|
|
DeleteTablePath(const DBMetaOptions& options, const std::string& table_id, bool force = true);
|
|
|
|
Status
|
|
CreateTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file);
|
|
Status
|
|
GetTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file);
|
|
Status
|
|
DeleteTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file);
|
|
Status
|
|
DeleteSegment(const DBMetaOptions& options, meta::TableFileSchema& table_file);
|
|
|
|
Status
|
|
GetParentPath(const std::string& path, std::string& parent_path);
|
|
|
|
bool
|
|
IsSameIndex(const TableIndex& index1, const TableIndex& index2);
|
|
|
|
bool
|
|
IsRawIndexType(int32_t type);
|
|
|
|
static bool
|
|
IsBinaryIndexType(int32_t index_type);
|
|
|
|
bool
|
|
IsBinaryMetricType(int32_t metric_type);
|
|
|
|
meta::DateT
|
|
GetDate(const std::time_t& t, int day_delta = 0);
|
|
meta::DateT
|
|
GetDate();
|
|
meta::DateT
|
|
GetDateWithDelta(int day_delta);
|
|
|
|
struct MetaUriInfo {
|
|
std::string dialect_;
|
|
std::string username_;
|
|
std::string password_;
|
|
std::string host_;
|
|
std::string port_;
|
|
std::string db_name_;
|
|
};
|
|
|
|
Status
|
|
ParseMetaUri(const std::string& uri, MetaUriInfo& info);
|
|
|
|
} // namespace utils
|
|
} // namespace engine
|
|
} // namespace milvus
|