Merge branch release-4-6 into release-5-0
[alexxy/gromacs.git] / src / gromacs / fileio / filenm.h
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
38 #ifndef GMX_FILEIO_FILENM_H
39 #define GMX_FILEIO_FILENM_H
40
41 #include "../legacyheaders/typedefs.h"
42
43 #ifdef __cplusplus
44 extern "C" {
45 #endif
46
47 /* this enum should correspond to the array deffile in gmxlib/filenm.c */
48 enum {
49     efMDP,
50     efTRX, efTRO, efTRN, efTRR, efTRJ, efCOMPRESSED, efXTC, efTNG,
51     efEDR,
52     efSTX, efSTO, efGRO, efG96, efPDB, efBRK, efENT, efESP, efPQR,
53     efCPT,
54     efLOG, efXVG, efOUT,
55     efNDX,
56     efTOP, efITP,
57     efTPX, efTPS, efTPR, efTPA, efTPB,
58     efTEX, efRTP, efATP, efHDB,
59     efDAT, efDLG,
60     efMAP, efEPS, efMAT, efM2P,
61     efMTX,
62     efEDI,
63     efCUB,
64     efXPM,
65     efRND,
66     efNR
67 };
68
69 typedef struct {
70     int           ftp;    /* File type (see enum above)         */
71     const char   *opt;    /* Command line option                        */
72     const char   *fn;     /* File name (as set in source code)  */
73     unsigned long flag;   /* Flag for all kinds of info (see defs)*/
74     int           nfiles; /* number of files                    */
75     char        **fns;    /* File names                         */
76 } t_filenm;
77
78 #define ffSET   1<<0
79 #define ffREAD  1<<1
80 #define ffWRITE 1<<2
81 #define ffOPT   1<<3
82 #define ffLIB   1<<4
83 #define ffMULT  1<<5
84 #define ffRW    (ffREAD | ffWRITE)
85 #define ffOPTRD (ffREAD | ffOPT)
86 #define ffOPTWR (ffWRITE| ffOPT)
87 #define ffOPTRW (ffRW   | ffOPT)
88 #define ffLIBRD (ffREAD | ffLIB)
89 #define ffLIBOPTRD (ffOPTRD | ffLIB)
90 #define ffRDMULT   (ffREAD  | ffMULT)
91 #define ffOPTRDMULT   (ffRDMULT | ffOPT)
92 #define ffWRMULT   (ffWRITE  | ffMULT)
93 #define ffOPTWRMULT   (ffWRMULT | ffOPT)
94
95 const char *ftp2ext(int ftp);
96 /* Return extension for filetype */
97
98 const char *ftp2ext_generic(int ftp);
99 /* Return extension for filetype, and a generic name for generic types
100    (e.g. trx)*/
101
102 const char *ftp2ext_with_dot(int ftp);
103 /* Return extension for filetype with a leading dot */
104
105 int ftp2generic_count(int ftp);
106 /* Return the number of filetypes for a generic filetype */
107
108 const int *ftp2generic_list(int ftp);
109 /* Return the list of filetypes for a generic filetype */
110
111 const char *ftp2desc(int ftp);
112 /* Return description for file type */
113
114 const char *ftp2defnm(int ftp);
115 /* Return default file name for file type */
116
117 const char *ftp2ftype(int ftp);
118 /* Return Binary or ASCII depending on file type */
119
120 void parse_file_args(int *argc, char *argv[], int nf, t_filenm fnm[],
121                      const char *deffnm, gmx_bool bReadNode);
122 /* Parse command line for file names. When bKeep is set args are
123  * not removed from argv. */
124
125 const char *opt2fn(const char *opt, int nfile, const t_filenm fnm[]);
126 /* Return the filename belonging to cmd-line option opt, or NULL when
127  * no such option. */
128
129 const char *opt2fn_master(const char *opt, int nfile,
130                           const t_filenm fnm[], t_commrec *cr);
131 /* Return the filename belonging to cmd-line option opt, or NULL when
132  * no such option or not running on master */
133
134
135 int opt2fns(char **fns[], const char *opt, int nfile,
136             const t_filenm fnm[]);
137 /* Return the filenames belonging to cmd-line option opt, or NULL when
138  * no such option. */
139
140 #define opt2FILE(opt, nfile, fnm, mode) gmx_ffopen(opt2fn(opt, nfile, fnm), mode)
141 /* Return a file pointer from the filename (see above) */
142
143 int fn2ftp(const char *fn);
144 /* Return the filetype corrsponding to filename */
145
146 const char *ftp2fn(int ftp, int nfile, const t_filenm fnm[]);
147 /* Return the first file name with type ftp, or NULL when none found. */
148
149 int ftp2fns(char **fns[], int ftp, int nfile, const t_filenm fnm[]);
150 /* Return the number of files for the first option with type ftp
151    and the files in **fns[] (will be allocated), or NULL when none found. */
152
153 #define ftp2FILE(ftp, nfile, fnm, mode) gmx_ffopen(ftp2fn(ftp, nfile, fnm), mode)
154 /* Return a file pointer from the filename (see above) */
155
156 gmx_bool ftp2bSet(int ftp, int nfile, const t_filenm fnm[]);
157 /* Return TRUE when this file type has been found on the cmd-line */
158
159 gmx_bool opt2bSet(const char *opt, int nfile, const t_filenm fnm[]);
160 /* Return TRUE when this option has been found on the cmd-line */
161
162 const char *opt2fn_null(const char *opt, int nfile, const t_filenm fnm[]);
163 /* Return the filenm belonging top cmd-line option opt, or NULL when
164  * no such option.
165  * Also return NULL when opt is optional and option is not set.
166  */
167
168 const char *ftp2fn_null(int ftp, int nfile, const t_filenm fnm[]);
169 /* Return the first file name with type ftp, or NULL when none found.
170  * Also return NULL when ftp is optional and option is not set.
171  */
172
173 gmx_bool is_optional(const t_filenm *fnm);
174 /* Return whether or not this filenm is optional */
175
176 gmx_bool is_output(const t_filenm *fnm);
177 /* Return whether or not this filenm is output */
178
179 gmx_bool is_set(const t_filenm *fnm);
180 /* Return whether or not this filenm is set */
181
182 /* When we do checkpointing, this routine is called to check for previous
183  * output files and append a '.partNNNN' suffix before the (output) file extensions.
184  */
185 int add_suffix_to_output_names(t_filenm *fnm, int nfile, const char *suffix);
186
187 /* duplicate the filename list (to make a private copy for each thread,
188    for example) */
189 t_filenm *dup_tfn(int nf, const t_filenm tfn[]);
190
191 /* Free memory allocated for file names by parse_file_args(). */
192 void done_filenms(int nf, t_filenm fnm[]);
193
194 #ifdef __cplusplus
195 }
196 #endif
197
198 #endif  /* GMX_FILEIO_FILENM_H */