blob: 37092fa811e4f1bea010d741abe123c9367b4871 (
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
68
69
70
71
|
#include "printutils.h"
#include <sstream>
#include <stdio.h>
std::list<std::string> print_messages_stack;
OutputHandlerFunc *outputhandler = NULL;
void *outputhandler_data = NULL;
void set_output_handler(OutputHandlerFunc *newhandler, void *userdata)
{
outputhandler = newhandler;
outputhandler_data = userdata;
}
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;
if (!outputhandler) {
fprintf(stderr, "%s\n", msg.c_str());
} else {
outputhandler(msg, outputhandler_data);
}
}
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() );
}
|