boinc/lib/keyword.cpp

124 lines
3.3 KiB
C++
Raw Normal View History

// This file is part of BOINC.
// http://boinc.berkeley.edu
// Copyright (C) 2017 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 <http://www.gnu.org/licenses/>.
// utility functions for keywords
#include <stdio.h>
#include "parse.h"
#include "keyword.h"
int KEYWORD::parse(XML_PARSER& xp) {
while (!xp.get_tag()) {
if (xp.match_tag("/keyword")) {
return 0;
}
if (xp.parse_string("name", name)) continue;
if (xp.parse_string("description", description)) continue;
if (xp.parse_int("parent", parent)) continue;
if (xp.parse_int("level", level)) continue;
if (xp.parse_int("category", category)) continue;
}
return ERR_XML_PARSE;
}
void KEYWORD::write_xml(MIOFILE& mf) {
mf.printf(
"<keyword>\n"
" <name>%s</name>\n"
" <description>%s</description>\n"
" <parent>%d</parent>\n"
" <level>%d</level>\n"
" <category>%d</category>\n",
name, description, parent, level, category
);
}
int KEYWORDS::parse(XML_PARSER& xp) {
while (!xp.get_tag()) {
if (xp.match_tag("/keyword")) {
return 0;
}
}
return ERR_XML_PARSE;
}
int USER_KEYWORDS::parse(XML_PARSER& xp) {
clear();
int x;
while (!xp.get_tag()) {
if (xp.match_tag("/user_keywords")) {
return 0;
}
if (xp.parse_int("yes", x)) {
yes.push_back(x);
} else if (xp.parse_int("no", x)) {
no.push_back(x);
}
}
return ERR_XML_PARSE;
}
void USER_KEYWORDS::write(FILE* f) {
if (empty()) {
return;
}
unsigned int i;
fprintf(f, "<user_keywords>\n");
for (i=0; i<yes.size(); i++) {
fprintf(f, " <yes>%d</yes>\n", yes[i]);
}
for (i=0; i<no.size(); i++) {
fprintf(f, " <no>%d</no>\n", no[i]);
}
fprintf(f, "</user_keywords>\n");
}
void JOB_KEYWORDS::parse_str(char* buf) {
char* p = strtok(buf, " ");
if (!p) return;
ids.push_back(atoi(p));
while (true) {
p = strtok(NULL, " ");
if (!p) break;
ids.push_back(atoi(p));
}
}
void JOB_KEYWORDS::write_xml_text(MIOFILE& mf, KEYWORDS& k) {
mf.printf("<job_keywords>\n");
for (unsigned int i=0; i<ids.size(); i++) {
int id = ids[i];
k.get(id).write_xml(mf);
}
mf.printf("</job_keywords>\n");
}
void JOB_KEYWORDS::write_xml_num(MIOFILE& out) {
bool first = true;
out.printf(" <keywords>");
for (unsigned int i=0; i<ids.size(); i++) {
if (first) {
out.printf("%d", ids[i]);
first = false;
} else {
out.printf(", %d", ids[i]);
}
}
out.printf("</keywords>\n");
}