2018-09-28 22:29:27 +08:00
|
|
|
#include "bfs_common.hpp"
|
|
|
|
|
|
|
|
using namespace query;
|
|
|
|
using namespace query::plan;
|
|
|
|
|
|
|
|
class SingleNodeDb : public Database {
|
|
|
|
public:
|
|
|
|
SingleNodeDb() : db_() {}
|
|
|
|
|
|
|
|
std::unique_ptr<database::GraphDbAccessor> Access() override {
|
2019-04-15 17:36:43 +08:00
|
|
|
std::unique_ptr<database::GraphDbAccessor> dba =
|
|
|
|
std::make_unique<database::GraphDbAccessor>(db_.Access());
|
|
|
|
return dba;
|
2018-09-28 22:29:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void AdvanceCommand(tx::TransactionId tx_id) override {
|
|
|
|
auto dba = db_.Access(tx_id);
|
2019-04-15 17:36:43 +08:00
|
|
|
dba.AdvanceCommand();
|
2018-09-28 22:29:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<LogicalOperator> MakeBfsOperator(
|
|
|
|
Symbol source_sym, Symbol sink_sym, Symbol edge_sym,
|
|
|
|
EdgeAtom::Direction direction,
|
|
|
|
const std::vector<storage::EdgeType> &edge_types,
|
|
|
|
const std::shared_ptr<LogicalOperator> &input, bool existing_node,
|
|
|
|
Expression *lower_bound, Expression *upper_bound,
|
|
|
|
const ExpansionLambda &filter_lambda) override {
|
|
|
|
return std::make_unique<ExpandVariable>(
|
2018-10-29 21:26:47 +08:00
|
|
|
input, source_sym, sink_sym, edge_sym, EdgeAtom::Type::BREADTH_FIRST,
|
|
|
|
direction, edge_types, false, lower_bound, upper_bound, existing_node,
|
2019-04-23 17:00:49 +08:00
|
|
|
filter_lambda, std::nullopt, std::nullopt);
|
2018-09-28 22:29:27 +08:00
|
|
|
}
|
|
|
|
|
2018-10-29 21:26:47 +08:00
|
|
|
std::pair<std::vector<VertexAddress>, std::vector<EdgeAddress>> BuildGraph(
|
2018-09-28 22:29:27 +08:00
|
|
|
database::GraphDbAccessor *dba, const std::vector<int> &vertex_locations,
|
|
|
|
const std::vector<std::tuple<int, int, std::string>> &edges) override {
|
2018-10-11 17:37:59 +08:00
|
|
|
std::vector<VertexAddress> vertex_addr;
|
|
|
|
std::vector<EdgeAddress> edge_addr;
|
2018-09-28 22:29:27 +08:00
|
|
|
|
|
|
|
for (size_t id = 0; id < vertex_locations.size(); ++id) {
|
|
|
|
auto vertex = dba->InsertVertex();
|
2019-08-28 19:10:27 +08:00
|
|
|
vertex.PropsSet(dba->Property("id"),
|
|
|
|
PropertyValue(static_cast<int64_t>(id)));
|
2018-10-11 17:37:59 +08:00
|
|
|
vertex_addr.push_back(vertex.address());
|
2018-09-28 22:29:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto e : edges) {
|
|
|
|
int u, v;
|
|
|
|
std::string type;
|
|
|
|
std::tie(u, v, type) = e;
|
2019-09-11 22:10:53 +08:00
|
|
|
::VertexAccessor from(vertex_addr[u], *dba);
|
|
|
|
::VertexAccessor to(vertex_addr[v], *dba);
|
2018-09-28 22:29:27 +08:00
|
|
|
auto edge = dba->InsertEdge(from, to, dba->EdgeType(type));
|
2019-08-28 19:10:27 +08:00
|
|
|
edge.PropsSet(dba->Property("from"), PropertyValue(u));
|
|
|
|
edge.PropsSet(dba->Property("to"), PropertyValue(v));
|
2018-10-11 17:37:59 +08:00
|
|
|
edge_addr.push_back(edge.address());
|
2018-09-28 22:29:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_pair(vertex_addr, edge_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2018-10-09 17:09:10 +08:00
|
|
|
database::GraphDb db_;
|
2018-09-28 22:29:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class SingleNodeBfsTest
|
|
|
|
: public ::testing::TestWithParam<
|
|
|
|
std::tuple<int, int, EdgeAtom::Direction, std::vector<std::string>,
|
|
|
|
bool, FilterLambdaType>> {
|
|
|
|
public:
|
|
|
|
static void SetUpTestCase() { db_ = std::make_unique<SingleNodeDb>(); }
|
|
|
|
static void TearDownTestCase() { db_ = nullptr; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static std::unique_ptr<SingleNodeDb> db_;
|
|
|
|
};
|
|
|
|
|
|
|
|
TEST_P(SingleNodeBfsTest, All) {
|
|
|
|
int lower_bound;
|
|
|
|
int upper_bound;
|
|
|
|
EdgeAtom::Direction direction;
|
|
|
|
std::vector<std::string> edge_types;
|
|
|
|
bool known_sink;
|
|
|
|
FilterLambdaType filter_lambda_type;
|
|
|
|
std::tie(lower_bound, upper_bound, direction, edge_types, known_sink,
|
|
|
|
filter_lambda_type) = GetParam();
|
2018-10-29 21:26:47 +08:00
|
|
|
BfsTest(db_.get(), lower_bound, upper_bound, direction, edge_types,
|
2018-09-28 22:29:27 +08:00
|
|
|
known_sink, filter_lambda_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_ptr<SingleNodeDb> SingleNodeBfsTest::db_{nullptr};
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
DirectionAndExpansionDepth, SingleNodeBfsTest,
|
|
|
|
testing::Combine(testing::Range(-1, kVertexCount),
|
|
|
|
testing::Range(-1, kVertexCount),
|
|
|
|
testing::Values(EdgeAtom::Direction::OUT,
|
|
|
|
EdgeAtom::Direction::IN,
|
|
|
|
EdgeAtom::Direction::BOTH),
|
|
|
|
testing::Values(std::vector<std::string>{}),
|
|
|
|
testing::Bool(), testing::Values(FilterLambdaType::NONE)));
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
EdgeType, SingleNodeBfsTest,
|
|
|
|
testing::Combine(testing::Values(-1), testing::Values(-1),
|
|
|
|
testing::Values(EdgeAtom::Direction::OUT,
|
|
|
|
EdgeAtom::Direction::IN,
|
|
|
|
EdgeAtom::Direction::BOTH),
|
|
|
|
testing::Values(std::vector<std::string>{},
|
|
|
|
std::vector<std::string>{"a"},
|
|
|
|
std::vector<std::string>{"b"},
|
|
|
|
std::vector<std::string>{"a", "b"}),
|
|
|
|
testing::Bool(), testing::Values(FilterLambdaType::NONE)));
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(
|
|
|
|
FilterLambda, SingleNodeBfsTest,
|
|
|
|
testing::Combine(
|
|
|
|
testing::Values(-1), testing::Values(-1),
|
|
|
|
testing::Values(EdgeAtom::Direction::OUT, EdgeAtom::Direction::IN,
|
|
|
|
EdgeAtom::Direction::BOTH),
|
|
|
|
testing::Values(std::vector<std::string>{}), testing::Bool(),
|
|
|
|
testing::Values(FilterLambdaType::NONE, FilterLambdaType::USE_FRAME,
|
|
|
|
FilterLambdaType::USE_FRAME_NULL,
|
|
|
|
FilterLambdaType::USE_CTX, FilterLambdaType::ERROR)));
|