1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
#pragma once
#include "StarMemory.hpp"
#include "StarException.hpp"
#include "fmt/core.h"
#include "fmt/ostream.h"
#include "fmt/format.h"
#include "fmt/ranges.h"
namespace Star {
STAR_EXCEPTION(FormatException, StarException);
template <typename... T>
std::string strf(fmt::format_string<T...> fmt, T&&... args) {
try { return fmt::format(fmt, args...); }
catch (std::exception const& e) {
throw FormatException(strf("Exception thrown during string format: {}", e.what()));
}
}
template <typename... T>
void format(std::ostream& out, fmt::format_string<T...> fmt, T&&... args) {
out << strf(fmt, args...);
}
// Automatically flushes, use format to avoid flushing.
template <typename... Args>
void coutf(char const* fmt, Args const&... args) {
format(std::cout, fmt, args...);
std::cout.flush();
}
// Automatically flushes, use format to avoid flushing.
template <typename... Args>
void cerrf(char const* fmt, Args const&... args) {
format(std::cerr, fmt, args...);
std::cerr.flush();
}
template <class Type>
inline std::string toString(Type const& t) {
return fmt::to_string(t);
}
}
|