Remove sysstuff.h includes from headers
[alexxy/gromacs.git] / src / gromacs / gmxlib / viewit.c
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
5  * Copyright (c) 2001-2004, The GROMACS development team.
6  * Copyright (c) 2013,2014, 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.
10  *
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.
15  *
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.
20  *
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.
25  *
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.
33  *
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.
36  */
37 /* This file is completely threadsafe - keep it that way! */
38 #ifdef HAVE_CONFIG_H
39 #include <config.h>
40 #endif
41
42 #include <stdlib.h>
43 #include <string.h>
44
45 #include "oenv.h"
46 #include "viewit.h"
47 #include "gromacs/utility/cstringutil.h"
48 #include "gromacs/fileio/filenm.h"
49 #include "macros.h"
50 #include "gromacs/utility/fatalerror.h"
51
52 static const int   can_view_ftp[] = {
53     0,
54     efEPS,           efXPM,         efXVG,          efPDB
55 };
56 #define NVIEW asize(can_view_ftp)
57 static const char* view_program[] = {
58     NULL,
59     "ghostview",    "display",      NULL,           "xterm -e rasmol"
60 };
61
62 int can_view(int ftp)
63 {
64     int i;
65
66     for (i = 1; i < NVIEW; i++)
67     {
68         if (ftp == can_view_ftp[i])
69         {
70             return i;
71         }
72     }
73
74     return 0;
75 }
76
77 void do_view(const output_env_t oenv, const char *fn, const char *opts)
78 {
79     char        buf[STRLEN], env[STRLEN];
80     const char *cmd;
81     int         ftp, n;
82
83     if (output_env_get_view(oenv) && fn)
84     {
85         if (getenv("DISPLAY") == NULL)
86         {
87             fprintf(stderr, "Can not view %s, no DISPLAY environment variable.\n", fn);
88         }
89         else
90         {
91             ftp = fn2ftp(fn);
92             sprintf(env, "GMX_VIEW_%s", ftp2ext(ftp));
93             upstring(env);
94             switch (ftp)
95             {
96                 case efXVG:
97                     if (!(cmd = getenv(env)) )
98                     {
99                         if (getenv("XMGR") )
100                         {
101                             cmd = "xmgr";
102                         }
103                         else
104                         {
105                             cmd = "xmgrace";
106                         }
107                     }
108                     break;
109                 default:
110                     if ( (n = can_view(ftp)) )
111                     {
112                         if (!(cmd = getenv(env)) )
113                         {
114                             cmd = view_program[n];
115                         }
116                     }
117                     else
118                     {
119                         fprintf(stderr, "Don't know how to view file %s", fn);
120                         return;
121                     }
122             }
123             if (strlen(cmd) )
124             {
125                 sprintf(buf, "%s %s %s &", cmd, opts ? opts : "", fn);
126                 fprintf(stderr, "Executing '%s'\n", buf);
127 #ifdef GMX_NO_SYSTEM
128                 printf("Warning-- No calls to system(3) supported on this platform.");
129                 printf("Warning-- Skipping execution of 'system(\"%s\")'.", buf);
130 #else
131                 if (0 != system(buf) )
132                 {
133                     gmx_fatal(FARGS, "Failed executing command: %s", buf);
134                 }
135 #endif
136             }
137         }
138     }
139 }
140
141 void view_all(const output_env_t oenv, int nf, t_filenm fnm[])
142 {
143     int i;
144
145     for (i = 0; i < nf; i++)
146     {
147         if (can_view(fnm[i].ftp) && is_output(&(fnm[i])) &&
148             ( !is_optional(&(fnm[i])) || is_set(&(fnm[i])) ) )
149         {
150             do_view(oenv, fnm[i].fns[0], NULL);
151         }
152     }
153 }