Click here to Skip to main content
15,884,176 members
Articles / Desktop Programming / MFC
Article

CEditLog - fast logging into an edit control with cout

Rate me:
Please Sign up or sign in to vote.
4.69/5 (32 votes)
1 Nov 2003CPOL 310.3K   4K   86   84
Use an edit control for logging messages and redirect cout

Problem

I once wanted to use an edit control for fast, asynchronous text output. I need to log messages from a lot of threads, sometimes more than 1000 per second. And since I created already functions to dump my objects to std::cout I also wanted to use an edit control as std::ostream.

Features

  • Asynchronous, very fast output to any edit control
  • User can scroll back, select and copy text and so on during output
  • Can be used with or without MFC (Sample is a MFC project)
  • Uses window-subclassing, so you can use it even with CEdit-derived controls
  • Save to be used by multiple threads
  • Special basic_streambuf class to create or redirect a std::ostream (such as std::cout) to an edit control

Using CEditLog

Just create an Instance of CEditLog and attach an edit control to it using the SetEditControl() function. Then you can add text to the end of the edit control using one of the AddText() members:

class CEditLog : protected CSubclassWnd
{
public:
    typedef CSubclassWnd root_type;

    // Constructs the CEditLog. You can pass the edit controls handle

    // here or set it later using the SetEditCtrl() function.

    // To increase performance CEditLog repaints the edit-control

    // only if the caret resides in the last line. Otherwise the

    // control will be refreshed only every nMaxRefreshDelay msec.

    CEditLog( HWND hEdit = NULL, UINT nMaxRefreshDelay = 500 );
    
    // Adds some text to the end of the edit control. Works asynchronously

    // (using PostMessage()) and is save to be called by multiple threads.

    // If you pass true for bLFtoCRLF every LF (ASCII 10) (as it is used in

    // most cases for end-of-line) will be converted to a CR/LF (ASCII 10/13)

    // sequence as it is needed by the windows edit control. 

    virtual void AddText( LPCWSTR pwszAdd, bool bLFtoCRLF = false );
    
    // Converts pszAdd to UNICODE and calls the above

    void AddText( LPCSTR pszAdd, bool bLFtoCRLF = false );

    // Sets the edit-control to be used for logging.

    // Pass NULL to stop text logging.

    virtual void SetEditCtrl( HWND hEdit );

    HWND GetEditCtrl() const

    ...
};

The sample project

The included sample project shows the usage of CEditLog and how to use basic_editstrbuf to redirect std::cout to use the edit log.

CEditLog uses the CSubclassWnd class, written by William E. Kempf for implementation. I have included the soure of CSubclassWnd in the sample project, the complete article is also available here at CodeProject.

History

VersionComments
1.0First Release
1.1Minor Revision. Now uses V2.0 of SubclassWindow.
Now really works on Win9x (V1.0 used UNICODE for internal data handling and failed on Win9x systems. Now the code checks if it runs on Win9x and does the required conversions.)
1.2Minor Revision. Now compiles fine even in VC.NET 2003.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Germany Germany
Daniel Lohmann (daniel@losoft.de) is Assistant Professor at the Distributed Systems and Operating Systems department at Friedrich-Alexander-University Erlangen-Nuremberg, Germany. His main research topic is the design of a highly customizable and scalable operating system product line for deeply embedded systems using static configuration and aspect-oriented techniques. Before joining Universität Erlangen he worked as a freelance trainer and consultant for NT system programming, advanced C++ programming and OOA/OOD. He is interested in upcoming programming techniques like aspect-oriented programming, generative programming and C++ meta coding and has written some nice and handy tools for Windows NT which you can download at his web site.

