mirror of https://github.com/BOINC/boinc.git
193 lines
4.3 KiB
C++
193 lines
4.3 KiB
C++
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2013 University of California
|
|
//
|
|
// 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.
|
|
//
|
|
// BOINC 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.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
// C++ interfaces to remote job submissions and file management RPCs
|
|
|
|
#include <stdio.h>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <map>
|
|
|
|
using std::string;
|
|
using std::vector;
|
|
using std::map;
|
|
|
|
struct INFILE {
|
|
char src_path[256]; // path on submit machine
|
|
char dst_filename[256];
|
|
// filename on execution machine.
|
|
// must agree with the app's input template
|
|
};
|
|
|
|
struct JOB {
|
|
char job_name[256];
|
|
string cmdline_args;
|
|
vector<INFILE> infiles;
|
|
};
|
|
|
|
struct LOCAL_FILE {
|
|
char md5[64];
|
|
double nbytes;
|
|
};
|
|
|
|
struct SUBMIT_REQ {
|
|
char batch_name[256];
|
|
char app_name[256];
|
|
vector<JOB> jobs;
|
|
map<string, LOCAL_FILE> local_files;
|
|
// maps local path to info about file
|
|
int batch_id;
|
|
};
|
|
|
|
struct QUERY_BATCH_JOB {
|
|
string job_name;
|
|
string status;
|
|
QUERY_BATCH_JOB(){}
|
|
};
|
|
|
|
struct QUERY_BATCH_REPLY {
|
|
vector<int> batch_sizes; // how many jobs in each of the queried batches
|
|
vector<QUERY_BATCH_JOB> jobs; // the jobs, sequentially
|
|
};
|
|
|
|
struct OUTFILE {
|
|
char src[256]; // logical name
|
|
char dest[256]; // name or path on submit host
|
|
};
|
|
|
|
struct FETCH_OUTPUT_REQ {
|
|
char job_name[256];
|
|
char dir[256];
|
|
bool fetch_all;
|
|
string stderr_filename;
|
|
vector<OUTFILE> file_descs;
|
|
};
|
|
|
|
struct TEMPLATE_DESC {
|
|
vector<string> input_files;
|
|
vector<string> output_files;
|
|
|
|
int parse(XML_PARSER&);
|
|
};
|
|
|
|
// describes a job that's completed, successfully or not
|
|
//
|
|
struct COMPLETED_JOB_DESC {
|
|
int canonical_resultid;
|
|
int error_mask;
|
|
int error_resultid; // if error_mask is nonzero, this may be set
|
|
// the following fields describe either the canonical or error result
|
|
int exit_status;
|
|
double elapsed_time;
|
|
double cpu_time;
|
|
string stderr_out;
|
|
|
|
COMPLETED_JOB_DESC(){}
|
|
int parse(XML_PARSER&);
|
|
};
|
|
|
|
//////////////////////////
|
|
|
|
|
|
extern int query_files(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
vector<string> &paths,
|
|
vector<string> &md5s,
|
|
int batch_id,
|
|
vector<int> &absent_files,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int upload_files (
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
vector<string> &paths,
|
|
vector<string> &md5s,
|
|
int batch_id,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int create_batch(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
const char* batch_name,
|
|
const char* app_name,
|
|
int &batch_id,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int submit_jobs(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
SUBMIT_REQ &req,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int query_batches(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
vector<string> &batch_names,
|
|
QUERY_BATCH_REPLY& reply,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int get_output_file(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
const char* job_name,
|
|
int file_num,
|
|
const char* dst_path,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int abort_jobs(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
vector<string> &job_names,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int query_completed_job(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
const char* job_name,
|
|
COMPLETED_JOB_DESC&,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int get_templates(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
const char* app_name, // either this
|
|
const char* job_name, // or this must be non-NULL
|
|
TEMPLATE_DESC&,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int retire_batch(
|
|
const char* project_url,
|
|
const char* authenticator,
|
|
const char* batch_name,
|
|
string& error_msg
|
|
);
|
|
|
|
extern int ping_server(
|
|
const char* project_url,
|
|
string& error_msg
|
|
);
|