| /*****************************************************************************\ |
| * job_functions.c - functions dealing with jobs in the accounting system. |
| ***************************************************************************** |
| * Copyright (C) 2008-2010 Lawrence Livermore National Security. |
| * Copyright (C) 2002-2008 The Regents of the University of California. |
| * 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://computing.llnl.gov/linux/slurm/>. |
| * 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" |
| |
| static int _set_cond(int *start, int argc, char *argv[], |
| slurmdb_job_modify_cond_t *job_cond) |
| { |
| char *next_str; |
| int i; |
| int set = 0; |
| int end = 0; |
| int command_len = 0; |
| |
| if (!job_cond) { |
| error("No job_cond given"); |
| return -1; |
| } |
| |
| job_cond->job_id = NO_VAL; |
| for (i=(*start); i<argc; i++) { |
| end = parse_option_end(argv[i]); |
| if (!end) |
| command_len=strlen(argv[i]); |
| else { |
| command_len=end-1; |
| if (argv[i][end] == '=') { |
| /* option = (int)argv[i][end-1]; */ |
| end++; |
| } |
| } |
| |
| if (!strncasecmp (argv[i], "Set", MAX(command_len, 3))) { |
| i--; |
| break; |
| } else if (!end && !strncasecmp(argv[i], "where", |
| MAX(command_len, 5))) { |
| continue; |
| } else if (!strncasecmp (argv[i], "Cluster", |
| MAX(command_len, 1))) { |
| job_cond->cluster = xstrdup(argv[i]+end); |
| } else if (!strncasecmp (argv[i], "JobID", |
| MAX(command_len, 1))) { |
| job_cond->job_id = (uint32_t) strtol(argv[i]+end, |
| &next_str, 10); |
| if ((job_cond->job_id == 0) || |
| ((next_str[0] != '\0') && (next_str[0] != ' '))) { |
| fprintf(stderr, "Invalid job id %s specified\n", |
| argv[i]+end); |
| exit_code = 1; |
| } else |
| set = 1; |
| } else { |
| exit_code = 1; |
| fprintf(stderr, " Unknown condition: %s\n" |
| " Use keyword 'set' to modify value\n", |
| argv[i]); |
| } |
| } |
| |
| if (!job_cond->cluster) |
| job_cond->cluster = slurm_get_cluster_name(); |
| |
| (*start) = i; |
| |
| return set; |
| } |
| |
| static int _set_rec(int *start, int argc, char *argv[], |
| slurmdb_job_rec_t *job) |
| { |
| int i; |
| int set = 0; |
| int end = 0; |
| int command_len = 0; |
| int option = 0; |
| |
| for (i=(*start); i<argc; i++) { |
| end = parse_option_end(argv[i]); |
| if(!end) |
| command_len=strlen(argv[i]); |
| else { |
| command_len=end-1; |
| if(argv[i][end] == '=') { |
| option = (int)argv[i][end-1]; |
| end++; |
| } |
| } |
| |
| if (!strncasecmp (argv[i], "Where", MAX(command_len, 5))) { |
| i--; |
| break; |
| } else if(!end && !strncasecmp(argv[i], "set", |
| MAX(command_len, 3))) { |
| continue; |
| } else if(!end) { |
| exit_code=1; |
| fprintf(stderr, |
| " Bad format on %s: End your option with " |
| "an '=' sign\n", argv[i]); |
| } else if ((!strncasecmp(argv[i], "DerivedExitCode", |
| MAX(command_len, 12))) || |
| (!strncasecmp(argv[i], "DerivedEC", |
| MAX(command_len, 9)))) { |
| if (get_uint(argv[i]+end, &job->derived_ec, |
| "DerivedExitCode") == SLURM_SUCCESS) { |
| set = 1; |
| } |
| } else if ((!strncasecmp(argv[i], "DerivedExitString", |
| MAX(command_len, 12))) || |
| (!strncasecmp(argv[i], "DerivedES", |
| MAX(command_len, 9)))) { |
| if(job->derived_es) |
| xfree(job->derived_es); |
| job->derived_es = strip_quotes(argv[i]+end, NULL, 1); |
| set = 1; |
| } else { |
| printf(" Unknown option: %s\n" |
| " Use keyword 'where' to modify condition\n", |
| argv[i]); |
| } |
| } |
| |
| (*start) = i; |
| |
| return set; |
| } |
| |
| extern int sacctmgr_modify_job(int argc, char *argv[]) |
| { |
| int rc = SLURM_SUCCESS; |
| slurmdb_job_modify_cond_t *job_cond = xmalloc(sizeof( |
| slurmdb_job_modify_cond_t)); |
| slurmdb_job_rec_t *job = slurmdb_create_job_rec(); |
| int i=0; |
| int cond_set = 0, rec_set = 0, set = 0; |
| List ret_list = NULL; |
| |
| for (i=0; i<argc; i++) { |
| int command_len = strlen(argv[i]); |
| if (!strncasecmp(argv[i], "Where", MAX(command_len, 5))) { |
| i++; |
| cond_set += _set_cond(&i, argc, argv, job_cond); |
| |
| } else if (!strncasecmp(argv[i], "Set", MAX(command_len, 3))) { |
| i++; |
| rec_set += _set_rec(&i, argc, argv, job); |
| } else { |
| cond_set += _set_cond(&i, argc, argv, job_cond); |
| } |
| } |
| |
| if (exit_code) { |
| slurmdb_destroy_job_modify_cond(job_cond); |
| slurmdb_destroy_job_rec(job); |
| return SLURM_ERROR; |
| } else if (!rec_set) { |
| exit_code=1; |
| fprintf(stderr, " You didn't give me anything to set\n"); |
| slurmdb_destroy_job_modify_cond(job_cond); |
| slurmdb_destroy_job_rec(job); |
| return SLURM_ERROR; |
| } else if (!cond_set) { |
| if (!commit_check("You didn't set any conditions with 'WHERE'." |
| "\nAre you sure you want to continue?")) { |
| printf("Aborted\n"); |
| slurmdb_destroy_job_modify_cond(job_cond); |
| slurmdb_destroy_job_rec(job); |
| return SLURM_SUCCESS; |
| } |
| } |
| |
| notice_thread_init(); |
| |
| ret_list = acct_storage_g_modify_job(db_conn, my_uid, job_cond, job); |
| if (ret_list && list_count(ret_list)) { |
| char *object = NULL; |
| ListIterator itr = list_iterator_create(ret_list); |
| printf(" Modified jobs...\n"); |
| while((object = list_next(itr))) { |
| printf(" %s\n", object); |
| } |
| list_iterator_destroy(itr); |
| set = 1; |
| } else if (ret_list) { |
| printf(" Nothing modified\n"); |
| rc = SLURM_ERROR; |
| } else { |
| exit_code=1; |
| fprintf(stderr, " Error with request: %s\n", |
| slurm_strerror(errno)); |
| rc = SLURM_ERROR; |
| } |
| |
| if (ret_list) |
| list_destroy(ret_list); |
| |
| notice_thread_fini(); |
| |
| if (set) { |
| if (commit_check("Would you like to commit changes?")) |
| acct_storage_g_commit(db_conn, 1); |
| else { |
| printf(" Changes Discarded\n"); |
| acct_storage_g_commit(db_conn, 0); |
| } |
| } |
| |
| slurmdb_destroy_job_modify_cond(job_cond); |
| slurmdb_destroy_job_rec(job); |
| |
| return rc; |
| } |