2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-03-17 01:26:44 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
2004-03-17 01:26:44 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software 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.
|
2004-03-17 01:26:44 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
2007-10-09 11:35:47 +00:00
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2006-10-11 16:32:59 +00:00
|
|
|
// trickle_handler - framework for trickle-up message handler
|
2004-03-17 01:26:44 +00:00
|
|
|
//
|
2006-07-17 16:38:53 +00:00
|
|
|
// -variety variety
|
2004-03-17 01:26:44 +00:00
|
|
|
// [-d debug_level]
|
|
|
|
// [-one_pass] // make one pass through table, then exit
|
|
|
|
//
|
|
|
|
// This program must be linked with an app-specific function:
|
|
|
|
//
|
2006-07-17 16:38:53 +00:00
|
|
|
// int handle_trickle(MSG_FROM_HOST&)
|
2004-03-17 01:26:44 +00:00
|
|
|
// handle a trickle message
|
|
|
|
//
|
|
|
|
// return nonzero on error
|
|
|
|
|
|
|
|
using namespace std;
|
2005-11-21 18:34:44 +00:00
|
|
|
#include "config.h"
|
2004-03-17 01:26:44 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "boinc_db.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "sched_config.h"
|
|
|
|
#include "sched_util.h"
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "sched_msgs.h"
|
2004-03-17 01:26:44 +00:00
|
|
|
|
|
|
|
SCHED_CONFIG config;
|
2004-07-06 04:10:51 +00:00
|
|
|
char variety[256];
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2004-06-22 22:56:50 +00:00
|
|
|
extern int handle_trickle(MSG_FROM_HOST&);
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2006-07-17 16:38:53 +00:00
|
|
|
// The following is an example;
|
|
|
|
// replace it with your own function
|
|
|
|
//
|
2004-06-22 22:56:50 +00:00
|
|
|
int handle_trickle(MSG_FROM_HOST& mfh) {
|
2004-05-12 21:21:09 +00:00
|
|
|
int retval;
|
|
|
|
|
|
|
|
printf(
|
2004-06-22 22:56:50 +00:00
|
|
|
"got trickle-up \n%s\n\n",
|
|
|
|
mfh.xml
|
2004-05-12 21:21:09 +00:00
|
|
|
);
|
2004-06-22 22:56:50 +00:00
|
|
|
DB_MSG_TO_HOST mth;
|
|
|
|
mth.clear();
|
|
|
|
mth.create_time = time(0);
|
|
|
|
mth.hostid = mfh.hostid;
|
2004-07-06 04:10:51 +00:00
|
|
|
strcpy(mth.variety, mfh.variety);
|
2004-06-22 22:56:50 +00:00
|
|
|
mth.handled = false;
|
2004-07-06 04:10:51 +00:00
|
|
|
sprintf(mth.xml,
|
|
|
|
"<trickle_down>\n"
|
|
|
|
"%s"
|
|
|
|
"</trickle_down>\n",
|
|
|
|
mfh.xml
|
|
|
|
);
|
2004-06-22 22:56:50 +00:00
|
|
|
retval = mth.insert();
|
2004-05-12 21:21:09 +00:00
|
|
|
if (retval) {
|
|
|
|
printf("insert failed %d\n", retval);
|
|
|
|
}
|
2004-03-17 01:26:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// make one pass through trickle_ups with handled == 0
|
|
|
|
// return true if there were any
|
|
|
|
//
|
|
|
|
bool do_trickle_scan(APP& app) {
|
2004-06-22 22:56:50 +00:00
|
|
|
DB_MSG_FROM_HOST mfh;
|
2004-03-17 01:26:44 +00:00
|
|
|
char buf[256];
|
|
|
|
bool found=false;
|
2004-05-12 21:21:09 +00:00
|
|
|
int retval;
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2004-07-06 04:10:51 +00:00
|
|
|
sprintf(buf, "where variety='%s' and handled=0", variety);
|
2004-06-22 22:56:50 +00:00
|
|
|
while (!mfh.enumerate(buf)) {
|
|
|
|
retval = handle_trickle(mfh);
|
2004-05-12 21:21:09 +00:00
|
|
|
if (!retval) {
|
2004-06-22 22:56:50 +00:00
|
|
|
mfh.handled = true;
|
|
|
|
mfh.update();
|
2004-05-12 21:21:09 +00:00
|
|
|
}
|
2004-03-17 01:26:44 +00:00
|
|
|
found = true;
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main_loop(bool one_pass) {
|
|
|
|
int retval;
|
|
|
|
DB_APP app;
|
|
|
|
bool did_something;
|
|
|
|
char buf[256];
|
|
|
|
|
|
|
|
retval = boinc_db.open(config.db_name, config.db_host, config.db_user, config.db_passwd);
|
|
|
|
if (retval) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "boinc_db.open failed: %d\n", retval);
|
2004-03-17 01:26:44 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
2004-05-03 19:30:01 +00:00
|
|
|
check_stop_daemons();
|
2004-03-17 01:26:44 +00:00
|
|
|
did_something = do_trickle_scan(app);
|
|
|
|
if (one_pass) break;
|
|
|
|
if (!did_something) {
|
|
|
|
sleep(5);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
|
|
|
int i, retval;
|
2007-04-18 20:49:58 +00:00
|
|
|
bool one_pass = false;
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2004-05-03 19:30:01 +00:00
|
|
|
check_stop_daemons();
|
2004-03-17 01:26:44 +00:00
|
|
|
|
|
|
|
for (i=1; i<argc; i++) {
|
2007-04-18 20:49:58 +00:00
|
|
|
if (!strcmp(argv[i], "-one_pass")) {
|
2004-03-17 01:26:44 +00:00
|
|
|
one_pass = true;
|
2004-07-06 04:10:51 +00:00
|
|
|
} else if (!strcmp(argv[i], "-variety")) {
|
|
|
|
strcpy(variety, argv[++i]);
|
2004-03-17 01:26:44 +00:00
|
|
|
} else if (!strcmp(argv[i], "-d")) {
|
|
|
|
log_messages.set_debug_level(atoi(argv[++i]));
|
|
|
|
} else {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "unrecognized arg: %s\n", argv[i]);
|
2004-03-17 01:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = config.parse_file("..");
|
|
|
|
if (retval) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::CRITICAL,
|
2007-05-11 16:30:13 +00:00
|
|
|
"Can't parse ../config.xml: %s\n", boincerror(retval)
|
2004-03-17 01:26:44 +00:00
|
|
|
);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::NORMAL, "Starting trickle handler\n");
|
2004-03-17 01:26:44 +00:00
|
|
|
|
|
|
|
install_stop_signal_handler();
|
|
|
|
|
|
|
|
main_loop(one_pass);
|
|
|
|
}
|
2004-12-08 00:40:19 +00:00
|
|
|
|
2005-01-02 18:29:53 +00:00
|
|
|
const char *BOINC_RCSID_560388f67e = "$Id$";
|