mirror of https://github.com/BOINC/boinc.git
72 lines
2.2 KiB
C
72 lines
2.2 KiB
C
// 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):
|
|
//
|
|
|
|
#ifndef _PREFS_
|
|
#define _PREFS_
|
|
|
|
#include <cstdio>
|
|
|
|
// Global preferences are edited and stored on BOINC servers.
|
|
// The native representation of preferences is XML.
|
|
// The client maintains the preferences (in XML form)
|
|
// and mod time in the state file and in memory.
|
|
// It includes these items in each scheduler request message.
|
|
// A scheduler reply message may contain a more recent set of preferences.
|
|
//
|
|
|
|
// The following structure is a parsed version of the prefs file
|
|
//
|
|
struct GLOBAL_PREFS {
|
|
int mod_time;
|
|
bool run_on_batteries;
|
|
bool run_if_user_active;
|
|
int start_hour; // 0..23; no restriction if start==end
|
|
int end_hour;
|
|
bool leave_apps_in_memory;
|
|
bool confirm_before_connecting;
|
|
bool run_minimized;
|
|
bool run_on_startup;
|
|
bool hangup_if_dialed;
|
|
double work_buf_min_days;
|
|
int max_cpus;
|
|
double cpu_scheduling_period_minutes;
|
|
double disk_interval;
|
|
double disk_max_used_gb;
|
|
double disk_max_used_pct;
|
|
double disk_min_free_gb;
|
|
double vm_max_used_pct;
|
|
double idle_time_to_run;
|
|
double max_bytes_sec_up;
|
|
double max_bytes_sec_down;
|
|
//int max_memory_mbytes;
|
|
int proc_priority;
|
|
int cpu_affinity;
|
|
char source_project[256];
|
|
char source_scheduler[256];
|
|
|
|
GLOBAL_PREFS();
|
|
void defaults();
|
|
void clear_bools();
|
|
int parse(FILE*, char* venue, bool& found_venue);
|
|
int parse_file(char* filename, char* venue, bool& found_venue);
|
|
int write(FILE*);
|
|
};
|
|
|
|
#endif
|