2010-09-26 11:15:14 +02:00
|
|
|
// Cppcheck - A tool for static C/C++ code analysis
|
2021-09-26 11:34:56 +02:00
|
|
|
// Copyright (C) 2007-2021 Cppcheck team.
|
2010-09-26 11:15:14 +02:00
|
|
|
//
|
|
|
|
// 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2010-09-26 05:19:30 +02:00
|
|
|
#ifndef REDIRECT_H
|
|
|
|
#define REDIRECT_H
|
|
|
|
|
|
|
|
#include <iostream>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <sstream>
|
|
|
|
#include <string>
|
2010-09-26 05:19:30 +02:00
|
|
|
|
|
|
|
extern std::ostringstream errout;
|
|
|
|
extern std::ostringstream output;
|
2010-09-26 11:15:14 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Utility class for capturing cout and cerr to ostringstream buffers
|
|
|
|
* for later use. Uses RAII to stop redirection when the object goes out of
|
|
|
|
* scope.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class RedirectOutputError {
|
2010-09-26 05:19:30 +02:00
|
|
|
public:
|
2010-09-26 11:15:14 +02:00
|
|
|
/** Set up redirection, flushing anything in the pipes. */
|
2014-11-20 14:20:09 +01:00
|
|
|
RedirectOutputError() {
|
2010-09-26 05:19:30 +02:00
|
|
|
// flush all old output
|
|
|
|
std::cout.flush();
|
|
|
|
std::cerr.flush();
|
|
|
|
|
|
|
|
_oldCout = std::cout.rdbuf(); // back up cout's streambuf
|
|
|
|
_oldCerr = std::cerr.rdbuf(); // back up cerr's streambuf
|
|
|
|
|
|
|
|
std::cout.rdbuf(_out.rdbuf()); // assign streambuf to cout
|
|
|
|
std::cerr.rdbuf(_err.rdbuf()); // assign streambuf to cerr
|
|
|
|
}
|
|
|
|
|
2010-09-26 11:15:14 +02:00
|
|
|
/** Revert cout and cerr behaviour */
|
2014-11-20 14:20:09 +01:00
|
|
|
~RedirectOutputError() {
|
2010-09-26 05:19:30 +02:00
|
|
|
std::cout.rdbuf(_oldCout); // restore cout's original streambuf
|
|
|
|
std::cerr.rdbuf(_oldCerr); // restore cerrs's original streambuf
|
|
|
|
|
|
|
|
errout << _err.str();
|
|
|
|
output << _out.str();
|
|
|
|
}
|
|
|
|
|
2012-01-12 21:21:51 +01:00
|
|
|
/** Return what would be printed to cout. See also clearOutput() */
|
2014-11-20 14:20:09 +01:00
|
|
|
std::string getOutput() const {
|
2012-01-12 21:21:51 +01:00
|
|
|
return _out.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Normally called after getOutput() to prevent same text to be returned
|
2021-08-07 20:51:18 +02:00
|
|
|
twice. */
|
2014-11-20 14:20:09 +01:00
|
|
|
void clearOutput() {
|
2012-01-12 21:21:51 +01:00
|
|
|
_out.str("");
|
|
|
|
}
|
|
|
|
|
2014-03-28 12:00:51 +01:00
|
|
|
/** Return what would be printed to cerr. See also clearErrout() */
|
2014-11-20 14:20:09 +01:00
|
|
|
std::string getErrout() const {
|
2014-03-28 12:00:51 +01:00
|
|
|
return _err.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Normally called after getErrout() to prevent same text to be returned
|
2021-08-07 20:51:18 +02:00
|
|
|
twice. */
|
2014-11-20 14:20:09 +01:00
|
|
|
void clearErrout() {
|
2014-03-28 12:00:51 +01:00
|
|
|
_err.str("");
|
|
|
|
}
|
|
|
|
|
2010-09-26 05:19:30 +02:00
|
|
|
private:
|
2012-04-17 12:57:16 +02:00
|
|
|
std::ostringstream _out;
|
|
|
|
std::ostringstream _err;
|
2012-10-19 13:34:44 +02:00
|
|
|
std::streambuf *_oldCout;
|
2010-09-26 05:19:30 +02:00
|
|
|
std::streambuf *_oldCerr;
|
|
|
|
};
|
|
|
|
|
2021-08-07 20:51:18 +02:00
|
|
|
#define REDIRECT RedirectOutputError redir; do {} while (false)
|
2012-01-12 21:21:51 +01:00
|
|
|
#define GET_REDIRECT_OUTPUT redir.getOutput()
|
|
|
|
#define CLEAR_REDIRECT_OUTPUT redir.clearOutput()
|
2014-03-28 12:00:51 +01:00
|
|
|
#define GET_REDIRECT_ERROUT redir.getErrout()
|
|
|
|
#define CLEAR_REDIRECT_ERROUT redir.clearErrout()
|
2010-09-26 05:19:30 +02:00
|
|
|
|
|
|
|
#endif
|