// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2012 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 . #include "filesys.h" #include "client_msgs.h" #include "client_state.h" #include "client_types.h" #include "project.h" #include "result.h" #include "cc_config.h" #include "app_config.h" static void show_warning(PROJECT* p, char* name) { msg_printf(p, MSG_USER_ALERT, "Your app_config.xml file refers to an unknown application '%s'. Known applications: %s", name, app_list_string(p).c_str() ); } // having parsed a project's app_config.xml, put the config into effect // int APP_CONFIGS::config_app_versions(PROJECT* p, bool show_warnings) { unsigned int i; bool showed_notice = false; for (i=0; imax_concurrent = ac.max_concurrent; app->fraction_done_exact = ac.fraction_done_exact; app->report_results_immediately = ac.report_results_immediately; if (!ac.gpu_gpu_usage || !ac.gpu_cpu_usage) continue; for (unsigned int j=0; japp != app) continue; if (!avp->gpu_usage.rsc_type) continue; avp->gpu_usage.usage = ac.gpu_gpu_usage; avp->avg_ncpus = ac.gpu_cpu_usage; } } for (i=0; iapp != app) continue; if (strcmp(avp->plan_class, avc.plan_class)) continue; found = true; if (cmdline_len) { safe_strcpy(avp->cmdline, avc.cmdline); } if (avc.avg_ncpus) { avp->avg_ncpus = avc.avg_ncpus; } if (avc.ngpus) { avp->gpu_usage.usage = avc.ngpus; } } if (!found) { msg_printf(p, MSG_USER_ALERT, "Entry in app_config.xml for app '%s', plan class '%s' doesn't match any app versions", avc.app_name, avc.plan_class ); } } if (showed_notice) return ERR_XML_PARSE; return 0; } // clear app- and project-level counters to enforce max concurrent limits // void max_concurrent_init() { for (unsigned int i=0; iapp_n_concurrent = 0; } for (unsigned int i=0; iproj_n_concurrent = 0; } } // undo the effects of an app_config.xml that no longer exists // NOTE: all we can do here is to clear APP::max_concurrent; // we can't restore device usage info because we don't have it. // It will be restored on next scheduler RPC. // static void clear_app_config(PROJECT* p) { p->app_configs.clear(); for (unsigned int i=0; iproject != p) continue; app->max_concurrent = 0; app->report_results_immediately = false; } } static void print_msgs(vector msgs, PROJECT* p) { for (unsigned int i=0; iproject_dir(), APP_CONFIG_FILE_NAME ); f = boinc_fopen(path, "r"); if (!f) { clear_app_config(p); continue; } msg_printf(p, MSG_INFO, "Found %s", APP_CONFIG_FILE_NAME); vector msgs; int retval = p->app_configs.parse_file(f, msgs, log_flags); print_msgs(msgs, p); if (!retval) { p->report_results_immediately = p->app_configs.report_results_immediately; retval = p->app_configs.config_app_versions(p, true); if (!retval) { notices.remove_notices(p, REMOVE_APP_CONFIG_MSG); } } fclose(f); } } void show_app_config() { if (!have_max_concurrent) return; for (unsigned int i=0; iapp_configs.project_max_concurrent) { msg_printf(p, MSG_INFO, "Max %d concurrent jobs", p->app_configs.project_max_concurrent ); } } for (unsigned int i=0; imax_concurrent) { msg_printf(app->project, MSG_INFO, "%s: Max %d concurrent jobs", app->name, app->max_concurrent ); } } }