1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the Sun Industry Standards Source License Version 1.2
*
* Sun Microsystems Inc., March, 2001
*
*
* Sun Industry Standards Source License Version 1.2
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.2 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2001 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
************************************************************************/
/*___INFO__MARK_END__*/
#include <string.h>
#include <strings.h>
#include "uti/sge_rmon.h"
#include "uti/sge_prog.h"
#include "uti/sge_log.h"
#include "sgeobj/sge_usage.h"
#include "sgeobj/sge_host.h"
#include "sgeobj/sge_report.h"
#include "sgeobj/sge_load.h"
#include "gdi/qm_name.h"
#include "comm/commlib.h"
#include "job_report_execd.h"
#include "load_avg.h"
#include "execd.h"
#include "sge.h"
#include "sge_report_execd.h"
#ifndef NO_SGE_COMPILE_DEBUG
static char* report_types[] = {
" REPORT_LOAD",
" REPORT_EVENTS",
" REPORT_CONF",
" REPORT_LICENSE",
" REPORT_JOB"
};
#endif
/*-------------------------------------------------------------------------*/
int sge_send_all_reports(sge_gdi_ctx_class_t *ctx, u_long32 now, int which,
report_source *report_sources)
{
int ret = 0;
unsigned long connect_time = 0;
DENTER(TOP_LAYER, "sge_send_all_reports");
/*
* Send reports only if there is not a communication error.
* Don't reset stored communication errors.
*/
cl_commlib_get_connect_time(ctx->get_com_handle(ctx),
(char *)ctx->get_master(ctx, true), (char*)prognames[QMASTER], 1,
&connect_time);
if (get_last_qmaster_register_time() >= connect_time && connect_time != 0) {
if (sge_get_com_error_flag(EXECD, SGE_COM_WAS_COMMUNICATION_ERROR, false) == false) {
const char *master_host = NULL;
lList *report_list = NULL;
int i = 0;
master_host = ctx->get_master(ctx, false);
DPRINTF(("SENDING LOAD AND REPORTS\n"));
report_list = lCreateList("report list", REP_Type);
for (i = 0; report_sources[i].type; i++) {
if (!which || which == report_sources[i].type) {
DPRINTF(("%s\n", report_types[report_sources[i].type - 1]));
report_sources[i].func(ctx, report_list, now, &(report_sources[i].next_send));
}
}
/* send load report asynchron to qmaster */
if (lGetNumberOfElem(report_list) > 0) {
/* wrap around */
if (++sge_execd_report_seqno == 10000) {
sge_execd_report_seqno = 0;
}
report_list_send(ctx, report_list, master_host, prognames[QMASTER], 1, 0);
}
lFreeList(&report_list);
}
} else {
ret = 1;
}
DRETURN(ret);
}
/* ----------------------------------------
add a double value to the load report list lpp
*/
int sge_add_double2load_report(lList **lpp, char *name, double value,
const char *host, char *units)
{
char load_string[255];
DENTER(BASIS_LAYER, "sge_add_double2load_report");
sprintf(load_string, "%f%s", value, units?units:"");
sge_add_str2load_report(lpp, name, load_string, host);
DRETURN(0);
}
/* ----------------------------------------
add an integer value to the load report list lpp
*/
int sge_add_int2load_report(lList **lpp, const char *name, int value,
const char *host)
{
char load_string[255];
int ret;
DENTER(BASIS_LAYER, "sge_add_int2load_report");
sprintf(load_string, "%d", value);
ret = sge_add_str2load_report(lpp, name, load_string, host);
DRETURN(ret);
}
/* ----------------------------------------
add a string value to the load report list lpp
*/
int sge_add_str2load_report(lList **lpp, const char *name, const char *value, const char *host)
{
lListElem *ep = NULL, *search_ep = NULL;
const void *iterator = NULL;
DENTER(BASIS_LAYER, "sge_add_str2load_report");
if (lpp == NULL || name == NULL || value == NULL || host == NULL) {
DRETURN(-1);
}
if (*lpp != NULL) {
search_ep = lGetElemHostFirst(*lpp, LR_host, host, &iterator);
while (search_ep != NULL) {
DPRINTF(("---> %s\n", lGetString(search_ep, LR_name)));
if (strcmp(lGetString(search_ep, LR_name), name) == 0) {
ep = search_ep;
break;
}
search_ep = lGetElemHostNext(*lpp, LR_host, host, &iterator);
}
}
if (ep == NULL) {
DPRINTF(("adding new load variable %s for host %s\n", name, host));
ep = lAddElemStr(lpp, LR_name, name, LR_Type);
lSetHost(ep, LR_host, host);
lSetUlong(ep, LR_global, (u_long32)(strcmp(host, SGE_GLOBAL_NAME) == 0 ? 1 : 0));
lSetUlong(ep, LR_static, sge_is_static_load_value(name));
}
lSetString(ep, LR_value, value);
DPRINTF(("load value %s for host %s: %s\n", name, host, value));
DRETURN(0);
}
|