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