Converted gmxpreprocess to compile as C++
[alexxy/gromacs.git] / src / gromacs / gmxpreprocess / ter_db.cpp
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,2015, 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 #include "gmxpre.h"
38
39 #include "ter_db.h"
40
41 #include <ctype.h>
42 #include <string.h>
43
44 #include "gromacs/fileio/gmxfio.h"
45 #include "gromacs/fileio/strdb.h"
46 #include "gromacs/gmxpreprocess/fflibutil.h"
47 #include "gromacs/gmxpreprocess/h_db.h"
48 #include "gromacs/gmxpreprocess/resall.h"
49 #include "gromacs/gmxpreprocess/toputil.h"
50 #include "gromacs/legacyheaders/typedefs.h"
51 #include "gromacs/utility/cstringutil.h"
52 #include "gromacs/utility/fatalerror.h"
53 #include "gromacs/utility/futil.h"
54 #include "gromacs/utility/smalloc.h"
55
56 /* use bonded types definitions in hackblock.h */
57 #define ekwRepl ebtsNR+1
58 #define ekwAdd  ebtsNR+2
59 #define ekwDel  ebtsNR+3
60 #define ekwNR   3
61 const char *kw_names[ekwNR] = {
62     "replace", "add", "delete"
63 };
64
65 int find_kw(char *keyw)
66 {
67     int i;
68
69     for (i = 0; i < ebtsNR; i++)
70     {
71         if (gmx_strcasecmp(btsNames[i], keyw) == 0)
72         {
73             return i;
74         }
75     }
76     for (i = 0; i < ekwNR; i++)
77     {
78         if (gmx_strcasecmp(kw_names[i], keyw) == 0)
79         {
80             return ebtsNR + 1 + i;
81         }
82     }
83
84     return NOTSET;
85 }
86
87 #define FATAL() gmx_fatal(FARGS, "Reading Termini Database: not enough items on line\n%s", line)
88
89 static void read_atom(char *line, gmx_bool bAdd,
90                       char **nname, t_atom *a, gpp_atomtype_t atype, int *cgnr)
91 {
92     int    nr, i;
93     char   buf[5][30];
94     double m, q;
95
96     /* This code is messy, because of support for different formats:
97      * for replace: [new name] <atom type> <m> <q> [cgnr (old format)]
98      * for add:                <atom type> <m> <q> [cgnr]
99      */
100     nr = sscanf(line, "%s %s %s %s %s", buf[0], buf[1], buf[2], buf[3], buf[4]);
101
102     /* Here there an ambiguity due to the old replace format with cgnr,
103      * which was read for years, but ignored in the rest of the code.
104      * We have to assume that the atom type does not start with a digit
105      * to make a line with 4 entries uniquely interpretable.
106      */
107     if (!bAdd && nr == 4 && isdigit(buf[1][0]))
108     {
109         nr = 3;
110     }
111
112     if (nr < 3 || nr > 4)
113     {
114         gmx_fatal(FARGS, "Reading Termini Database: expected %d or %d items of atom data in stead of %d on line\n%s", 3, 4, nr, line);
115     }
116     i = 0;
117     if (!bAdd)
118     {
119         if (nr == 4)
120         {
121             *nname = gmx_strdup(buf[i++]);
122         }
123         else
124         {
125             *nname = NULL;
126         }
127     }
128     a->type = get_atomtype_type(buf[i++], atype);
129     sscanf(buf[i++], "%lf", &m);
130     a->m = m;
131     sscanf(buf[i++], "%lf", &q);
132     a->q = q;
133     if (bAdd && nr == 4)
134     {
135         sscanf(buf[i++], "%d", cgnr);
136     }
137     else
138     {
139         *cgnr = NOTSET;
140     }
141 }
142
143 static void print_atom(FILE *out, t_atom *a, gpp_atomtype_t atype)
144 {
145     fprintf(out, "\t%s\t%g\t%g\n",
146             get_atomtype_name(a->type, atype), a->m, a->q);
147 }
148
149 static void print_ter_db(const char *ff, char C, int nb, t_hackblock tb[],
150                          gpp_atomtype_t atype)
151 {
152     FILE *out;
153     int   i, j, k, bt, nrepl, nadd, ndel;
154     char  buf[STRLEN];
155
156     sprintf(buf, "%s-%c.tdb", ff, C);
157     out = gmx_fio_fopen(buf, "w");
158
159     for (i = 0; (i < nb); i++)
160     {
161         fprintf(out, "[ %s ]\n", tb[i].name);
162
163         /* first count: */
164         nrepl = 0;
165         nadd  = 0;
166         ndel  = 0;
167         for (j = 0; j < tb[i].nhack; j++)
168         {
169             if (tb[i].hack[j].oname != NULL && tb[i].hack[j].nname != NULL)
170             {
171                 nrepl++;
172             }
173             else if (tb[i].hack[j].oname == NULL && tb[i].hack[j].nname != NULL)
174             {
175                 nadd++;
176             }
177             else if (tb[i].hack[j].oname != NULL && tb[i].hack[j].nname == NULL)
178             {
179                 ndel++;
180             }
181             else if (tb[i].hack[j].oname == NULL && tb[i].hack[j].nname == NULL)
182             {
183                 gmx_fatal(FARGS, "invalid hack (%s) in termini database", tb[i].name);
184             }
185         }
186         if (nrepl)
187         {
188             fprintf(out, "[ %s ]\n", kw_names[ekwRepl-ebtsNR-1]);
189             for (j = 0; j < tb[i].nhack; j++)
190             {
191                 if (tb[i].hack[j].oname != NULL && tb[i].hack[j].nname != NULL)
192                 {
193                     fprintf(out, "%s\t", tb[i].hack[j].oname);
194                     print_atom(out, tb[i].hack[j].atom, atype);
195                 }
196             }
197         }
198         if (nadd)
199         {
200             fprintf(out, "[ %s ]\n", kw_names[ekwAdd-ebtsNR-1]);
201             for (j = 0; j < tb[i].nhack; j++)
202             {
203                 if (tb[i].hack[j].oname == NULL && tb[i].hack[j].nname != NULL)
204                 {
205                     print_ab(out, &(tb[i].hack[j]), tb[i].hack[j].nname);
206                     print_atom(out, tb[i].hack[j].atom, atype);
207                 }
208             }
209         }
210         if (ndel)
211         {
212             fprintf(out, "[ %s ]\n", kw_names[ekwDel-ebtsNR-1]);
213             for (j = 0; j < tb[i].nhack; j++)
214             {
215                 if (tb[i].hack[j].oname != NULL && tb[i].hack[j].nname == NULL)
216                 {
217                     fprintf(out, "%s\n", tb[i].hack[j].oname);
218                 }
219             }
220         }
221         for (bt = 0; bt < ebtsNR; bt++)
222         {
223             if (tb[i].rb[bt].nb)
224             {
225                 fprintf(out, "[ %s ]\n", btsNames[bt]);
226                 for (j = 0; j < tb[i].rb[bt].nb; j++)
227                 {
228                     for (k = 0; k < btsNiatoms[bt]; k++)
229                     {
230                         fprintf(out, "%s%s", k ? "\t" : "", tb[i].rb[bt].b[j].a[k]);
231                     }
232                     if (tb[i].rb[bt].b[j].s)
233                     {
234                         fprintf(out, "\t%s", tb[i].rb[bt].b[j].s);
235                     }
236                     fprintf(out, "\n");
237                 }
238             }
239         }
240         fprintf(out, "\n");
241     }
242     gmx_fio_fclose(out);
243 }
244
245 static void read_ter_db_file(char *fn,
246                              int *ntbptr, t_hackblock **tbptr,
247                              gpp_atomtype_t atype)
248 {
249     char         filebase[STRLEN], *ptr;
250     FILE        *in;
251     char         header[STRLEN], buf[STRLEN], line[STRLEN];
252     t_hackblock *tb;
253     int          i, j, n, ni, kwnr, nb, maxnb, nh;
254
255     fflib_filename_base(fn, filebase, STRLEN);
256     /* Remove the C/N termini extension */
257     ptr = strrchr(filebase, '.');
258     if (ptr != NULL)
259     {
260         ptr[0] = '\0';
261     }
262
263     in = fflib_open(fn);
264     if (debug)
265     {
266         fprintf(debug, "Opened %s\n", fn);
267     }
268
269     tb    = *tbptr;
270     nb    = *ntbptr - 1;
271     maxnb = 0;
272     kwnr  = NOTSET;
273     get_a_line(in, line, STRLEN);
274     while (!feof(in))
275     {
276         if (get_header(line, header))
277         {
278             /* this is a new block, or a new keyword */
279             kwnr = find_kw(header);
280
281             if (kwnr == NOTSET)
282             {
283                 nb++;
284                 /* here starts a new block */
285                 if (nb >= maxnb)
286                 {
287                     maxnb = nb + 100;
288                     srenew(tb, maxnb);
289                 }
290                 clear_t_hackblock(&tb[nb]);
291                 tb[nb].name     = gmx_strdup(header);
292                 tb[nb].filebase = gmx_strdup(filebase);
293             }
294         }
295         else
296         {
297             if (nb < 0)
298             {
299                 gmx_fatal(FARGS, "reading termini database: "
300                           "directive expected before line:\n%s\n"
301                           "This might be a file in an old format.", line);
302             }
303             /* this is not a header, so it must be data */
304             if (kwnr >= ebtsNR)
305             {
306                 /* this is a hack: add/rename/delete atoms */
307                 /* make space for hacks */
308                 if (tb[nb].nhack >= tb[nb].maxhack)
309                 {
310                     tb[nb].maxhack += 10;
311                     srenew(tb[nb].hack, tb[nb].maxhack);
312                 }
313                 nh = tb[nb].nhack;
314                 clear_t_hack(&(tb[nb].hack[nh]));
315                 for (i = 0; i < 4; i++)
316                 {
317                     tb[nb].hack[nh].a[i] = NULL;
318                 }
319                 tb[nb].nhack++;
320
321                 /* get data */
322                 n = 0;
323                 if (kwnr == ekwRepl || kwnr == ekwDel)
324                 {
325                     if (sscanf(line, "%s%n", buf, &n) != 1)
326                     {
327                         gmx_fatal(FARGS, "Reading Termini Database '%s': "
328                                   "expected atom name on line\n%s", fn, line);
329                     }
330                     tb[nb].hack[nh].oname = gmx_strdup(buf);
331                     /* we only replace or delete one atom at a time */
332                     tb[nb].hack[nh].nr = 1;
333                 }
334                 else if (kwnr == ekwAdd)
335                 {
336                     read_ab(line, fn, &(tb[nb].hack[nh]));
337                     get_a_line(in, line, STRLEN);
338                 }
339                 else
340                 {
341                     gmx_fatal(FARGS, "unimplemented keyword number %d (%s:%d)",
342                               kwnr, __FILE__, __LINE__);
343                 }
344                 if (kwnr == ekwRepl || kwnr == ekwAdd)
345                 {
346                     snew(tb[nb].hack[nh].atom, 1);
347                     read_atom(line+n, kwnr == ekwAdd,
348                               &tb[nb].hack[nh].nname, tb[nb].hack[nh].atom, atype,
349                               &tb[nb].hack[nh].cgnr);
350                     if (tb[nb].hack[nh].nname == NULL)
351                     {
352                         if (tb[nb].hack[nh].oname != NULL)
353                         {
354                             tb[nb].hack[nh].nname = gmx_strdup(tb[nb].hack[nh].oname);
355                         }
356                         else
357                         {
358                             gmx_fatal(FARGS, "Reading Termini Database '%s': don't know which name the new atom should have on line\n%s", fn, line);
359                         }
360                     }
361                 }
362             }
363             else if (kwnr >= 0 && kwnr < ebtsNR)
364             {
365                 /* this is bonded data: bonds, angles, dihedrals or impropers */
366                 srenew(tb[nb].rb[kwnr].b, tb[nb].rb[kwnr].nb+1);
367                 n = 0;
368                 for (j = 0; j < btsNiatoms[kwnr]; j++)
369                 {
370                     if (sscanf(line+n, "%s%n", buf, &ni) == 1)
371                     {
372                         tb[nb].rb[kwnr].b[tb[nb].rb[kwnr].nb].a[j] = gmx_strdup(buf);
373                     }
374                     else
375                     {
376                         gmx_fatal(FARGS, "Reading Termini Database '%s': expected %d atom names (found %d) on line\n%s", fn, btsNiatoms[kwnr], j-1, line);
377                     }
378                     n += ni;
379                 }
380                 for (; j < MAXATOMLIST; j++)
381                 {
382                     tb[nb].rb[kwnr].b[tb[nb].rb[kwnr].nb].a[j] = NULL;
383                 }
384                 strcpy(buf, "");
385                 sscanf(line+n, "%s", buf);
386                 tb[nb].rb[kwnr].b[tb[nb].rb[kwnr].nb].s = gmx_strdup(buf);
387                 tb[nb].rb[kwnr].nb++;
388             }
389             else
390             {
391                 gmx_fatal(FARGS, "Reading Termini Database: Expecting a header at line\n"
392                           "%s", line);
393             }
394         }
395         get_a_line(in, line, STRLEN);
396     }
397     nb++;
398     srenew(tb, nb);
399
400     gmx_ffclose(in);
401
402     *ntbptr = nb;
403     *tbptr  = tb;
404 }
405
406 int read_ter_db(const char *ffdir, char ter,
407                 t_hackblock **tbptr, gpp_atomtype_t atype)
408 {
409     char   ext[STRLEN];
410     int    ntdbf, f;
411     char **tdbf;
412     int    ntb;
413
414     sprintf(ext, ".%c.tdb", ter);
415
416     /* Search for termini database files.
417      * Do not generate an error when none are found.
418      */
419     ntdbf  = fflib_search_file_end(ffdir, ext, FALSE, &tdbf);
420     ntb    = 0;
421     *tbptr = NULL;
422     for (f = 0; f < ntdbf; f++)
423     {
424         read_ter_db_file(tdbf[f], &ntb, tbptr, atype);
425         sfree(tdbf[f]);
426     }
427     sfree(tdbf);
428
429     if (debug)
430     {
431         print_ter_db("new", ter, ntb, *tbptr, atype);
432     }
433
434     return ntb;
435 }
436
437 t_hackblock **filter_ter(int nrtp, t_restp rtp[],
438                          int nb, t_hackblock tb[],
439                          const char *resname,
440                          const char *rtpname,
441                          int *nret)
442 {
443     // TODO Four years later, no force fields have ever used this, so decide status of this feature
444     /* Since some force fields (e.g. OPLS) needs different
445      * atomtypes for different residues there could be a lot
446      * of entries in the databases for specific residues
447      * (e.g. GLY-NH3+, SER-NH3+, ALA-NH3+).
448      *
449      * To reduce the database size, we assume that a terminus specifier liker
450      *
451      * [ GLY|SER|ALA-NH3+ ]
452      *
453      * would cover all of the three residue types above.
454      * Wildcards (*,?) are not OK. Don't worry about e.g. GLU vs. GLUH since
455      * pdb2gmx only uses the first 3 letters when calling this routine.
456      *
457      * To automate this, this routines scans a list of termini
458      * for the residue name "resname" and returns an allocated list of
459      * pointers to the termini that could be applied to the
460      * residue in question. The variable pointed to by nret will
461      * contain the number of valid pointers in the list.
462      * Remember to free the list when you are done with it...
463      */
464
465     t_restp     *   restp;
466     int             i, j, n, none_idx;
467     gmx_bool        found;
468     char           *rtpname_match, *s;
469     t_hackblock   **list;
470
471     rtpname_match = search_rtp(rtpname, nrtp, rtp);
472     restp         = get_restp(rtpname_match, nrtp, rtp);
473
474     n    = 0;
475     list = NULL;
476
477     for (i = 0; i < nb; i++)
478     {
479         s     = tb[i].name;
480         found = FALSE;
481         do
482         {
483             /* The residue name should appear in a tdb file with the same base name
484              * as the file containing the rtp entry.
485              * This makes termini selection for different molecule types
486              * much cleaner.
487              */
488             if (gmx_strcasecmp(restp->filebase, tb[i].filebase) == 0 &&
489                 gmx_strncasecmp(resname, s, 3) == 0)
490             {
491                 found = TRUE;
492                 srenew(list, n+1);
493                 list[n] = &(tb[i]);
494                 n++;
495             }
496             else
497             {
498                 /* advance to next |-separated field */
499                 s = strchr(s, '|');
500                 if (s != NULL)
501                 {
502                     s++;
503                 }
504             }
505         }
506         while (!found && s != NULL);
507     }
508
509     /* All residue-specific termini have been added. We might have to fall
510      * back on generic termini, which are characterized by not having
511      * '-' in the name prior to the last position (which indicates charge).
512      * The [ None ] alternative is special since we don't want that
513      * to be the default, so we put it last in the list we return.
514      */
515     none_idx = -1;
516     for (i = 0; i < nb; i++)
517     {
518         s = tb[i].name;
519         /* The residue name should appear in a tdb file with the same base name
520          * as the file containing the rtp entry.
521          * This makes termini selection for different molecule types
522          * much cleaner.
523          */
524         if (gmx_strcasecmp(restp->filebase, tb[i].filebase) == 0)
525         {
526             if (!gmx_strcasecmp("None", s))
527             {
528                 none_idx = i;
529             }
530             else
531             {
532                 /* Time to see if there's a generic terminus that matches.
533                    Is there a hyphen? */
534                 char *c = strchr(s, '-');
535
536                 /* A conjunction hyphen normally indicates a residue-specific
537                    terminus, which is named like "GLY-COOH". A generic terminus
538                    won't have a hyphen. */
539                 bool bFoundAnyHyphen = (c != NULL);
540                 /* '-' as the last character indicates charge, so if that's
541                    the only one found e.g. "COO-", then it was not a conjunction
542                    hyphen, so this is a generic terminus */
543                 bool bOnlyFoundChargeHyphen = (bFoundAnyHyphen &&
544                                                *(c+1) == '\0');
545                 /* Thus, "GLY-COO-" is not recognized as a generic terminus. */
546                 bool bFoundGenericTerminus = !bFoundAnyHyphen || bOnlyFoundChargeHyphen;
547                 if (bFoundGenericTerminus)
548                 {
549                     /* Check that we haven't already added a residue-specific version
550                      * of this terminus.
551                      */
552                     for (j = 0; j < n && strstr((*list[j]).name, s) == NULL; j++)
553                     {
554                         ;
555                     }
556                     if (j == n)
557                     {
558                         srenew(list, n+1);
559                         list[n] = &(tb[i]);
560                         n++;
561                     }
562                 }
563             }
564         }
565     }
566     if (none_idx >= 0)
567     {
568         srenew(list, n+1);
569         list[n] = &(tb[none_idx]);
570         n++;
571     }
572
573     *nret = n;
574     return list;
575 }
576
577
578 t_hackblock *choose_ter(int nb, t_hackblock **tb, const char *title)
579 {
580     int i, sel, ret;
581
582     printf("%s\n", title);
583     for (i = 0; (i < nb); i++)
584     {
585         bool bIsZwitterion = (0 == gmx_wcmatch("*ZWITTERION*", (*tb[i]).name));
586         printf("%2d: %s%s\n", i, (*tb[i]).name,
587                bIsZwitterion ? " (only use with zwitterions containing exactly one residue)" : "");
588     }
589     do
590     {
591         ret = fscanf(stdin, "%d", &sel);
592     }
593     while ((ret != 1) || (sel < 0) || (sel >= nb));
594
595     return tb[sel];
596 }