/usr/include/quickfix/Log.h is in libquickfix-dev 1.13.3+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 | /* -*- C++ -*- */
/****************************************************************************
** Copyright (c) quickfixengine.org All rights reserved.
**
** This file is part of the QuickFIX FIX Engine
**
** This file may be distributed under the terms of the quickfixengine.org
** license as defined by quickfixengine.org and appearing in the file
** LICENSE included in the packaging of this file.
**
** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
**
** See http://www.quickfixengine.org/LICENSE for licensing information.
**
** Contact ask@quickfixengine.org if any conditions of this licensing are
** not clear to you.
**
****************************************************************************/
#ifndef FIX_LOG_H
#define FIX_LOG_H
#ifdef _MSC_VER
#pragma warning( disable : 4503 4355 4786 4290 )
#endif
#include "Message.h"
#include "Mutex.h"
#include "SessionSettings.h"
#include <map>
#include <vector>
namespace FIX
{
class Log;
/**
* This interface must be implemented to create a Log.
*/
class LogFactory
{
public:
virtual ~LogFactory() {}
virtual Log* create() = 0;
virtual Log* create( const SessionID& ) = 0;
virtual void destroy( Log* ) = 0;
};
/**
* Creates a screen based implementation of Log.
*
* This displays all log events onto the standard output
*/
class ScreenLogFactory : public LogFactory
{
public:
ScreenLogFactory( const SessionSettings& settings )
: m_useSettings( true ), m_settings( settings ) {};
ScreenLogFactory( bool incoming, bool outgoing, bool event )
: m_incoming( incoming ), m_outgoing( outgoing ), m_event( event ), m_useSettings( false ) {}
Log* create();
Log* create( const SessionID& );
void destroy( Log* log );
private:
void init( const Dictionary& settings, bool& incoming, bool& outgoing, bool& event );
bool m_incoming;
bool m_outgoing;
bool m_event;
bool m_useSettings;
SessionSettings m_settings;
};
/**
* This interface must be implemented to log messages and events
*/
class Log
{
public:
virtual ~Log() {}
virtual void clear() = 0;
virtual void backup() = 0;
virtual void onIncoming( const std::string& ) = 0;
virtual void onOutgoing( const std::string& ) = 0;
virtual void onEvent( const std::string& ) = 0;
};
/*! @} */
/**
* Null implementation of Log
*
* This is only for internal use. Used when no log factory is
* passed to the initiator or acceptor.
*/
class NullLog : public Log
{
public:
void clear() {}
void backup() {}
void onIncoming( const std::string& ) {}
void onOutgoing( const std::string& ) {}
void onEvent( const std::string& ) {}
};
/**
* Screen based implementation of Log.
*
* This will display all log information onto the standard output
*/
class ScreenLog : public Log
{
public:
ScreenLog( bool incoming, bool outgoing, bool event )
: m_prefix( "GLOBAL" ),
m_incoming( incoming ), m_outgoing( outgoing ), m_event( event ), m_millisecondsInTimeStamp( true ) {}
ScreenLog( const SessionID& sessionID,
bool incoming, bool outgoing, bool event )
: m_prefix( sessionID.toString() ),
m_incoming( incoming ), m_outgoing( outgoing ), m_event( event ), m_millisecondsInTimeStamp( true ) {}
void clear() {}
void backup() {}
void onIncoming( const std::string& value )
{
if ( !m_incoming ) return ;
Locker l( s_mutex );
m_time.setCurrent();
std::cout << "<" << UtcTimeStampConvertor::convert(m_time, m_millisecondsInTimeStamp)
<< ", " << m_prefix
<< ", " << "incoming>" << std::endl
<< " (" << value << ")" << std::endl;
}
void onOutgoing( const std::string& value )
{
if ( !m_outgoing ) return ;
Locker l( s_mutex );
m_time.setCurrent();
std::cout << "<" << UtcTimeStampConvertor::convert(m_time, m_millisecondsInTimeStamp)
<< ", " << m_prefix
<< ", " << "outgoing>" << std::endl
<< " (" << value << ")" << std::endl;
}
void onEvent( const std::string& value )
{
if ( !m_event ) return ;
Locker l( s_mutex );
m_time.setCurrent();
std::cout << "<" << UtcTimeStampConvertor::convert(m_time, m_millisecondsInTimeStamp)
<< ", " << m_prefix
<< ", " << "event>" << std::endl
<< " (" << value << ")" << std::endl;
}
bool getMillisecondsInTimeStamp() const
{ return m_millisecondsInTimeStamp; }
void setMillisecondsInTimeStamp ( bool value )
{ m_millisecondsInTimeStamp = value; }
private:
std::string m_prefix;
UtcTimeStamp m_time;
bool m_incoming;
bool m_outgoing;
bool m_event;
static Mutex s_mutex;
bool m_millisecondsInTimeStamp;
};
}
#endif //FIX_LOG_H
|