2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-11-14 08:29:32 +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.
|
2004-06-01 17:02:14 +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.
|
|
|
|
//
|
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
2007-10-09 11:35:47 +00:00
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-06-01 17:02:14 +00:00
|
|
|
|
2004-09-30 21:55:19 +00:00
|
|
|
// a C++ interface to BOINC GUI RPC
|
|
|
|
|
2005-12-16 03:35:15 +00:00
|
|
|
#if !defined(_WIN32) || defined (__CYGWIN__)
|
2004-01-21 07:07:16 +00:00
|
|
|
#include <stdio.h>
|
2004-01-23 21:57:47 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2005-04-09 00:39:31 +00:00
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <netdb.h>
|
2006-04-22 00:01:43 +00:00
|
|
|
#include <locale.h>
|
2004-06-10 07:49:50 +00:00
|
|
|
#endif
|
2004-01-23 21:57:47 +00:00
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
#include "miofile.h"
|
2005-06-22 10:51:34 +00:00
|
|
|
#include "prefs.h"
|
2005-08-01 22:44:40 +00:00
|
|
|
#include "hostinfo.h"
|
2006-12-11 23:42:54 +00:00
|
|
|
#include "common_defs.h"
|
2004-06-12 04:45:36 +00:00
|
|
|
|
2004-09-27 23:35:21 +00:00
|
|
|
struct GUI_URL {
|
|
|
|
std::string name;
|
|
|
|
std::string description;
|
|
|
|
std::string url;
|
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void print();
|
|
|
|
};
|
|
|
|
|
2005-04-04 06:02:36 +00:00
|
|
|
// statistics at a specific day
|
|
|
|
//
|
2005-08-11 04:45:16 +00:00
|
|
|
struct DAILY_STATS {
|
2005-04-04 06:02:36 +00:00
|
|
|
double user_total_credit;
|
|
|
|
double user_expavg_credit;
|
|
|
|
double host_total_credit;
|
|
|
|
double host_expavg_credit;
|
|
|
|
double day;
|
2005-08-11 04:45:16 +00:00
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
2005-04-04 06:02:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-03-13 19:33:27 +00:00
|
|
|
class PROJECT_LIST_ENTRY {
|
2007-03-06 00:35:04 +00:00
|
|
|
public:
|
|
|
|
std::string name;
|
|
|
|
std::string url;
|
|
|
|
std::string general_area;
|
|
|
|
std::string specific_area;
|
|
|
|
std::string description;
|
|
|
|
std::string home;
|
|
|
|
std::string image;
|
2007-03-23 20:06:55 +00:00
|
|
|
double rand;
|
2007-03-06 00:35:04 +00:00
|
|
|
|
2007-03-13 19:33:27 +00:00
|
|
|
PROJECT_LIST_ENTRY();
|
|
|
|
~PROJECT_LIST_ENTRY();
|
2007-03-06 00:35:04 +00:00
|
|
|
|
2007-03-06 05:36:54 +00:00
|
|
|
int parse(XML_PARSER&);
|
2007-03-06 00:35:04 +00:00
|
|
|
void clear();
|
|
|
|
|
2007-03-20 19:04:27 +00:00
|
|
|
bool operator<(const PROJECT_LIST_ENTRY& compare);
|
|
|
|
};
|
2007-03-06 00:35:04 +00:00
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class PROJECT {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string master_url;
|
2004-01-23 21:57:47 +00:00
|
|
|
double resource_share;
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string project_name;
|
|
|
|
std::string user_name;
|
|
|
|
std::string team_name;
|
2004-09-27 23:35:21 +00:00
|
|
|
std::vector<GUI_URL> gui_urls;
|
2004-01-23 21:57:47 +00:00
|
|
|
double user_total_credit;
|
|
|
|
double user_expavg_credit;
|
|
|
|
double host_total_credit; // as reported by server
|
|
|
|
double host_expavg_credit; // as reported by server
|
2004-10-22 22:37:11 +00:00
|
|
|
double disk_usage;
|
2004-01-23 21:57:47 +00:00
|
|
|
int nrpc_failures; // # of consecutive times we've failed to
|
|
|
|
// contact all scheduling servers
|
|
|
|
int master_fetch_failures;
|
2004-11-15 19:23:58 +00:00
|
|
|
double min_rpc_time; // earliest time to contact any server
|
2007-03-05 00:32:26 +00:00
|
|
|
double short_term_debt;
|
|
|
|
double long_term_debt;
|
|
|
|
double duration_correction_factor;
|
2004-01-23 21:57:47 +00:00
|
|
|
|
|
|
|
bool master_url_fetch_pending; // need to fetch and parse the master URL
|
2007-05-11 18:27:16 +00:00
|
|
|
int sched_rpc_pending; // need to contact scheduling server
|
2007-03-13 19:33:27 +00:00
|
|
|
int rr_sim_deadlines_missed;
|
2005-01-25 19:21:35 +00:00
|
|
|
bool non_cpu_intensive;
|
2004-09-27 23:35:21 +00:00
|
|
|
bool suspended_via_gui;
|
2005-04-04 06:02:36 +00:00
|
|
|
bool dont_request_more_work;
|
2006-01-16 05:24:39 +00:00
|
|
|
bool scheduler_rpc_in_progress;
|
2006-01-25 21:25:33 +00:00
|
|
|
bool attached_via_acct_mgr;
|
2007-03-05 00:32:26 +00:00
|
|
|
bool detach_when_done;
|
2007-05-24 16:07:21 +00:00
|
|
|
bool ended;
|
2006-10-12 19:43:55 +00:00
|
|
|
double project_files_downloaded_time;
|
|
|
|
// when the last project file download was finished
|
|
|
|
// (i.e. the time when ALL project files were finished downloading)
|
|
|
|
double last_rpc_time;
|
|
|
|
// when the last successful scheduler RPC finished
|
|
|
|
std::vector<DAILY_STATS> statistics; // credit data over the last x days
|
2004-01-23 21:57:47 +00:00
|
|
|
|
2006-10-12 19:43:55 +00:00
|
|
|
// NOTE: if you add any data items above,
|
2007-03-05 00:32:26 +00:00
|
|
|
// update parse(), copy() and clear() to include them!!
|
2006-01-18 21:07:04 +00:00
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
PROJECT();
|
|
|
|
~PROJECT();
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
2004-01-23 21:57:47 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2005-04-27 06:55:28 +00:00
|
|
|
void get_name(std::string&);
|
2006-01-18 21:07:04 +00:00
|
|
|
void copy(PROJECT&); // copy to this object
|
2005-04-27 06:55:28 +00:00
|
|
|
|
2006-10-12 19:43:55 +00:00
|
|
|
// temp - keep track of whether or not this record needs to be deleted
|
2006-02-24 03:02:57 +00:00
|
|
|
bool flag_for_delete;
|
2004-01-23 21:57:47 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class APP {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string name;
|
2006-06-26 19:08:00 +00:00
|
|
|
std::string user_friendly_name;
|
2004-01-23 21:57:47 +00:00
|
|
|
PROJECT* project;
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
APP();
|
|
|
|
~APP();
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
2004-01-23 21:57:47 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-01-23 21:57:47 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class APP_VERSION {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string app_name;
|
2004-01-23 21:57:47 +00:00
|
|
|
int version_num;
|
|
|
|
APP* app;
|
|
|
|
PROJECT* project;
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
APP_VERSION();
|
|
|
|
~APP_VERSION();
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
2004-01-23 21:57:47 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-01-23 21:57:47 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class WORKUNIT {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string name;
|
|
|
|
std::string app_name;
|
2004-01-23 21:57:47 +00:00
|
|
|
int version_num;
|
|
|
|
double rsc_fpops_est;
|
|
|
|
double rsc_fpops_bound;
|
|
|
|
double rsc_memory_bound;
|
|
|
|
double rsc_disk_bound;
|
|
|
|
PROJECT* project;
|
|
|
|
APP* app;
|
|
|
|
APP_VERSION* avp;
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
WORKUNIT();
|
|
|
|
~WORKUNIT();
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
2004-01-23 21:57:47 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-01-23 21:57:47 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class RESULT {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string name;
|
|
|
|
std::string wu_name;
|
2004-10-19 21:48:17 +00:00
|
|
|
std::string project_url;
|
2004-01-23 21:57:47 +00:00
|
|
|
int report_deadline;
|
|
|
|
bool ready_to_report;
|
|
|
|
bool got_server_ack;
|
|
|
|
double final_cpu_time;
|
|
|
|
int state;
|
2004-10-19 18:14:40 +00:00
|
|
|
int scheduler_state;
|
2004-01-23 21:57:47 +00:00
|
|
|
int exit_status;
|
|
|
|
int signal;
|
2004-10-26 20:53:24 +00:00
|
|
|
std::string stderr_out;
|
2005-01-22 00:24:34 +00:00
|
|
|
bool suspended_via_gui;
|
2006-04-17 22:49:34 +00:00
|
|
|
bool project_suspended_via_gui;
|
2005-01-22 00:24:34 +00:00
|
|
|
|
2004-07-19 19:40:06 +00:00
|
|
|
// the following defined if active
|
2004-10-20 23:38:56 +00:00
|
|
|
bool active_task;
|
2004-10-26 20:53:24 +00:00
|
|
|
int active_task_state;
|
2004-01-31 23:21:07 +00:00
|
|
|
int app_version_num;
|
|
|
|
double checkpoint_cpu_time;
|
|
|
|
double current_cpu_time;
|
|
|
|
double fraction_done;
|
2006-10-03 22:50:13 +00:00
|
|
|
double swap_size;
|
|
|
|
double working_set_size_smoothed;
|
2004-10-20 21:50:28 +00:00
|
|
|
double estimated_cpu_time_remaining;
|
2004-10-26 22:54:43 +00:00
|
|
|
bool supports_graphics;
|
2005-04-21 23:53:39 +00:00
|
|
|
int graphics_mode_acked;
|
2006-10-03 22:50:13 +00:00
|
|
|
bool too_large;
|
2007-06-25 11:46:15 +00:00
|
|
|
bool needs_shmem;
|
2007-03-05 00:32:26 +00:00
|
|
|
bool edf_scheduled;
|
2007-06-14 23:08:43 +00:00
|
|
|
std::string graphics_exec_path;
|
|
|
|
std::string slot_path;
|
2004-07-14 00:53:12 +00:00
|
|
|
|
|
|
|
APP* app;
|
|
|
|
WORKUNIT* wup;
|
2004-01-31 23:21:07 +00:00
|
|
|
PROJECT* project;
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
RESULT();
|
|
|
|
~RESULT();
|
|
|
|
|
2004-06-12 04:45:36 +00:00
|
|
|
int parse(MIOFILE&);
|
2004-01-31 23:21:07 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-01-31 23:21:07 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class FILE_TRANSFER {
|
|
|
|
public:
|
|
|
|
std::string name;
|
2004-10-19 21:48:17 +00:00
|
|
|
std::string project_url;
|
2004-10-22 20:11:38 +00:00
|
|
|
std::string project_name;
|
2004-10-22 00:22:11 +00:00
|
|
|
double nbytes;
|
2004-09-14 15:52:06 +00:00
|
|
|
bool generated_locally;
|
|
|
|
bool uploaded;
|
|
|
|
bool upload_when_present;
|
|
|
|
bool sticky;
|
|
|
|
bool pers_xfer_active;
|
|
|
|
bool xfer_active;
|
|
|
|
int num_retries;
|
2004-10-22 18:39:21 +00:00
|
|
|
int first_request_time;
|
|
|
|
int next_request_time;
|
|
|
|
int status;
|
|
|
|
double time_so_far;
|
2004-09-14 15:52:06 +00:00
|
|
|
double bytes_xferred;
|
|
|
|
double file_offset;
|
|
|
|
double xfer_speed;
|
|
|
|
std::string hostname;
|
|
|
|
PROJECT* project;
|
|
|
|
|
|
|
|
FILE_TRANSFER();
|
|
|
|
~FILE_TRANSFER();
|
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void print();
|
|
|
|
void clear();
|
2004-04-02 00:19:22 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class MESSAGE {
|
|
|
|
public:
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string project;
|
2004-04-02 00:19:22 +00:00
|
|
|
int priority;
|
2004-09-28 22:48:42 +00:00
|
|
|
int seqno;
|
2004-04-02 00:19:22 +00:00
|
|
|
int timestamp;
|
2004-07-01 17:37:26 +00:00
|
|
|
std::string body;
|
2004-09-14 15:52:06 +00:00
|
|
|
|
|
|
|
MESSAGE();
|
|
|
|
~MESSAGE();
|
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void print();
|
|
|
|
void clear();
|
2004-04-02 00:19:22 +00:00
|
|
|
};
|
|
|
|
|
2005-08-01 22:44:40 +00:00
|
|
|
class GR_PROXY_INFO {
|
2004-09-14 15:52:06 +00:00
|
|
|
public:
|
|
|
|
bool use_http_proxy;
|
|
|
|
bool use_socks_proxy;
|
2004-09-25 19:33:30 +00:00
|
|
|
bool use_http_authentication;
|
2004-09-14 15:52:06 +00:00
|
|
|
int socks_version;
|
|
|
|
std::string socks_server_name;
|
|
|
|
std::string http_server_name;
|
|
|
|
int socks_server_port;
|
|
|
|
int http_server_port;
|
|
|
|
std::string http_user_name;
|
|
|
|
std::string http_user_passwd;
|
|
|
|
std::string socks5_user_name;
|
|
|
|
std::string socks5_user_passwd;
|
|
|
|
|
2005-08-01 22:44:40 +00:00
|
|
|
GR_PROXY_INFO();
|
|
|
|
~GR_PROXY_INFO();
|
2004-09-14 15:52:06 +00:00
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void print();
|
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
class CC_STATE {
|
|
|
|
public:
|
2004-06-30 18:17:21 +00:00
|
|
|
std::vector<PROJECT*> projects;
|
|
|
|
std::vector<APP*> apps;
|
|
|
|
std::vector<APP_VERSION*> app_versions;
|
|
|
|
std::vector<WORKUNIT*> wus;
|
|
|
|
std::vector<RESULT*> results;
|
2004-01-23 21:57:47 +00:00
|
|
|
|
2007-08-01 20:26:08 +00:00
|
|
|
GLOBAL_PREFS global_prefs; // working prefs, i.e. network + override
|
2006-08-31 18:31:28 +00:00
|
|
|
VERSION_INFO version_info; // populated only if talking to pre-5.6 CC
|
2005-06-22 10:51:34 +00:00
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
CC_STATE();
|
|
|
|
~CC_STATE();
|
|
|
|
|
2004-10-09 03:05:01 +00:00
|
|
|
PROJECT* lookup_project(std::string&);
|
2004-10-19 22:41:26 +00:00
|
|
|
APP* lookup_app(std::string&, std::string&);
|
2004-10-19 20:11:40 +00:00
|
|
|
APP* lookup_app(PROJECT*, std::string&);
|
2004-10-19 22:41:26 +00:00
|
|
|
APP_VERSION* lookup_app_version(std::string&, std::string&, int);
|
2004-10-19 20:11:40 +00:00
|
|
|
APP_VERSION* lookup_app_version(PROJECT*, std::string&, int);
|
2004-10-19 22:41:26 +00:00
|
|
|
WORKUNIT* lookup_wu(std::string&, std::string&);
|
2004-10-19 20:11:40 +00:00
|
|
|
WORKUNIT* lookup_wu(PROJECT*, std::string&);
|
2004-10-19 22:41:26 +00:00
|
|
|
RESULT* lookup_result(std::string&, std::string&);
|
2004-10-19 20:11:40 +00:00
|
|
|
RESULT* lookup_result(PROJECT*, std::string&);
|
2004-09-14 15:52:06 +00:00
|
|
|
|
2004-07-13 23:51:09 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-07-13 23:51:09 +00:00
|
|
|
};
|
2004-01-23 21:57:47 +00:00
|
|
|
|
2007-03-13 19:33:27 +00:00
|
|
|
class ALL_PROJECTS_LIST {
|
2007-03-06 00:35:04 +00:00
|
|
|
public:
|
2007-03-13 19:33:27 +00:00
|
|
|
std::vector<PROJECT_LIST_ENTRY*> projects;
|
2007-03-06 00:35:04 +00:00
|
|
|
|
2007-03-13 19:33:27 +00:00
|
|
|
ALL_PROJECTS_LIST();
|
|
|
|
~ALL_PROJECTS_LIST();
|
2007-03-06 00:35:04 +00:00
|
|
|
|
|
|
|
void clear();
|
2007-03-20 19:04:27 +00:00
|
|
|
void shuffle();
|
2007-03-06 00:35:04 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class PROJECTS {
|
|
|
|
public:
|
|
|
|
std::vector<PROJECT*> projects;
|
|
|
|
|
2006-11-03 17:08:49 +00:00
|
|
|
PROJECTS(){}
|
2004-09-14 15:52:06 +00:00
|
|
|
~PROJECTS();
|
|
|
|
|
|
|
|
void print();
|
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
2006-11-03 17:08:49 +00:00
|
|
|
struct DISK_USAGE {
|
|
|
|
std::vector<PROJECT*> projects;
|
|
|
|
double d_total;
|
|
|
|
double d_free;
|
2007-05-08 23:12:40 +00:00
|
|
|
double d_boinc; // amount used by BOINC itself, not projects
|
2006-11-03 17:08:49 +00:00
|
|
|
|
|
|
|
DISK_USAGE(){}
|
|
|
|
~DISK_USAGE();
|
|
|
|
|
|
|
|
void print();
|
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class RESULTS {
|
|
|
|
public:
|
2004-07-13 23:51:09 +00:00
|
|
|
std::vector<RESULT*> results;
|
2004-09-14 15:52:06 +00:00
|
|
|
|
2006-11-03 17:08:49 +00:00
|
|
|
RESULTS(){}
|
2004-09-14 15:52:06 +00:00
|
|
|
~RESULTS();
|
|
|
|
|
2004-07-13 23:51:09 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
2004-07-13 23:51:09 +00:00
|
|
|
};
|
|
|
|
|
2004-09-14 15:52:06 +00:00
|
|
|
class FILE_TRANSFERS {
|
|
|
|
public:
|
2004-07-13 23:51:09 +00:00
|
|
|
std::vector<FILE_TRANSFER*> file_transfers;
|
2004-09-14 15:52:06 +00:00
|
|
|
|
|
|
|
FILE_TRANSFERS();
|
|
|
|
~FILE_TRANSFERS();
|
|
|
|
|
2004-07-13 23:51:09 +00:00
|
|
|
void print();
|
2004-09-14 15:52:06 +00:00
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
class MESSAGES {
|
|
|
|
public:
|
|
|
|
std::vector<MESSAGE*> messages;
|
|
|
|
|
|
|
|
MESSAGES();
|
|
|
|
~MESSAGES();
|
|
|
|
|
|
|
|
void print();
|
|
|
|
void clear();
|
2004-07-13 23:51:09 +00:00
|
|
|
};
|
|
|
|
|
2005-02-15 06:32:43 +00:00
|
|
|
struct DISPLAY_INFO {
|
|
|
|
char window_station[256]; // windows
|
|
|
|
char desktop[256]; // windows
|
|
|
|
char display[256]; // X11
|
|
|
|
|
|
|
|
DISPLAY_INFO();
|
|
|
|
void print_str(char*);
|
|
|
|
};
|
|
|
|
|
2005-06-21 08:22:18 +00:00
|
|
|
struct ACCT_MGR_INFO {
|
|
|
|
std::string acct_mgr_name;
|
|
|
|
std::string acct_mgr_url;
|
2005-09-27 23:55:20 +00:00
|
|
|
bool have_credentials;
|
|
|
|
|
2005-09-27 09:55:54 +00:00
|
|
|
ACCT_MGR_INFO();
|
2005-09-28 05:47:14 +00:00
|
|
|
~ACCT_MGR_INFO(){}
|
2005-09-27 09:55:54 +00:00
|
|
|
|
2005-06-21 08:22:18 +00:00
|
|
|
int parse(MIOFILE&);
|
2005-09-27 09:55:54 +00:00
|
|
|
void clear();
|
2005-06-21 08:22:18 +00:00
|
|
|
};
|
|
|
|
|
2005-09-28 05:47:14 +00:00
|
|
|
struct PROJECT_ATTACH_REPLY {
|
|
|
|
int error_num;
|
|
|
|
std::vector<std::string>messages;
|
|
|
|
|
2005-09-28 11:59:34 +00:00
|
|
|
PROJECT_ATTACH_REPLY();
|
2005-09-28 05:47:14 +00:00
|
|
|
~PROJECT_ATTACH_REPLY(){}
|
2005-09-28 11:59:34 +00:00
|
|
|
|
2005-09-28 05:47:14 +00:00
|
|
|
int parse(MIOFILE&);
|
2005-09-28 11:59:34 +00:00
|
|
|
void clear();
|
2005-09-28 05:47:14 +00:00
|
|
|
};
|
|
|
|
|
2005-09-15 00:16:55 +00:00
|
|
|
struct ACCT_MGR_RPC_REPLY {
|
|
|
|
int error_num;
|
2005-09-28 05:47:14 +00:00
|
|
|
std::vector<std::string>messages;
|
2005-09-15 00:16:55 +00:00
|
|
|
|
2005-09-27 09:55:54 +00:00
|
|
|
ACCT_MGR_RPC_REPLY();
|
2005-09-28 05:47:14 +00:00
|
|
|
~ACCT_MGR_RPC_REPLY(){}
|
2005-09-27 09:55:54 +00:00
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void clear();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct PROJECT_INIT_STATUS {
|
|
|
|
std::string url;
|
|
|
|
std::string name;
|
|
|
|
bool has_account_key;
|
|
|
|
|
|
|
|
PROJECT_INIT_STATUS();
|
2005-09-28 05:47:14 +00:00
|
|
|
~PROJECT_INIT_STATUS(){}
|
2005-09-27 09:55:54 +00:00
|
|
|
|
2005-09-15 00:16:55 +00:00
|
|
|
int parse(MIOFILE&);
|
2005-09-27 09:55:54 +00:00
|
|
|
void clear();
|
2005-09-15 00:16:55 +00:00
|
|
|
};
|
|
|
|
|
2005-07-31 23:33:12 +00:00
|
|
|
struct PROJECT_CONFIG {
|
2005-08-06 19:20:26 +00:00
|
|
|
int error_num;
|
2005-07-31 23:33:12 +00:00
|
|
|
std::string name;
|
|
|
|
int min_passwd_length;
|
2005-09-14 17:10:13 +00:00
|
|
|
bool account_manager;
|
2005-08-09 18:09:04 +00:00
|
|
|
bool uses_username;
|
2005-08-06 19:20:26 +00:00
|
|
|
bool account_creation_disabled;
|
2005-08-10 00:21:35 +00:00
|
|
|
bool client_account_creation_disabled;
|
2005-09-28 05:47:14 +00:00
|
|
|
std::vector<std::string> messages;
|
2005-08-06 19:20:26 +00:00
|
|
|
|
2005-09-27 09:55:54 +00:00
|
|
|
PROJECT_CONFIG();
|
|
|
|
~PROJECT_CONFIG();
|
2005-07-31 23:33:12 +00:00
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
2005-08-09 18:00:33 +00:00
|
|
|
void clear();
|
2005-08-07 01:33:15 +00:00
|
|
|
void print();
|
2005-07-31 23:33:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ACCOUNT_IN {
|
|
|
|
std::string url;
|
|
|
|
std::string email_addr;
|
2007-02-24 20:10:06 +00:00
|
|
|
// this is the account identifier (email address or user name)
|
2005-07-31 23:33:12 +00:00
|
|
|
std::string user_name;
|
2005-08-05 23:06:48 +00:00
|
|
|
std::string passwd;
|
2005-08-06 19:20:26 +00:00
|
|
|
|
2005-09-27 09:55:54 +00:00
|
|
|
ACCOUNT_IN();
|
|
|
|
~ACCOUNT_IN();
|
2005-08-06 19:20:26 +00:00
|
|
|
|
|
|
|
void clear();
|
2005-07-31 23:33:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct ACCOUNT_OUT {
|
2005-08-05 22:54:00 +00:00
|
|
|
int error_num;
|
2006-09-08 22:28:10 +00:00
|
|
|
std::string error_msg;
|
2005-08-05 22:00:19 +00:00
|
|
|
std::string authenticator;
|
2005-07-31 23:33:12 +00:00
|
|
|
|
2005-09-27 09:55:54 +00:00
|
|
|
ACCOUNT_OUT();
|
|
|
|
~ACCOUNT_OUT();
|
2005-08-06 19:20:26 +00:00
|
|
|
|
2005-07-31 23:33:12 +00:00
|
|
|
int parse(MIOFILE&);
|
2005-08-09 18:00:33 +00:00
|
|
|
void clear();
|
2005-08-07 01:33:15 +00:00
|
|
|
void print();
|
2005-08-06 19:20:26 +00:00
|
|
|
};
|
|
|
|
|
2006-06-01 05:29:37 +00:00
|
|
|
struct CC_STATUS {
|
2006-11-21 18:41:27 +00:00
|
|
|
int network_status; // values: NETWORK_STATUS_*
|
2006-06-01 05:29:37 +00:00
|
|
|
bool ams_password_error;
|
2006-12-13 00:54:27 +00:00
|
|
|
bool manager_must_quit;
|
2006-11-10 17:55:22 +00:00
|
|
|
int task_suspend_reason; // bitmap, see common_defs.h
|
2006-08-11 17:58:48 +00:00
|
|
|
int network_suspend_reason;
|
2006-11-10 17:55:22 +00:00
|
|
|
int task_mode; // always/auto/never; see common_defs.h
|
2006-08-31 19:24:38 +00:00
|
|
|
int network_mode;
|
2006-11-20 16:52:03 +00:00
|
|
|
int task_mode_perm; // same, but permanent version
|
2006-11-10 17:55:22 +00:00
|
|
|
int network_mode_perm;
|
2006-11-20 16:52:03 +00:00
|
|
|
double task_mode_delay; // time until perm becomes actual
|
|
|
|
double network_mode_delay;
|
2007-07-02 20:55:21 +00:00
|
|
|
bool disallow_attach;
|
|
|
|
bool simple_gui_only;
|
2006-08-29 23:54:36 +00:00
|
|
|
|
|
|
|
CC_STATUS();
|
|
|
|
~CC_STATUS();
|
|
|
|
|
|
|
|
int parse(MIOFILE&);
|
|
|
|
void clear();
|
|
|
|
void print();
|
2005-07-31 23:33:12 +00:00
|
|
|
};
|
|
|
|
|
2006-06-27 21:46:50 +00:00
|
|
|
struct SIMPLE_GUI_INFO {
|
|
|
|
std::vector<PROJECT*> projects;
|
|
|
|
std::vector<RESULT*> results;
|
|
|
|
void print();
|
|
|
|
};
|
|
|
|
|
2004-07-13 23:51:09 +00:00
|
|
|
class RPC_CLIENT {
|
2004-09-25 19:33:30 +00:00
|
|
|
public:
|
2004-11-18 01:30:37 +00:00
|
|
|
int sock;
|
2005-05-25 19:26:37 +00:00
|
|
|
double start_time;
|
|
|
|
double timeout;
|
|
|
|
bool retry;
|
2005-04-09 00:39:31 +00:00
|
|
|
sockaddr_in addr;
|
|
|
|
|
2005-02-16 23:17:43 +00:00
|
|
|
int send_request(const char*);
|
2004-07-13 23:51:09 +00:00
|
|
|
int get_reply(char*&);
|
2004-09-14 15:52:06 +00:00
|
|
|
RPC_CLIENT();
|
2004-01-21 07:07:16 +00:00
|
|
|
~RPC_CLIENT();
|
2005-12-14 01:07:10 +00:00
|
|
|
int init(const char* host, int port=0);
|
2005-05-25 19:26:37 +00:00
|
|
|
int init_asynch(const char* host, double timeout, bool retry);
|
|
|
|
// timeout == how long to wait until give up
|
|
|
|
// If the caller (i.e. BOINC Manager) just launched the core client,
|
|
|
|
// this should be large enough to allow the process to
|
|
|
|
// run and open its listening socket (e.g. 60 sec)
|
|
|
|
// If connecting to a remote client, it should be large enough
|
|
|
|
// for the user to deal with a "personal firewall" popup
|
|
|
|
// (e.g. 60 sec)
|
2006-11-10 17:55:22 +00:00
|
|
|
// retry: if true, keep retrying until succeed or timeout.
|
2005-05-25 19:26:37 +00:00
|
|
|
// Use this if just launched the core client.
|
2005-04-08 23:40:50 +00:00
|
|
|
int init_poll();
|
2004-09-30 21:55:19 +00:00
|
|
|
void close();
|
2005-03-30 09:24:31 +00:00
|
|
|
int authorize(const char* passwd);
|
2006-08-31 18:31:28 +00:00
|
|
|
int exchange_versions(VERSION_INFO&);
|
2004-07-13 23:51:09 +00:00
|
|
|
int get_state(CC_STATE&);
|
|
|
|
int get_results(RESULTS&);
|
|
|
|
int get_file_transfers(FILE_TRANSFERS&);
|
2006-06-27 21:46:50 +00:00
|
|
|
int get_simple_gui_info(SIMPLE_GUI_INFO&);
|
2006-06-28 08:53:02 +00:00
|
|
|
int get_simple_gui_info(CC_STATE&, RESULTS&);
|
2006-02-15 22:35:18 +00:00
|
|
|
int get_project_status(CC_STATE&);
|
2004-09-14 15:52:06 +00:00
|
|
|
int get_project_status(PROJECTS&);
|
2007-03-13 19:33:27 +00:00
|
|
|
int get_all_projects_list(ALL_PROJECTS_LIST&);
|
2006-11-03 17:08:49 +00:00
|
|
|
int get_disk_usage(DISK_USAGE&);
|
2005-02-15 06:32:43 +00:00
|
|
|
int show_graphics(
|
2006-03-27 03:44:13 +00:00
|
|
|
const char* project, const char* result_name, int graphics_mode,
|
2005-02-15 06:32:43 +00:00
|
|
|
DISPLAY_INFO&
|
|
|
|
);
|
2005-02-16 23:17:43 +00:00
|
|
|
int project_op(PROJECT&, const char* op);
|
2006-11-10 17:55:22 +00:00
|
|
|
int set_run_mode(int mode, double duration);
|
|
|
|
// if duration is zero, change is permanent.
|
|
|
|
// otherwise, after duration expires,
|
|
|
|
// restore last permanent mode
|
|
|
|
int set_network_mode(int mode, double duration);
|
2007-09-14 01:45:00 +00:00
|
|
|
int get_screensaver_tasks(int& suspend_reason, RESULTS&);
|
2004-04-01 23:19:13 +00:00
|
|
|
int run_benchmarks();
|
2005-08-01 22:44:40 +00:00
|
|
|
int set_proxy_settings(GR_PROXY_INFO&);
|
|
|
|
int get_proxy_settings(GR_PROXY_INFO&);
|
2004-09-30 21:41:09 +00:00
|
|
|
int get_messages(int seqno, MESSAGES&);
|
2005-02-16 23:17:43 +00:00
|
|
|
int file_transfer_op(FILE_TRANSFER&, const char*);
|
|
|
|
int result_op(RESULT&, const char*);
|
2004-10-12 00:27:48 +00:00
|
|
|
int get_host_info(HOST_INFO&);
|
2004-11-23 07:45:11 +00:00
|
|
|
int quit();
|
2005-06-21 08:22:18 +00:00
|
|
|
int acct_mgr_info(ACCT_MGR_INFO&);
|
2005-02-16 23:17:43 +00:00
|
|
|
const char* mode_name(int mode);
|
2005-04-04 06:02:36 +00:00
|
|
|
int get_statistics(PROJECTS&);
|
2005-06-23 00:15:05 +00:00
|
|
|
int network_available();
|
2005-09-27 09:55:54 +00:00
|
|
|
int get_project_init_status(PROJECT_INIT_STATUS& pis);
|
2005-07-31 23:33:12 +00:00
|
|
|
|
|
|
|
// the following are asynch operations.
|
|
|
|
// Make the first call to start the op,
|
|
|
|
// call the second one periodically until it returns zero.
|
2005-09-22 08:46:51 +00:00
|
|
|
// TODO: do project update
|
2005-07-31 23:33:12 +00:00
|
|
|
//
|
|
|
|
int get_project_config(std::string url);
|
|
|
|
int get_project_config_poll(PROJECT_CONFIG&);
|
|
|
|
int lookup_account(ACCOUNT_IN&);
|
|
|
|
int lookup_account_poll(ACCOUNT_OUT&);
|
|
|
|
int create_account(ACCOUNT_IN&);
|
|
|
|
int create_account_poll(ACCOUNT_OUT&);
|
2006-12-26 00:37:25 +00:00
|
|
|
int project_attach(
|
2006-12-26 00:59:18 +00:00
|
|
|
const char* url, const char* auth, const char* project_name
|
2006-12-26 00:37:25 +00:00
|
|
|
);
|
|
|
|
int project_attach_from_file();
|
2005-09-28 05:47:14 +00:00
|
|
|
int project_attach_poll(PROJECT_ATTACH_REPLY&);
|
2006-06-01 05:29:37 +00:00
|
|
|
int acct_mgr_rpc(
|
|
|
|
const char* url, const char* name, const char* passwd,
|
|
|
|
bool use_config_file=false
|
|
|
|
);
|
2005-09-28 05:47:14 +00:00
|
|
|
int acct_mgr_rpc_poll(ACCT_MGR_RPC_REPLY&);
|
2006-08-31 18:31:28 +00:00
|
|
|
|
2005-11-12 06:14:10 +00:00
|
|
|
int get_newer_version(std::string&);
|
2006-02-07 22:04:55 +00:00
|
|
|
int read_global_prefs_override();
|
2006-12-17 02:48:19 +00:00
|
|
|
int read_cc_config();
|
2006-06-01 05:29:37 +00:00
|
|
|
int get_cc_status(CC_STATUS&);
|
2007-08-02 08:12:03 +00:00
|
|
|
int get_global_prefs_file(std::string&);
|
2007-08-01 20:26:08 +00:00
|
|
|
int get_global_prefs_working(std::string&);
|
2007-08-02 08:12:03 +00:00
|
|
|
int get_global_prefs_working_struct(GLOBAL_PREFS&, GLOBAL_PREFS_MASK&);
|
2006-08-07 16:55:56 +00:00
|
|
|
int get_global_prefs_override(std::string&);
|
|
|
|
int set_global_prefs_override(std::string&);
|
2006-11-14 10:12:24 +00:00
|
|
|
int get_global_prefs_override_struct(GLOBAL_PREFS&, GLOBAL_PREFS_MASK&);
|
2006-11-03 08:50:36 +00:00
|
|
|
int set_global_prefs_override_struct(GLOBAL_PREFS&, GLOBAL_PREFS_MASK&);
|
2007-05-26 21:15:58 +00:00
|
|
|
int set_debts(std::vector<PROJECT>);
|
2004-01-21 07:07:16 +00:00
|
|
|
};
|
2004-09-25 19:33:30 +00:00
|
|
|
|
|
|
|
struct RPC {
|
|
|
|
char* mbuf;
|
|
|
|
MIOFILE fin;
|
|
|
|
RPC_CLIENT* rpc_client;
|
|
|
|
|
|
|
|
RPC(RPC_CLIENT*);
|
|
|
|
~RPC();
|
2005-02-16 23:17:43 +00:00
|
|
|
int do_rpc(const char*);
|
2005-05-31 21:59:29 +00:00
|
|
|
int parse_reply();
|
2004-09-25 19:33:30 +00:00
|
|
|
};
|
2006-04-22 00:01:43 +00:00
|
|
|
|
|
|
|
struct SET_LOCALE {
|
2006-04-27 05:48:21 +00:00
|
|
|
std::string locale;
|
2006-04-22 00:01:43 +00:00
|
|
|
inline SET_LOCALE() {
|
|
|
|
locale = setlocale(LC_ALL, NULL);
|
|
|
|
setlocale(LC_ALL, "C");
|
|
|
|
}
|
|
|
|
inline ~SET_LOCALE() {
|
2006-04-27 05:48:21 +00:00
|
|
|
setlocale(LC_ALL, locale.c_str());
|
2006-04-22 00:01:43 +00:00
|
|
|
}
|
|
|
|
};
|