blob: c2b4651ad8664aec6066b5beaeed4feb8ad75592 [file] [log] [blame]
/*****************************************************************************\
* association_functions.c - functions dealing with associations in the
* accounting system.
*****************************************************************************
* Copyright (C) 2002-2007 The Regents of the University of California.
* Copyright (C) 2008-2010 Lawrence Livermore National Security.
* Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
* Written by Danny Auble <da@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 "src/sacctmgr/sacctmgr.h"
#include "src/interfaces/data_parser.h"
static int _set_cond(int *start, int argc, char **argv,
slurmdb_assoc_cond_t *assoc_cond,
list_t *format_list)
{
int i, end = 0;
int set = 0;
int command_len = 0;
for (i=(*start); i<argc; i++) {
int op_type;
end = parse_option_end(argv[i], &op_type, &command_len);
if (!common_verify_option_syntax(argv[i], op_type, false))
continue;
if (!end && !xstrncasecmp(argv[i], "OnlyDefaults",
MAX(command_len, 2))) {
assoc_cond->flags |= ASSOC_COND_FLAG_ONLY_DEFS;
set = 1;
} else if (!end && !xstrncasecmp(argv[i], "Tree",
MAX(command_len, 4))) {
tree_display = 1;
} else if (!end && !xstrncasecmp(argv[i], "WithDeleted",
MAX(command_len, 5))) {
assoc_cond->flags |= ASSOC_COND_FLAG_WITH_DELETED;
} else if (!end &&
!xstrncasecmp(argv[i], "WithRawQOSLevel",
MAX(command_len, 5))) {
assoc_cond->flags |= ASSOC_COND_FLAG_RAW_QOS;
} else if (!end &&
!xstrncasecmp(argv[i], "WithSubAccounts",
MAX(command_len, 5))) {
assoc_cond->flags |= ASSOC_COND_FLAG_SUB_ACCTS;
} else if (!end && !xstrncasecmp(argv[i], "WOPInfo",
MAX(command_len, 4))) {
assoc_cond->flags |= ASSOC_COND_FLAG_WOPI;
} else if (!end && (!xstrncasecmp(argv[i], "WOPLimits",
MAX(command_len, 4)) ||
!xstrncasecmp(argv[i], "WOLimits",
MAX(command_len, 3)))) {
assoc_cond->flags |= ASSOC_COND_FLAG_WOPL;
} else if (!end && !xstrncasecmp(argv[i], "where",
MAX(command_len, 5))) {
continue;
} else if (!end || !xstrncasecmp(argv[i], "Ids",
MAX(command_len, 1))
|| !xstrncasecmp(argv[i], "Associations",
MAX(command_len, 2))) {
list_itr_t *itr = NULL;
char *temp = NULL;
uint32_t id = 0;
if (!assoc_cond->id_list)
assoc_cond->id_list = list_create(xfree_ptr);
slurm_addto_char_list(assoc_cond->id_list,
argv[i]+end);
/* check to make sure user gave ints here */
itr = list_iterator_create(assoc_cond->id_list);
while ((temp = list_next(itr))) {
if (get_uint(temp, &id, "AssocId")
!= SLURM_SUCCESS) {
exit_code = 1;
list_delete_item(itr);
}
}
list_iterator_destroy(itr);
set = 1;
} else if (!xstrncasecmp(argv[i], "Format",
MAX(command_len, 1))) {
if (format_list)
slurm_addto_char_list(format_list,
argv[i]+end);
} else if (!(set = sacctmgr_set_assoc_cond(
assoc_cond, argv[i], argv[i]+end,
command_len)) || exit_code) {
exit_code = 1;
fprintf(stderr, " Unknown condition: %s\n", argv[i]);
}
}
(*start) = i;
return set;
}
extern int sacctmgr_set_assoc_cond(slurmdb_assoc_cond_t *assoc_cond,
char *type, char *value,
int command_len)
{
int set =0;
xassert(assoc_cond);
xassert(type);
if (!xstrncasecmp(type, "Accounts", MAX(command_len, 2))
|| !xstrncasecmp(type, "Acct", MAX(command_len, 4))) {
if (!assoc_cond->acct_list)
assoc_cond->acct_list = list_create(xfree_ptr);
slurm_addto_char_list(assoc_cond->acct_list, value);
if (list_count(assoc_cond->acct_list))
set = 1;
} else if (!xstrncasecmp(type, "Ids", MAX(command_len, 1))
|| !xstrncasecmp(type, "Associations", MAX(command_len, 2))) {
list_itr_t *itr = NULL;
char *temp = NULL;
uint32_t id = 0;
if (!assoc_cond->id_list)
assoc_cond->id_list = list_create(xfree_ptr);
slurm_addto_char_list(assoc_cond->id_list, value);
/* check to make sure user gave ints here */
itr = list_iterator_create(assoc_cond->id_list);
while ((temp = list_next(itr))) {
if (get_uint(temp, &id, "AssocId") != SLURM_SUCCESS) {
exit_code = 1;
list_delete_item(itr);
}
}
list_iterator_destroy(itr);
set = 1;
} else if (!xstrncasecmp(type, "Clusters", MAX(command_len, 1))) {
if (!assoc_cond->cluster_list)
assoc_cond->cluster_list = list_create(xfree_ptr);
if (slurm_addto_char_list(assoc_cond->cluster_list, value))
set = 1;
} else if (!xstrncasecmp(type, "DefaultQOS", MAX(command_len, 8))) {
if (!assoc_cond->def_qos_id_list)
assoc_cond->def_qos_id_list = list_create(xfree_ptr);
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(
db_conn, NULL);
if (slurmdb_addto_qos_char_list(assoc_cond->def_qos_id_list,
g_qos_list, value, 0) > 0)
set = 1;
else
exit_code = 1;
} else if (!xstrncasecmp(type, "Partitions", MAX(command_len, 3))) {
if (!assoc_cond->partition_list)
assoc_cond->partition_list = list_create(xfree_ptr);
if (slurm_addto_char_list(assoc_cond->partition_list, value))
set = 1;
} else if (!xstrncasecmp(type, "Parents", MAX(command_len, 4))) {
if (!assoc_cond->parent_acct_list)
assoc_cond->parent_acct_list = list_create(xfree_ptr);
if (slurm_addto_char_list(assoc_cond->parent_acct_list, value))
set = 1;
} else if (!xstrncasecmp(type, "QosLevel", MAX(command_len, 1))) {
if (!assoc_cond->qos_list)
assoc_cond->qos_list = list_create(xfree_ptr);
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(
db_conn, NULL);
if (slurmdb_addto_qos_char_list(assoc_cond->qos_list,
g_qos_list, value, 0) > 0)
set = 1;
} else if (!xstrncasecmp(type, "Users", MAX(command_len, 1))) {
if (!assoc_cond->user_list)
assoc_cond->user_list = list_create(xfree_ptr);
if (slurm_addto_char_list_with_case(assoc_cond->user_list,
value, user_case_norm))
set = 1;
}
return set;
}
extern int sacctmgr_set_assoc_rec(slurmdb_assoc_rec_t *assoc,
char *type, char *value,
int command_len, int option,
bool *allow_option)
{
int set = 0;
uint32_t mins = NO_VAL;
uint64_t tmp64;
char *tmp_char = NULL;
uint32_t tres_flags = TRES_STR_FLAG_SORT_ID | TRES_STR_FLAG_REPLACE;
if (!assoc)
return set;
if (!xstrncasecmp(type, "Comment", MAX(command_len, 2))) {
assoc->comment = strip_quotes(value, NULL, 1);
set = 1;
} else if (!xstrncasecmp(type, "DefaultQOS", MAX(command_len, 8))) {
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(
db_conn, NULL);
if (atoi(value) == -1)
assoc->def_qos_id = -1;
else
assoc->def_qos_id = str_2_slurmdb_qos(
g_qos_list, value);
if (assoc->def_qos_id == NO_VAL) {
fprintf(stderr,
"You gave a bad default qos '%s'. "
"Use 'list qos' to get "
"complete list.\n",
value);
exit_code = 1;
}
set = 1;
} else if (!xstrncasecmp(type, "FairShare", MAX(command_len, 1))
|| !xstrncasecmp(type, "Shares", MAX(command_len, 1))) {
if (!xstrncasecmp(value, "parent", 6)) {
assoc->shares_raw = SLURMDB_FS_USE_PARENT;
set = 1;
} else if (get_uint(value, &assoc->shares_raw,
"FairShare") == SLURM_SUCCESS) {
set = 1;
}
} else if (!xstrncasecmp(type, "GrpCPUMins", MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"GrpCPUMins") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->grp_tres_mins, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "GrpCPURunMins", MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"GrpCPURunMins") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->grp_tres_run_mins, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "GrpCpus", MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"GrpCpus") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->grp_tres, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "GrpJobs", MAX(command_len, 4))) {
if (get_uint(value, &assoc->grp_jobs,
"GrpJobs") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "GrpJobsAccrue", MAX(command_len, 8))) {
if (get_uint(value, &assoc->grp_jobs_accrue,
"GrpJobsAccrue") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "GrpMemory", MAX(command_len, 4))) {
if (get_uint64(value, &tmp64,
"GrpMemory") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_MEM, tmp64);
slurmdb_combine_tres_strings(
&assoc->grp_tres, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "GrpNodes", MAX(command_len, 4))) {
if (get_uint64(value, &tmp64,
"GrpNodes") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_NODE, tmp64);
slurmdb_combine_tres_strings(
&assoc->grp_tres, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "GrpSubmitJobs",
MAX(command_len, 4))) {
if (get_uint(value, &assoc->grp_submit_jobs,
"GrpSubmitJobs") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "GrpTRES", MAX(command_len, 7))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->grp_tres, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "GrpTRESMins", MAX(command_len, 8))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->grp_tres_mins, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "GrpTRESRunMins", MAX(command_len, 8))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->grp_tres_run_mins, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "GrpWall", MAX(command_len, 4))) {
mins = time_str2mins(value);
if (mins != NO_VAL) {
assoc->grp_wall = mins;
set = 1;
} else {
exit_code=1;
fprintf(stderr, " Bad GrpWall time format: %s\n", type);
}
} else if (!xstrncasecmp(type, "MaxCPUMinsPerJob",
MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"MaxCPUMinsPerJob") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->max_tres_mins_pj, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "MaxCPURunMins", MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"MaxCPURunMins") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->max_tres_run_mins, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "MaxCpusPerJob", MAX(command_len, 7))) {
if (get_uint64(value, &tmp64,
"MaxCpusPerJob") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_CPU, tmp64);
slurmdb_combine_tres_strings(
&assoc->max_tres_pj, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "MaxJobs", MAX(command_len, 4))) {
if (get_uint(value, &assoc->max_jobs,
"MaxJobs") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "MaxJobsAccrue",
MAX(command_len, 8))) {
if (get_uint(value, &assoc->max_jobs_accrue,
"MaxJobsAccrue") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "MaxNodesPerJob", MAX(command_len, 4))) {
if (get_uint64(value, &tmp64,
"MaxNodes") == SLURM_SUCCESS) {
set = 1;
tmp_char = xstrdup_printf(
"%d=%"PRIu64, TRES_NODE, tmp64);
slurmdb_combine_tres_strings(
&assoc->max_tres_pj, tmp_char,
tres_flags);
xfree(tmp_char);
}
} else if (!xstrncasecmp(type, "MinPrioThresh",
MAX(command_len, 4))) {
if (get_uint(value, &assoc->min_prio_thresh,
"MinPrioThresh") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "MaxSubmitJobs", MAX(command_len, 4))) {
if (get_uint(value, &assoc->max_submit_jobs,
"MaxSubmitJobs") == SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "MaxTRES",
MAX(command_len, 7)) ||
!xstrncasecmp(type, "MaxTRESPJ",
MAX(command_len, 9)) ||
!xstrncasecmp(type, "MaxTRESPerJob",
MAX(command_len, 11))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->max_tres_pj, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "MaxTRESPerNode",
MAX(command_len, 11)) ||
!xstrncasecmp(type, "MaxTRESPN",
MAX(command_len, 9))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->max_tres_pn, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "MaxTRESMinsPerJob",
MAX(command_len, 8)) ||
!xstrncasecmp(type, "MaxTRESMinsPJ",
MAX(command_len, 13))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->max_tres_mins_pj, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "MaxTRESRunMins", MAX(command_len, 8))) {
sacctmgr_initialize_g_tres_list();
if ((tmp_char = slurmdb_format_tres_str(
value, g_tres_list, 1))) {
slurmdb_combine_tres_strings(
&assoc->max_tres_run_mins, tmp_char,
tres_flags);
set = 1;
xfree(tmp_char);
} else
exit_code = 1;
} else if (!xstrncasecmp(type, "MaxWallDurationPerJob",
MAX(command_len, 4))) {
mins = time_str2mins(value);
if (mins != NO_VAL) {
assoc->max_wall_pj = mins;
set = 1;
} else {
exit_code=1;
fprintf(stderr,
" Bad MaxWall time format: %s\n",
type);
}
} else if (!xstrncasecmp(type, "Parent", MAX(command_len, 2))) {
assoc->parent_acct = strip_quotes(value, NULL, 1);
set = 1;
} else if (!xstrncasecmp(type, "Priority", MAX(command_len, 2))) {
if (get_uint(value, &assoc->priority, "Priority") ==
SLURM_SUCCESS)
set = 1;
} else if (!xstrncasecmp(type, "QosLevel", MAX(command_len, 1))) {
*allow_option = true;
if (!assoc->qos_list)
assoc->qos_list = list_create(xfree_ptr);
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(
db_conn, NULL);
if (slurmdb_addto_qos_char_list(assoc->qos_list,
g_qos_list, value,
option) > 0)
set = 1;
}
return set;
}
extern void sacctmgr_print_default_qos(uint32_t def_qos_id,
print_field_t *field, bool last)
{
char *tmp_char = NULL, *print_acct = NULL;
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(db_conn, NULL);
if (def_qos_id != NO_VAL) {
tmp_char = slurmdb_qos_str(g_qos_list, def_qos_id);
if (!tmp_char)
tmp_char = print_acct =
xstrdup_printf("UNKN-%u", def_qos_id);
} else
tmp_char = print_acct = xstrdup("");
field->print_routine(field, tmp_char, last);
xfree(print_acct);
}
extern void sacctmgr_print_assoc_rec(slurmdb_assoc_rec_t *assoc,
print_field_t *field, list_t *tree_list,
bool last)
{
char *print_acct = NULL;
char *tmp_char = NULL;
uint64_t tmp_uint64 = NO_VAL64;
xassert(field);
if (!assoc) {
field->print_routine(field, NULL, last);
return;
}
switch(field->type) {
case PRINT_ACCT:
if (tree_display) {
char *local_acct = NULL;
char *parent_acct = NULL;
if (assoc->user) {
local_acct = xstrdup_printf("|%s", assoc->acct);
parent_acct = assoc->acct;
} else {
local_acct =
xstrdup(assoc->acct);
parent_acct =
assoc->parent_acct;
}
print_acct = slurmdb_tree_name_get(
local_acct, parent_acct, tree_list);
xfree(local_acct);
} else {
print_acct = assoc->acct;
}
field->print_routine(field, print_acct, last);
break;
case PRINT_CLUSTER:
field->print_routine(field, assoc->cluster, last);
break;
case PRINT_COMMENT:
field->print_routine(field, assoc->comment, last);
break;
case PRINT_DQOS:
sacctmgr_print_default_qos(assoc->def_qos_id, field, last);
break;
case PRINT_FAIRSHARE:
if (assoc->shares_raw == SLURMDB_FS_USE_PARENT)
print_fields_str(field, "parent", last);
else
field->print_routine(field, &assoc->shares_raw, last);
break;
case PRINT_FLAGS:
tmp_char = slurmdb_assoc_flags_2_str(assoc->flags);
field->print_routine(field, tmp_char, last);
break;
case PRINT_GRPCM:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->grp_tres_mins, TRES_CPU),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_GRPCRM:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->grp_tres_run_mins, TRES_CPU),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_GRPC:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->grp_tres, TRES_CPU),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_GRPTM:
field->print_routine(field, &assoc->grp_tres_mins, last);
break;
case PRINT_GRPTRM:
field->print_routine(field, &assoc->grp_tres_run_mins, last);
break;
case PRINT_GRPT:
field->print_routine(field, &assoc->grp_tres, last);
break;
case PRINT_GRPJ:
field->print_routine(field, &assoc->grp_jobs, last);
break;
case PRINT_GRPJA:
field->print_routine(field, &assoc->grp_jobs_accrue, last);
break;
case PRINT_GRPMEM:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->grp_tres, TRES_MEM),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_GRPN:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->grp_tres, TRES_NODE),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_GRPS:
field->print_routine(field, &assoc->grp_submit_jobs, last);
break;
case PRINT_GRPW:
field->print_routine(field, &assoc->grp_wall, last);
break;
case PRINT_ID:
field->print_routine(field, &assoc->id, last);
break;
case PRINT_LINEAGE:
field->print_routine(field, assoc->lineage, last);
break;
case PRINT_MAXCM:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->max_tres_mins_pj, TRES_CPU),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_MAXCRM:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->max_tres_run_mins, TRES_CPU);
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_MAXC:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->max_tres_pj, TRES_CPU);
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_MAXTM:
field->print_routine(field, &assoc->max_tres_mins_pj, last);
break;
case PRINT_MAXTRM:
field->print_routine(field, &assoc->max_tres_run_mins, last);
break;
case PRINT_MAXT:
field->print_routine(field, &assoc->max_tres_pj, last);
break;
case PRINT_MAXTN:
field->print_routine(field, &assoc->max_tres_pn, last);
break;
case PRINT_MAXJ:
field->print_routine(field, &assoc->max_jobs, last);
break;
case PRINT_MAXJA:
field->print_routine(field, &assoc->max_jobs_accrue, last);
break;
case PRINT_MINPT:
field->print_routine(field, &assoc->min_prio_thresh, last);
break;
case PRINT_MAXN:
tmp_uint64 = slurmdb_find_tres_count_in_string(
assoc->max_tres_pj, TRES_NODE),
field->print_routine(field,
&tmp_uint64,
last);
break;
case PRINT_MAXS:
field->print_routine(field, &assoc->max_submit_jobs, last);
break;
case PRINT_MAXW:
field->print_routine(field, &assoc->max_wall_pj, last);
break;
case PRINT_PID:
field->print_routine(field, &assoc->parent_id, last);
break;
case PRINT_PNAME:
field->print_routine(field, assoc->parent_acct, last);
break;
case PRINT_PART:
field->print_routine(field, assoc->partition, last);
break;
case PRINT_PRIO:
field->print_routine(field, &assoc->priority, last);
break;
case PRINT_QOS:
if (!g_qos_list)
g_qos_list = slurmdb_qos_get(
db_conn, NULL);
tmp_char = get_qos_complete_str(g_qos_list, assoc->qos_list);
field->print_routine(field, tmp_char, last);
xfree(tmp_char);
break;
case PRINT_QOS_RAW:
field->print_routine(field, &assoc->qos_list, last);
break;
case PRINT_USER:
field->print_routine(field, assoc->user, last);
break;
default:
field->print_routine(field, NULL, last);
break;
}
}
extern int sacctmgr_list_assoc(int argc, char **argv)
{
int rc = SLURM_SUCCESS;
slurmdb_assoc_cond_t *assoc_cond =
xmalloc(sizeof(slurmdb_assoc_cond_t));
list_t *assoc_list = NULL;
slurmdb_assoc_rec_t *assoc = NULL;
int i=0;
list_itr_t *itr = NULL;
list_itr_t *itr2 = NULL;
char *last_cluster = NULL;
list_t *tree_list = NULL;
int field_count = 0;
print_field_t *field = NULL;
list_t *format_list = list_create(xfree_ptr);
list_t *print_fields_list; /* types are of print_field_t */
for (i=0; i<argc; i++) {
int command_len = strlen(argv[i]);
if (!xstrncasecmp(argv[i], "Where", MAX(command_len, 5))
|| !xstrncasecmp(argv[i], "Set", MAX(command_len, 3)))
i++;
_set_cond(&i, argc, argv, assoc_cond, format_list);
}
if (exit_code) {
slurmdb_destroy_assoc_cond(assoc_cond);
FREE_NULL_LIST(format_list);
return SLURM_ERROR;
} else if (!list_count(format_list)) {
slurm_addto_char_list(format_list, "Cluster,Account,User,Part");
if (!(assoc_cond->flags & ASSOC_COND_FLAG_WOPL))
slurm_addto_char_list(format_list,
"Share,Priority,GrpJ,GrpTRES,"
"GrpS,GrpWall,GrpTRESMins,MaxJ,"
"MaxTRES,MaxTRESPerN,MaxS,MaxW,"
"MaxTRESMins,QOS,DefaultQOS,"
"GrpTRESRunMins");
}
print_fields_list = sacctmgr_process_format_list(format_list);
FREE_NULL_LIST(format_list);
if (exit_code) {
slurmdb_destroy_assoc_cond(assoc_cond);
FREE_NULL_LIST(print_fields_list);
return SLURM_ERROR;
}
assoc_list = slurmdb_associations_get(db_conn, assoc_cond);
slurmdb_destroy_assoc_cond(assoc_cond);
if (mime_type) {
DATA_DUMP_CLI_SINGLE(OPENAPI_ASSOCS_RESP, assoc_list, argc,
argv, db_conn, mime_type, data_parser, rc);
FREE_NULL_LIST(print_fields_list);
FREE_NULL_LIST(assoc_list);
return rc;
}
if (!assoc_list) {
exit_code=1;
fprintf(stderr, " Error with request: %s\n",
slurm_strerror(errno));
FREE_NULL_LIST(print_fields_list);
return SLURM_ERROR;
}
slurmdb_sort_hierarchical_assoc_list(assoc_list);
itr = list_iterator_create(assoc_list);
itr2 = list_iterator_create(print_fields_list);
print_fields_header(print_fields_list);
field_count = list_count(print_fields_list);
while((assoc = list_next(itr))) {
int curr_inx = 1;
if (!last_cluster || xstrcmp(last_cluster, assoc->cluster)) {
if (tree_list) {
list_flush(tree_list);
} else {
tree_list =
list_create(slurmdb_destroy_print_tree);
}
last_cluster = assoc->cluster;
}
while((field = list_next(itr2))) {
sacctmgr_print_assoc_rec(
assoc, field, tree_list,
(curr_inx == field_count));
curr_inx++;
}
list_iterator_reset(itr2);
printf("\n");
}
FREE_NULL_LIST(tree_list);
list_iterator_destroy(itr2);
list_iterator_destroy(itr);
FREE_NULL_LIST(assoc_list);
FREE_NULL_LIST(print_fields_list);
tree_display = 0;
return rc;
}