/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rubber Band Library An audio time-stretching and pitch-shifting library. Copyright 2007-2022 Particular Programs Ltd. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. Alternatively, if you have a valid commercial licence for the Rubber Band Library obtained by agreement with the copyright holders, you may redistribute and/or modify it under the terms described in that licence. If you wish to distribute code using the Rubber Band Library under terms other than those of the GNU General Public License, you must obtain a valid commercial licence before doing so. */ #ifndef RUBBERBAND_LOG_H #define RUBBERBAND_LOG_H #include #include namespace RubberBand { class Log { public: Log(std::function _log0, std::function _log1, std::function _log2) : m_log0(_log0), m_log1(_log1), m_log2(_log2), m_debugLevel(m_defaultDebugLevel) { } Log(const Log &other) : m_log0(other.m_log0), m_log1(other.m_log1), m_log2(other.m_log2), m_debugLevel(other.m_debugLevel) { } Log &operator=(const Log &other) { m_log0 = other.m_log0; m_log1 = other.m_log1; m_log2 = other.m_log2; m_debugLevel = other.m_debugLevel; return *this; } void setDebugLevel(int level) { m_debugLevel = level; } int getDebugLevel() const { return m_debugLevel; } static void setDefaultDebugLevel(int level) { m_defaultDebugLevel = level; } void log0(int level, const char *message) const { if (level <= m_debugLevel) m_log0(message); } void log1(int level, const char *message, double arg0) const { if (level <= m_debugLevel) m_log1(message, arg0); } //!!! On reflection, log2 is a dumb choice of name void log2(int level, const char *message, double arg0, double arg1) const { if (level <= m_debugLevel) m_log2(message, arg0, arg1); } static Log makeCoutLog() { return Log( [](const char *message) { std::cout << "RubberBand: " << message << "\n"; }, [](const char *message, double arg0) { std::cout << "RubberBand: " << message << ": " << arg0 << "\n"; }, [](const char *message, double arg0, double arg1) { std::cout << "RubberBand: " << message << ": (" << arg0 << "," << arg1 << ")" << "\n"; } ); } private: std::function m_log0; std::function m_log1; std::function m_log2; int m_debugLevel; static int m_defaultDebugLevel; }; } #endif