memgraph/include/query_engine/util.hpp

46 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
2016-07-18 01:32:35 +08:00
#include <iostream>
#include <string>
2016-08-08 16:32:34 +08:00
#include "fmt/format.h"
2016-07-18 01:32:35 +08:00
#include "storage/model/properties/properties.hpp"
#include "storage/model/properties/traversers/consolewriter.hpp"
2016-08-08 16:32:34 +08:00
#include "storage/model/properties/traversers/jsonwriter.hpp"
2016-07-18 01:32:35 +08:00
using std::cout;
using std::endl;
template <class T>
void print_props(const Properties<T> &properties);
2016-07-18 01:32:35 +08:00
#ifdef NDEBUG
2016-07-18 01:32:35 +08:00
#define PRINT_PROPS(_)
#else
#define PRINT_PROPS(_PROPS_) print_props(_PROPS_);
2016-07-18 01:32:35 +08:00
#endif
template <class T>
void cout_properties(const Properties<T> &properties);
void cout_property(const std::string &key, const Property &property);
// this is a nice way how to avoid multiple definition problem with
// headers because it will create a unique namespace for each compilation unit
// http://stackoverflow.com/questions/2727582/multiple-definition-in-header-file
namespace
{
2016-08-08 16:32:34 +08:00
template <typename... Args>
std::string format(const std::string &format_str, const Args &... args)
{
return fmt::format(format_str, args...);
}
template <typename... Args>
std::string code_line(const std::string &format_str, const Args &... args)
{
return "\t" + format(format_str, args...) + "\n";
}
}