// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2008 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 . #ifndef _ACCT_MGR_ #define _ACCT_MGR_ #include #include #include "miofile.h" #include "parse.h" #include "gui_http.h" #include "client_types.h" /// represents info stored in acct_mgr_url.xml and acct_mgr_login.xml struct ACCT_MGR_INFO { // the following used to be std::string but there // were mysterious bugs where setting it to "" didn't work // char acct_mgr_name[256]; char acct_mgr_url[256]; char login_name[256]; /// md5 of password.lowercase(login_name) char password_hash[256]; /// whatever the AMS sends us char opaque[256]; char signing_key[MAX_KEY_LEN]; /// the host CPID sent in last RPC char previous_host_cpid[64]; double next_rpc_time; /// whether to include GUI RPC port and password hash /// in AM RPCs (used for "farm management") bool send_gui_rpc_info; /// use of cookies are required during initial signup /// NOTE: This bool gets dropped after the client has /// successfully attached to an account manager bool cookie_required; /// if the cookies could not be detected, provide a /// link to a website to go to so the user can find /// what login name and password they have been assigned /// NOTE: This bool gets dropped after the client has /// successfully attached to an account manager char cookie_failure_url[256]; bool password_error; ACCT_MGR_INFO(); int parse_login_file(FILE*); int write_info(); int init(); void clear(); bool poll(); }; struct OPTIONAL_BOOL { bool present; bool value; inline void init() {present=false;} inline void set(bool v) {value=v; present=true;} }; struct OPTIONAL_DOUBLE { bool present; double value; inline void init() {present=false;} inline void set(double v) {value=v; present=true;} }; // stuff after here related to RPCs to account managers struct AM_ACCOUNT { std::string url; std::string authenticator; char url_signature[MAX_SIGNATURE_LEN]; bool detach; bool update; OPTIONAL_BOOL dont_request_more_work; OPTIONAL_BOOL detach_when_done; OPTIONAL_DOUBLE resource_share; int parse(XML_PARSER&); AM_ACCOUNT() {} ~AM_ACCOUNT() {} }; struct ACCT_MGR_OP: public GUI_HTTP_OP { bool via_gui; int error_num; ACCT_MGR_INFO ami; // a temporary copy while doing RPC. // CLIENT_STATE::acct_mgr_info is authoratative std::string error_str; std::vector accounts; double repeat_sec; char* global_prefs_xml; char host_venue[256]; int do_rpc( std::string url, std::string name, std::string password, bool via_gui ); int parse(FILE*); virtual void handle_reply(int http_op_retval); ACCT_MGR_OP(); virtual ~ACCT_MGR_OP(){} }; #endif