2020-05-13 23:47:14 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* flog.cpp - Interface of the FINAL CUT logger *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* This file is part of the FINAL CUT widget toolkit *
|
2020-05-13 23:47:14 +02:00
|
|
|
* *
|
|
|
|
* Copyright 2020 Markus Gans *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* FINAL CUT is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU Lesser General Public License as *
|
|
|
|
* published by the Free Software Foundation; either version 3 of *
|
2020-05-13 23:47:14 +02:00
|
|
|
* the License, or (at your option) any later version. *
|
|
|
|
* *
|
2020-07-08 21:32:47 +02:00
|
|
|
* FINAL CUT is distributed in the hope that it will be useful, but *
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of *
|
2020-05-13 23:47:14 +02:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU Lesser General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU Lesser General Public *
|
|
|
|
* License along with this program. If not, see *
|
|
|
|
* <http://www.gnu.org/licenses/>. *
|
|
|
|
***********************************************************************/
|
|
|
|
|
|
|
|
#include "final/flog.h"
|
|
|
|
|
|
|
|
namespace finalcut
|
|
|
|
{
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
// class FLog
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
|
|
|
|
// constructors and destructor
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FLog::~FLog() // destructor
|
|
|
|
{
|
2020-05-14 01:22:45 +02:00
|
|
|
FLog::sync();
|
2020-05-13 23:47:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// public methods of FLog
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
FLog& FLog::operator << (LogLevel l)
|
|
|
|
{
|
2020-08-23 00:32:41 +02:00
|
|
|
using std::placeholders::_1;
|
2020-05-13 23:47:14 +02:00
|
|
|
sync();
|
2020-10-11 09:14:52 +02:00
|
|
|
std::lock_guard<std::mutex> lock_guard(mut);
|
2020-05-13 23:47:14 +02:00
|
|
|
|
|
|
|
switch ( l )
|
|
|
|
{
|
2020-12-06 02:11:54 +01:00
|
|
|
case LogLevel::Info:
|
2020-05-13 23:47:14 +02:00
|
|
|
current_log = std::bind(&FLog::info, this, _1);
|
|
|
|
break;
|
|
|
|
|
2020-12-06 02:11:54 +01:00
|
|
|
case LogLevel::Warn:
|
2020-05-13 23:47:14 +02:00
|
|
|
current_log = std::bind(&FLog::warn, this, _1);
|
|
|
|
break;
|
|
|
|
|
2020-12-06 02:11:54 +01:00
|
|
|
case LogLevel::Error:
|
2020-05-13 23:47:14 +02:00
|
|
|
current_log = std::bind(&FLog::error, this, _1);
|
|
|
|
break;
|
|
|
|
|
2020-12-06 02:11:54 +01:00
|
|
|
case LogLevel::Debug:
|
2020-05-13 23:47:14 +02:00
|
|
|
current_log = std::bind(&FLog::debug, this, _1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// protected methods of FLog
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
int FLog::sync()
|
|
|
|
{
|
|
|
|
if ( ! str().empty() )
|
|
|
|
{
|
2020-10-11 09:14:52 +02:00
|
|
|
std::lock_guard<std::mutex> lock_guard(mut);
|
2020-05-13 23:47:14 +02:00
|
|
|
current_log (str());
|
|
|
|
str("");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace finalcut
|
|
|
|
|