milvus/cpp/src/server/DBWrapper.h
starlord f457cb4328 fix server exist hang
Former-commit-id: 08bf7c7731e35f6befe741729f931c45cc3baa45
2019-08-31 12:07:48 +08:00

46 lines
958 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();
}
ServerError StartService();
ServerError StopService();
std::shared_ptr<engine::DB> EngineDB() {
return db_;
}
private:
std::shared_ptr<engine::DB> db_;
};
}
}
}