e28fd2025d
Reviewers: teon.banek Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1506
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <fstream>
|
|
#include <vector>
|
|
|
|
#include <glog/logging.h>
|
|
|
|
#include "communication/bolt/client.hpp"
|
|
#include "communication/bolt/v1/value.hpp"
|
|
#include "io/network/endpoint.hpp"
|
|
|
|
using EndpointT = io::network::Endpoint;
|
|
using ContextT = communication::ClientContext;
|
|
using ClientT = communication::bolt::Client;
|
|
using QueryDataT = communication::bolt::QueryData;
|
|
using 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> ¶meters) {
|
|
return client_.Execute(query, parameters);
|
|
}
|
|
|
|
void Close() { client_.Close(); }
|
|
|
|
private:
|
|
ContextT context_;
|
|
ClientT client_;
|
|
};
|