2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2019-01-12 21:43:48 +00:00
|
|
|
// Copyright (C) 2019 University of California
|
2003-06-11 22:42:49 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC 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 the License, or (at your option) any later version.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2003-06-11 22:42:49 +00:00
|
|
|
|
2008-02-05 21:26:43 +00:00
|
|
|
#include <string.h>
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "sched_msgs.h"
|
2003-06-11 22:42:49 +00:00
|
|
|
|
2017-06-15 05:31:10 +00:00
|
|
|
SCHED_MSG_LOG log_messages;
|
2003-06-11 22:42:49 +00:00
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
const char* SCHED_MSG_LOG::v_format_kind(int kind) const {
|
2003-06-11 22:42:49 +00:00
|
|
|
switch(kind) {
|
2009-01-15 20:23:20 +00:00
|
|
|
case MSG_CRITICAL: return "[CRITICAL]";
|
2015-10-22 08:04:00 +00:00
|
|
|
case MSG_WARNING: return "[warning]";
|
2009-01-15 20:23:20 +00:00
|
|
|
case MSG_NORMAL: return "";
|
|
|
|
case MSG_DEBUG: return "[debug]";
|
2003-06-11 22:42:49 +00:00
|
|
|
default: return "*** internal error: invalid MessageKind ***";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
bool SCHED_MSG_LOG::v_message_wanted(int kind) const {
|
2003-06-11 22:42:49 +00:00
|
|
|
return ( kind <= debug_level );
|
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2008-02-27 22:26:37 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
|
|
|
|
SCHED_MSG_LOG::~SCHED_MSG_LOG() {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
|
2008-02-05 21:26:43 +00:00
|
|
|
void SCHED_MSG_LOG::close() {
|
|
|
|
if (output) {
|
2011-01-07 20:23:22 +00:00
|
|
|
flush();
|
|
|
|
fclose(output);
|
|
|
|
output = NULL;
|
2008-02-05 21:26:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-13 23:06:02 +00:00
|
|
|
#ifndef _USING_FCGI_
|
2008-02-05 21:26:43 +00:00
|
|
|
void SCHED_MSG_LOG::redirect(FILE* f) {
|
2009-01-13 23:06:02 +00:00
|
|
|
#else
|
|
|
|
void SCHED_MSG_LOG::redirect(FCGI_FILE* f) {
|
|
|
|
#endif
|
2008-02-05 21:26:43 +00:00
|
|
|
close();
|
|
|
|
output = f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SCHED_MSG_LOG::flush() {
|
|
|
|
if (output) {
|
|
|
|
fflush(output->stdio_stream);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|