Merge branch 'release-4-6' into master
[alexxy/gromacs.git] / src / gromacs / gmxlib / viewit.c
1 /*
2  *
3  *                This source code is part of
4  *
5  *                 G   R   O   M   A   C   S
6  *
7  *          GROningen MAchine for Chemical Simulations
8  *
9  *                        VERSION 3.2.0
10  * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
11  * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
12  * Copyright (c) 2001-2004, The GROMACS development team,
13  * check out http://www.gromacs.org for more information.
14
15  * This program is free software; you can redistribute it and/or
16  * modify it under the terms of the GNU General Public License
17  * as published by the Free Software Foundation; either version 2
18  * of the License, or (at your option) any later version.
19  *
20  * If you want to redistribute modifications, please consider that
21  * scientific software is very special. Version control is crucial -
22  * bugs must be traceable. We will be happy to consider code for
23  * inclusion in the official distribution, but derived work must not
24  * be called official GROMACS. Details are found in the README & COPYING
25  * files - if they are missing, get the official version at www.gromacs.org.
26  *
27  * To help us fund GROMACS development, we humbly ask that you cite
28  * the papers on the package - you can find them in the top README file.
29  *
30  * For more info, check our website at http://www.gromacs.org
31  *
32  * And Hey:
33  * GROningen Mixture of Alchemy and Childrens' Stories
34  */
35 /* This file is completely threadsafe - keep it that way! */
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
39
40 #include <string.h>
41 #include "statutil.h"
42 #include "viewit.h"
43 #include "string2.h"
44 #include "filenm.h"
45 #include "macros.h"
46 #include "gmx_fatal.h"
47
48 static const int   can_view_ftp[] = {
49     0,
50     efEPS,           efXPM,         efXVG,          efPDB
51 };
52 #define NVIEW asize(can_view_ftp)
53 static const char* view_program[] = {
54     NULL,
55     "ghostview",    "display",      NULL,           "xterm -e rasmol"
56 };
57
58 int can_view(int ftp)
59 {
60     int i;
61
62     for (i = 1; i < NVIEW; i++)
63     {
64         if (ftp == can_view_ftp[i])
65         {
66             return i;
67         }
68     }
69
70     return 0;
71 }
72
73 void do_view(const output_env_t oenv, const char *fn, const char *opts)
74 {
75     char        buf[STRLEN], env[STRLEN];
76     const char *cmd;
77     int         ftp, n;
78
79     if (output_env_get_view(oenv) && fn)
80     {
81         if (getenv("DISPLAY") == NULL)
82         {
83             fprintf(stderr, "Can not view %s, no DISPLAY environment variable.\n", fn);
84         }
85         else
86         {
87             ftp = fn2ftp(fn);
88             sprintf(env, "GMX_VIEW_%s", ftp2ext(ftp));
89             upstring(env);
90             switch (ftp)
91             {
92                 case efXVG:
93                     if (!(cmd = getenv(env)) )
94                     {
95                         if (getenv("XMGR") )
96                         {
97                             cmd = "xmgr";
98                         }
99                         else
100                         {
101                             cmd = "xmgrace";
102                         }
103                     }
104                     break;
105                 default:
106                     if ( (n = can_view(ftp)) )
107                     {
108                         if (!(cmd = getenv(env)) )
109                         {
110                             cmd = view_program[n];
111                         }
112                     }
113                     else
114                     {
115                         fprintf(stderr, "Don't know how to view file %s", fn);
116                         return;
117                     }
118             }
119             if (strlen(cmd) )
120             {
121                 sprintf(buf, "%s %s %s &", cmd, opts ? opts : "", fn);
122                 fprintf(stderr, "Executing '%s'\n", buf);
123 #ifdef GMX_NO_SYSTEM
124                 printf("Warning-- No calls to system(3) supported on this platform.");
125                 printf("Warning-- Skipping execution of 'system(\"%s\")'.", buf);
126 #else
127                 if (0 != system(buf) )
128                 {
129                     gmx_fatal(FARGS, "Failed executing command: %s", buf);
130                 }
131 #endif
132             }
133         }
134     }
135 }
136
137 void view_all(const output_env_t oenv, int nf, t_filenm fnm[])
138 {
139     int i;
140
141     for (i = 0; i < nf; i++)
142     {
143         if (can_view(fnm[i].ftp) && is_output(&(fnm[i])) &&
144             ( !is_optional(&(fnm[i])) || is_set(&(fnm[i])) ) )
145         {
146             do_view(oenv, fnm[i].fns[0], NULL);
147         }
148     }
149 }