2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2003-08-15 00:50:58 +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.
|
2003-08-15 00:50:58 +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.
|
2002-08-05 00:29:34 +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.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
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
|
|
|
|
|
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
|
2006-03-16 08:51:34 +00:00
|
|
|
typedef struct BOINC_OPTIONS {
|
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;
|
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;
|
2004-08-03 09:50:24 +00:00
|
|
|
// this process is allowed to call 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;
|
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;
|
2004-08-03 09:50:24 +00:00
|
|
|
// 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
|
2006-05-01 05:54:52 +00:00
|
|
|
int all_threads_cpu_time;
|
|
|
|
// count the CPU time of all threads
|
|
|
|
// (for apps that have multiple worker threads)
|
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;
|
|
|
|
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;
|
2006-03-16 08:51:34 +00:00
|
|
|
} BOINC_STATUS;
|
2004-02-06 09:34:00 +00:00
|
|
|
|
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);
|
|
|
|
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_write_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);
|
|
|
|
extern int boinc_report_app_status(double, double, double);
|
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();
|
|
|
|
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);
|
|
|
|
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();
|
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&);
|
2005-04-28 23:19:58 +00:00
|
|
|
extern int boinc_upload_file(std::string& name);
|
|
|
|
extern int boinc_upload_status(std::string& name);
|
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;
|
2005-08-11 21:26:02 +00:00
|
|
|
#else
|
|
|
|
extern void block_sigalrm();
|
2004-10-25 21:42:47 +00:00
|
|
|
#endif
|
2006-02-23 07:54:11 +00:00
|
|
|
extern int suspend_activities(void);
|
|
|
|
extern int resume_activities(void);
|
2006-03-02 08:28:23 +00:00
|
|
|
extern int restore_activities(void);
|
2004-10-26 21:48:37 +00:00
|
|
|
extern int boinc_init_options_general(BOINC_OPTIONS& opt);
|
2006-03-15 19:27:37 +00:00
|
|
|
extern void boinc_exit(int status);
|
2004-12-04 00:56:22 +00:00
|
|
|
extern int set_worker_timer(void);
|
|
|
|
|
2004-12-13 19:14:54 +00:00
|
|
|
inline void boinc_options_defaults(BOINC_OPTIONS& b) {
|
|
|
|
b.main_program = true;
|
|
|
|
b.check_heartbeat = true;
|
|
|
|
b.handle_trickle_ups = true;
|
|
|
|
b.handle_trickle_downs = true;
|
|
|
|
b.handle_process_control = true;
|
|
|
|
b.send_status_msgs = true;
|
|
|
|
b.direct_process_action = true;
|
|
|
|
}
|
|
|
|
|
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
|