memgraph/tests/macro_benchmark/clients/bolt_client.hpp
2022-03-14 15:47:41 +01:00

50 lines
1.6 KiB
C++

// Copyright 2022 Memgraph Ltd.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
// License, and you may not use this file except in compliance with the Business Source License.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
#pragma once
#include <fstream>
#include <vector>
#include "communication/bolt/client.hpp"
#include "communication/bolt/v1/value.hpp"
#include "io/network/endpoint.hpp"
#include "utils/logging.hpp"
using EndpointT = memgraph::io::network::Endpoint;
using ContextT = memgraph::communication::ClientContext;
using ClientT = memgraph::communication::bolt::Client;
using QueryDataT = memgraph::communication::bolt::QueryData;
using memgraph::communication::bolt::Value;
class BoltClient {
public:
BoltClient(const std::string &address, uint16_t port, const std::string &username, const std::string &password,
const std::string & = "", bool use_ssl = false)
: context_(use_ssl), client_(context_) {
EndpointT endpoint(address, port);
if (!client_.Connect(endpoint, username, password)) {
LOG_FATAL("Could not connect to: {}", endpoint);
}
}
QueryDataT Execute(const std::string &query, const std::map<std::string, Value> &parameters) {
return client_.Execute(query, parameters);
}
void Close() { client_.Close(); }
private:
ContextT context_;
ClientT client_;
};