2012-12-07 16:31:09 +00:00
|
|
|
/*
|
2012-12-11 04:37:35 +00:00
|
|
|
Small, safe and fast string formatting library for C++
|
2012-12-07 16:31:09 +00:00
|
|
|
Author: Victor Zverovich
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMAT_H_
|
|
|
|
#define FORMAT_H_
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <string>
|
2012-12-09 17:03:47 +00:00
|
|
|
#include <sstream>
|
2012-12-07 16:31:09 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace format {
|
|
|
|
|
|
|
|
class FormatError : public std::runtime_error {
|
|
|
|
public:
|
|
|
|
FormatError(const std::string &message) : std::runtime_error(message) {}
|
|
|
|
};
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
class BasicArgFormatter;
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-11 01:16:08 +00:00
|
|
|
// A buffer with the first SIZE elements stored in the object itself.
|
|
|
|
template <typename T, std::size_t SIZE>
|
|
|
|
class Buffer {
|
|
|
|
private:
|
|
|
|
std::size_t size_;
|
|
|
|
std::size_t capacity_;
|
|
|
|
T *ptr_;
|
|
|
|
T data_[SIZE];
|
|
|
|
|
2012-12-11 02:08:04 +00:00
|
|
|
void Grow(std::size_t size);
|
2012-12-11 01:16:08 +00:00
|
|
|
|
|
|
|
// Do not implement!
|
|
|
|
Buffer(const Buffer &);
|
|
|
|
void operator=(const Buffer &);
|
|
|
|
|
|
|
|
public:
|
|
|
|
Buffer() : size_(0), capacity_(SIZE), ptr_(data_) {}
|
|
|
|
~Buffer() {
|
|
|
|
if (ptr_ != data_) delete [] ptr_;
|
|
|
|
}
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
// Returns the size of this buffer.
|
2012-12-11 01:16:08 +00:00
|
|
|
std::size_t size() const { return size_; }
|
2012-12-11 04:37:35 +00:00
|
|
|
|
|
|
|
// Returns the capacity of this buffer.
|
2012-12-11 01:16:08 +00:00
|
|
|
std::size_t capacity() const { return capacity_; }
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
// Resizes the buffer. If T is a POD type new elements are not initialized.
|
2012-12-11 02:08:04 +00:00
|
|
|
void resize(std::size_t new_size) {
|
|
|
|
if (new_size > capacity_)
|
|
|
|
Grow(new_size);
|
|
|
|
size_ = new_size;
|
2012-12-11 01:16:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void reserve(std::size_t capacity) {
|
2012-12-11 02:08:04 +00:00
|
|
|
if (capacity > capacity_)
|
|
|
|
Grow(capacity);
|
2012-12-11 01:16:08 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
void clear() { size_ = 0; }
|
|
|
|
|
2012-12-11 01:16:08 +00:00
|
|
|
void push_back(const T &value) {
|
|
|
|
if (size_ == capacity_)
|
|
|
|
Grow(size_ + 1);
|
|
|
|
ptr_[size_++] = value;
|
|
|
|
}
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
// Appends data to the end of the buffer.
|
2012-12-11 02:08:04 +00:00
|
|
|
void append(const T *begin, const T *end);
|
2012-12-11 01:16:08 +00:00
|
|
|
|
|
|
|
T &operator[](std::size_t index) { return ptr_[index]; }
|
|
|
|
const T &operator[](std::size_t index) const { return ptr_[index]; }
|
|
|
|
};
|
|
|
|
|
2012-12-11 02:08:04 +00:00
|
|
|
template <typename T, std::size_t SIZE>
|
|
|
|
void Buffer<T, SIZE>::Grow(std::size_t size) {
|
|
|
|
capacity_ = std::max(size, capacity_ + capacity_ / 2);
|
|
|
|
T *p = new T[capacity_];
|
|
|
|
std::copy(ptr_, ptr_ + size_, p);
|
|
|
|
if (ptr_ != data_)
|
|
|
|
delete [] ptr_;
|
|
|
|
ptr_ = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T, std::size_t SIZE>
|
|
|
|
void Buffer<T, SIZE>::append(const T *begin, const T *end) {
|
|
|
|
std::ptrdiff_t num_elements = end - begin;
|
|
|
|
if (size_ + num_elements > capacity_)
|
|
|
|
Grow(num_elements);
|
|
|
|
std::copy(begin, end, ptr_ + size_);
|
|
|
|
size_ += num_elements;
|
|
|
|
}
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
// Formatter provides string formatting functionality similar to Python's
|
|
|
|
// str.format. The output is stored in a memory buffer that grows dynamically.
|
|
|
|
// Usage:
|
|
|
|
//
|
|
|
|
// Formatter out;
|
|
|
|
// out("Current point:\n");
|
|
|
|
// out("(-{:+f}, {:+f})") << 3.14 << -3.14;
|
|
|
|
//
|
|
|
|
// This will populate the buffer of the out object with the following output:
|
|
|
|
//
|
|
|
|
// Current point:
|
|
|
|
// (-3.140000, +3.140000)
|
|
|
|
//
|
|
|
|
// The buffer can be accessed using Formatter::data() or Formatter::c_str().
|
2012-12-07 16:31:09 +00:00
|
|
|
class Formatter {
|
|
|
|
private:
|
2012-12-11 04:37:35 +00:00
|
|
|
enum { INLINE_BUFFER_SIZE = 500 };
|
|
|
|
Buffer<char, INLINE_BUFFER_SIZE> buffer_; // Output buffer.
|
2012-12-07 16:31:09 +00:00
|
|
|
|
|
|
|
enum Type {
|
2012-12-09 19:32:39 +00:00
|
|
|
// Numeric types should go first.
|
2012-12-09 22:13:23 +00:00
|
|
|
INT, UINT, LONG, ULONG, DOUBLE, LONG_DOUBLE,
|
|
|
|
LAST_NUMERIC_TYPE = LONG_DOUBLE,
|
|
|
|
CHAR, STRING, WSTRING, POINTER, CUSTOM
|
2012-12-07 16:31:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-09 19:32:39 +00:00
|
|
|
typedef void (Formatter::*FormatFunc)(const void *arg, int width);
|
|
|
|
|
2012-12-11 01:16:08 +00:00
|
|
|
// A format argument.
|
2012-12-07 16:31:09 +00:00
|
|
|
struct Arg {
|
|
|
|
Type type;
|
|
|
|
union {
|
|
|
|
int int_value;
|
|
|
|
unsigned uint_value;
|
|
|
|
double double_value;
|
|
|
|
long long_value;
|
|
|
|
unsigned long ulong_value;
|
|
|
|
long double long_double_value;
|
2012-12-11 01:16:08 +00:00
|
|
|
const void *pointer_value;
|
2012-12-08 16:17:12 +00:00
|
|
|
struct {
|
2012-12-11 01:16:08 +00:00
|
|
|
const char *string_value;
|
2012-12-09 17:03:47 +00:00
|
|
|
std::size_t size;
|
|
|
|
};
|
|
|
|
struct {
|
|
|
|
const void *custom_value;
|
2012-12-09 19:32:39 +00:00
|
|
|
FormatFunc format;
|
2012-12-08 16:17:12 +00:00
|
|
|
};
|
2012-12-07 16:31:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-11 01:16:08 +00:00
|
|
|
Arg() {}
|
2012-12-07 16:31:09 +00:00
|
|
|
explicit Arg(int value) : type(INT), int_value(value) {}
|
|
|
|
explicit Arg(unsigned value) : type(UINT), uint_value(value) {}
|
|
|
|
explicit Arg(long value) : type(LONG), long_value(value) {}
|
|
|
|
explicit Arg(unsigned long value) : type(ULONG), ulong_value(value) {}
|
|
|
|
explicit Arg(double value) : type(DOUBLE), double_value(value) {}
|
|
|
|
explicit Arg(long double value)
|
|
|
|
: type(LONG_DOUBLE), long_double_value(value) {}
|
2012-12-09 22:13:23 +00:00
|
|
|
explicit Arg(char value) : type(CHAR), int_value(value) {}
|
2012-12-09 17:03:47 +00:00
|
|
|
explicit Arg(const char *value, std::size_t size = 0)
|
|
|
|
: type(STRING), string_value(value), size(size) {}
|
2012-12-07 16:31:09 +00:00
|
|
|
explicit Arg(const void *value) : type(POINTER), pointer_value(value) {}
|
2012-12-09 19:32:39 +00:00
|
|
|
explicit Arg(const void *value, FormatFunc f)
|
|
|
|
: type(CUSTOM), custom_value(value), format(f) {}
|
2012-12-07 16:31:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-11 04:37:35 +00:00
|
|
|
enum { NUM_INLINE_ARGS = 10 };
|
|
|
|
Buffer<Arg, NUM_INLINE_ARGS> args_; // Format arguments.
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-08 01:48:10 +00:00
|
|
|
const char *format_; // Format string.
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
friend class BasicArgFormatter;
|
2012-12-07 16:31:09 +00:00
|
|
|
|
|
|
|
void Add(const Arg &arg) {
|
|
|
|
args_.push_back(arg);
|
|
|
|
}
|
|
|
|
|
2012-12-10 19:08:16 +00:00
|
|
|
// Formats an integer.
|
2012-12-07 16:31:09 +00:00
|
|
|
template <typename T>
|
2012-12-10 19:08:16 +00:00
|
|
|
void FormatInt(T value, unsigned flags, int width, char type);
|
|
|
|
|
2012-12-10 23:04:55 +00:00
|
|
|
// Formats a floating point number (double or long double).
|
2012-12-10 19:08:16 +00:00
|
|
|
template <typename T>
|
|
|
|
void FormatDouble(
|
|
|
|
T value, unsigned flags, int width, int precision, char type);
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-09 17:03:47 +00:00
|
|
|
// Formats an argument of a custom type, such as a user-defined class.
|
2012-12-08 16:17:12 +00:00
|
|
|
template <typename T>
|
2012-12-09 19:32:39 +00:00
|
|
|
void FormatCustomArg(const void *arg, int width);
|
2012-12-08 16:17:12 +00:00
|
|
|
|
2012-12-07 16:31:09 +00:00
|
|
|
void Format();
|
|
|
|
|
2012-12-11 02:08:04 +00:00
|
|
|
// Grows the buffer by n characters and returns a pointer to the newly
|
|
|
|
// allocated area.
|
|
|
|
char *GrowBuffer(std::size_t n) {
|
|
|
|
std::size_t size = buffer_.size();
|
|
|
|
buffer_.resize(size + n);
|
|
|
|
return &buffer_[size];
|
2012-12-11 01:16:08 +00:00
|
|
|
}
|
|
|
|
|
2012-12-07 16:31:09 +00:00
|
|
|
public:
|
|
|
|
Formatter() : format_(0) {}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
// Formats a string appending the output to the internal buffer.
|
|
|
|
// Arguments are accepted through the returned BasicArgFormatter object
|
|
|
|
// using inserter operator<<.
|
|
|
|
BasicArgFormatter operator()(const char *format);
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-09 17:03:47 +00:00
|
|
|
std::size_t size() const { return buffer_.size(); }
|
2012-12-08 16:17:12 +00:00
|
|
|
|
2012-12-11 01:16:08 +00:00
|
|
|
const char *data() const { return &buffer_[0]; }
|
|
|
|
const char *c_str() const { return &buffer_[0]; }
|
2012-12-07 16:31:09 +00:00
|
|
|
};
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
// Argument formatter. This is a transient object that normally exists
|
|
|
|
// only as a temporary returned by one of the formatting functions.
|
|
|
|
// It stores a reference to a formatter and provides operators <<
|
|
|
|
// that feed arguments to the formatter.
|
|
|
|
class BasicArgFormatter {
|
2012-12-07 16:31:09 +00:00
|
|
|
private:
|
|
|
|
friend class Formatter;
|
|
|
|
|
2012-12-10 23:04:55 +00:00
|
|
|
// This method is private to disallow formatting of arbitrary pointers.
|
|
|
|
// If you want to output a pointer cast it to void*. Do not implement!
|
|
|
|
template <typename T>
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(const T *value);
|
2012-12-10 23:04:55 +00:00
|
|
|
|
|
|
|
// This method is private to disallow formatting of wide characters.
|
|
|
|
// If you want to output a wide character cast it to integer type.
|
|
|
|
// Do not implement!
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(wchar_t value);
|
2012-12-10 23:04:55 +00:00
|
|
|
|
2012-12-07 16:31:09 +00:00
|
|
|
protected:
|
|
|
|
mutable Formatter *formatter_;
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter(BasicArgFormatter& other)
|
|
|
|
: formatter_(other.formatter_) {
|
2012-12-07 16:31:09 +00:00
|
|
|
other.formatter_ = 0;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter& operator=(const BasicArgFormatter& other) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_ = other.formatter_;
|
|
|
|
other.formatter_ = 0;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
Formatter *FinishFormatting() const {
|
|
|
|
Formatter *f = formatter_;
|
|
|
|
if (f) {
|
|
|
|
formatter_ = 0;
|
|
|
|
f->Format();
|
|
|
|
}
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2012-12-11 16:41:06 +00:00
|
|
|
explicit BasicArgFormatter(Formatter &f) : formatter_(&f) {}
|
|
|
|
~BasicArgFormatter();
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
friend const char *c_str(const BasicArgFormatter &af) {
|
2012-12-07 16:31:09 +00:00
|
|
|
return af.FinishFormatting()->c_str();
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
friend std::string str(const BasicArgFormatter &af) {
|
2012-12-07 16:31:09 +00:00
|
|
|
return af.FinishFormatting()->c_str();
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(int value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(unsigned value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(long value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(unsigned long value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(double value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(long double value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(char value) {
|
2012-12-09 22:13:23 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(const char *value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(const std::string &value) {
|
2012-12-09 17:03:47 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value.c_str(), value.size()));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(const void *value) {
|
2012-12-07 16:31:09 +00:00
|
|
|
formatter_->Add(Formatter::Arg(value));
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2012-12-09 02:45:35 +00:00
|
|
|
template <typename T>
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(T *value) {
|
2012-12-09 02:45:35 +00:00
|
|
|
const T *const_value = value;
|
|
|
|
return *this << const_value;
|
|
|
|
}
|
|
|
|
|
2012-12-08 16:17:12 +00:00
|
|
|
template <typename T>
|
2012-12-11 16:41:06 +00:00
|
|
|
BasicArgFormatter &operator<<(const T &value) {
|
2012-12-09 17:03:47 +00:00
|
|
|
formatter_->Add(Formatter::Arg(&value, &Formatter::FormatCustomArg<T>));
|
2012-12-08 16:17:12 +00:00
|
|
|
return *this;
|
|
|
|
}
|
2012-12-07 16:31:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
template <typename Callback>
|
2012-12-11 16:41:06 +00:00
|
|
|
class ArgFormatter : public BasicArgFormatter {
|
2012-12-07 16:31:09 +00:00
|
|
|
public:
|
2012-12-11 16:41:06 +00:00
|
|
|
explicit ArgFormatter(Formatter &f) : BasicArgFormatter(f) {}
|
2012-12-07 16:31:09 +00:00
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
~ArgFormatter() {
|
2012-12-07 16:31:09 +00:00
|
|
|
if (!formatter_) return;
|
|
|
|
Callback callback;
|
|
|
|
callback(*formatter_);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-09 17:03:47 +00:00
|
|
|
template <typename T>
|
2012-12-09 19:32:39 +00:00
|
|
|
void Formatter::FormatCustomArg(const void *arg, int width) {
|
2012-12-09 17:03:47 +00:00
|
|
|
const T &value = *static_cast<const T*>(arg);
|
|
|
|
std::ostringstream os;
|
|
|
|
os << value;
|
|
|
|
std::string str(os.str());
|
2012-12-11 02:08:04 +00:00
|
|
|
char *out = GrowBuffer(std::max<std::size_t>(width, str.size()));
|
2012-12-11 01:16:08 +00:00
|
|
|
std::copy(str.begin(), str.end(), out);
|
2012-12-10 19:08:16 +00:00
|
|
|
if (width > str.size())
|
2012-12-11 01:16:08 +00:00
|
|
|
std::fill_n(out + str.size(), width - str.size(), ' ');
|
2012-12-09 17:03:47 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
inline BasicArgFormatter Formatter::operator()(const char *format) {
|
|
|
|
BasicArgFormatter formatter(*this);
|
2012-12-07 16:31:09 +00:00
|
|
|
format_ = format;
|
2012-12-11 01:16:08 +00:00
|
|
|
args_.clear();
|
2012-12-11 16:41:06 +00:00
|
|
|
return formatter;
|
2012-12-07 16:31:09 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
class FullFormat : public BasicArgFormatter {
|
2012-12-07 16:31:09 +00:00
|
|
|
private:
|
2012-12-08 16:17:12 +00:00
|
|
|
mutable Formatter formatter_;
|
2012-12-07 16:31:09 +00:00
|
|
|
|
|
|
|
// Do not implement.
|
2012-12-08 16:17:12 +00:00
|
|
|
FullFormat& operator=(const FullFormat&);
|
2012-12-07 16:31:09 +00:00
|
|
|
|
|
|
|
public:
|
2012-12-11 16:41:06 +00:00
|
|
|
explicit FullFormat(const char *format) : BasicArgFormatter(formatter_) {
|
|
|
|
BasicArgFormatter::operator=(formatter_(format));
|
2012-12-07 16:31:09 +00:00
|
|
|
}
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
FullFormat(FullFormat& other) : BasicArgFormatter(other) {}
|
2012-12-08 16:17:12 +00:00
|
|
|
|
|
|
|
~FullFormat() {
|
2012-12-07 16:31:09 +00:00
|
|
|
FinishFormatting();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
inline FullFormat Format(const char *format) {
|
|
|
|
FullFormat ff(format);
|
|
|
|
return ff;
|
|
|
|
}
|
2012-12-08 16:17:12 +00:00
|
|
|
|
2012-12-11 16:41:06 +00:00
|
|
|
class Print : public BasicArgFormatter {
|
2012-12-07 16:31:09 +00:00
|
|
|
private:
|
|
|
|
Formatter formatter_;
|
|
|
|
|
|
|
|
// Do not implement.
|
|
|
|
Print(const Print&);
|
|
|
|
Print& operator=(const Print&);
|
|
|
|
|
|
|
|
public:
|
2012-12-11 16:41:06 +00:00
|
|
|
explicit Print(const char *format) : BasicArgFormatter(formatter_) {
|
|
|
|
BasicArgFormatter::operator=(formatter_(format));
|
2012-12-07 16:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~Print() {
|
|
|
|
FinishFormatting();
|
2012-12-09 17:03:47 +00:00
|
|
|
std::fwrite(formatter_.data(), 1, formatter_.size(), stdout);
|
2012-12-07 16:31:09 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace fmt = format;
|
|
|
|
|
|
|
|
#endif // FORMAT_H_
|