1
0
Fork 0
libfort/include/fort.hpp

119 lines
2.3 KiB
C++
Raw Normal View History

2018-04-01 10:36:52 +02:00
#ifndef LIBFORT_HPP
#define LIBFORT_HPP
#include <string>
2018-04-01 12:27:02 +02:00
#include <stdexcept>
2018-04-01 10:36:52 +02:00
#include <sstream>
2018-04-01 12:27:02 +02:00
#include "fort.h"
2018-04-01 10:36:52 +02:00
namespace fort
{
class FTableManipulator {
public:
explicit FTableManipulator(int i)
:value(i)
{
}
friend class FTable;
private:
int value;
};
const FTableManipulator header(0);
const FTableManipulator endl(1);
const FTableManipulator separator(2);
class FTable {
public:
FTable()
:table(ft_create_table())
{
if (table == NULL)
throw std::runtime_error("Runtime error");
}
~FTable()
{
ft_destroy_table(table);
}
std::string to_string() const
{
const char *str = ft_to_string(table);
if (str == NULL)
throw std::runtime_error("Runtime error");
return str;
}
const char *c_str() const
{
return ft_to_string(table);
}
template <typename T>
FTable &operator<<(const T &arg)
{
stream << arg;
2018-04-08 14:48:15 +02:00
if (stream.tellp()) {
ft_nwrite(table, 1, stream.str().c_str());
stream = std::stringstream{};
}
2018-04-01 10:36:52 +02:00
return *this;
}
FTable &operator<<(const FTableManipulator &arg)
{
if (arg.value == header.value)
2018-04-01 12:27:02 +02:00
ft_set_cell_option(table, FT_CUR_ROW, FT_ANY_ROW, FT_COPT_ROW_TYPE, FT_ROW_HEADER);
2018-04-01 10:36:52 +02:00
else if (arg.value == endl.value)
ft_ln(table);
else if (arg.value == separator.value)
ft_add_separator(table);
return *this;
}
2018-04-08 14:48:15 +02:00
bool write(const char *str)
{
return IS_SUCCESS(ft_write(table, str));
}
bool write_ln(const char *str)
{
return IS_SUCCESS(ft_write_ln(table, str));
}
bool write(const std::string &str)
{
return write(str.c_str());
}
bool write_ln(const std::string &str)
{
return write_ln(str.c_str());
}
template <typename T, typename ...Ts>
bool write(const T &arg, const Ts &...args)
{
return write(arg) && write(args...);
}
template <typename T, typename ...Ts>
bool write_ln(const T &arg, const Ts &...args)
{
if (sizeof...(args) == 0)
return write_ln(arg);
return write(arg) && write_ln(args...);
}
2018-04-01 10:36:52 +02:00
private:
FTABLE *table;
2018-04-08 14:48:15 +02:00
std::stringstream stream;
2018-04-01 10:36:52 +02:00
};
}
#endif // LIBFORT_HPP