// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2008 University of California // // 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. // // BOINC 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 Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . #include #include "config.h" #include "sched_msgs.h" SCHED_MSG_LOG log_messages; const char* SCHED_MSG_LOG::v_format_kind(int kind) const { switch(kind) { case MSG_CRITICAL: return "CRITICAL"; case MSG_NORMAL: return "normal "; case MSG_DEBUG: return "debug "; default: return "*** internal error: invalid MessageKind ***"; } } bool SCHED_MSG_LOG::v_message_wanted(int kind) const { return ( kind <= debug_level ); } void SCHED_MSG_LOG::set_indent_level(const int new_indent_level) { if (new_indent_level < 0) indent_level = 0; else if (new_indent_level > 39) indent_level = 39; else indent_level = new_indent_level; memset(spaces, ' ', sizeof(spaces)); spaces[indent_level] = 0; } #ifdef _USING_FCGI_ SCHED_MSG_LOG::~SCHED_MSG_LOG() { close(); } void SCHED_MSG_LOG::close() { if (output) { flush(); fclose(output); output = NULL; } } #ifndef _USING_FCGI_ void SCHED_MSG_LOG::redirect(FILE* f) { #else void SCHED_MSG_LOG::redirect(FCGI_FILE* f) { #endif close(); output = f; } void SCHED_MSG_LOG::flush() { if (output) { fflush(output->stdio_stream); } } #endif const char *BOINC_RCSID_b40ff9bb53 = "$Id$";