Click here to Skip to main content
15,860,859 members
Articles / Programming Languages / C++

Using an Output Stream for Debugging

Rate me:
Please Sign up or sign in to vote.
4.84/5 (15 votes)
30 May 2018Public Domain2 min read 236.2K   51   38
How to create an output stream that writes to the debug terminal

Background

There are many different schools of how to debug a program (yeah, I know - write it correctly from the start), but whatever tools you prefer, it is often very convenient just to use the printf approach. Well, since you are a modern C++ kind of person, you don't really want printf, you want to use an output stream, like cerr.

There's just one problem though, you are writing Windows applications, so there is no standard error output to write to. Not true, actually there is, and you've probably used it many times already. When you use one of the TRACE macros, the result ends up in the Debug pane of Visual Studio. MFC goes through great pains to turn off all this debug output in Release builds, but it can often be very convenient to keep it.

Of course, you won't see any output in Visual Studio from a release build, but there are other programs that can capture this output. A good one is DebugView from www.sysinternals.com. Incidentally, if you start this program, you'll probably see like a million messages from Internet Explorer. There you go, even Microsoft practise Release build debugging!

The Problem

So, how to direct a standard output stream to the debug terminal? In general, the correct answer is to derive from streambuf and connect the new class to a normal ostream. In this way, all stream inserters and manipulators work as expected. In this case, we can save some work by deriving from stringbuf instead. So, without further ado, here's how to do it.

The Code

First, we include the needed headers.

C++
#include <Windows.h>
#include <ostream>
#include <sstream>
#include <string>

Now for the real work: Since we are using a stringbuf, we only need to override the sync function.

The sync method is what actually transfers the text in the put area to whatever output destination the streambuf uses, in this case by calling the API function OutputDebugString.

C++
template <class CharT, class TraitsT = std::char_traits<CharT> >
class basic_debugbuf : 
    public std::basic_stringbuf<CharT, TraitsT>
{
public:

    virtual ~basic_debugbuf()
    {
        sync();
    }

protected:

    int sync()
    {
        output_debug_string(str().c_str());
        str(std::basic_string<CharT>());    // Clear the string buffer

        return 0;
    }

    void output_debug_string(const CharT *text) {}
};

Next, I specialize the output routine so it calls the Ansi or Unicode API as appropriate.

C++
template<>
void basic_debugbuf<char>::output_debug_string(const char *text)
{
    ::OutputDebugStringA(text);
}

template<>
void basic_debugbuf<wchar_t>::output_debug_string(const wchar_t *text)
{
    ::OutputDebugStringW(text);
}

That's really all you need, but as a convenience, I also provide a class derived from basic_ostream that connects the output stream to the basic_debugbuf just created.

In order to work just like cout, you should then create a global object of type dostream or wdostream and use that to output to.

C++
template<class CharT, class TraitsT = std::char_traits<CharT> >
class basic_dostream : 
    public std::basic_ostream<CharT, TraitsT>
{
public:

    basic_dostream() : std::basic_ostream<CharT, TraitsT>
                (new basic_debugbuf<CharT, TraitsT>()) {}
    ~basic_dostream() 
    {
        delete rdbuf(); 
    }
};

typedef basic_dostream<char>    dostream;
typedef basic_dostream<wchar_t> wdostream;

History

  • 18-Apr-2001 - Original version
  • 23-Nov-2001 - Updated to use a stringbuf as suggested by Jim Barry.
    Also fixed the remaining HTML markup errors that made the code un-compilable

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Web Developer
Sweden Sweden
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
PraiseThanks so much! Pin
koothkeeper2-Jun-18 11:11
professionalkoothkeeper2-Jun-18 11:11 
GeneralThanks! Just what I needed! Pin
Mitchel Haas22-Jul-09 3:40
Mitchel Haas22-Jul-09 3:40 
Generaljust a little adjustment .. make it work with wince Pin
isatohon11-Dec-08 23:59
isatohon11-Dec-08 23:59 
QuestionHow to ensure that debug stream is flushed? Pin
Freon19-Dec-07 13:15
Freon19-Dec-07 13:15 
AnswerRe: How to ensure that debug stream is flushed? Pin
isatohon11-Dec-08 23:52
isatohon11-Dec-08 23:52 
GeneralWorks like a charm, Pin
amnonglaser30-Sep-07 13:37
amnonglaser30-Sep-07 13:37 
QuestionHow to declare global dostream Pin
Max235116-Jun-06 3:20
Max235116-Jun-06 3:20 
GeneralUnbuffered output Pin
Member 152615710-Aug-05 3:43
Member 152615710-Aug-05 3:43 
GeneralRe: Unbuffered output Pin
Henry Bruce5-Jun-07 8:50
Henry Bruce5-Jun-07 8:50 
GeneralRe: Unbuffered output Pin
Freon20-Dec-07 7:23
Freon20-Dec-07 7:23 
Generalvery handy Pin
Bernhard14-Oct-03 21:42
Bernhard14-Oct-03 21:42 
GeneralNot possible to output more than 1023 characters with OutputDebugString() Pin
patrickdreyer19-Aug-03 23:31
patrickdreyer19-Aug-03 23:31 
GeneralI built a testrunner around this Pin
Phlip3-Feb-03 10:22
Phlip3-Feb-03 10:22 
GeneralRe: I built a testrunner around this Pin
Sven Axelsson4-Feb-03 5:56
Sven Axelsson4-Feb-03 5:56 
QuestionSTL container? Pin
13-May-02 13:12
suss13-May-02 13:12 
AnswerRe: STL container? Pin
13-May-02 13:21
suss13-May-02 13:21 
AnswerRe: STL container? Pin
Edwin Chen3-Jul-03 8:13
Edwin Chen3-Jul-03 8:13 
GeneralMemory leaks Pin
JavaBodum18-Mar-02 8:33
JavaBodum18-Mar-02 8:33 
GeneralRe: Memory leaks Pin
Anthony_Yio4-Nov-04 15:49
Anthony_Yio4-Nov-04 15:49 
Generalthread safe Pin
14-Jun-01 5:38
suss14-Jun-01 5:38 
GeneralUsage Pin
12-Jun-01 22:52
suss12-Jun-01 22:52 
GeneralRe: Usage Pin
20-Sep-01 10:26
suss20-Sep-01 10:26 
GeneralRe: Usage Pin
12-Feb-02 16:45
suss12-Feb-02 16:45 
GeneralBetter to use basic_stringbuf Pin
Jim Barry22-Apr-01 4:12
Jim Barry22-Apr-01 4:12 
GeneralA small bug Pin
Sven Axelsson18-Apr-01 1:31
Sven Axelsson18-Apr-01 1:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.