2003-07-01 20:37:09 +00:00
|
|
|
// The contents of this file are subject to the BOINC Public License
|
2002-08-05 00:29:34 +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-08-15 00:50:58 +00:00
|
|
|
//
|
2002-08-05 00:29:34 +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-08-15 00:50:58 +00:00
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
2002-08-05 00:29:34 +00:00
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
2003-08-15 00:50:58 +00:00
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
2002-08-05 00:29:34 +00:00
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
2003-05-08 22:53:52 +00:00
|
|
|
#ifndef _BOINC_API_
|
|
|
|
#define _BOINC_API_
|
2003-05-07 23:42:17 +00:00
|
|
|
|
2003-10-29 11:05:39 +00:00
|
|
|
#include <string>
|
2004-03-17 01:26:44 +00:00
|
|
|
|
2003-05-28 22:39:08 +00:00
|
|
|
#include "app_ipc.h"
|
|
|
|
|
2004-06-08 14:37:42 +00:00
|
|
|
/////////// API BEGINS HERE
|
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
struct BOINC_OPTIONS {
|
|
|
|
bool main_program;
|
|
|
|
// this is the main program, so
|
|
|
|
// - lock a lock file in the slot directory
|
|
|
|
// - write finish file on successful boinc_finish()
|
|
|
|
bool check_heartbeat;
|
|
|
|
// action is determined by direct_process_action (see below)
|
|
|
|
bool handle_trickle_ups;
|
|
|
|
// this process is allowed to call boinc_send_trickle_up()
|
|
|
|
bool handle_trickle_downs;
|
|
|
|
// this process is allowed to call boinc_receive_trickle_down()
|
|
|
|
bool handle_process_control;
|
|
|
|
// action is determined by direct_process_action (see below)
|
|
|
|
bool send_status_msgs;
|
|
|
|
// send CPU time / fraction done msgs
|
|
|
|
bool direct_process_action;
|
|
|
|
// if heartbeat fail, or get process control msg, take
|
|
|
|
// direction action (exit, suspend, resume).
|
|
|
|
// Otherwise just set flag in BOINC status
|
|
|
|
};
|
|
|
|
|
|
|
|
struct BOINC_STATUS {
|
|
|
|
bool no_heartbeat;
|
|
|
|
bool suspended;
|
|
|
|
bool quit_request;
|
|
|
|
};
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
extern "C" {
|
2004-10-26 20:33:16 +00:00
|
|
|
extern int boinc_init(void (*worker)()=0);
|
|
|
|
extern int boinc_init_options(BOINC_OPTIONS&, void (*worker)()=0);
|
2004-08-03 09:50:24 +00:00
|
|
|
extern int boinc_finish(int status);
|
|
|
|
extern int boinc_get_status(BOINC_STATUS&);
|
|
|
|
extern bool boinc_is_standalone();
|
|
|
|
extern int boinc_resolve_filename(const char*, char*, int len);
|
|
|
|
extern int boinc_resolve_filename_s(const char*, std::string&);
|
|
|
|
extern int boinc_parse_init_data_file();
|
|
|
|
extern int boinc_write_init_data_file();
|
|
|
|
extern int boinc_get_init_data(APP_INIT_DATA&);
|
|
|
|
|
|
|
|
extern int boinc_send_trickle_up(char* variety, char* text);
|
2004-06-08 14:37:42 +00:00
|
|
|
extern bool boinc_receive_trickle_down(char* buf, int len);
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
extern bool boinc_time_to_checkpoint();
|
|
|
|
extern int boinc_checkpoint_completed();
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
extern int boinc_fraction_done(double);
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-08-03 09:50:24 +00:00
|
|
|
extern int boinc_wu_cpu_time(double&);
|
|
|
|
extern int boinc_calling_thread_cpu_time(double&, double&);
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-10-15 19:19:03 +00:00
|
|
|
extern int boinc_suspend_other_activities();
|
|
|
|
extern int boinc_resume_other_activities();
|
2004-06-08 14:37:42 +00:00
|
|
|
} // extern "C"
|
2004-02-06 09:34:00 +00:00
|
|
|
|
2004-07-16 01:56:32 +00:00
|
|
|
extern APP_INIT_DATA aid;
|
|
|
|
|
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
|
|
|
|
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 20:33:16 +00:00
|
|
|
extern int set_worker_timer();
|
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
|
|
|
|
2002-08-05 00:29:34 +00:00
|
|
|
#endif
|