Merge branch 'release-4-6'
[alexxy/gromacs.git] / src / gromacs / legacyheaders / readinp.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, 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 _readinp_h
39 #define _readinp_h
40
41 #include "typedefs.h"
42 #include "warninp.h"
43
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
47
48 typedef struct {
49     int      count;     /* sort order for output  */
50     gmx_bool bObsolete; /* whether it is an obsolete param value */
51     gmx_bool bSet;      /* whether it it has been read out */
52     char    *name;      /* name of the parameter */
53     char    *value;     /* parameter value string */
54     int      inp_count; /* number of einps read. Only valid for the first item
55                                                  in the inpfile list. */
56 } t_inpfile;
57 /* entry in input files (like .mdp files).
58    Initally read in with read_inpfile, then filled in with missing values
59    through get_eint, get_ereal, etc. */
60
61 t_inpfile *read_inpfile(const char *fn, int *ninp,
62                         warninp_t wi);
63 /* Create & populate a t_inpfile struct from values in file fn.
64    fn = the file name
65    ninp = the number of read parameters
66    cppopts = the cpp-style options for #include paths and #defines */
67
68 void write_inpfile(const char *fn, int ninp, t_inpfile inp[],
69                    gmx_bool bHaltOnUnknown,
70                    warninp_t wi);
71
72 void replace_inp_entry(int ninp, t_inpfile *inp,
73                        const char *old_entry, const char *new_entry);
74
75 int search_einp(int ninp, const t_inpfile *inp, const char *name);
76 /* Return the index of an .mdp field with the given name within the
77  * inp array, if it exists. Return -1 if it does not exist. */
78
79 int get_eint(int *ninp, t_inpfile **inp, const char *name, int def,
80              warninp_t wi);
81
82 gmx_int64_t get_eint64(int *ninp, t_inpfile **inp,
83                        const char *name, gmx_int64_t def,
84                        warninp_t);
85
86 double get_ereal(int *ninp, t_inpfile **inp, const char *name, double def,
87                  warninp_t wi);
88
89 const char *get_estr(int *ninp, t_inpfile **inp, const char *name, const char *def);
90
91 int get_eeenum(int *ninp, t_inpfile **inp, const char *name, const char **defs,
92                warninp_t wi);
93 /* defs must be NULL terminated */
94
95 int get_eenum(int *ninp, t_inpfile **inp, const char *name, const char **defs);
96 /* defs must be NULL terminated */
97
98 /* Here are some dirty macros to extract data from the inp structures.
99  * Most macros assume the variables ninp, inp and wi are present.
100  * Elements are removed from the list after reading.
101  */
102 #define REM_TYPE(name)       replace_inp_entry(ninp, inp, name, NULL)
103 #define REPL_TYPE(old, new)   replace_inp_entry(ninp, inp, old, new)
104 #define STYPE(name, var, def)  if ((tmp = get_estr(&ninp, &inp, name, def)) != NULL) strcpy(var, tmp)
105 #define STYPENC(name, def) get_estr(&ninp, &inp, name, def)
106 #define ITYPE(name, var, def)  var    = get_eint(&ninp, &inp, name, def, wi)
107 #define STEPTYPE(name, var, def)  var = get_eint64(&ninp, &inp, name, def, wi)
108 #define RTYPE(name, var, def)  var    = get_ereal(&ninp, &inp, name, def, wi)
109 #define ETYPE(name, var, defs) var    = get_eenum(&ninp, &inp, name, defs)
110 #define EETYPE(name, var, defs) var   = get_eeenum(&ninp, &inp, name, defs, wi)
111 #define CCTYPE(s) STYPENC("\n; " s, NULL)
112 #define CTYPE(s)  STYPENC("; " s, NULL)
113 /* This last one prints a comment line where you can add some explanation */
114
115 #ifdef __cplusplus
116 }
117 #endif
118
119 #endif