Tidy: modernize-use-nullptr
[gromacs.git] / src / gromacs / commandline / viewit.cpp
blob87a8ebf76933c768866069f5b5fc1387a9588081
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5 * Copyright (c) 2001-2004, The GROMACS development team.
6 * Copyright (c) 2013,2014,2015,2017, by the GROMACS development team, led by
7 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
8 * and including many others, as listed in the AUTHORS file in the
9 * top-level source directory and at http://www.gromacs.org.
11 * GROMACS is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 2.1
14 * of the License, or (at your option) any later version.
16 * GROMACS is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with GROMACS; if not, see
23 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 * If you want to redistribute modifications to GROMACS, please
27 * consider that scientific software is very special. Version
28 * control is crucial - bugs must be traceable. We will be happy to
29 * consider code for inclusion in the official distribution, but
30 * derived work must not be called official GROMACS. Details are found
31 * in the README & COPYING files - if they are missing, get the
32 * official version at http://www.gromacs.org.
34 * To help us fund GROMACS development, we humbly ask that you cite
35 * the research papers on the package. Check out http://www.gromacs.org.
37 /* This file is completely threadsafe - keep it that way! */
38 #include "gmxpre.h"
40 #include "viewit.h"
42 #include <cstdlib>
43 #include <cstring>
45 #include "gromacs/commandline/filenm.h"
46 #include "gromacs/fileio/oenv.h"
47 #include "gromacs/utility/arraysize.h"
48 #include "gromacs/utility/cstringutil.h"
49 #include "gromacs/utility/fatalerror.h"
51 static const int can_view_ftp[] = {
53 efEPS, efXPM, efXVG, efPDB
55 #define NVIEW asize(can_view_ftp)
56 static const char* view_program[] = {
57 nullptr,
58 "ghostview", "display", nullptr, "xterm -e rasmol"
61 static int can_view(int ftp)
63 int i;
65 for (i = 1; i < NVIEW; i++)
67 if (ftp == can_view_ftp[i])
69 return i;
73 return 0;
76 void do_view(const gmx_output_env_t *oenv, const char *fn, const char *opts)
78 char buf[STRLEN], env[STRLEN];
79 const char *cmd;
80 int ftp, n;
82 if (output_env_get_view(oenv) && fn)
84 if (getenv("DISPLAY") == nullptr)
86 fprintf(stderr, "Can not view %s, no DISPLAY environment variable.\n", fn);
88 else
90 ftp = fn2ftp(fn);
91 sprintf(env, "GMX_VIEW_%s", ftp2ext(ftp));
92 upstring(env);
93 switch (ftp)
95 case efXVG:
96 if (!(cmd = getenv(env)) )
98 if (getenv("GMX_USE_XMGR") )
100 cmd = "xmgr";
102 else
104 cmd = "xmgrace";
107 break;
108 default:
109 if ( (n = can_view(ftp)) )
111 if (!(cmd = getenv(env)) )
113 cmd = view_program[n];
116 else
118 fprintf(stderr, "Don't know how to view file %s", fn);
119 return;
122 if (strlen(cmd) )
124 sprintf(buf, "%s %s %s &", cmd, opts ? opts : "", fn);
125 fprintf(stderr, "Executing '%s'\n", buf);
126 if (0 != system(buf) )
128 gmx_fatal(FARGS, "Failed executing command: %s", buf);
135 void view_all(const gmx_output_env_t *oenv, int nf, t_filenm fnm[])
137 int i;
139 for (i = 0; i < nf; i++)
141 if (can_view(fnm[i].ftp) && is_output(&(fnm[i])) &&
142 ( !is_optional(&(fnm[i])) || is_set(&(fnm[i])) ) )
144 do_view(oenv, fnm[i].fns[0], nullptr);