| /*****************************************************************************\ |
| * txn_functions.c - functions dealing with transactions 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/common/slurmdbd_defs.h" |
| |
| static int _set_cond(int *start, int argc, char **argv, |
| slurmdb_txn_cond_t *txn_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], "where", |
| MAX(command_len, 5))) { |
| continue; |
| } else if (!end && !xstrncasecmp(argv[i], "withassocinfo", |
| MAX(command_len, 5))) { |
| txn_cond->with_assoc_info = 1; |
| set = 1; |
| } else if (!end |
| || (!xstrncasecmp(argv[i], "Ids", |
| MAX(command_len, 1))) |
| || (!xstrncasecmp(argv[i], "Txn", |
| MAX(command_len, 1)))) { |
| list_itr_t *itr = NULL; |
| char *temp = NULL; |
| uint32_t id = 0; |
| |
| if (!txn_cond->id_list) |
| txn_cond->id_list = list_create(xfree_ptr); |
| |
| if (slurm_addto_char_list(txn_cond->id_list, |
| argv[i]+end)) |
| set = 1; |
| |
| /* check to make sure user gave ints here */ |
| itr = list_iterator_create(txn_cond->id_list); |
| while ((temp = list_next(itr))) { |
| if (get_uint(temp, &id, "Transaction ID") |
| != SLURM_SUCCESS) { |
| exit_code = 1; |
| list_delete_item(itr); |
| } |
| } |
| list_iterator_destroy(itr); |
| } else if (!xstrncasecmp(argv[i], "Accounts", |
| MAX(command_len, 3))) { |
| if (!txn_cond->acct_list) |
| txn_cond->acct_list = list_create(xfree_ptr); |
| if (slurm_addto_char_list(txn_cond->acct_list, |
| argv[i]+end)) |
| set = 1; |
| } else if (!xstrncasecmp(argv[i], "Action", |
| MAX(command_len, 4))) { |
| if (!txn_cond->action_list) |
| txn_cond->action_list = list_create(xfree_ptr); |
| |
| if (addto_action_char_list(txn_cond->action_list, |
| argv[i]+end) > 0) |
| set = 1; |
| else |
| exit_code=1; |
| } else if (!xstrncasecmp(argv[i], "Actors", |
| MAX(command_len, 4))) { |
| if (!txn_cond->actor_list) |
| txn_cond->actor_list = list_create(xfree_ptr); |
| if (slurm_addto_char_list(txn_cond->actor_list, |
| argv[i]+end)) |
| set = 1; |
| } else if (!xstrncasecmp(argv[i], "Clusters", |
| MAX(command_len, 3))) { |
| if (!txn_cond->cluster_list) |
| txn_cond->cluster_list = list_create(xfree_ptr); |
| if (slurm_addto_char_list(txn_cond->cluster_list, |
| argv[i]+end)) |
| set = 1; |
| } else if (!xstrncasecmp(argv[i], "End", MAX(command_len, 1))) { |
| txn_cond->time_end = parse_time(argv[i]+end, 1); |
| 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 (!xstrncasecmp(argv[i], "Start", |
| MAX(command_len, 1))) { |
| txn_cond->time_start = parse_time(argv[i]+end, 1); |
| set = 1; |
| } else if (!xstrncasecmp(argv[i], "Users", |
| MAX(command_len, 1))) { |
| if (!txn_cond->user_list) |
| txn_cond->user_list = list_create(xfree_ptr); |
| if (slurm_addto_char_list_with_case(txn_cond->user_list, |
| argv[i]+end, |
| user_case_norm)) |
| set = 1; |
| } else { |
| exit_code=1; |
| fprintf(stderr, " Unknown condition: %s\n", argv[i]); |
| } |
| } |
| (*start) = i; |
| |
| return set; |
| } |
| |
| |
| extern int sacctmgr_list_txn(int argc, char **argv) |
| { |
| int rc = SLURM_SUCCESS; |
| slurmdb_txn_cond_t *txn_cond = xmalloc(sizeof(slurmdb_txn_cond_t)); |
| list_t *txn_list = NULL; |
| slurmdb_txn_rec_t *txn = NULL; |
| int i=0; |
| list_itr_t *itr = NULL; |
| list_itr_t *itr2 = NULL; |
| int field_count = 0; |
| char *tmp_char = NULL; |
| |
| 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, txn_cond, format_list); |
| } |
| |
| if (exit_code) { |
| slurmdb_destroy_txn_cond(txn_cond); |
| FREE_NULL_LIST(format_list); |
| return SLURM_ERROR; |
| } |
| |
| if (!list_count(format_list)) { |
| slurm_addto_char_list(format_list, |
| "Time,Action,Actor,Where,Info"); |
| if (txn_cond->with_assoc_info) |
| slurm_addto_char_list(format_list, |
| "User,Account,Cluster"); |
| } |
| |
| print_fields_list = sacctmgr_process_format_list(format_list); |
| FREE_NULL_LIST(format_list); |
| |
| if (exit_code) { |
| FREE_NULL_LIST(print_fields_list); |
| return SLURM_ERROR; |
| } |
| |
| txn_list = slurmdb_txn_get(db_conn, txn_cond); |
| slurmdb_destroy_txn_cond(txn_cond); |
| |
| if (!txn_list) { |
| exit_code=1; |
| fprintf(stderr, " Error with request: %s\n", |
| slurm_strerror(errno)); |
| FREE_NULL_LIST(print_fields_list); |
| return SLURM_ERROR; |
| } |
| itr = list_iterator_create(txn_list); |
| itr2 = list_iterator_create(print_fields_list); |
| print_fields_header(print_fields_list); |
| |
| field_count = list_count(print_fields_list); |
| |
| while((txn = list_next(itr))) { |
| int curr_inx = 1; |
| while((field = list_next(itr2))) { |
| switch(field->type) { |
| case PRINT_ACCT: |
| field->print_routine(field, txn->accts, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_ACTIONRAW: |
| field->print_routine( |
| field, |
| &txn->action, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_ACTION: |
| tmp_char = slurmdbd_msg_type_2_str( |
| txn->action, 0); |
| field->print_routine( |
| field, |
| tmp_char, |
| (curr_inx == field_count)); |
| tmp_char = NULL; |
| break; |
| case PRINT_ACTOR: |
| field->print_routine(field, |
| txn->actor_name, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_CLUSTER: |
| field->print_routine(field, txn->clusters, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_ID: |
| field->print_routine(field, |
| &txn->id, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_INFO: |
| field->print_routine(field, |
| txn->set_info, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_TS: |
| field->print_routine(field, |
| &txn->timestamp, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_USER: |
| field->print_routine(field, txn->users, |
| (curr_inx == field_count)); |
| break; |
| case PRINT_WHERE: |
| field->print_routine(field, |
| txn->where_query, |
| (curr_inx == field_count)); |
| break; |
| default: |
| field->print_routine(field, NULL, |
| (curr_inx == field_count)); |
| break; |
| } |
| curr_inx++; |
| } |
| list_iterator_reset(itr2); |
| printf("\n"); |
| } |
| |
| list_iterator_destroy(itr2); |
| list_iterator_destroy(itr); |
| FREE_NULL_LIST(txn_list); |
| FREE_NULL_LIST(print_fields_list); |
| return rc; |
| } |