initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
54
libs/wxWidgets-3.3.1/include/wx/protocol/log.h
Normal file
54
libs/wxWidgets-3.3.1/include/wx/protocol/log.h
Normal file
@@ -0,0 +1,54 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: wx/protocol/log.h
|
||||
// Purpose: wxProtocolLog class for logging network exchanges
|
||||
// Author: Troelsk, Vadim Zeitlin
|
||||
// Created: 2009-03-06
|
||||
// Copyright: (c) 2009 Vadim Zeitlin <vadim@wxwidgets.org>
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_PROTOCOL_LOG_H_
|
||||
#define _WX_PROTOCOL_LOG_H_
|
||||
|
||||
#include "wx/string.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// wxProtocolLog: simple class for logging network requests and responses
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class WXDLLIMPEXP_NET wxProtocolLog
|
||||
{
|
||||
public:
|
||||
// Create object doing the logging using wxLogTrace() with the specified
|
||||
// trace mask.
|
||||
wxProtocolLog(const wxString& traceMask)
|
||||
: m_traceMask(traceMask)
|
||||
{
|
||||
}
|
||||
|
||||
// Virtual dtor for the base class
|
||||
virtual ~wxProtocolLog() = default;
|
||||
|
||||
// Called by wxProtocol-derived classes to actually log something
|
||||
virtual void LogRequest(const wxString& str)
|
||||
{
|
||||
DoLogString(wxASCII_STR("==> ") + str);
|
||||
}
|
||||
|
||||
virtual void LogResponse(const wxString& str)
|
||||
{
|
||||
DoLogString(wxASCII_STR("<== ") + str);
|
||||
}
|
||||
|
||||
protected:
|
||||
// Can be overridden by the derived classes.
|
||||
virtual void DoLogString(const wxString& str);
|
||||
|
||||
private:
|
||||
const wxString m_traceMask;
|
||||
|
||||
wxDECLARE_NO_COPY_CLASS(wxProtocolLog);
|
||||
};
|
||||
|
||||
#endif // _WX_PROTOCOL_LOG_H_
|
||||
|
||||
Reference in New Issue
Block a user