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/>.
|
2005-01-20 23:22:22 +00:00
|
|
|
|
2008-08-04 18:48:26 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2008-02-22 22:21:00 +00:00
|
|
|
extern void send_work(SCHEDULER_REQUEST&, SCHEDULER_REPLY&);
|
2004-09-10 00:41:48 +00:00
|
|
|
|
|
|
|
extern int add_result_to_reply(
|
2005-02-07 06:24:14 +00:00
|
|
|
DB_RESULT& result, WORKUNIT& wu, SCHEDULER_REQUEST&, SCHEDULER_REPLY&,
|
2008-03-27 18:25:29 +00:00
|
|
|
BEST_APP_VERSION* bavp
|
2004-09-10 00:41:48 +00:00
|
|
|
);
|
|
|
|
|
2008-08-04 18:48:26 +00:00
|
|
|
inline bool anonymous(PLATFORM* platform) {
|
|
|
|
return (!strcmp(platform->name, "anonymous"));
|
|
|
|
}
|
2004-09-10 00:41:48 +00:00
|
|
|
|
2008-03-27 18:25:29 +00:00
|
|
|
extern BEST_APP_VERSION* get_app_version(
|
|
|
|
SCHEDULER_REQUEST&, SCHEDULER_REPLY&, WORKUNIT&
|
2004-09-10 00:41:48 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
extern bool app_core_compatible(WORK_REQ& wreq, APP_VERSION& av);
|
2005-02-02 22:58:46 +00:00
|
|
|
|
2007-05-30 17:25:51 +00:00
|
|
|
// values returned by wu_is_infeasible()
|
2005-04-18 17:54:03 +00:00
|
|
|
//
|
2005-02-08 19:54:10 +00:00
|
|
|
#define INFEASIBLE_MEM 1
|
|
|
|
#define INFEASIBLE_DISK 2
|
2007-05-31 18:14:45 +00:00
|
|
|
#define INFEASIBLE_CPU 3
|
|
|
|
#define INFEASIBLE_WORK_BUF 4
|
|
|
|
#define INFEASIBLE_APP_SETTING 5
|
|
|
|
#define INFEASIBLE_WORKLOAD 6
|
|
|
|
#define INFEASIBLE_DUP 7
|
|
|
|
#define INFEASIBLE_HR 8
|
2008-03-07 21:13:01 +00:00
|
|
|
#define INFEASIBLE_BANDWIDTH 9
|
2005-04-18 17:54:03 +00:00
|
|
|
|
2008-04-30 20:31:33 +00:00
|
|
|
extern int wu_is_infeasible_fast(
|
2007-10-04 21:55:37 +00:00
|
|
|
WORKUNIT&, SCHEDULER_REQUEST&, SCHEDULER_REPLY&, APP&
|
2007-05-31 18:14:45 +00:00
|
|
|
);
|
2006-10-22 00:42:44 +00:00
|
|
|
|
2005-04-18 17:54:03 +00:00
|
|
|
extern double max_allowable_disk(SCHEDULER_REQUEST&, SCHEDULER_REPLY&);
|
2005-08-04 03:50:04 +00:00
|
|
|
|
|
|
|
extern bool wu_already_in_reply(WORKUNIT& wu, SCHEDULER_REPLY& reply);
|
|
|
|
|
|
|
|
extern double estimate_cpu_duration(WORKUNIT& wu, SCHEDULER_REPLY& reply);
|
|
|
|
|
|
|
|
extern int update_wu_transition_time(WORKUNIT wu, time_t x);
|
2005-08-04 03:58:00 +00:00
|
|
|
|
|
|
|
extern void lock_sema();
|
|
|
|
extern void unlock_sema();
|
2007-11-30 23:02:55 +00:00
|
|
|
extern const char* infeasible_string(int);
|
2008-04-30 20:31:33 +00:00
|
|
|
extern bool app_not_selected(WORKUNIT&, SCHEDULER_REQUEST&, SCHEDULER_REPLY&);
|
2008-10-21 23:16:07 +00:00
|
|
|
extern bool work_needed(SCHEDULER_REQUEST&, SCHEDULER_REPLY&, bool);
|