mirror of
https://github.com/debauchee/barrier.git
synced 2025-06-19 19:21:41 +02:00
Initial commit of the synergy trunk sources from sf.net
This commit is contained in:
commit
958fa80d1d
429 changed files with 96848 additions and 0 deletions
267
lib/base/LogOutputters.cpp
Normal file
267
lib/base/LogOutputters.cpp
Normal file
|
@ -0,0 +1,267 @@
|
|||
/*
|
||||
* synergy -- mouse and keyboard sharing utility
|
||||
* Copyright (C) 2002 Chris Schoeneman
|
||||
*
|
||||
* This package is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
* found in the file COPYING that should have accompanied this file.
|
||||
*
|
||||
* This package is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*/
|
||||
|
||||
#include "LogOutputters.h"
|
||||
#include "CArch.h"
|
||||
|
||||
//
|
||||
// CStopLogOutputter
|
||||
//
|
||||
|
||||
CStopLogOutputter::CStopLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CStopLogOutputter::~CStopLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CStopLogOutputter::open(const char*)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CStopLogOutputter::close()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CStopLogOutputter::show(bool)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
bool
|
||||
CStopLogOutputter::write(ELevel, const char*)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
const char*
|
||||
CStopLogOutputter::getNewline() const
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// CConsoleLogOutputter
|
||||
//
|
||||
|
||||
CConsoleLogOutputter::CConsoleLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CConsoleLogOutputter::~CConsoleLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CConsoleLogOutputter::open(const char* title)
|
||||
{
|
||||
ARCH->openConsole(title);
|
||||
}
|
||||
|
||||
void
|
||||
CConsoleLogOutputter::close()
|
||||
{
|
||||
ARCH->closeConsole();
|
||||
}
|
||||
|
||||
void
|
||||
CConsoleLogOutputter::show(bool showIfEmpty)
|
||||
{
|
||||
ARCH->showConsole(showIfEmpty);
|
||||
}
|
||||
|
||||
bool
|
||||
CConsoleLogOutputter::write(ELevel, const char* msg)
|
||||
{
|
||||
ARCH->writeConsole(msg);
|
||||
return true;
|
||||
}
|
||||
|
||||
const char*
|
||||
CConsoleLogOutputter::getNewline() const
|
||||
{
|
||||
return ARCH->getNewlineForConsole();
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// CSystemLogOutputter
|
||||
//
|
||||
|
||||
CSystemLogOutputter::CSystemLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CSystemLogOutputter::~CSystemLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CSystemLogOutputter::open(const char* title)
|
||||
{
|
||||
ARCH->openLog(title);
|
||||
}
|
||||
|
||||
void
|
||||
CSystemLogOutputter::close()
|
||||
{
|
||||
ARCH->closeLog();
|
||||
}
|
||||
|
||||
void
|
||||
CSystemLogOutputter::show(bool showIfEmpty)
|
||||
{
|
||||
ARCH->showLog(showIfEmpty);
|
||||
}
|
||||
|
||||
bool
|
||||
CSystemLogOutputter::write(ELevel level, const char* msg)
|
||||
{
|
||||
IArchLog::ELevel archLogLevel;
|
||||
switch (level) {
|
||||
case CLog::kFATAL:
|
||||
case CLog::kERROR:
|
||||
archLogLevel = IArchLog::kERROR;
|
||||
break;
|
||||
|
||||
case CLog::kWARNING:
|
||||
archLogLevel = IArchLog::kWARNING;
|
||||
break;
|
||||
|
||||
case CLog::kNOTE:
|
||||
archLogLevel = IArchLog::kNOTE;
|
||||
break;
|
||||
|
||||
case CLog::kINFO:
|
||||
archLogLevel = IArchLog::kINFO;
|
||||
break;
|
||||
|
||||
default:
|
||||
archLogLevel = IArchLog::kDEBUG;
|
||||
break;
|
||||
|
||||
};
|
||||
ARCH->writeLog(archLogLevel, msg);
|
||||
return true;
|
||||
}
|
||||
|
||||
const char*
|
||||
CSystemLogOutputter::getNewline() const
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// CSystemLogger
|
||||
//
|
||||
|
||||
CSystemLogger::CSystemLogger(const char* title, bool blockConsole) :
|
||||
m_stop(NULL)
|
||||
{
|
||||
// redirect log messages
|
||||
if (blockConsole) {
|
||||
m_stop = new CStopLogOutputter;
|
||||
CLOG->insert(m_stop);
|
||||
}
|
||||
m_syslog = new CSystemLogOutputter;
|
||||
m_syslog->open(title);
|
||||
CLOG->insert(m_syslog);
|
||||
}
|
||||
|
||||
CSystemLogger::~CSystemLogger()
|
||||
{
|
||||
CLOG->remove(m_syslog);
|
||||
delete m_syslog;
|
||||
if (m_stop != NULL) {
|
||||
CLOG->remove(m_stop);
|
||||
delete m_stop;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
//
|
||||
// CBufferedLogOutputter
|
||||
//
|
||||
|
||||
CBufferedLogOutputter::CBufferedLogOutputter(UInt32 maxBufferSize) :
|
||||
m_maxBufferSize(maxBufferSize)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CBufferedLogOutputter::~CBufferedLogOutputter()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
CBufferedLogOutputter::const_iterator
|
||||
CBufferedLogOutputter::begin() const
|
||||
{
|
||||
return m_buffer.begin();
|
||||
}
|
||||
|
||||
CBufferedLogOutputter::const_iterator
|
||||
CBufferedLogOutputter::end() const
|
||||
{
|
||||
return m_buffer.end();
|
||||
}
|
||||
|
||||
void
|
||||
CBufferedLogOutputter::open(const char*)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
void
|
||||
CBufferedLogOutputter::close()
|
||||
{
|
||||
// remove all elements from the buffer
|
||||
m_buffer.clear();
|
||||
}
|
||||
|
||||
void
|
||||
CBufferedLogOutputter::show(bool)
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
bool
|
||||
CBufferedLogOutputter::write(ELevel, const char* message)
|
||||
{
|
||||
while (m_buffer.size() >= m_maxBufferSize) {
|
||||
m_buffer.pop_front();
|
||||
}
|
||||
m_buffer.push_back(CString(message));
|
||||
return true;
|
||||
}
|
||||
|
||||
const char*
|
||||
CBufferedLogOutputter::getNewline() const
|
||||
{
|
||||
return "";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue