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-05-17 22:33:57 +00:00
|
|
|
// A very crude interface for parsing XML files;
|
|
|
|
// assumes all elements are either single-line or
|
|
|
|
// have start and end tags on separate lines.
|
|
|
|
// This is meant to be used ONLY for parsing XML files produced
|
|
|
|
// by the BOINC scheduling server or client.
|
|
|
|
// Could replace this with a more general parser.
|
|
|
|
|
2002-06-06 18:50:12 +00:00
|
|
|
#ifdef _WIN32
|
2002-10-06 00:43:54 +00:00
|
|
|
#include <afxwin.h>
|
2002-06-06 18:50:12 +00:00
|
|
|
#endif
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "parse.h"
|
2002-07-11 01:09:53 +00:00
|
|
|
#include "error_numbers.h"
|
2002-04-30 22:22:54 +00:00
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// return true if the tag appears in the line
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
bool match_tag(char* buf, char* tag) {
|
|
|
|
if (strstr(buf, tag)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// parse an integer of the form <tag>1234</tag>
|
|
|
|
// return true if it's there
|
|
|
|
// Note: this doesn't check for the end tag
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
bool parse_int(char* buf, char* tag, int& x) {
|
|
|
|
char* p = strstr(buf, tag);
|
|
|
|
if (!p) return false;
|
2002-10-03 18:33:46 +00:00
|
|
|
x = strtol(p+strlen(tag), 0, 0); // this parses 0xabcd correctly
|
2002-04-30 22:22:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// Same, for doubles
|
|
|
|
//
|
2002-04-30 22:22:54 +00:00
|
|
|
bool parse_double(char* buf, char* tag, double& x) {
|
|
|
|
char* p = strstr(buf, tag);
|
|
|
|
if (!p) return false;
|
|
|
|
x = atof(p+strlen(tag));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// parse a string of the form <tag>string</tag>
|
|
|
|
//
|
|
|
|
bool parse_str(char* buf, char* tag, char* dest, int len) {
|
2002-04-30 22:22:54 +00:00
|
|
|
char* p = strstr(buf, tag);
|
|
|
|
if (!p) return false;
|
2002-05-17 22:33:57 +00:00
|
|
|
p = strchr(p, '>');
|
2002-04-30 22:22:54 +00:00
|
|
|
char* q = strchr(p+1, '<');
|
2002-10-19 17:14:08 +00:00
|
|
|
if (!q) return false;
|
2002-04-30 22:22:54 +00:00
|
|
|
*q = 0;
|
2002-09-22 23:27:14 +00:00
|
|
|
strncpy(dest, p+1, len);
|
|
|
|
dest[len-1] = 0;
|
2002-10-19 17:14:08 +00:00
|
|
|
*q = '<';
|
2002-04-30 22:22:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// parse a string of the form name="string"
|
|
|
|
//
|
|
|
|
void parse_attr(char* buf, char* name, char* dest, int len) {
|
2002-05-17 22:33:57 +00:00
|
|
|
char* p, *q;
|
2002-07-31 05:59:43 +00:00
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
strcpy(dest, "");
|
2002-05-17 22:33:57 +00:00
|
|
|
p = strstr(buf, name);
|
|
|
|
if (!p) return;
|
|
|
|
p = strchr(p, '"');
|
|
|
|
if (!p) return;
|
|
|
|
q = strchr(p+1, '"');
|
|
|
|
if (!q) return;
|
|
|
|
*q = 0;
|
2002-09-22 23:27:14 +00:00
|
|
|
strncpy(dest, p+1, len);
|
|
|
|
dest[len-1] = 0;
|
2002-05-17 22:33:57 +00:00
|
|
|
}
|
|
|
|
|
2002-04-30 22:22:54 +00:00
|
|
|
void copy_stream(FILE* in, FILE* out) {
|
|
|
|
char buf[1024];
|
|
|
|
int n, m;
|
|
|
|
while (1) {
|
|
|
|
n = fread(buf, 1, 1024, in);
|
|
|
|
m = fwrite(buf, 1, n, out);
|
|
|
|
if (n < 1024) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// append to a malloc'd string
|
|
|
|
//
|
2002-07-05 05:33:40 +00:00
|
|
|
void strcatdup(char*& p, char* buf) {
|
|
|
|
p = (char*)realloc(p, strlen(p) + strlen(buf)+1);
|
|
|
|
if (!p) {
|
|
|
|
fprintf(stderr, "strcatdup: realloc failed\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
strcat(p, buf);
|
|
|
|
}
|
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// copy from a file to a malloc'd string until the end tag is reached
|
|
|
|
//
|
2002-06-21 06:52:47 +00:00
|
|
|
int dup_element_contents(FILE* in, char* end_tag, char** pp) {
|
|
|
|
char buf[256];
|
2002-07-31 05:59:43 +00:00
|
|
|
|
2002-07-05 05:33:40 +00:00
|
|
|
char* p = strdup("");
|
2002-06-21 06:52:47 +00:00
|
|
|
while (fgets(buf, 256, in)) {
|
|
|
|
if (strstr(buf, end_tag)) {
|
|
|
|
*pp = p;
|
|
|
|
return 0;
|
|
|
|
}
|
2002-07-05 05:33:40 +00:00
|
|
|
strcatdup(p, buf);
|
2002-06-21 06:52:47 +00:00
|
|
|
}
|
|
|
|
fprintf(stderr, "dup_element_contents(): no end tag\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2002-07-07 20:39:24 +00:00
|
|
|
|
2002-09-22 23:27:14 +00:00
|
|
|
// read a file into a malloc'd string
|
|
|
|
//
|
2002-07-07 20:39:24 +00:00
|
|
|
int read_file_malloc(char* pathname, char*& str) {
|
|
|
|
char buf[256];
|
|
|
|
FILE* f;
|
|
|
|
|
|
|
|
f = fopen(pathname, "r");
|
|
|
|
if (!f) return -1;
|
|
|
|
str = strdup("");
|
|
|
|
while (fgets(buf, 256, f)) {
|
|
|
|
strcatdup(str, buf);
|
|
|
|
}
|
|
|
|
fclose(f);
|
|
|
|
return 0;
|
|
|
|
}
|
2002-10-14 23:10:12 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
// replace XML element contents. not currently used
|
|
|
|
//
|
|
|
|
void replace_element(char* buf, char* start, char* end, char* replacement) {
|
|
|
|
char temp[MAX_BLOB_SIZE], *p, *q;
|
|
|
|
|
|
|
|
p = strstr(buf, start);
|
|
|
|
p += strlen(start);
|
|
|
|
q = strstr(p, end);
|
|
|
|
strcpy(temp, q);
|
|
|
|
strcpy(p, replacement);
|
|
|
|
strcat(p, temp);
|
|
|
|
}
|
|
|
|
#endif
|