2003-06-11 22:42:49 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
// compliance with the License. You may obtain a copy of the License at
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// Software distributed under the License is distributed on an "AS IS"
|
|
|
|
// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
// License for the specific language governing rights and limitations
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-02 20:57:59 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-06-11 22:42:49 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2004-03-05 04:37:53 +00:00
|
|
|
#ifdef _WIN32
|
2004-06-16 23:16:08 +00:00
|
|
|
#include "boinc_win.h"
|
2004-03-05 04:37:53 +00:00
|
|
|
#endif
|
2004-04-08 08:15:23 +00:00
|
|
|
#ifndef _WIN32
|
2004-07-13 13:54:09 +00:00
|
|
|
#include <cstdarg>
|
2004-06-17 05:08:31 +00:00
|
|
|
#include <list>
|
2004-04-08 08:15:23 +00:00
|
|
|
#endif
|
2004-03-05 04:37:53 +00:00
|
|
|
|
2003-06-11 22:42:49 +00:00
|
|
|
#include "log_flags.h"
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "client_msgs.h"
|
2003-06-11 22:42:49 +00:00
|
|
|
|
2004-06-30 22:16:26 +00:00
|
|
|
using std::list;
|
|
|
|
|
2004-06-17 04:49:34 +00:00
|
|
|
#define MAX_SAVED_MESSAGES 1000
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
CLIENT_MSG_LOG log_messages;
|
2003-06-11 22:42:49 +00:00
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
const char* CLIENT_MSG_LOG::v_format_kind(int kind) const {
|
2003-06-11 22:42:49 +00:00
|
|
|
switch(kind) {
|
|
|
|
case DEBUG_STATE: return "DEBUG_STATE ";
|
|
|
|
case DEBUG_TASK: return "DEBUG_TASK ";
|
|
|
|
case DEBUG_FILE_XFER: return "DEBUG_FILE_XFER ";
|
|
|
|
case DEBUG_SCHED_OP: return "DEBUG_SCHED_OP ";
|
|
|
|
case DEBUG_HTTP: return "DEBUG_HTTP ";
|
2004-03-27 00:45:27 +00:00
|
|
|
case DEBUG_PROXY: return "DEBUG_PROXY ";
|
2003-06-11 22:42:49 +00:00
|
|
|
case DEBUG_TIME: return "DEBUG_TIME ";
|
|
|
|
case DEBUG_NET_XFER: return "DEBUG_NET_XFER ";
|
|
|
|
case DEBUG_MEASUREMENT: return "DEBUG_MEASUREMENT";
|
|
|
|
case DEBUG_POLL: return "DEBUG_POLL ";
|
2004-06-11 20:52:27 +00:00
|
|
|
case DEBUG_GUIRPC: return "DEBUG_GUIRPC ";
|
2003-06-11 22:42:49 +00:00
|
|
|
default: return "*** internal error: invalid MessageKind ***";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
bool CLIENT_MSG_LOG::v_message_wanted(int kind) const {
|
2003-06-11 22:42:49 +00:00
|
|
|
switch (kind) {
|
|
|
|
case DEBUG_STATE: return log_flags.state_debug;
|
|
|
|
case DEBUG_TASK: return log_flags.task_debug;
|
|
|
|
case DEBUG_FILE_XFER: return log_flags.file_xfer_debug;
|
|
|
|
case DEBUG_SCHED_OP: return log_flags.sched_op_debug;
|
|
|
|
case DEBUG_HTTP: return log_flags.http_debug;
|
2004-03-27 00:45:27 +00:00
|
|
|
case DEBUG_PROXY: return log_flags.proxy_debug;
|
2003-06-11 22:42:49 +00:00
|
|
|
case DEBUG_TIME: return log_flags.time_debug;
|
|
|
|
case DEBUG_NET_XFER: return log_flags.net_xfer_debug;
|
|
|
|
case DEBUG_MEASUREMENT: return log_flags.measurement_debug;
|
|
|
|
case DEBUG_POLL: return log_flags.poll_debug;
|
2004-06-11 20:52:27 +00:00
|
|
|
case DEBUG_GUIRPC: return log_flags.guirpc_debug;
|
2003-06-11 22:42:49 +00:00
|
|
|
default: return false;
|
|
|
|
}
|
|
|
|
}
|
2004-04-08 08:15:23 +00:00
|
|
|
|
2004-06-17 04:49:34 +00:00
|
|
|
list<MESSAGE_DESC*> message_descs;
|
2004-04-08 08:15:23 +00:00
|
|
|
|
|
|
|
// Takes a printf style formatted string, inserts the proper values,
|
|
|
|
// and passes it to show_message
|
|
|
|
// TODO: add translation functionality
|
|
|
|
//
|
|
|
|
void msg_printf(PROJECT *p, int priority, char *fmt, ...) {
|
2004-08-12 12:44:55 +00:00
|
|
|
char buf[8192]; // output can be much longer than format
|
2004-04-08 08:15:23 +00:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
if (fmt == NULL) return;
|
|
|
|
|
|
|
|
// Since Windows doesn't support vsnprintf, we have to do a
|
|
|
|
// workaround to prevent buffer overruns
|
|
|
|
//
|
|
|
|
if (strlen(fmt) > 512) fmt[511] = '\0';
|
|
|
|
va_start(ap, fmt); // Parses string for variables
|
|
|
|
vsprintf(buf, fmt, ap); // And convert symbols To actual numbers
|
|
|
|
va_end(ap); // Results are stored in text
|
|
|
|
|
|
|
|
show_message(p, buf, priority);
|
|
|
|
}
|
2004-06-17 04:49:34 +00:00
|
|
|
|
|
|
|
// stash message in memory
|
|
|
|
//
|
|
|
|
void record_message(PROJECT* p, int priority, int now, char* message) {
|
|
|
|
MESSAGE_DESC* mdp = new MESSAGE_DESC;
|
|
|
|
static int seqno = 1;
|
|
|
|
mdp->project = p;
|
|
|
|
mdp->priority = priority;
|
|
|
|
mdp->timestamp = now;
|
|
|
|
mdp->seqno = seqno++;
|
|
|
|
mdp->message = message;
|
|
|
|
while (message_descs.size() > MAX_SAVED_MESSAGES) {
|
|
|
|
delete message_descs.back();
|
|
|
|
message_descs.pop_back();
|
|
|
|
}
|
|
|
|
message_descs.push_front(mdp);
|
2004-06-17 05:08:31 +00:00
|
|
|
}
|