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
|
/*___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 <stdio.h>
#include <string.h>
#include <time.h>
#include <limits.h>
#include <errno.h>
#include "uti/sge_rmon.h"
#include "uti/sge_stdio.h"
#include "uti/sge_time.h"
#include "uti/sge_string.h"
#include "sgeobj/cull_parse_util.h"
#include "sgeobj/sge_answer.h"
#include "schedd_monitor.h"
#include "msg_common.h"
static char schedd_log_file[SGE_PATH_MAX + 1] = "";
void schedd_set_schedd_log_file(sge_gdi_ctx_class_t *ctx)
{
const char *cell_root = ctx->get_cell_root(ctx);
DENTER(TOP_LAYER, "schedd_set_schedd_log_file");
if (!*schedd_log_file) {
snprintf(schedd_log_file, sizeof(schedd_log_file), "%s/%s/%s", cell_root, "common", SCHED_LOG_NAME);
DPRINTF(("schedd log file >>%s<<\n", schedd_log_file));
}
DEXIT;
}
int schedd_log(const char *logstr, lList **monitor_alpp, bool monitor_next_run)
{
DENTER(TOP_LAYER, "schedd_log");
if (monitor_alpp != NULL) {
/* add to answer list for verification (-w v) */
answer_list_add(monitor_alpp, logstr, STATUS_ESEMANTIC, ANSWER_QUALITY_ERROR);
}
if (monitor_next_run) {
/* do logging (-tsm) */
time_t now;
FILE *fp = NULL;
char *time_str = NULL;
char str[128];
now = (time_t)sge_get_gmt();
time_str = ctime_r(&now, str);
if (time_str[strlen(time_str) - 1] == '\n') {
time_str[strlen(time_str) - 1] = '|';
}
fp = fopen(schedd_log_file, "a");
if (!fp) {
DPRINTF(("could not open schedd_log_file "SFQ"\n", schedd_log_file));
DRETURN(-1);
}
fprintf(fp, "%s", time_str);
fprintf(fp, "%s\n", logstr);
FCLOSE(fp);
}
DRETURN(0);
FCLOSE_ERROR:
DPRINTF((MSG_FILE_NOCLOSE_SS, schedd_log_file, strerror(errno)));
DRETURN(-1);
}
#define NUM_ITEMS_ON_LINE 10
int schedd_log_list(lList **monitor_alpp, bool monitor_next_run, const char *logstr, lList *lp, int nm) {
int fields[] = { 0, 0 };
const char *delis[] = {NULL, " ", NULL};
lList *lp_part = NULL;
lListElem *ep = NULL;
DENTER(TOP_LAYER, "schedd_log_list");
#ifndef WIN32NATIVE
if (monitor_alpp == NULL && !monitor_next_run) {
DRETURN(0);
}
fields[0] = nm;
for_each(ep, lp) {
if (!lp_part) {
lp_part = lCreateList("partial list", lGetListDescr(lp));
}
lAppendElem(lp_part, lCopyElem(ep));
if ((lGetNumberOfElem(lp_part) == NUM_ITEMS_ON_LINE) || !lNext(ep)) {
char log_string[2048];
sge_strlcpy(log_string, logstr, sizeof(log_string));
#ifndef WIN32NATIVE
uni_print_list(NULL,
log_string + strlen(log_string),
sizeof(log_string) - strlen(log_string) - 1,
lp_part,
fields, delis, 0);
#endif
schedd_log(log_string, monitor_alpp, monitor_next_run);
lFreeList(&lp_part);
lp_part = NULL;
}
}
#else
DPRINTF(("schedd_log_list does nothing for QMonNT !!!\n"));
#endif
DEXIT;
return 0;
}
const char *job_descr(
u_long32 jobid
) {
static char descr[20];
if (jobid) {
snprintf(descr, sizeof(descr), "Job "sge_u32, jobid);
return descr;
} else
return "Job";
}
|