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
|
2003-07-03 00:48:43 +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.
|
2003-07-03 00:48:43 +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.
|
2002-04-30 22:22:54 +00:00
|
|
|
//
|
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/>.
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2017-04-08 06:54:49 +00:00
|
|
|
#ifndef BOINC_SCHEDULER_OP_H
|
|
|
|
#define BOINC_SCHEDULER_OP_H
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2005-01-31 22:19:03 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2002-06-01 20:26:21 +00:00
|
|
|
#include "client_types.h"
|
2011-02-24 22:18:14 +00:00
|
|
|
//#include "auto_update.h"
|
2005-08-09 22:01:28 +00:00
|
|
|
#include "http_curl.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
#include "prefs.h"
|
|
|
|
|
2005-07-05 08:58:49 +00:00
|
|
|
#define SCHEDULER_OP_STATE_IDLE 0
|
|
|
|
// invariant: in this state, our HTTP_OP is not in the HTTP_OP_SET
|
|
|
|
#define SCHEDULER_OP_STATE_GET_MASTER 1
|
|
|
|
#define SCHEDULER_OP_STATE_RPC 2
|
|
|
|
|
2005-12-06 03:18:02 +00:00
|
|
|
// defaults related to scheduler RPC policy
|
|
|
|
// See client_state.h for definitions
|
2002-07-15 05:34:32 +00:00
|
|
|
|
2002-11-27 21:31:17 +00:00
|
|
|
#define MASTER_FETCH_PERIOD 10
|
2002-07-15 05:34:32 +00:00
|
|
|
// fetch and parse master URL if nrpc_failures is a multiple of this
|
2002-11-27 21:31:17 +00:00
|
|
|
#define RETRY_CAP 10
|
2005-12-06 03:18:02 +00:00
|
|
|
// cap on nrpc_failures
|
2002-11-18 23:15:32 +00:00
|
|
|
#define MASTER_FETCH_RETRY_CAP 3
|
2023-05-05 18:05:20 +00:00
|
|
|
// after this many master-fetch failures,
|
2005-12-06 03:18:02 +00:00
|
|
|
// move into a state in which we retry master fetch
|
2002-12-19 22:43:38 +00:00
|
|
|
// at the frequency below
|
2006-07-29 18:34:56 +00:00
|
|
|
#define MASTER_FETCH_INTERVAL (86400) // 1 day
|
2005-12-06 07:23:12 +00:00
|
|
|
// See above
|
2002-11-27 21:31:17 +00:00
|
|
|
|
2005-07-31 23:33:12 +00:00
|
|
|
// constants used to bound RPC backoff
|
2002-12-20 02:12:27 +00:00
|
|
|
#define SCHED_RETRY_DELAY_MIN 60 // 1 minute
|
|
|
|
#define SCHED_RETRY_DELAY_MAX (60*60*4) // 4 hours
|
|
|
|
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2010-04-01 05:54:29 +00:00
|
|
|
// SCHEDULER_OP encapsulates the mechanism for
|
|
|
|
// 1) fetching master files
|
|
|
|
// 2) communicating with scheduling servers
|
|
|
|
// Only one such operation can be in progress at once.
|
2008-10-04 23:44:24 +00:00
|
|
|
|
2005-06-01 21:51:32 +00:00
|
|
|
class SCHEDULER_OP {
|
|
|
|
private:
|
2002-06-21 06:52:47 +00:00
|
|
|
int scheduler_op_retval;
|
|
|
|
HTTP_OP http_op;
|
|
|
|
HTTP_OP_SET* http_ops;
|
|
|
|
char scheduler_url[256];
|
2008-10-04 23:44:24 +00:00
|
|
|
int url_index;
|
2010-04-01 05:54:29 +00:00
|
|
|
// index within project's URL list
|
2005-06-01 21:51:32 +00:00
|
|
|
public:
|
2008-10-04 23:44:24 +00:00
|
|
|
PROJECT* cur_proj;
|
2010-04-01 05:54:29 +00:00
|
|
|
// project we're currently contacting
|
2005-06-01 21:51:32 +00:00
|
|
|
int state;
|
2006-08-24 20:33:46 +00:00
|
|
|
int reason;
|
2008-10-04 23:44:24 +00:00
|
|
|
double url_random;
|
2010-04-01 05:54:29 +00:00
|
|
|
// used to randomize order
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2005-06-01 21:51:32 +00:00
|
|
|
public:
|
2002-06-21 06:52:47 +00:00
|
|
|
SCHEDULER_OP(HTTP_OP_SET*);
|
2002-08-22 22:28:51 +00:00
|
|
|
bool poll();
|
2006-08-24 20:33:46 +00:00
|
|
|
int init_op_project(PROJECT*, int);
|
2005-06-01 21:51:32 +00:00
|
|
|
int init_master_fetch(PROJECT*);
|
2003-05-13 18:55:07 +00:00
|
|
|
bool check_master_fetch_start();
|
2013-03-22 03:44:53 +00:00
|
|
|
void project_rpc_backoff(PROJECT* p, const char *error_msg);
|
2005-06-01 21:51:32 +00:00
|
|
|
void abort(PROJECT*);
|
2010-04-01 05:54:29 +00:00
|
|
|
// if we're doing an op to this project, abort it
|
2005-06-01 21:51:32 +00:00
|
|
|
private:
|
|
|
|
bool update_urls(PROJECT*, std::vector<std::string> &urls);
|
|
|
|
int start_op(PROJECT*);
|
|
|
|
int start_rpc(PROJECT*);
|
2009-02-14 00:05:02 +00:00
|
|
|
void rpc_failed(const char*);
|
2005-06-01 21:51:32 +00:00
|
|
|
int parse_master_file(PROJECT*, std::vector<std::string>&);
|
2002-06-21 06:52:47 +00:00
|
|
|
};
|
|
|
|
|
2005-01-31 22:19:03 +00:00
|
|
|
struct USER_MESSAGE {
|
|
|
|
std::string message;
|
|
|
|
std::string priority;
|
|
|
|
USER_MESSAGE(char*, char*);
|
|
|
|
};
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
struct SCHEDULER_REPLY {
|
|
|
|
int hostid;
|
2004-10-25 20:16:30 +00:00
|
|
|
double request_delay;
|
2006-05-23 06:46:19 +00:00
|
|
|
double next_rpc_delay;
|
2005-01-31 22:19:03 +00:00
|
|
|
std::vector<USER_MESSAGE> messages;
|
2003-11-28 19:19:11 +00:00
|
|
|
char* global_prefs_xml;
|
2010-04-01 05:54:29 +00:00
|
|
|
// not including <global_preferences> tags;
|
|
|
|
// may include <venue> elements
|
2003-11-28 19:19:11 +00:00
|
|
|
char* project_prefs_xml;
|
2010-04-01 05:54:29 +00:00
|
|
|
// not including <project_preferences> tags
|
|
|
|
// may include <venue> elements
|
2006-03-07 21:58:14 +00:00
|
|
|
char master_url[256];
|
2003-03-06 00:42:18 +00:00
|
|
|
char host_venue[256];
|
2002-10-22 21:44:16 +00:00
|
|
|
unsigned int user_create_time;
|
2004-06-30 18:17:21 +00:00
|
|
|
std::vector<APP> apps;
|
|
|
|
std::vector<FILE_INFO> file_infos;
|
2005-03-09 23:28:37 +00:00
|
|
|
std::vector<std::string> file_deletes;
|
2004-06-30 18:17:21 +00:00
|
|
|
std::vector<APP_VERSION> app_versions;
|
|
|
|
std::vector<WORKUNIT> workunits;
|
|
|
|
std::vector<RESULT> results;
|
|
|
|
std::vector<RESULT> result_acks;
|
2006-05-25 20:10:08 +00:00
|
|
|
std::vector<RESULT> result_abort;
|
2007-03-22 02:38:45 +00:00
|
|
|
std::vector<RESULT> result_abort_if_not_started;
|
2012-04-25 05:51:26 +00:00
|
|
|
std::vector<FILE_REF> project_files;
|
2002-07-07 20:39:24 +00:00
|
|
|
char* code_sign_key;
|
|
|
|
char* code_sign_key_signature;
|
2004-07-06 04:01:15 +00:00
|
|
|
bool message_ack;
|
2004-06-22 22:56:50 +00:00
|
|
|
bool project_is_down;
|
2023-05-05 18:05:20 +00:00
|
|
|
bool send_file_list;
|
|
|
|
bool send_full_workload;
|
|
|
|
bool dont_use_dcf;
|
2007-04-13 22:55:18 +00:00
|
|
|
int send_time_stats_log;
|
|
|
|
int send_job_log;
|
2006-06-23 20:05:12 +00:00
|
|
|
int scheduler_version;
|
2011-02-24 22:18:14 +00:00
|
|
|
#ifdef ENABLE_AUTO_UPDATE
|
2006-12-11 23:42:54 +00:00
|
|
|
AUTO_UPDATE auto_update;
|
2011-02-24 22:18:14 +00:00
|
|
|
#endif
|
2009-12-21 17:49:28 +00:00
|
|
|
std::vector<RSS_FEED> sr_feeds;
|
2011-09-20 18:49:38 +00:00
|
|
|
std::vector<std::string> trickle_up_urls;
|
2009-12-23 00:58:27 +00:00
|
|
|
bool got_rss_feeds;
|
|
|
|
// whether scheduler reply included <rss_feeds>
|
2018-04-07 22:42:19 +00:00
|
|
|
bool too_recent;
|
|
|
|
// whether reply included "too recent" message
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2010-10-20 23:45:49 +00:00
|
|
|
void clear();
|
2002-07-07 20:39:24 +00:00
|
|
|
SCHEDULER_REPLY();
|
|
|
|
~SCHEDULER_REPLY();
|
2003-07-03 05:01:29 +00:00
|
|
|
int parse(FILE*, PROJECT*);
|
2011-03-25 03:44:09 +00:00
|
|
|
void handle_backoff(const char*, double);
|
|
|
|
void handle_rsc_backoff(FILE*);
|
2002-04-30 22:22:54 +00:00
|
|
|
};
|
2002-06-21 06:52:47 +00:00
|
|
|
|
|
|
|
#endif
|