2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2003-03-08 00:09:40 +00:00
|
|
|
// 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
|
2003-07-01 20:37:09 +00:00
|
|
|
// http://boinc.berkeley.edu/license_1.0.txt
|
2003-07-09 23:54:45 +00:00
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// 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
|
2003-07-09 23:54:45 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
2003-07-01 20:37:09 +00:00
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-07-09 23:54:45 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2003-03-08 00:09:40 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-03-08 00:18:33 +00:00
|
|
|
using namespace std;
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
#include <stdlib.h>
|
2003-06-20 01:31:03 +00:00
|
|
|
#include <csignal>
|
2003-06-20 21:33:49 +00:00
|
|
|
#include <unistd.h>
|
2003-03-08 00:09:40 +00:00
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "sched_msgs.h"
|
2003-03-08 00:09:40 +00:00
|
|
|
#include "sched_util.h"
|
|
|
|
|
2003-12-10 00:54:17 +00:00
|
|
|
const char* STOP_TRIGGER_FILENAME = "../stop_servers";
|
2003-12-31 23:09:21 +00:00
|
|
|
// NOTE: this be the same name as used by the "start" script
|
|
|
|
const int STOP_SIGNAL = SIGHUP;
|
|
|
|
// NOTE: this be the same signal as used by the "start" script
|
2003-07-09 23:54:45 +00:00
|
|
|
|
2003-07-13 01:10:24 +00:00
|
|
|
void write_pid_file(const char* filename) {
|
2003-06-20 01:31:03 +00:00
|
|
|
FILE* fpid = fopen(filename, "w");
|
|
|
|
if (!fpid) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::NORMAL, "Couldn't write pid\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
return;
|
|
|
|
}
|
2003-08-12 20:58:24 +00:00
|
|
|
fprintf(fpid, "%d\n", (int)getpid());
|
2003-06-20 01:31:03 +00:00
|
|
|
fclose(fpid);
|
|
|
|
}
|
|
|
|
|
2003-10-14 23:40:50 +00:00
|
|
|
// caught_sig_int will be set to true if SIGINT is caught.
|
2003-12-31 23:09:21 +00:00
|
|
|
bool caught_stop_signal = false;
|
|
|
|
static void stop_signal_handler(int) {
|
|
|
|
fprintf(stderr, "GOT STOP SIGNAL\n");
|
|
|
|
caught_stop_signal = true;
|
2003-06-20 01:31:03 +00:00
|
|
|
}
|
|
|
|
|
2003-12-31 23:09:21 +00:00
|
|
|
void install_stop_signal_handler() {
|
|
|
|
signal(STOP_SIGNAL, stop_signal_handler);
|
|
|
|
// handler is now default again so hitting ^C again will kill the program.
|
2003-06-20 01:31:03 +00:00
|
|
|
}
|
|
|
|
|
2003-03-08 00:09:40 +00:00
|
|
|
void check_stop_trigger() {
|
2003-12-31 23:09:21 +00:00
|
|
|
if (caught_stop_signal) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::CRITICAL, "Quitting due to SIGINT\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2003-03-08 00:09:40 +00:00
|
|
|
FILE* f = fopen(STOP_TRIGGER_FILENAME, "r");
|
2003-06-20 01:31:03 +00:00
|
|
|
if (f) {
|
2004-04-08 08:15:23 +00:00
|
|
|
log_messages.printf(SCHED_MSG_LOG::NORMAL, "Quitting due to stop trigger\n");
|
2003-06-20 01:31:03 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
2003-03-08 00:09:40 +00:00
|
|
|
}
|
|
|
|
|
2003-12-10 00:54:17 +00:00
|
|
|
bool is_stopfile_present() {
|
|
|
|
FILE* f = fopen(STOP_TRIGGER_FILENAME, "r");
|
|
|
|
if (f) {
|
|
|
|
fclose(f);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|