2002-08-05 00:29:34 +00:00
|
|
|
// The contents of this file are subject to the Mozilla Public License
|
|
|
|
// 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
|
|
|
|
// http://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// under the License.
|
|
|
|
//
|
|
|
|
// The Original Code is the Berkeley Open Infrastructure for Network Computing.
|
|
|
|
//
|
|
|
|
// The Initial Developer of the Original Code is the SETI@home project.
|
|
|
|
// Portions created by the SETI@home project are Copyright (C) 2002
|
|
|
|
// University of California at Berkeley. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Contributor(s):
|
|
|
|
//
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _BOINC_API
|
|
|
|
#define _BOINC_API
|
|
|
|
|
2003-03-17 19:24:38 +00:00
|
|
|
#define DEFAULT_FRACTION_DONE_UPDATE_PERIOD 1
|
2002-08-05 00:29:34 +00:00
|
|
|
#define DEFAULT_CHECKPOINT_PERIOD 300
|
|
|
|
|
|
|
|
// MFILE supports a primitive form of checkpointing.
|
|
|
|
// Write all your output (and restart file) to MFILEs.
|
|
|
|
// The output is buffered in memory.
|
|
|
|
// Then close or flush all the MFILEs;
|
|
|
|
// all the buffers will be flushed to disk, almost atomically.
|
|
|
|
|
|
|
|
class MFILE {
|
|
|
|
char* buf;
|
|
|
|
int len;
|
|
|
|
FILE* f;
|
|
|
|
public:
|
|
|
|
int open(char* path, char* mode);
|
|
|
|
int _putchar(char);
|
|
|
|
int puts(char*);
|
|
|
|
int printf(char* format, ...);
|
|
|
|
size_t write(const void *, size_t size, size_t nitems);
|
|
|
|
int close();
|
|
|
|
int flush();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct APP_INIT_DATA {
|
|
|
|
char app_preferences[4096];
|
|
|
|
char user_name[256];
|
|
|
|
char team_name[256];
|
2003-03-16 21:59:11 +00:00
|
|
|
char comm_obj_name[256]; // name to identify shared memory segments, signals, etc
|
2002-08-05 00:29:34 +00:00
|
|
|
double wu_cpu_time; // cpu time from previous sessions
|
2003-02-24 21:25:16 +00:00
|
|
|
double user_total_credit;
|
|
|
|
double user_expavg_credit;
|
|
|
|
double host_total_credit;
|
|
|
|
double host_expavg_credit;
|
2002-08-05 00:29:34 +00:00
|
|
|
double checkpoint_period; // recommended checkpoint period
|
2003-03-17 19:24:38 +00:00
|
|
|
int shm_key;
|
2002-08-05 00:29:34 +00:00
|
|
|
double fraction_done_update_period;
|
|
|
|
};
|
|
|
|
|
2003-03-18 19:37:09 +00:00
|
|
|
#define SHM_PREFIX "shm_"
|
|
|
|
#define QUIT_PREFIX "quit_"
|
2003-03-17 19:24:38 +00:00
|
|
|
|
2002-08-05 00:29:34 +00:00
|
|
|
extern int boinc_init();
|
|
|
|
extern int boinc_get_init_data(APP_INIT_DATA&);
|
|
|
|
extern int boinc_finish(int);
|
2002-09-22 23:27:14 +00:00
|
|
|
extern int boinc_resolve_filename(char*, char*, int len);
|
2002-08-05 00:29:34 +00:00
|
|
|
extern bool boinc_time_to_checkpoint();
|
|
|
|
extern int boinc_checkpoint_completed();
|
2002-10-10 21:55:37 +00:00
|
|
|
extern int boinc_fraction_done(double);
|
2002-08-05 00:29:34 +00:00
|
|
|
extern int boinc_child_start();
|
|
|
|
extern int boinc_child_done(double);
|
|
|
|
extern double boinc_cpu_time(); // CPU time for this process
|
2002-10-28 22:30:37 +00:00
|
|
|
extern int boinc_install_signal_handlers();
|
2002-08-05 00:29:34 +00:00
|
|
|
|
|
|
|
/////////// API ENDS HERE - IMPLEMENTATION STUFF FOLLOWS
|
|
|
|
|
2003-03-17 19:24:38 +00:00
|
|
|
int update_app_progress(double, double, double);
|
2002-08-05 00:29:34 +00:00
|
|
|
int write_init_data_file(FILE* f, APP_INIT_DATA&);
|
|
|
|
int parse_init_data_file(FILE* f, APP_INIT_DATA&);
|
|
|
|
int write_fd_init_file(FILE*, char*, int, int);
|
|
|
|
int parse_fd_init_file(FILE*);
|
|
|
|
|
|
|
|
#define INIT_DATA_FILE "init_data.xml"
|
2002-09-18 17:40:39 +00:00
|
|
|
#define GRAPHICS_DATA_FILE "graphics.xml"
|
2002-08-05 00:29:34 +00:00
|
|
|
#define FD_INIT_FILE "fd_init.xml"
|
2002-09-11 18:38:58 +00:00
|
|
|
#define STDERR_FILE "stderr.txt"
|
2002-08-05 00:29:34 +00:00
|
|
|
|
|
|
|
int set_timer(double period);
|
2003-03-17 19:24:38 +00:00
|
|
|
void setup_shared_mem();
|
|
|
|
void cleanup_shared_mem();
|
2002-08-05 00:29:34 +00:00
|
|
|
|
|
|
|
#endif
|