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