2004-06-15 09:11:08 +00:00
|
|
|
// The contents of this file are subject to the BOINC 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://boinc.berkeley.edu/license_1.0.txt
|
|
|
|
//
|
|
|
|
// 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):
|
|
|
|
//
|
|
|
|
|
|
|
|
// This file defines a Fortran wrapper to the BOINC API.
|
|
|
|
|
|
|
|
#include "boinc_api.h"
|
|
|
|
|
|
|
|
// helper class that makes a C-string from a character array and length,
|
|
|
|
// automatically deleted on destruction
|
|
|
|
|
|
|
|
// Fortran strings are passed as character array plus length
|
|
|
|
class StringFromFortran {
|
|
|
|
char* p;
|
|
|
|
public:
|
|
|
|
StringFromFortran(const char* s, int s_len) {
|
|
|
|
p = new char[s_len + 1];
|
|
|
|
memcpy(p, s, s_len);
|
|
|
|
p[s_len] = 0;
|
|
|
|
}
|
|
|
|
~StringFromFortran() { delete [] p; }
|
|
|
|
operator char* () const { return p; }
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_init_(int *standalone) {
|
2004-06-15 09:11:08 +00:00
|
|
|
boinc_init(*standalone);
|
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_finish_(int* status) {
|
2004-06-15 09:11:08 +00:00
|
|
|
boinc_finish(*status);
|
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_is_standalone_(int* result) {
|
|
|
|
*result = boinc_is_standalone();
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_resolve_filename_(const char* s, int s_len, char* t, int t_len)
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-15 09:13:56 +00:00
|
|
|
boinc_resolve_filename(StringFromFortran(s, s_len), t, t_len);
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_parse_init_data_file_()
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-16 10:01:28 +00:00
|
|
|
boinc_parse_init_data_file();
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_write_init_data_file_()
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-16 10:01:28 +00:00
|
|
|
boinc_write_init_data_file_();
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: structs? common?
|
|
|
|
// extern int boinc_get_init_data(APP_INIT_DATA&);
|
|
|
|
|
2004-06-16 10:03:44 +00:00
|
|
|
void boinc_send_trickle_up_(char* s, int s_len)
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-16 10:01:28 +00:00
|
|
|
boinc_send_trickle_up(StringFromFortran(s,s_len));
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_receive_trickle_down_(char* buf, int len)
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-16 10:01:28 +00:00
|
|
|
boinc_receive_trickle_down(buf, len);
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_time_to_checkpoint_(int* result) {
|
|
|
|
*result = boinc_time_to_checkpoint();
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_checkpoint_completed_() {
|
|
|
|
boinc_checkpoint_completed();
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_fraction_done_(double* d) {
|
|
|
|
boinc_fraction_done(* d);
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_wu_cpu_time_(double* d_out) {
|
|
|
|
boinc_wu_cpu_time(*d_out);
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
2004-06-16 10:01:28 +00:00
|
|
|
void boinc_thread_cpu_time_(double* d1_out, double* d2_out)
|
2004-06-15 09:11:08 +00:00
|
|
|
{
|
2004-06-16 10:01:28 +00:00
|
|
|
boinc_thread_cpu_time(*d1_out, *d2_out);
|
2004-06-15 09:11:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|