deskflow/src/lib/base/log_outputters.cpp
Chris Rizzitello ed1217e9cc
Use Deskflow Name (#7519)
* Use Deskflow Name

* Remove business-oriented options from issue templates

* Remove business-oriented workflow

* Bump version to 3.0.0 (to avoid confusion with previously used version numbers 1.x & 2.x)

* Update readme to reflect new project name and goals

* Found some more "synergy" to rename

* Rename `synlib` to `app`

* Rename `syntool` to `deskflow-legacy`

* Rename `synwinhk` to `dfwhook`

* Rename dirs from synergy to deskflow

* Rename more "Synergy" files

* Rename app bundle ID

* Fixed copyright typo

* Rename only title in serial key dialog (to be moved downstream later)

* Preserve original serial key window for moving downstream

* Restore dialogs ready for moving downstream

* Rename `QDeskflowApplication` to `DeskflowApplication` (the Q is confusing)

* Restore Volker's original project name

* Fixed mimetype

* Fixed weird grammar

* Fixed (more) weird grammar

* Broken link, restoring (but we should move all links out of source)

* Broken link, restoring (but we should move all links out of source)

* Add write permission to valgrind-analysis.yml

* Restore AUR conflicts

* Apply Clang format

* Update ChangeLog

* Back out version change

---------

Co-authored-by: Nick Bolton <nick@symless.com>
2024-09-17 20:00:25 +01:00

215 lines
4.6 KiB
C++

/*
* Deskflow -- mouse and keyboard sharing utility
* Copyright (C) 2012-2016 Symless Ltd.
* 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 LICENSE 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "base/log_outputters.h"
#include "arch/Arch.h"
#include "base/Path.h"
#include "base/TMethodJob.h"
#include <fstream>
enum EFileLogOutputter {
kFileSizeLimit = 1024 // kb
};
//
// StopLogOutputter
//
StopLogOutputter::StopLogOutputter() {
// do nothing
}
StopLogOutputter::~StopLogOutputter() {
// do nothing
}
void StopLogOutputter::open(const char *) {
// do nothing
}
void StopLogOutputter::close() {
// do nothing
}
void StopLogOutputter::show(bool) {
// do nothing
}
bool StopLogOutputter::write(ELevel, const char *) { return false; }
//
// ConsoleLogOutputter
//
ConsoleLogOutputter::ConsoleLogOutputter() {}
ConsoleLogOutputter::~ConsoleLogOutputter() {}
void ConsoleLogOutputter::open(const char *title) { ARCH->openConsole(title); }
void ConsoleLogOutputter::close() { ARCH->closeConsole(); }
void ConsoleLogOutputter::show(bool showIfEmpty) {
ARCH->showConsole(showIfEmpty);
}
bool ConsoleLogOutputter::write(ELevel level, const char *msg) {
ARCH->writeConsole(level, msg);
return true;
}
void ConsoleLogOutputter::flush() {}
//
// SystemLogOutputter
//
SystemLogOutputter::SystemLogOutputter() {
// do nothing
}
SystemLogOutputter::~SystemLogOutputter() {
// do nothing
}
void SystemLogOutputter::open(const char *title) { ARCH->openLog(title); }
void SystemLogOutputter::close() { ARCH->closeLog(); }
void SystemLogOutputter::show(bool showIfEmpty) { ARCH->showLog(showIfEmpty); }
bool SystemLogOutputter::write(ELevel level, const char *msg) {
ARCH->writeLog(level, msg);
return true;
}
//
// SystemLogger
//
SystemLogger::SystemLogger(const char *title, bool blockConsole)
: m_stop(NULL) {
// redirect log messages
if (blockConsole) {
m_stop = new StopLogOutputter;
CLOG->insert(m_stop);
}
m_syslog = new SystemLogOutputter;
m_syslog->open(title);
CLOG->insert(m_syslog);
}
SystemLogger::~SystemLogger() {
CLOG->remove(m_syslog);
delete m_syslog;
if (m_stop != NULL) {
CLOG->remove(m_stop);
delete m_stop;
}
}
//
// BufferedLogOutputter
//
BufferedLogOutputter::BufferedLogOutputter(UInt32 maxBufferSize)
: m_maxBufferSize(maxBufferSize) {
// do nothing
}
BufferedLogOutputter::~BufferedLogOutputter() {
// do nothing
}
BufferedLogOutputter::const_iterator BufferedLogOutputter::begin() const {
return m_buffer.begin();
}
BufferedLogOutputter::const_iterator BufferedLogOutputter::end() const {
return m_buffer.end();
}
void BufferedLogOutputter::open(const char *) {
// do nothing
}
void BufferedLogOutputter::close() {
// remove all elements from the buffer
m_buffer.clear();
}
void BufferedLogOutputter::show(bool) {
// do nothing
}
bool BufferedLogOutputter::write(ELevel, const char *message) {
while (m_buffer.size() >= m_maxBufferSize) {
m_buffer.pop_front();
}
m_buffer.push_back(String(message));
return true;
}
//
// FileLogOutputter
//
FileLogOutputter::FileLogOutputter(const char *logFile) {
setLogFilename(logFile);
}
FileLogOutputter::~FileLogOutputter() {}
void FileLogOutputter::setLogFilename(const char *logFile) {
assert(logFile != NULL);
m_fileName = logFile;
}
bool FileLogOutputter::write(ELevel level, const char *message) {
bool moveFile = false;
std::ofstream m_handle;
m_handle.open(deskflow::filesystem::path(m_fileName), std::fstream::app);
if (m_handle.is_open() && m_handle.fail() != true) {
m_handle << message << std::endl;
// when file size exceeds limits, move to 'old log' filename.
size_t p = m_handle.tellp();
if (p > (kFileSizeLimit * 1024)) {
moveFile = true;
}
}
m_handle.close();
if (moveFile) {
String oldLogFilename =
deskflow::string::sprintf("%s.1", m_fileName.c_str());
remove(oldLogFilename.c_str());
rename(m_fileName.c_str(), oldLogFilename.c_str());
}
return true;
}
void FileLogOutputter::open(const char *title) {}
void FileLogOutputter::close() {}
void FileLogOutputter::show(bool showIfEmpty) {}