Click here to Skip to main content
15,867,756 members
Articles / Desktop Programming / Win32

Creating a Console Based Window for Debugging

Rate me:
Please Sign up or sign in to vote.
4.65/5 (13 votes)
21 Apr 2019CPOL3 min read 9.9K   294   14   1
This article will show how to selectively add a Console window to Win32 or even MFC programs for debugging purposes.
The purpose of this article is to explain how to build a centralized function for logging and how to display log entries in real time using a Console window which can be opened throughout the run time of the application, regardless of its type (Win32, MFC, etc.).

The Building Blocks

A proper logging function should have the flexibility to accept any number of arguments of various types such as date, numeric and strings. First, I will introduce the types of information that can be included in each log entry.

The Calling Function

It is possible to always know the name of the function that invoked each log entry. To do so, we add a parameter to our WriteLogFile() function and call it via a MACRO that automatically added as the first parameter the following preprocessor directive: __FUNCTION__ (see this article).

General Information

We would normally wish the log entries to include general information such as:

  • Current date and time
  • Date and time when the application has started
  • (Optional) Date and time when the application was created

Counting Our Cycles

This is something not every application needs, but some do. If your application has a main event loop, you would usually start with some initializations, and then start this loop until the application is terminated. You may want to count how many times this loop occurred.

Setting the Text and Background Color

The following function can be used to set both text and background colors of the text. The function should be called by a wrapper based on criteria set to make it easier to view the log during runtime. For example, distinguishing between information log entries and errors / warnings, and also setting different colors for different types of urgency.

C++
inline void setcolor(int textcol, int backcol)
{
    if ((textcol % 16) == (backcol % 16))textcol++;
    textcol %= 16; backcol %= 16;
    unsigned short wAttributes = ((unsigned)backcol << 4) | (unsigned)textcol;
    HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
    SetConsoleTextAttribute(hStdOut, wAttributes);
}

Defining Logging Levels

With the following code, we define different levels for logging allowing later to display log entries based on the selected "Logging Level".

C++
// Logging Level
    typedef enum
    {
        minimal = 1,           // messages that must be displayed 
        normal = 2,            // messages that would normally be displayed
        verbose = 3            // messages that don't necessarily need to be displayed
    } LoggingLevel;

We can then use MACROS to select the desired Logging Level as a parameter to WriteLogFile().

C++
#define LOG_VERBOSE utils::LoggingLevel::verbose
#define LOG_NORMAL utils::LoggingLevel::normal
#define LOG_MINIMAL utils::LoggingLevel::minimal

However, we need to define two different set of Logging Levels:

Log Message Level: Let's say a function has a call to WriteLogFile which we think should not be displayed in most cases. We then want to define this specific message as "Verbose".

Application Level: Now, we would want to define dynamically are we now in "Verbose", "Debug" or "Minimal" mode. We do that with these MACROS.

C++
#define LOGGINGTYPE_NONE 0
#define LOGGINGTYPE_SIMPLE 1
#define LOGGINGTYPE_DEBUG 2

If we are in "SIMPLE" mode, we will only display log entries that are classified as "Minimal". If we are in "DEBUG" mode, we will also include entries that are classified as "Verbose", and so on...

Displaying the Creation Date of Our Program

We will fetch the creation date of our program, but first, we define a "friendly" formal for displaying it:

C++
#define FRIENDLY_DATEFORMAT L"%d-%m-%Y, %H:%M:%S"

That means: Day-Month-Year Hour:Minute:Seconds. For example:

04-04-2019 10:00:00

We fetch the creation date of our program using the following code:

C++
CTime GetFileDateTime(LPCWSTR FileName)
{
    FILETIME ftCreate, ftAccess, ftWrite;
    HANDLE hFile;
    CTime result = NULL;
    CTime FileTime;

    hFile = CreateFile(FileName, GENERIC_READ,
                       FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL);
    if (hFile == INVALID_HANDLE_VALUE)
    {
        return result;
    }

    // Retrieve the file times for the file.
    if (!GetFileTime(hFile, &ftCreate, &ftAccess, &ftWrite))
        return result;
    FileTime = ftWrite;

    CloseHandle(hFile);
    result = (CTime)FileTime;
    return result;
}

// GetSelfDateTime- returns the creation date and time of the running program
CTime GetSelfDateTime(void)
{
    WCHAR szExeFileName[MAX_PATH];
    GetModuleFileName(NULL, szExeFileName, MAX_PATH);
    return GetFileDateTime(szExeFileName);
}

As you can see, GetFileDateTime() has 2 variations. When it is called with no parameters, the full path of the currently running program is found out and then used to call the other variation passing it to the function. The return value is a CTime.

Displaying the Processor Type

We might also want to display the processor type, most likely either 32 bit (x86) or 64 bit (x64). We do that using the following function:

C++
bool Isx64OS()
{
    SYSTEM_INFO systemInfo;
    GetNativeSystemInfo(&systemInfo);
    return (systemInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64);
}.

Using the Code

Now it’s time to see the entire function and how we call it.

We use the WriteLogFile() as shown in the code snippet below.

Note: We use logging when the _LOG preprocessor directive is set, otherwise we don't, and the way this code is organized ensures that the version where _LOG isn't turned on, won't contain all log messages in the binary executable, since sometimes we don't want these messages to be published but only be used internally.

C++
int myIntVar = 999;
wchar_t *myStringVar = L"Test";
#if _LOG
     WriteLogFile(__FUNCTION__, LOG_COLOR_WHITE, LOG_VERBOSE, 
     L"myStringVar = %s myIntVar = %d", myStringVar, myIntVar);
#endif

The Result

As you can see, when running the code, you should see the Console window shown as in the screenshot below:

Image 1

History

  • 21st April, 2019: Initial version

License

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


Written By
CEO Secured Globe, Inc.
United States United States
Michael Haephrati is a music composer, an inventor and an expert specializes in software development and information security, who has built a unique perspective which combines technology and the end user experience. He is the author of a the book Learning C++ , which teaches C++ 20, and was published in August 2022.

He is the CEO of Secured Globe, Inc., and also active at Stack Overflow.

Read our Corporate blog or read my Personal blog.





Comments and Discussions

 
QuestionDate Format Pin
Rick York21-Apr-19 7:10
mveRick York21-Apr-19 7: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.