mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-31 16:05:30 +08:00
* Change HasTable to HasCollection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change HasTable to HasCollection Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix compile Signed-off-by: JinHai-CN <hai.jin@zilliz.com> * Change table to collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change Table to Collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change Table to Collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change Table to Collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change Table to Collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Change Table to Collection Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix compiling error Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix compiling error Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix compiling error Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix lint Signed-off-by: JinHai-CN <hai.jin@zilliz.com> * Fix Unit test Signed-off-by: jinhai <hai.jin@zilliz.com> * Fix lint Signed-off-by: JinHai-CN <hai.jin@zilliz.com>
90 lines
3.5 KiB
C++
90 lines
3.5 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.
|
|
|
|
#include "server/delivery/request/CountCollectionRequest.h"
|
|
#include "BaseRequest.h"
|
|
#include "server/DBWrapper.h"
|
|
#include "utils/Log.h"
|
|
#include "utils/TimeRecorder.h"
|
|
#include "utils/ValidationUtil.h"
|
|
|
|
#include <fiu-local.h>
|
|
#include <memory>
|
|
|
|
namespace milvus {
|
|
namespace server {
|
|
|
|
CountCollectionRequest::CountCollectionRequest(const std::shared_ptr<milvus::server::Context>& context,
|
|
const std::string& collection_name, int64_t& row_count)
|
|
: BaseRequest(context, BaseRequest::kCountCollection), collection_name_(collection_name), row_count_(row_count) {
|
|
}
|
|
|
|
BaseRequestPtr
|
|
CountCollectionRequest::Create(const std::shared_ptr<milvus::server::Context>& context,
|
|
const std::string& collection_name, int64_t& row_count) {
|
|
return std::shared_ptr<BaseRequest>(new CountCollectionRequest(context, collection_name, row_count));
|
|
}
|
|
|
|
Status
|
|
CountCollectionRequest::OnExecute() {
|
|
try {
|
|
std::string hdr = "CountCollectionRequest(collection=" + collection_name_ + ")";
|
|
TimeRecorderAuto rc(hdr);
|
|
|
|
// step 1: check arguments
|
|
auto status = ValidationUtil::ValidateCollectionName(collection_name_);
|
|
if (!status.ok()) {
|
|
return status;
|
|
}
|
|
|
|
// only process root collection, ignore partition collection
|
|
engine::meta::CollectionSchema table_schema;
|
|
table_schema.collection_id_ = collection_name_;
|
|
status = DBWrapper::DB()->DescribeCollection(table_schema);
|
|
if (!status.ok()) {
|
|
if (status.code() == DB_NOT_FOUND) {
|
|
return Status(SERVER_TABLE_NOT_EXIST, TableNotExistMsg(collection_name_));
|
|
} else {
|
|
return status;
|
|
}
|
|
} else {
|
|
if (!table_schema.owner_collection_.empty()) {
|
|
return Status(SERVER_INVALID_TABLE_NAME, TableNotExistMsg(collection_name_));
|
|
}
|
|
}
|
|
|
|
rc.RecordSection("check validation");
|
|
|
|
// step 2: get row count
|
|
uint64_t row_count = 0;
|
|
status = DBWrapper::DB()->GetCollectionRowCount(collection_name_, row_count);
|
|
fiu_do_on("CountCollectionRequest.OnExecute.db_not_found", status = Status(DB_NOT_FOUND, ""));
|
|
fiu_do_on("CountCollectionRequest.OnExecute.status_error", status = Status(SERVER_UNEXPECTED_ERROR, ""));
|
|
fiu_do_on("CountCollectionRequest.OnExecute.throw_std_exception", throw std::exception());
|
|
if (!status.ok()) {
|
|
if (status.code() == DB_NOT_FOUND) {
|
|
return Status(SERVER_TABLE_NOT_EXIST, TableNotExistMsg(collection_name_));
|
|
} else {
|
|
return status;
|
|
}
|
|
}
|
|
|
|
row_count_ = static_cast<int64_t>(row_count);
|
|
} catch (std::exception& ex) {
|
|
return Status(SERVER_UNEXPECTED_ERROR, ex.what());
|
|
}
|
|
|
|
return Status::OK();
|
|
}
|
|
|
|
} // namespace server
|
|
} // namespace milvus
|