blob: 5e867cebec30d75abe22dc37ad7bafa528533e10 [file] [log] [blame]
/*****************************************************************************\
* sprio.c - Display the priority components of jobs in the slurm system
*****************************************************************************
* Copyright (C) 2009 Lawrence Livermore National Security.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Don Lipari <lipari1@llnl.gov>
* CODE-OCEC-09-009. All rights reserved.
*
* This file is part of Slurm, a resource management program.
* For details, see <https://slurm.schedmd.com/>.
* Please also read the included file: DISCLAIMER.
*
* Slurm is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* In addition, as a special exception, the copyright holders give permission
* to link the code of portions of this program with the OpenSSL library under
* certain conditions as described in each individual source file, and
* distribute linked combinations including the two. You must obey the GNU
* General Public License in all respects for all of the code used other than
* OpenSSL. If you modify file(s) with this exception, you may extend this
* exception to your version of the file(s), but you are not obligated to do
* so. If you do not wish to do so, delete this exception statement from your
* version. If you delete this exception statement from all source files in
* the program, then also delete it here.
*
* Slurm 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 General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with Slurm; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
\*****************************************************************************/
#include "config.h"
#ifdef HAVE_TERMCAP_H
# include <termcap.h>
#endif
#include <termios.h>
#include <sys/ioctl.h>
#include "src/common/read_config.h"
#include "src/interfaces/priority.h"
#include "src/common/xstring.h"
#include "src/sprio/sprio.h"
/********************
* Global Variables *
********************/
struct sprio_parameters params;
uint32_t weight_age; /* weight for age factor */
uint32_t weight_assoc; /* weight for assoc factor */
uint32_t weight_fs; /* weight for Fairshare factor */
uint32_t weight_js; /* weight for Job Size factor */
uint32_t weight_part; /* weight for Partition factor */
uint32_t weight_qos; /* weight for QOS factor */
char *weight_tres; /* weights for TRES factors */
int main (int argc, char **argv)
{
char *prio_type = NULL;
int error_code = SLURM_SUCCESS;
priority_factors_response_msg_t *resp_msg = NULL;
log_options_t opts = LOG_OPTS_STDERR_ONLY ;
uint16_t show_flags = 0;
slurm_init(NULL);
log_init(xbasename(argv[0]), opts, SYSLOG_FACILITY_USER, NULL);
parse_command_line(argc, argv);
if (params.verbose) {
opts.stderr_level += params.verbose;
log_alter(opts, SYSLOG_FACILITY_USER, NULL);
}
if (working_cluster_rec) {
slurm_ctl_conf_info_msg_t *slurm_ctl_conf_ptr;
error_code = slurm_load_ctl_conf((time_t) NULL,
&slurm_ctl_conf_ptr);
if (error_code) {
slurm_perror ("slurm_load_ctl_conf error");
exit(error_code);
}
weight_age = slurm_ctl_conf_ptr->priority_weight_age;
weight_assoc = slurm_ctl_conf_ptr->priority_weight_assoc;
weight_fs = slurm_ctl_conf_ptr->priority_weight_fs;
weight_js = slurm_ctl_conf_ptr->priority_weight_js;
weight_part = slurm_ctl_conf_ptr->priority_weight_part;
weight_qos = slurm_ctl_conf_ptr->priority_weight_qos;
weight_tres = slurm_ctl_conf_ptr->priority_weight_tres;
prio_type = slurm_ctl_conf_ptr->priority_type;
slurm_free_ctl_conf(slurm_ctl_conf_ptr);
} else {
weight_age = slurm_conf.priority_weight_age;
weight_assoc = slurm_conf.priority_weight_assoc;
weight_fs = slurm_conf.priority_weight_fs;
weight_js = slurm_conf.priority_weight_js;
weight_part = slurm_conf.priority_weight_part;
weight_qos = slurm_conf.priority_weight_qos;
weight_tres = slurm_conf.priority_weight_tres;
prio_type = slurm_conf.priority_type;
}
/* Check to see if we are running a supported accounting plugin */
if (xstrcasecmp(prio_type, "priority/basic") == 0) {
fprintf (stderr, "You are not running a supported "
"priority plugin\n(%s).\n"
"Only 'priority/multifactor' is supported.\n",
prio_type);
exit(1);
}
if (params.federation)
show_flags |= SHOW_FEDERATION;
if (params.clusters || params.local)
show_flags |= SHOW_LOCAL;
if (params.sibling)
show_flags |= SHOW_FEDERATION | SHOW_SIBLING;
error_code = slurm_load_job_prio(&resp_msg, show_flags);
if (error_code) {
slurm_perror("Couldn't get priority factors from controller");
exit(error_code);
}
if (params.format == NULL) {
if (params.normalized) {
if (params.long_list) {
params.format = "%.15i %9r %.8u %.8o %10y %10a %10b %10f %10j %10p %10n %10q %20t";
} else {
params.format = xstrdup("%.15i %9r");
if (params.sibling && !params.local)
xstrcat(params.format, " %.8c");
if (params.users)
xstrcat(params.format, " %.8u");
xstrcat(params.format, " %10y");
if (weight_age)
xstrcat(params.format, " %10a");
if (weight_assoc)
xstrcat(params.format, " %10b");
if (weight_fs)
xstrcat(params.format, " %10f");
if (weight_js)
xstrcat(params.format, " %10j");
if (weight_part)
xstrcat(params.format, " %10p");
if (weight_qos)
xstrcat(params.format, " %10q");
if (weight_tres)
xstrcat(params.format, " %20t");
}
} else {
if (params.long_list) {
params.format = "%.15i %9r %.8u %.8o %.10Y %.10S %.10A %.10B %.10F %.10J %.10P %.10n %.10Q %.11N %.20T";
} else {
params.format = xstrdup("%.15i %9r");
if (params.sibling && !params.local)
xstrcat(params.format, " %.8c");
if (params.users)
xstrcat(params.format, " %.8u");
xstrcat(params.format, " %.10Y %.10S");
if (weight_age)
xstrcat(params.format, " %.10A");
if (weight_assoc)
xstrcat(params.format, " %.10B");
if (weight_fs)
xstrcat(params.format, " %.10F");
if (weight_js)
xstrcat(params.format, " %.10J");
if (weight_part)
xstrcat(params.format, " %.10P");
if (weight_qos)
xstrcat(params.format, " %.10Q");
if (weight_tres)
xstrcat(params.format, " %.20T");
}
}
}
/* create the format list from the format */
parse_format(params.format);
if (params.jobs && (!resp_msg || !resp_msg->priority_factors_list ||
!list_count(resp_msg->priority_factors_list))) {
printf("Unable to find jobs matching user/id(s) specified\n");
} else if (resp_msg) {
filter_job_list(resp_msg->priority_factors_list);
print_jobs_array(resp_msg->priority_factors_list,
params.format_list);
}
#ifdef MEMORY_LEAK_DEBUG
/* Free storage here if we want to verify that logic.
* Since we exit next, this is not important */
FREE_NULL_LIST(params.format_list);
slurm_free_priority_factors_response_msg(resp_msg);
#endif
exit (error_code);
}