Comments and Discussions

 
GeneralHi Pin
annum14-Jun-03 16:19
annum14-Jun-03 16:19 
GeneralRe: Hi Pin
Daniel Lohmann15-Jun-03 1:33
Daniel Lohmann15-Jun-03 1:33 
GeneralRe: Hi Coloring Pin
pmackell17-Sep-03 9:06
pmackell17-Sep-03 9:06 
GeneralCEditLog and FormView Pin
abstract312-Jun-03 8:59
abstract312-Jun-03 8:59 
GeneralRe: CEditLog and FormView Pin
Daniel Lohmann15-Jun-03 1:40
Daniel Lohmann15-Jun-03 1:40 
GeneralRe: CEditLog and FormView Pin
S.Cartwright6-Dec-04 14:52
S.Cartwright6-Dec-04 14:52 
GeneralRe: CEditLog and FormView Pin
S.Cartwright6-Dec-04 15:13
S.Cartwright6-Dec-04 15:13 
GeneralRe: CEditLog and FormView Pin
Daniel Lohmann6-Dec-04 21:42
Daniel Lohmann6-Dec-04 21:42 
sammyc wrote:
Seems that GetScrollInfo may not return the correct information (well, correct for our purposes) if the scroll bar is not yet visible.

replace the following:
::GetScrollInfo( GetSafeHwnd(), SB_VERT, &si );
if( si.nPos >= si.nMax - (int) si.nPage + 1 )
with
::GetScrollInfo( GetSafeHwnd(), SB_VERT, &si );
if( si.nPos >= si.nMax - (int) si.nPage + 1 ||
!::GetScrollPos(GetSafeHwnd(), SB_VERT) )

GetScrollPos will return 0 on error (ie, the scroll bar is not visible). Note that I replaced the GetHandle calls with GetSafeHwnd (Im using a CRichEditCtrl)


Thanks a lot about sharing your insights. Rose | [Rose] Does it really work with rich edit controls now?

--

Daniel Lohmann

http://www.losoft.de
(Hey, this page is worth looking! You can find some free and handy NT tools there Big Grin | :-D )
GeneralDon't work in studio .net 2003 Pin
Andrius Mudinas15-May-03 10:29
Andrius Mudinas15-May-03 10:29 
GeneralRe: Don't work in studio .net 2003 Pin
Daniel Lohmann26-May-03 5:29
Daniel Lohmann26-May-03 5:29 
GeneralRe: Don't work in studio .net 2003 Pin
Anonymous17-Jun-03 7:20
Anonymous17-Jun-03 7:20 
GeneralRe: Don't work in studio .net 2003 Pin
ajedlitschka26-Oct-03 9:50
ajedlitschka26-Oct-03 9:50 
GeneralNow compiles fine in VC.NET 2003 :-) Pin
Daniel Lohmann2-Nov-03 23:25
Daniel Lohmann2-Nov-03 23:25 
Generalrestrict amount of text/cut first lines Pin
dontsmoke14-Apr-03 9:43
dontsmoke14-Apr-03 9:43 
GeneralRe: restrict amount of text/cut first lines Pin
DoubleApexCa20-Aug-04 5:40
DoubleApexCa20-Aug-04 5:40 
Generalusage with CEditView, handling of WM_DESTROY message Pin
luedi6-Mar-03 5:14
luedi6-Mar-03 5:14 
GeneralRe: usage with CEditView, handling of WM_DESTROY message Pin
Daniel Lohmann6-Mar-03 7:39
Daniel Lohmann6-Mar-03 7:39 
GeneralA little unrelated but... Pin
Anthony Winters28-Feb-03 13:13
Anthony Winters28-Feb-03 13:13 
GeneralRe: A little unrelated but... Pin
Larry Antram28-Feb-03 13:40
Larry Antram28-Feb-03 13:40 
GeneralCEditLog in Doc/View & printing Pin
EiSl2-Jan-03 2:08
EiSl2-Jan-03 2:08 
GeneralRe: CEditLog in Doc/View & printing Pin
Daniel Lohmann2-Jan-03 2:36
Daniel Lohmann2-Jan-03 2:36 
GeneralRe: CEditLog in Doc/View & printing Pin
EiSl2-Jan-03 2:56
EiSl2-Jan-03 2:56 
GeneralGreat + helper class Pin
Jonathan de Halleux19-Dec-02 23:14
Jonathan de Halleux19-Dec-02 23:14 
GeneralRe: Great + helper class Pin
Daniel Lohmann29-Dec-02 8:14
Daniel Lohmann29-Dec-02 8:14 
GeneralAnother problem Pin
Zamel9-Jul-02 3:10
Zamel9-Jul-02 3:10 

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.