blob: a8192ca61a33d47605755105b4c4da9d0778b1ae (
plain)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#include "printutils.h"
#include <sstream>
#include <stdio.h>
std::list<std::string> print_messages_stack;
std::function<void(std::string)> default_outputhandler = [](std::string msg) {
fprintf(stderr, "%s\n", msg.c_str());
};
std::function<void(std::string)> outputhandler = default_outputhandler;
void set_output_handler(std::function<void(std::string)> newhandler) {
outputhandler = newhandler;
}
void print_messages_push()
{
print_messages_stack.push_back(std::string());
}
void print_messages_pop()
{
std::string msg = print_messages_stack.back();
print_messages_stack.pop_back();
if (print_messages_stack.size() > 0 && !msg.empty()) {
if (!print_messages_stack.back().empty()) {
print_messages_stack.back() += "\n";
}
print_messages_stack.back() += msg;
}
}
void PRINT(const std::string &msg)
{
if (msg.empty()) return;
if (print_messages_stack.size() > 0) {
if (!print_messages_stack.back().empty()) {
print_messages_stack.back() += "\n";
}
print_messages_stack.back() += msg;
}
PRINT_NOCACHE(msg);
}
void PRINT_NOCACHE(const std::string &msg)
{
if (msg.empty()) return;
outputhandler(msg);
}
std::string two_digit_exp_format( std::string doublestr )
{
#ifdef _WIN32
size_t exppos = doublestr.find('e');
if ( exppos != std::string::npos) {
exppos += 2;
if ( doublestr[exppos] == '0' ) doublestr.erase(exppos,1);
}
#endif
return doublestr;
}
std::string two_digit_exp_format( double x )
{
std::stringstream s;
s << x;
return two_digit_exp_format( s.str() );
}
|