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
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-01-20 23:22:22 +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-05-15 17:10:26 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_CLIENT_MSGS_H
|
|
|
|
#define BOINC_CLIENT_MSGS_H
|
2004-04-08 08:15:23 +00:00
|
|
|
|
2008-04-06 03:15:36 +00:00
|
|
|
#include <algorithm>
|
2004-10-01 01:23:14 +00:00
|
|
|
#include <deque>
|
2004-06-17 05:08:31 +00:00
|
|
|
#include <string>
|
2008-04-06 03:15:36 +00:00
|
|
|
#include <string.h>
|
2004-04-01 23:19:13 +00:00
|
|
|
|
2017-05-11 08:53:50 +00:00
|
|
|
#include "client_types.h"
|
2010-04-19 18:35:10 +00:00
|
|
|
#include "common_defs.h"
|
2006-06-22 19:40:30 +00:00
|
|
|
#include "log_flags.h"
|
2004-06-16 23:16:08 +00:00
|
|
|
|
2010-04-01 05:54:29 +00:00
|
|
|
// stores a message in memory, where it can be retrieved via RPC
|
2008-10-04 23:44:24 +00:00
|
|
|
|
2004-04-01 23:19:13 +00:00
|
|
|
struct MESSAGE_DESC {
|
2005-01-28 19:01:08 +00:00
|
|
|
char project_name[256];
|
2004-04-01 23:19:13 +00:00
|
|
|
int priority;
|
|
|
|
int timestamp;
|
2004-06-17 04:49:34 +00:00
|
|
|
int seqno;
|
2004-06-30 18:17:21 +00:00
|
|
|
std::string message;
|
2004-04-01 23:19:13 +00:00
|
|
|
};
|
|
|
|
|
2009-12-23 19:52:34 +00:00
|
|
|
#define MAX_SAVED_MESSAGES 2000
|
|
|
|
|
|
|
|
// a cache of MAX_SAVED_MESSAGES most recent messages,
|
|
|
|
// stored in newest-first order
|
|
|
|
//
|
|
|
|
struct MESSAGE_DESCS {
|
|
|
|
std::deque<MESSAGE_DESC*> msgs;
|
2011-04-24 19:56:28 +00:00
|
|
|
void insert(PROJ_AM *p, int priority, int now, char* msg);
|
2010-07-14 21:23:17 +00:00
|
|
|
void write(int seqno, class MIOFILE&, bool translatable);
|
2009-12-23 19:52:34 +00:00
|
|
|
int highest_seqno();
|
2010-05-11 20:18:57 +00:00
|
|
|
void cleanup();
|
2009-12-23 19:52:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern MESSAGE_DESCS message_descs;
|
2006-06-22 20:16:02 +00:00
|
|
|
|
|
|
|
// the __attribute((format...)) tags are GCC extensions that let the compiler
|
|
|
|
// do like-checking on printf-like arguments
|
|
|
|
//
|
|
|
|
#if !defined(__GNUC__) && !defined(__attribute__)
|
|
|
|
#define __attribute__(x) /*nothing*/
|
|
|
|
#endif
|
|
|
|
|
2010-04-01 05:54:29 +00:00
|
|
|
// Show a message, preceded by timestamp and project name
|
2008-10-04 23:44:24 +00:00
|
|
|
|
2011-04-24 19:56:28 +00:00
|
|
|
extern void msg_printf(PROJ_AM *p, int priority, const char *fmt, ...)
|
2010-07-21 19:04:46 +00:00
|
|
|
__attribute__ ((format (printf, 3, 4)))
|
|
|
|
;
|
2010-10-18 20:09:51 +00:00
|
|
|
|
|
|
|
// Show a MSG_USER_ALERT message (i.e. will be shown as a notice)
|
|
|
|
// Additional info:
|
|
|
|
// is_html: true if message body contains HTML tags
|
|
|
|
// link: URL for "more..." link
|
|
|
|
//
|
2011-04-24 19:56:28 +00:00
|
|
|
extern void msg_printf_notice(PROJ_AM *p, bool is_html, const char* link, const char *fmt, ...)
|
2010-07-21 19:04:46 +00:00
|
|
|
__attribute__ ((format (printf, 4, 5)))
|
|
|
|
;
|
2003-07-03 05:01:29 +00:00
|
|
|
|
2013-11-05 17:19:27 +00:00
|
|
|
#define _(x) "_(\"" x "\")"
|
2010-06-08 22:29:53 +00:00
|
|
|
|
2013-05-16 19:40:43 +00:00
|
|
|
extern std::string app_list_string(PROJECT*);
|
|
|
|
|
2003-07-02 02:02:18 +00:00
|
|
|
#endif
|