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 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
/*___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 <pthread.h>
#include "uti/sge_rmon.h"
#include "uti/sge_log.h"
#include "uti/sge_time.h"
#include "uti/sge_string.h"
#include "uti/sge_mtutil.h"
#include "sgeobj/sge_sharetree.h"
#include "sgeobj/sge_userprj.h"
#include "sgeobj/sge_schedd_conf.h"
#include "sgeobj/sge_usage.h"
#include "sge_support.h"
#include "sge_sharetree_printing.h"
typedef enum {
ULONG_T=0,
DATE_T,
STRING_T,
DOUBLE_T
} item_type_t;
typedef struct {
char *name;
item_type_t type;
void *val;
} item_t;
/* This module uses a number of module global variables.
* Access to these variables will be locked using this mutex.
*/
static pthread_mutex_t mtx = PTHREAD_MUTEX_INITIALIZER;
static double mem, cpu, io, ltmem, ltcpu, ltio, level, total,
lt_share, st_share, actual_share, combined_usage;
static lUlong current_time, time_stamp, shares, job_count;
static const char *node_name, *user_name, *project_name;
static const item_t item[] = {
{ "curr_time", DATE_T, ¤t_time },
{ "usage_time", DATE_T, &time_stamp },
{ "node_name", STRING_T, &node_name },
{ "user_name", STRING_T, &user_name },
{ "project_name", STRING_T, &project_name },
{ "shares", ULONG_T, &shares },
{ "job_count", ULONG_T, &job_count },
{ "level%", DOUBLE_T, &level },
{ "total%", DOUBLE_T, &total },
{ "long_target_share", DOUBLE_T, <_share },
{ "short_target_share", DOUBLE_T, &st_share },
{ "actual_share", DOUBLE_T, &actual_share },
{ "usage", DOUBLE_T, &combined_usage },
{ "cpu", DOUBLE_T, &cpu },
{ "mem", DOUBLE_T, &mem },
{ "io", DOUBLE_T, &io },
{ "ltcpu", DOUBLE_T, <cpu },
{ "ltmem", DOUBLE_T, <mem },
{ "ltio", DOUBLE_T, <io }
};
static const int items = sizeof(item) / sizeof(item_t);
/* ------------- static functions ---------------- */
static int
calculate_share_percents(lListElem *node, double parent_percent, double sibling_shares)
{
lListElem *child;
double sum_shares=0;
for_each(child, lGetList(node, STN_children)) {
sum_shares += lGetUlong(child, STN_shares);
}
if (sibling_shares > 0) {
lSetDouble(node, STN_proportion,
(double)lGetUlong(node, STN_shares) / (double)sibling_shares);
} else {
lSetDouble(node, STN_proportion, 0);
}
if (sibling_shares > 0) {
lSetDouble(node, STN_adjusted_proportion,
parent_percent *
(double)lGetUlong(node, STN_shares) / (double)sibling_shares);
} else {
lSetDouble(node, STN_adjusted_proportion, 0);
}
for_each(child, lGetList(node, STN_children)) {
calculate_share_percents(child, lGetDouble(node, STN_adjusted_proportion),
sum_shares);
}
return 0;
}
static double
get_usage_value(const lList *usage, const char *name)
{
lListElem *ue;
double value = 0;
if ((ue = lGetElemStr(usage, UA_name, name))) {
value = lGetDouble(ue, UA_value);
}
return value;
}
static void
print_field(dstring *out, const item_t *item, const format_t *format)
{
if (format->name_format) {
sge_dstring_sprintf_append(out, "%s=", item->name);
}
switch(item->type) {
case ULONG_T:
sge_dstring_sprintf_append(out, sge_U32CFormat, *(u_long32 *)item->val);
break;
case DATE_T:
{
u_long32 t = *(u_long32 *)item->val;
if (t && format->format_times) {
char tc_buffer[100];
dstring tc_dstring;
char *tc;
sge_dstring_init(&tc_dstring, tc_buffer, sizeof(tc_buffer));
tc = (char *)sge_ctime32(&t, &tc_dstring);
if (tc != NULL && *tc != '\0') {
/* remove trailing linefeed */
tc[sge_dstring_strlen(&tc_dstring) - 1] = '\0';
}
sge_dstring_sprintf_append(out, format->str_format, tc);
} else {
sge_dstring_sprintf_append(out, sge_U32CFormat, t);
}
}
break;
case DOUBLE_T:
sge_dstring_sprintf_append(out, "%f", *(double *)item->val);
break;
case STRING_T:
sge_dstring_sprintf_append(out, format->str_format,
*(char **)item->val);
break;
}
sge_dstring_sprintf_append(out, "%s", format->delim);
}
static void
print_node(dstring *out, const lListElem *node,
const lListElem *user, const lListElem *project,
const char **names, const format_t *format,
const lListElem *parent, const char *parent_node_names)
{
if (node != NULL) {
lList *usage=NULL, *ltusage=NULL;
int i, fields_printed=0;
dstring node_name_dstring = DSTRING_INIT;
current_time = sge_get_gmt();
time_stamp = user ? lGetUlong(user, UU_usage_time_stamp) : 0;
/*
* we want to name the Root node simply /, instead of /Root
* but it is possible to create nodes /project1/Root
*/
if (parent == NULL) {
sge_dstring_sprintf(&node_name_dstring, "/");
} else {
sge_dstring_sprintf(&node_name_dstring, "%s/%s", parent_node_names, lGetString(node, STN_name));
}
node_name = sge_dstring_get_string(&node_name_dstring);
user_name = user ? lGetString(user, UU_name) : "";
project_name = project ? lGetString(project, PR_name) : "";
shares = lGetUlong(node, STN_shares);
job_count = lGetUlong(node, STN_job_ref_count);
level = lGetDouble(node, STN_proportion);
total = lGetDouble(node, STN_adjusted_proportion);
lt_share = lGetDouble(node, STN_m_share);
st_share = lGetDouble(node, STN_adjusted_current_proportion);
actual_share = lGetDouble(node, STN_actual_proportion);
combined_usage = lGetDouble(node, STN_combined_usage);
if (lGetList(node, STN_children) == NULL && user && project) {
lList *projl = lGetList(user, UU_project);
lListElem *upp;
if (projl) {
if ((upp=lGetElemStr(projl, UPP_name,
lGetString(project, PR_name)))) {
usage = lGetList(upp, UPP_usage);
ltusage = lGetList(upp, UPP_long_term_usage);
}
}
} else if (user && strcmp(lGetString(user, UU_name),
lGetString(node, STN_name))==0) {
usage = lGetList(user, UU_usage);
ltusage = lGetList(user, UU_long_term_usage);
} else if (project && strcmp(lGetString(project, PR_name),
lGetString(node, STN_name))==0) {
usage = lGetList(project, PR_usage);
ltusage = lGetList(project, PR_long_term_usage);
}
if (usage) {
cpu = get_usage_value(usage, USAGE_ATTR_CPU);
mem = get_usage_value(usage, USAGE_ATTR_MEM);
io = get_usage_value(usage, USAGE_ATTR_IO);
} else {
cpu = mem = io = 0;
}
if (ltusage) {
ltcpu = get_usage_value(ltusage, USAGE_ATTR_CPU);
ltmem = get_usage_value(ltusage, USAGE_ATTR_MEM);
ltio = get_usage_value(ltusage, USAGE_ATTR_IO);
} else {
ltcpu = ltmem = ltio = 0;
}
if (names) {
int found=0;
const char **name = names;
while (*name) {
if (strcmp(*name, node_name)==0) {
found = 1;
}
name++;
}
if (!found) {
sge_dstring_free(&node_name_dstring);
return;
}
}
/* print line prefix */
if (format->line_prefix != NULL) {
sge_dstring_append(out, format->line_prefix);
}
if (format->field_names) {
struct saved_vars_s *context = NULL;
char *field;
field = sge_strtok_r(format->field_names, ",", &context);
while (field) {
for (i=0; i<items; i++) {
if (strcmp(field, item[i].name)==0) {
print_field(out, &item[i], format);
fields_printed++;
break;
}
}
field = sge_strtok_r(NULL, ",", &context);
}
sge_free_saved_vars(context);
} else {
for (i=0; i<items; i++) {
print_field(out, &item[i], format);
fields_printed++;
}
}
if (fields_printed) {
sge_dstring_sprintf_append(out, "%s", format->line_delim);
}
sge_dstring_free(&node_name_dstring);
}
}
static void
print_nodes(dstring *out, const lListElem *node, const lListElem *parent,
const lListElem *project, const lList *users, const lList *projects,
bool group_nodes, const char **names, const format_t *format, const char *parent_node_names)
{
const lListElem *user, *child;
const lList *children = lGetList(node, STN_children);
dstring node_name_dstring = DSTRING_INIT;
if (!project) {
project = prj_list_locate(projects, lGetString(node, STN_name));
}
if (children == NULL) {
user = user_list_locate(users, lGetString(node, STN_name));
} else {
user = NULL;
}
if (group_nodes || (children == NULL)) {
print_node(out, node, user, project, names, format, parent, parent_node_names);
}
for_each(child, children) {
/* we want to name the Root node simply /, instead of /Root */
if (parent == NULL) {
sge_dstring_sprintf(&node_name_dstring, "%s", "");
} else {
sge_dstring_sprintf(&node_name_dstring, "%s/%s", parent_node_names, lGetString(node, STN_name));
}
print_nodes(out, child, node, project, users, projects,
group_nodes, names, format, sge_dstring_get_string(&node_name_dstring));
}
sge_dstring_free(&node_name_dstring);
}
/* ------------- public functions ---------------- */
/****** sge_sharetree_printing/print_hdr() *************************************
* NAME
* print_hdr() -- print a header for the sharetree dump
*
* SYNOPSIS
* void
* print_hdr(dstring *out, const format_t *format)
*
* FUNCTION
* Prints a header for data output using the sge_sharetree_print function.
*
* INPUTS
* dstring *out - dstring into which data will be written
* const format_t *format - format description
*
* NOTES
* MT-NOTE: print_hdr() is MT-safe
*
* SEE ALSO
* sge_sharetree_printing/sge_sharetree_print()
*******************************************************************************/
void
print_hdr(dstring *out, const format_t *format)
{
int i;
DENTER(TOP_LAYER, "");
sge_mutex_lock("sharetree_printing", SGE_FUNC, __LINE__, &mtx);
if (format->field_names) {
struct saved_vars_s *context = NULL;
char *field;
field = sge_strtok_r(format->field_names, ",", &context);
while (field) {
for (i=0; i<items; i++) {
if (strcmp(field, item[i].name) == 0) {
sge_dstring_sprintf_append(out, "%s%s", item[i].name,
format->delim);
break;
}
}
field = sge_strtok_r(NULL, ",", &context);
}
sge_free_saved_vars(context);
} else {
for (i=0; i<items; i++) {
sge_dstring_sprintf_append(out, "%s%s", item[i].name, format->delim);
}
}
sge_dstring_sprintf_append(out, "%s", format->line_delim);
sge_dstring_sprintf_append(out, "%s", format->rec_delim);
sge_mutex_unlock("sharetree_printing", SGE_FUNC, __LINE__, &mtx);
DEXIT;
}
/****** sge_sharetree_printing/sge_sharetree_print() ***************************
* NAME
* sge_sharetree_print() -- dump sharetree information to a dstring
*
* SYNOPSIS
* void sge_sharetree_print(dstring *out, lList *sharetree, lList *users,
* lList *projects, lList *config,
* bool group_nodes, bool decay_usage,
* const char **names, const format_t *format)
*
* FUNCTION
* Dumps information about a sharetree into a given dstring. Information
* is appended.
*
* Outputs information like times, node (user/project) names, configured
* shares, actually received shares, targeted shares, usage information
* like cpu, memory and io.
*
* It is possible to restrict the number of fields that are output.
*
* Header information and formatting can be configured.
*
* INPUTS
* dstring *out - dstring into which data will be written
* lList *sharetree - the sharetree to dump
* lList *users - the user list
* lList *projects - the project list
* lList *config - the scheduler configuration list
* bool group_nodes - ???
* bool decay_usage - ???
* const char **names - fields to output
* const format_t *format - format description
*
* NOTES
* MT-NOTE: sge_sharetree_print() is MT-safe
*
* SEE ALSO
* sge_sharetree_printing/print_hdr()
*******************************************************************************/
void
sge_sharetree_print(dstring *out, lList *sharetree, const lList *users,
const lList *projects, const lList *usersets,
bool group_nodes, bool decay_usage,
const char **names, const format_t *format)
{
lListElem *root;
u_long32 curr_time = 0;
DENTER(TOP_LAYER, "sge_sharetree_print");
/*
* The sharetree might contain "default" nodes which
* have to be resolved to individual user nodes.
* This implies modifying the sharetree - so we better create a
* copy of the sharetree
*/
sharetree = lCopyList("copy of sharetree", sharetree);
/* Resolve the default users */
sge_add_default_user_nodes(lFirst(sharetree), users, projects, usersets);
/*
* The sharetree calculation and output uses lots of global variables
* Better control access to them through a mutex.
*/
sge_mutex_lock("sharetree_printing", SGE_FUNC, __LINE__, &mtx);
root = lFirst(sharetree);
calculate_share_percents(root, 1.0, lGetUlong(root, STN_shares));
if (decay_usage) {
curr_time = sge_get_gmt();
}
_sge_calc_share_tree_proportions(sharetree, users, projects, NULL,
curr_time);
print_nodes(out, root, NULL, NULL, users, projects,
group_nodes, names, format, "");
sge_mutex_unlock("sharetree_printing", SGE_FUNC, __LINE__, &mtx);
/* free our sharetree copy */
lFreeList(&sharetree);
DEXIT;
}
|