2002-04-30 22:22:54 +00:00
|
|
|
// The contents of this file are subject to the Mozilla 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://www.mozilla.org/MPL/
|
|
|
|
//
|
|
|
|
// 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):
|
|
|
|
//
|
|
|
|
|
2002-06-06 18:50:12 +00:00
|
|
|
#include "windows_cpp.h"
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2002-06-01 20:26:21 +00:00
|
|
|
#include <stdlib.h>
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#include "parse.h"
|
2002-06-21 06:52:47 +00:00
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include "error_numbers.h"
|
2002-06-21 06:52:47 +00:00
|
|
|
#include "file_names.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
|
|
|
|
#include "prefs.h"
|
|
|
|
|
2002-09-27 06:12:50 +00:00
|
|
|
// the following values determine how the client behaves
|
2002-09-29 00:32:11 +00:00
|
|
|
// if there are no global prefs yet
|
2002-09-27 06:12:50 +00:00
|
|
|
//
|
2002-09-29 00:32:11 +00:00
|
|
|
GLOBAL_PREFS::GLOBAL_PREFS() {
|
2002-06-21 06:52:47 +00:00
|
|
|
dont_run_on_batteries = false;
|
|
|
|
dont_run_if_user_active = false;
|
2003-02-04 01:07:19 +00:00
|
|
|
run_minimized = false;
|
|
|
|
run_on_startup = false;
|
2002-06-21 06:52:47 +00:00
|
|
|
confirm_before_connecting = false;
|
2003-02-06 19:01:49 +00:00
|
|
|
hangup_if_dialed = false;
|
2002-08-22 22:28:51 +00:00
|
|
|
high_water_days = 3;
|
|
|
|
low_water_days = 1;
|
|
|
|
disk_max_used_gb = 1;
|
|
|
|
disk_max_used_pct = 0.5;
|
|
|
|
disk_min_free_gb = 0.1;
|
2002-11-20 20:14:48 +00:00
|
|
|
idle_time_to_run = 0;
|
2002-04-30 22:22:54 +00:00
|
|
|
};
|
|
|
|
|
2002-09-29 00:32:11 +00:00
|
|
|
// Parse XML global prefs
|
2002-07-15 23:21:20 +00:00
|
|
|
//
|
2002-09-29 00:32:11 +00:00
|
|
|
int GLOBAL_PREFS::parse(FILE* in) {
|
2002-04-30 22:22:54 +00:00
|
|
|
char buf[256];
|
|
|
|
|
|
|
|
while (fgets(buf, 256, in)) {
|
2002-09-29 00:32:11 +00:00
|
|
|
if (match_tag(buf, "</global_preferences>")) {
|
2002-09-26 05:57:10 +00:00
|
|
|
return 0;
|
2002-06-21 06:52:47 +00:00
|
|
|
} else if (match_tag(buf, "<dont_run_on_batteries/>")) {
|
2002-06-01 20:26:21 +00:00
|
|
|
dont_run_on_batteries = true;
|
2002-04-30 22:22:54 +00:00
|
|
|
continue;
|
2002-06-01 20:26:21 +00:00
|
|
|
} else if (match_tag(buf, "<dont_run_if_user_active/>")) {
|
|
|
|
dont_run_if_user_active = true;
|
|
|
|
continue;
|
|
|
|
} else if (match_tag(buf, "<confirm_before_connecting/>")) {
|
|
|
|
confirm_before_connecting = true;
|
|
|
|
continue;
|
2003-02-04 01:07:19 +00:00
|
|
|
} else if (match_tag(buf, "<run_minimized/>")) {
|
|
|
|
run_minimized = true;
|
|
|
|
continue;
|
|
|
|
} else if (match_tag(buf, "<run_on_startup/>")) {
|
|
|
|
run_on_startup = true;
|
|
|
|
continue;
|
2002-06-01 20:26:21 +00:00
|
|
|
} else if (parse_double(buf, "<high_water_days>", high_water_days)) {
|
|
|
|
continue;
|
|
|
|
} else if (parse_double(buf, "<low_water_days>", low_water_days)) {
|
|
|
|
continue;
|
|
|
|
} else if (parse_double(buf, "<disk_max_used_gb>", disk_max_used_gb)) {
|
|
|
|
continue;
|
|
|
|
} else if (parse_double(buf, "<disk_max_used_pct>", disk_max_used_pct)) {
|
|
|
|
continue;
|
|
|
|
} else if (parse_double(buf, "<disk_min_free_gb>", disk_min_free_gb)) {
|
2002-04-30 22:22:54 +00:00
|
|
|
continue;
|
2002-11-18 21:20:54 +00:00
|
|
|
} else if (parse_double(buf, "<idle_time_to_run>", idle_time_to_run)) {
|
|
|
|
continue;
|
2002-04-30 22:22:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ERR_XML_PARSE;
|
|
|
|
}
|
|
|
|
|
2002-09-29 00:32:11 +00:00
|
|
|
// Parse global prefs file
|
2002-07-15 23:21:20 +00:00
|
|
|
//
|
2002-09-29 00:32:11 +00:00
|
|
|
int GLOBAL_PREFS::parse_file() {
|
2002-06-21 06:52:47 +00:00
|
|
|
FILE* f;
|
|
|
|
int retval;
|
|
|
|
|
2002-09-29 00:32:11 +00:00
|
|
|
f = fopen(GLOBAL_PREFS_FILE_NAME, "r");
|
2002-06-21 06:52:47 +00:00
|
|
|
if (!f) return ERR_FOPEN;
|
|
|
|
retval = parse(f);
|
|
|
|
fclose(f);
|
|
|
|
return retval;
|
|
|
|
}
|