openscad/src/printutils.h

57 lines
1.6 KiB
C++

#ifndef PRINTUTILS_H_
#define PRINTUTILS_H_
#include <string>
#include <list>
#include <iostream>
#include <boost/format.hpp>
typedef void (OutputHandlerFunc)(const std::string &msg, void *userdata);
extern OutputHandlerFunc *outputhandler;
extern void *outputhandler_data;
void set_output_handler(OutputHandlerFunc *newhandler, void *userdata);
extern std::list<std::string> print_messages_stack;
void print_messages_push();
void print_messages_pop();
void printDeprecation(const std::string &str);
void resetPrintedDeprecations();
#define PRINT_DEPRECATION(_fmt, _arg) do { printDeprecation(str(boost::format(_fmt) % _arg)); } while (0)
void PRINT(const std::string &msg);
#define PRINTB(_fmt, _arg) do { PRINT(str(boost::format(_fmt) % _arg)); } while (0)
void PRINT_NOCACHE(const std::string &msg);
#define PRINTB_NOCACHE(_fmt, _arg) do { PRINT_NOCACHE(str(boost::format(_fmt) % _arg)); } while (0)
void PRINT_CONTEXT(const class Context *ctx, const class Module *mod, const class ModuleInstantiation *inst);
std::string two_digit_exp_format( std::string doublestr );
std::string two_digit_exp_format( double x );
// extremely simple logging, eventually replace with something like boost.log
// usage: logstream out(5); openscad_loglevel=6; out << "hi";
static int openscad_loglevel = 0;
class logstream
{
public:
std::ostream *out;
int loglevel;
logstream( int level = 0 ) {
loglevel = level;
out = &(std::cout);
}
template <typename T> logstream & operator<<( T const &t ) {
if (out && loglevel <= openscad_loglevel) {
(*out) << t ;
out->flush();
}
return *this;
}
};
#endif