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-08-15 00:50:58 +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-08-15 00:50:58 +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-08-05 00:29:34 +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-08-05 00:29:34 +00:00
|
|
|
|
2003-05-08 22:53:52 +00:00
|
|
|
#ifndef _BOINC_API_
|
|
|
|
#define _BOINC_API_
|
2003-05-07 23:42:17 +00:00
|
|
|
|
2005-06-28 09:56:10 +00:00
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#endif
|
|
|
|
|
2009-11-16 13:13:42 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include "boinc_win.h"
|
|
|
|
#endif
|
|
|
|
|
2004-12-13 01:21:50 +00:00
|
|
|
// ANSI C API BEGINS HERE
|
2006-03-15 19:27:37 +00:00
|
|
|
// Do not put implementation stuff here
|
2004-12-04 00:56:22 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2011-03-14 17:28:52 +00:00
|
|
|
|
|
|
|
// parameters passed to the BOINC runtime system
|
|
|
|
//
|
2006-03-16 08:51:34 +00:00
|
|
|
typedef struct BOINC_OPTIONS {
|
2007-05-14 19:52:00 +00:00
|
|
|
// the following are booleans, implemented as ints for portability
|
2008-12-19 18:14:02 +00:00
|
|
|
int normal_thread_priority;
|
2011-03-14 17:28:52 +00:00
|
|
|
// run worker thread at normal thread priority on Win.
|
2008-12-19 18:14:02 +00:00
|
|
|
// (default is idle priority)
|
2006-01-06 23:38:49 +00:00
|
|
|
int main_program;
|
2004-08-03 09:50:24 +00:00
|
|
|
// this is the main program, so
|
|
|
|
// - lock a lock file in the slot directory
|
|
|
|
// - write finish file on successful boinc_finish()
|
2006-01-06 23:38:49 +00:00
|
|
|
int check_heartbeat;
|
2011-03-14 17:28:52 +00:00
|
|
|
// check for timeout of heartbeats from the client;
|
2004-08-03 09:50:24 +00:00
|
|
|
// action is determined by direct_process_action (see below)
|
2006-01-06 23:38:49 +00:00
|
|
|
int handle_trickle_ups;
|
2011-03-14 17:28:52 +00:00
|
|
|
// periodically check for trickle-up msgs from the app
|
|
|
|
// must set this to use boinc_send_trickle_up()
|
2006-01-06 23:38:49 +00:00
|
|
|
int handle_trickle_downs;
|
2004-08-03 09:50:24 +00:00
|
|
|
// this process is allowed to call boinc_receive_trickle_down()
|
2006-01-06 23:38:49 +00:00
|
|
|
int handle_process_control;
|
2011-03-14 17:28:52 +00:00
|
|
|
// whether runtime system should read suspend/resume/quit/abort
|
|
|
|
// msgs from client.
|
2004-08-03 09:50:24 +00:00
|
|
|
// action is determined by direct_process_action (see below)
|
2006-01-06 23:38:49 +00:00
|
|
|
int send_status_msgs;
|
2011-03-14 17:28:52 +00:00
|
|
|
// whether runtime system should send CPU time / fraction done msgs
|
2006-01-06 23:38:49 +00:00
|
|
|
int direct_process_action;
|
2004-08-03 09:50:24 +00:00
|
|
|
// if heartbeat fail, or get process control msg, take
|
|
|
|
// direction action (exit, suspend, resume).
|
|
|
|
// Otherwise just set flag in BOINC status
|
2011-04-14 22:25:38 +00:00
|
|
|
int multi_thread;
|
|
|
|
// set this if application creates threads in main process
|
|
|
|
int multi_process;
|
|
|
|
// set this if application creates subprocesses.
|
2006-03-16 08:51:34 +00:00
|
|
|
} BOINC_OPTIONS;
|
2004-08-03 09:50:24 +00:00
|
|
|
|
2006-03-16 08:51:34 +00:00
|
|
|
typedef struct BOINC_STATUS {
|
2006-01-06 23:38:49 +00:00
|
|
|
int no_heartbeat;
|
|
|
|
int suspended;
|
2011-06-07 05:16:12 +00:00
|
|
|
int suspend_request;
|
2006-01-06 23:38:49 +00:00
|
|
|
int quit_request;
|
|
|
|
int reread_init_data_file;
|
2006-02-03 20:48:48 +00:00
|
|
|
int abort_request;
|
2006-10-03 15:43:38 +00:00
|
|
|
double working_set_size;
|
|
|
|
double max_working_set_size;
|
2011-03-20 07:04:32 +00:00
|
|
|
int network_suspended;
|
2006-03-16 08:51:34 +00:00
|
|
|
} BOINC_STATUS;
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2011-06-07 05:16:12 +00:00
|
|
|
extern volatile BOINC_STATUS boinc_status;
|
|
|
|
|
2007-06-08 07:55:27 +00:00
|
|
|
typedef void (*FUNC_PTR)();
|
|
|
|
|
2006-06-09 02:33:00 +00:00
|
|
|
struct APP_INIT_DATA;
|
|
|
|
|
2004-12-11 01:01:19 +00:00
|
|
|
extern int boinc_init(void);
|
|
|
|
extern int boinc_finish(int status);
|
2009-12-13 05:16:40 +00:00
|
|
|
extern int boinc_temporary_exit(int delay);
|
2004-12-11 01:01:19 +00:00
|
|
|
extern int boinc_resolve_filename(const char*, char*, int len);
|
2006-06-09 12:40:27 +00:00
|
|
|
extern int boinc_get_init_data_p(struct APP_INIT_DATA*);
|
2004-12-11 01:01:19 +00:00
|
|
|
extern int boinc_parse_init_data_file(void);
|
|
|
|
extern int boinc_send_trickle_up(char* variety, char* text);
|
|
|
|
extern int boinc_checkpoint_completed(void);
|
|
|
|
extern int boinc_fraction_done(double);
|
|
|
|
extern int boinc_suspend_other_activities(void);
|
|
|
|
extern int boinc_resume_other_activities(void);
|
2011-09-02 20:47:05 +00:00
|
|
|
extern int boinc_report_app_status(
|
|
|
|
double cpu_time, double checkpoint_cpu_time, double _fraction_done
|
|
|
|
);
|
2004-12-22 15:02:03 +00:00
|
|
|
extern int boinc_time_to_checkpoint();
|
2005-08-12 21:24:07 +00:00
|
|
|
extern void boinc_begin_critical_section();
|
2007-03-04 20:52:31 +00:00
|
|
|
extern int boinc_try_critical_section();
|
2005-08-12 21:24:07 +00:00
|
|
|
extern void boinc_end_critical_section();
|
2005-08-17 21:05:26 +00:00
|
|
|
extern void boinc_need_network();
|
|
|
|
extern int boinc_network_poll();
|
|
|
|
extern void boinc_network_done();
|
2006-01-06 12:40:17 +00:00
|
|
|
extern int boinc_is_standalone(void);
|
2006-01-06 23:38:49 +00:00
|
|
|
extern void boinc_ops_per_cpu_sec(double fp, double integer);
|
|
|
|
extern void boinc_ops_cumulative(double fp, double integer);
|
2009-04-08 00:50:39 +00:00
|
|
|
extern void boinc_set_credit_claim(double credit);
|
2006-01-06 23:38:49 +00:00
|
|
|
extern int boinc_receive_trickle_down(char* buf, int len);
|
2006-03-13 20:45:08 +00:00
|
|
|
extern int boinc_init_options(BOINC_OPTIONS*);
|
|
|
|
extern int boinc_get_status(BOINC_STATUS*);
|
2006-03-15 19:27:37 +00:00
|
|
|
extern double boinc_get_fraction_done();
|
2007-06-08 07:55:27 +00:00
|
|
|
extern void boinc_register_timer_callback(FUNC_PTR);
|
|
|
|
extern double boinc_worker_thread_cpu_time();
|
2011-04-14 22:48:04 +00:00
|
|
|
extern int boinc_init_parallel();
|
2004-12-11 01:01:19 +00:00
|
|
|
|
2005-06-28 09:56:10 +00:00
|
|
|
#ifdef __APPLE__
|
2006-02-28 09:53:10 +00:00
|
|
|
extern int setMacPList(void);
|
2005-06-28 09:56:10 +00:00
|
|
|
extern int setMacIcon(char *filename, char *iconData, long iconSize);
|
|
|
|
#endif
|
2004-12-11 01:01:19 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2004-12-13 01:21:50 +00:00
|
|
|
} // extern "C" {
|
2004-12-11 01:01:19 +00:00
|
|
|
#endif
|
|
|
|
|
2004-12-13 01:21:50 +00:00
|
|
|
// C++ API follows
|
2004-12-11 01:01:19 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "app_ipc.h"
|
2004-12-04 00:56:22 +00:00
|
|
|
extern int boinc_resolve_filename_s(const char*, std::string&);
|
|
|
|
extern int boinc_get_init_data(APP_INIT_DATA&);
|
|
|
|
extern int boinc_wu_cpu_time(double&);
|
2009-07-01 17:35:56 +00:00
|
|
|
extern double boinc_elapsed_time();
|
2005-04-28 23:19:58 +00:00
|
|
|
extern int boinc_upload_file(std::string& name);
|
|
|
|
extern int boinc_upload_status(std::string& name);
|
2010-09-15 23:03:30 +00:00
|
|
|
extern char* boinc_msg_prefix(char*, int);
|
2011-09-02 20:47:05 +00:00
|
|
|
extern int boinc_report_app_status_aux(
|
|
|
|
double cpu_time, double checkpoint_cpu_time, double _fraction_done,
|
2011-09-16 19:16:12 +00:00
|
|
|
int other_pid, double bytes_sent, double bytes_received
|
2011-09-02 20:47:05 +00:00
|
|
|
);
|
2004-12-04 00:56:22 +00:00
|
|
|
|
2004-02-06 09:34:00 +00:00
|
|
|
/////////// API ENDS HERE
|
|
|
|
|
2004-02-09 05:11:05 +00:00
|
|
|
/////////// IMPLEMENTATION STUFF BEGINS HERE
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-12-11 01:01:19 +00:00
|
|
|
extern void options_defaults(BOINC_OPTIONS&);
|
2003-05-07 23:42:17 +00:00
|
|
|
extern APP_CLIENT_SHM *app_client_shm;
|
2004-10-25 21:42:47 +00:00
|
|
|
#ifdef _WIN32
|
2004-10-25 20:16:30 +00:00
|
|
|
extern HANDLE worker_thread_handle;
|
2004-10-25 21:42:47 +00:00
|
|
|
#endif
|
2004-10-26 21:48:37 +00:00
|
|
|
extern int boinc_init_options_general(BOINC_OPTIONS& opt);
|
2008-01-13 04:16:58 +00:00
|
|
|
extern int start_timer_thread();
|
2006-12-07 17:30:48 +00:00
|
|
|
extern bool g_sleep;
|
2004-12-04 00:56:22 +00:00
|
|
|
|
2004-12-13 19:14:54 +00:00
|
|
|
inline void boinc_options_defaults(BOINC_OPTIONS& b) {
|
2007-06-12 18:01:27 +00:00
|
|
|
b.main_program = 1;
|
|
|
|
b.check_heartbeat = 1;
|
|
|
|
b.handle_trickle_ups = 1;
|
|
|
|
b.handle_trickle_downs = 1;
|
|
|
|
b.handle_process_control = 1;
|
|
|
|
b.send_status_msgs = 1;
|
|
|
|
b.direct_process_action = 1;
|
2008-12-17 00:49:50 +00:00
|
|
|
b.normal_thread_priority = 0;
|
2011-04-14 22:25:38 +00:00
|
|
|
b.multi_thread = 0;
|
|
|
|
b.multi_process = 0;
|
2004-12-13 19:14:54 +00:00
|
|
|
}
|
|
|
|
|
2004-03-17 04:56:46 +00:00
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
/////////// IMPLEMENTATION STUFF ENDS HERE
|
2004-03-17 04:56:46 +00:00
|
|
|
|
2004-12-13 01:21:50 +00:00
|
|
|
#endif // C++ part
|
2004-12-04 00:56:22 +00:00
|
|
|
|
2004-12-13 01:21:50 +00:00
|
|
|
#endif // double-inclusion protection
|