milvus/cpp/src/server/DBWrapper.h
starlord 54b85185fe refine error code
Former-commit-id: 2919dc7e39aa970522bd99d553bd0f92fcee9345
2019-09-06 16:16:44 +08:00

46 lines
954 B
C++

/*******************************************************************************
* Copyright 上海赜睿信息科技有限公司(Zilliz) - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited.
* Proprietary and confidential.
******************************************************************************/
#pragma once
#include "utils/Error.h"
#include "db/DB.h"
#include <memory>
namespace zilliz {
namespace milvus {
namespace server {
class DBWrapper {
private:
DBWrapper();
~DBWrapper() = default;
public:
static DBWrapper& GetInstance() {
static DBWrapper wrapper;
return wrapper;
}
static std::shared_ptr<engine::DB> DB() {
return GetInstance().EngineDB();
}
ErrorCode StartService();
ErrorCode StopService();
std::shared_ptr<engine::DB> EngineDB() {
return db_;
}
private:
std::shared_ptr<engine::DB> db_;
};
}
}
}