| /*****************************************************************************\ |
| * src/srun/fname.h - IO filename type implementation (srun specific) |
| ***************************************************************************** |
| * Copyright (C) 2002 The Regents of the University of California. |
| * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). |
| * Written by Mark Grondona <mgrondona@llnl.gov>. |
| * UCRL-CODE-226842. |
| * |
| * This file is part of SLURM, a resource management program. |
| * For details, see <http://www.llnl.gov/linux/slurm/>. |
| * |
| * 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. |
| \*****************************************************************************/ |
| |
| #ifdef HAVE_CONFIG_H |
| # include "config.h" |
| #endif |
| |
| #include <stdio.h> |
| #include <stdarg.h> |
| #include <stdlib.h> |
| #include <string.h> |
| #include <ctype.h> |
| |
| #include "src/srun/fname.h" |
| #include "src/srun/opt.h" |
| #include "src/srun/srun_job.h" |
| #include "src/srun/opt.h" |
| |
| #include "src/common/xmalloc.h" |
| #include "src/common/xstring.h" |
| #include "src/common/xassert.h" |
| |
| /* |
| * Max zero-padding width allowed |
| */ |
| #define MAX_WIDTH 10 |
| |
| |
| /* |
| * Fill in as much of filename as possible from srun, update |
| * filename type to one of the io types ALL, NONE, PER_TASK, ONE |
| */ |
| io_filename_t * |
| fname_create(srun_job_t *job, char *format) |
| { |
| unsigned long int wid = 0; |
| unsigned long int taskid = 0; |
| io_filename_t *fname = NULL; |
| char *p, *q, *name; |
| |
| fname = xmalloc(sizeof(*fname)); |
| fname->type = IO_ALL; |
| fname->name = NULL; |
| fname->taskid = -1; |
| |
| /* Handle special cases |
| */ |
| |
| if ((format == NULL) |
| || (strncasecmp(format, "all", (size_t) 3) == 0) |
| || (strncmp(format, "-", (size_t) 1) == 0) ) { |
| /* "all" explicitly sets IO_ALL and is the default */ |
| return fname; |
| } |
| |
| if (strncasecmp(format, "none", (size_t) 4) == 0) { |
| /* |
| * Set type to IO_PER_TASK so that /dev/null is opened |
| * on every node, which should be more efficient |
| */ |
| fname->type = IO_PER_TASK; |
| fname->name = xstrdup ("/dev/null"); |
| return fname; |
| } |
| |
| taskid = strtoul(format, &p, 10); |
| if ((*p == '\0') && ((int) taskid < opt.nprocs)) { |
| fname->type = IO_ONE; |
| fname->taskid = (uint32_t) taskid; |
| /* Set the name string to pass to slurmd |
| * to the taskid requested, so that tasks with |
| * no IO can open /dev/null. |
| */ |
| fname->name = xstrdup (format); |
| return fname; |
| } |
| |
| name = NULL; |
| q = p = format; |
| while (*p != '\0') { |
| if (*p == '%') { |
| if (isdigit(*(++p))) { |
| xmemcat(name, q, p - 1); |
| if ((wid = strtoul(p, &p, 10)) > MAX_WIDTH) |
| wid = MAX_WIDTH; |
| q = p - 1; |
| if (*p == '\0') |
| break; |
| } |
| |
| switch (*p) { |
| case 't': /* '%t' => taskid */ |
| case 'n': /* '%n' => nodeid */ |
| case 'N': /* '%N' => node name */ |
| |
| fname->type = IO_PER_TASK; |
| if (wid) |
| xstrcatchar(name, '%'); |
| p++; |
| break; |
| |
| case 'J': /* '%J' => "jobid.stepid" */ |
| case 'j': /* '%j' => jobid */ |
| |
| xmemcat(name, q, p - 1); |
| xstrfmtcat(name, "%0*d", wid, job->jobid); |
| |
| if ((*p == 'J') && (job->stepid != NO_VAL)) |
| xstrfmtcat(name, ".%d", job->stepid); |
| q = ++p; |
| break; |
| |
| case 's': /* '%s' => stepid */ |
| xmemcat(name, q, p - 1); |
| xstrfmtcat(name, "%0*d", wid, job->stepid); |
| q = ++p; |
| break; |
| |
| default: |
| break; |
| } |
| wid = 0; |
| } else |
| p++; |
| } |
| |
| if (q != p) |
| xmemcat(name, q, p); |
| |
| fname->name = name; |
| return fname; |
| } |
| |
| void |
| fname_destroy(io_filename_t *f) |
| { |
| if (f->name) |
| xfree(f->name); |
| xfree(f); |
| } |
| |
| char * |
| fname_remote_string (io_filename_t *f) |
| { |
| if ((f->type == IO_PER_TASK) || (f->type == IO_ONE)) |
| return (xstrdup (f->name)); |
| |
| return (NULL); |
| } |