3 * This source code is part of
7 * GROningen MAchine for Chemical Simulations
9 * Written by David van der Spoel, Erik Lindahl, Berk Hess, and others.
10 * Copyright (c) 1991-2000, University of Groningen, The Netherlands.
11 * Copyright (c) 2001-2009, The GROMACS development team,
12 * check out http://www.gromacs.org for more information.
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * If you want to redistribute modifications, please consider that
20 * scientific software is very special. Version control is crucial -
21 * bugs must be traceable. We will be happy to consider code for
22 * inclusion in the official distribution, but derived work must not
23 * be called official GROMACS. Details are found in the README & COPYING
24 * files - if they are missing, get the official version at www.gromacs.org.
26 * To help us fund GROMACS development, we humbly ask that you cite
27 * the papers on the package - you can find them in the top README file.
29 * For more info, check our website at http://www.gromacs.org
32 * \brief Implementation of functions in selmethod.h.
43 #include <selmethod.h>
45 #include "selcollection.h"
49 * These global variables cannot be const because gmx_ana_selmethod_register()
50 * modifies them to set some defaults. This is a small price to pay for the
51 * convenience of not having to remember exactly how the selection compiler
52 * expects the structures to be filled, and even more so if the expectations
53 * change. Also, even if the gmx_ana_selmethod_t structures were made const,
54 * the parameters could not be without typecasts somewhere, because the param
55 * field in gmx_ana_selmethod_t cannot be declared const.
57 * Even though the variables may be modified, this should be thread-safe as
58 * modifications are done only in gmx_ana_selmethod_register(), and it should
59 * work even if called more than once for the same structure, and even if
60 * called concurrently from multiple threads (as long as the selection
61 * collection is not the same).
63 * All of these problems should go away if/when the selection methods are
64 * implemented as C++ classes.
68 extern gmx_ana_selmethod_t sm_cog
;
69 extern gmx_ana_selmethod_t sm_com
;
70 /* From sm_simple.c */
71 extern gmx_ana_selmethod_t sm_all
;
72 extern gmx_ana_selmethod_t sm_none
;
73 extern gmx_ana_selmethod_t sm_atomnr
;
74 extern gmx_ana_selmethod_t sm_resnr
;
75 extern gmx_ana_selmethod_t sm_atomname
;
76 extern gmx_ana_selmethod_t sm_atomtype
;
77 extern gmx_ana_selmethod_t sm_resname
;
78 extern gmx_ana_selmethod_t sm_insertcode
;
79 extern gmx_ana_selmethod_t sm_chain
;
80 extern gmx_ana_selmethod_t sm_mass
;
81 extern gmx_ana_selmethod_t sm_charge
;
82 extern gmx_ana_selmethod_t sm_altloc
;
83 extern gmx_ana_selmethod_t sm_occupancy
;
84 extern gmx_ana_selmethod_t sm_betafactor
;
85 extern gmx_ana_selmethod_t sm_x
;
86 extern gmx_ana_selmethod_t sm_y
;
87 extern gmx_ana_selmethod_t sm_z
;
88 /* From sm_distance.c */
89 extern gmx_ana_selmethod_t sm_distance
;
90 extern gmx_ana_selmethod_t sm_mindistance
;
91 extern gmx_ana_selmethod_t sm_within
;
92 /* From sm_insolidangle.c */
93 extern gmx_ana_selmethod_t sm_insolidangle
;
95 extern gmx_ana_selmethod_t sm_same
;
98 extern gmx_ana_selmethod_t sm_merge
;
99 extern gmx_ana_selmethod_t sm_plus
;
100 /* From sm_permute.c */
101 extern gmx_ana_selmethod_t sm_permute
;
103 /** Array of selection methods defined in the library. */
104 static gmx_ana_selmethod_t
*const smtable_def
[] = {
138 * Convenience function for reporting errors found in selection methods.
141 report_error(FILE *fp
, const char *name
, const char *fmt
, ...)
147 fprintf(fp
, "selection method '%s': ", name
);
148 vfprintf(fp
, fmt
, ap
);
155 * Convenience function for reporting errors found in selection method parameters.
158 report_param_error(FILE *fp
, const char *mname
, const char *pname
,
159 const char *fmt
, ...)
165 fprintf(fp
, "selection method '%s': parameter '%s': ", mname
, pname
);
166 vfprintf(fp
, fmt
, ap
);
173 * Checks the validity of parameters.
175 * \param[in] fp File handle to use for diagnostic messages
177 * \param[in] name Name of the method (used for error messages).
178 * \param[in] nparams Number of parameters in \p param.
179 * \param[in,out] param Parameter array
180 * (only the \c flags field of boolean parameters may be modified).
181 * \param[in] symtab Symbol table (used for checking overlaps).
182 * \returns TRUE if there are no problems with the parameters,
185 * This function performs some checks common to both check_method() and
187 * The purpose of these checks is to ensure that the selection parser does not
188 * need to check for the validity of the parameters at each turn, and to
189 * report programming errors as early as possible.
190 * If you remove a check, make sure that the parameter parser can handle the
191 * resulting parameters.
194 check_params(FILE *fp
, const char *name
, int nparams
, gmx_ana_selparam_t param
[],
195 gmx_sel_symtab_t
*symtab
)
198 gmx_sel_symrec_t
*sym
;
201 if (nparams
> 0 && !param
)
203 report_error(fp
, name
, "error: missing parameter data");
207 if (nparams
== 0 && param
)
209 report_error(fp
, name
, "warning: parameter data unused because nparams=0");
211 /* Check each parameter */
212 for (i
= 0; i
< nparams
; ++i
)
214 /* Check that there is at most one NULL name, in the beginning */
215 if (param
[i
].name
== NULL
&& i
> 0)
217 report_error(fp
, name
, "error: NULL parameter should be the first one");
221 /* Check for duplicates */
222 for (j
= 0; j
< i
; ++j
)
224 if (param
[j
].name
== NULL
)
228 if (!strcasecmp(param
[i
].name
, param
[j
].name
))
230 report_error(fp
, name
, "error: duplicate parameter name '%s'", param
[i
].name
);
236 if (param
[i
].flags
& SPAR_SET
)
238 report_param_error(fp
, name
, param
[i
].name
, "warning: flag SPAR_SET is set");
239 param
[i
].flags
&= ~SPAR_SET
;
241 if (param
[i
].flags
& SPAR_RANGES
)
243 if (param
[i
].val
.type
!= INT_VALUE
&& param
[i
].val
.type
!= REAL_VALUE
)
245 report_param_error(fp
, name
, param
[i
].name
, "error: SPAR_RANGES cannot be set for a non-numeric parameter");
248 if (param
[i
].flags
& SPAR_DYNAMIC
)
250 report_param_error(fp
, name
, param
[i
].name
, "warning: SPAR_DYNAMIC does not have effect with SPAR_RANGES");
251 param
[i
].flags
&= ~SPAR_DYNAMIC
;
253 if (!(param
[i
].flags
& SPAR_VARNUM
) && param
[i
].val
.nr
!= 1)
255 report_param_error(fp
, name
, param
[i
].name
, "error: range should take either one or an arbitrary number of values");
258 if (param
[i
].flags
& SPAR_ATOMVAL
)
260 report_param_error(fp
, name
, param
[i
].name
, "error: SPAR_RANGES and SPAR_ATOMVAL both set");
264 if ((param
[i
].flags
& SPAR_VARNUM
) && (param
[i
].flags
& SPAR_ATOMVAL
))
266 report_param_error(fp
, name
, param
[i
].name
, "error: SPAR_VARNUM and SPAR_ATOMVAL both set");
269 if (param
[i
].flags
& SPAR_ENUMVAL
)
271 if (param
[i
].val
.type
!= STR_VALUE
)
273 report_param_error(fp
, name
, param
[i
].name
, "error: SPAR_ENUMVAL can only be set for string parameters");
276 if (param
[i
].val
.nr
!= 1)
278 report_param_error(fp
, name
, param
[i
].name
, "error: SPAR_ENUMVAL parameters should take exactly one value");
281 if (param
[i
].flags
& (SPAR_DYNAMIC
| SPAR_VARNUM
| SPAR_ATOMVAL
))
283 report_param_error(fp
, name
, param
[i
].name
, "error: only SPAR_OPTIONAL supported with SPAR_ENUMVAL");
287 /* Check boolean parameters */
288 if (param
[i
].val
.type
== NO_VALUE
)
290 if (param
[i
].val
.nr
!= 0)
292 report_param_error(fp
, name
, param
[i
].name
, "error: number of values should be zero for boolean parameters");
295 /* The boolean parameters should always be optional, so set the
296 * flag for convenience. */
297 param
[i
].flags
|= SPAR_OPTIONAL
;
298 /* Any other flags should not be specified */
299 if (param
[i
].flags
& ~SPAR_OPTIONAL
)
301 report_param_error(fp
, name
, param
[i
].name
, "error: boolean parameter should not have any flags set");
306 if (param
[i
].flags
& (SPAR_VARNUM
| SPAR_ATOMVAL
))
308 if (param
[i
].val
.nr
!= -1)
310 report_param_error(fp
, name
, param
[i
].name
, "warning: val.nr is not -1 although SPAR_VARNUM/SPAR_ATOMVAL is set");
312 param
[i
].val
.nr
= -1;
314 else if (param
[i
].val
.type
!= NO_VALUE
)
316 if (param
[i
].val
.nr
<= 0)
318 report_param_error(fp
, name
, param
[i
].name
, "error: val.nr <= 0");
322 /* Check that the value pointer is NULL */
323 if (param
[i
].nvalptr
!= NULL
)
325 report_param_error(fp
, name
, param
[i
].name
, "warning: nvalptr is set");
327 if (param
[i
].val
.u
.ptr
!= NULL
&& !(param
[i
].flags
& SPAR_ENUMVAL
))
329 report_param_error(fp
, name
, param
[i
].name
, "warning: value pointer is set");
331 /* Check that the name contains only valid characters */
332 if (param
[i
].name
== NULL
)
336 if (!isalpha(param
[i
].name
[0]))
338 report_param_error(fp
, name
, param
[i
].name
, "error: name does not begin with a letter");
342 for (j
= 1; param
[i
].name
[j
] != 0; ++j
)
344 if (param
[i
].name
[j
] != '_' && !isalnum(param
[i
].name
[j
]))
346 report_param_error(fp
, name
, param
[i
].name
, "error: name contains non-alphanumeric characters");
351 if (param
[i
].name
[j
] != 0)
355 /* Check that the name does not conflict with a method */
356 if (_gmx_sel_find_symbol(symtab
, param
[i
].name
, TRUE
))
358 report_param_error(fp
, name
, param
[i
].name
, "error: name conflicts with another method or a keyword");
361 } /* End of parameter loop */
362 /* Check parameters of existing methods */
363 sym
= _gmx_sel_first_symbol(symtab
, SYMBOL_METHOD
);
366 gmx_ana_selmethod_t
*method
= _gmx_sel_sym_value_method(sym
);
367 gmx_ana_selparam_t
*param
=
368 gmx_ana_selmethod_find_param(name
, method
);
371 report_param_error(fp
, method
->name
, param
->name
, "error: name conflicts with another method or a keyword");
374 sym
= _gmx_sel_next_symbol(sym
, SYMBOL_METHOD
);
380 * Checks the validity of selection method callback functions.
382 * \param[in] fp File handle to use for diagnostic messages
384 * \param[in] method The method to check.
385 * \returns TRUE if there are no problems, FALSE otherwise.
387 * This function performs some checks common to both check_method() and
389 * This function checks that all the required callbacks are defined, i.e.,
390 * not NULL, to find programming errors.
393 check_callbacks(FILE *fp
, gmx_ana_selmethod_t
*method
)
400 /* Make some checks on init_data and free */
401 if (method
->nparams
> 0 && !method
->init_data
)
403 report_error(fp
, method
->name
, "error: init_data should be provided because the method has parameters");
406 if (method
->free
&& !method
->init_data
)
408 report_error(fp
, method
->name
, "warning: free is not used because of missing init_data");
410 /* Check presence of outinit for position-valued methods */
411 if (method
->type
== POS_VALUE
&& !method
->outinit
)
413 report_error(fp
, method
->name
, "error: outinit should be provided because the method has POS_VALUE");
416 /* Warn of dynamic callbacks in static methods */
417 if (!(method
->flags
& SMETH_MODIFIER
))
419 if (method
->init_frame
&& !(method
->flags
& SMETH_DYNAMIC
))
421 report_error(fp
, method
->name
, "warning: init_frame not used because the method is static");
423 if (method
->pupdate
&& !(method
->flags
& SMETH_DYNAMIC
))
425 report_error(fp
, method
->name
, "warning: pupdate not used because the method is static");
426 method
->pupdate
= NULL
;
429 /* Check that there is an evaluation function */
430 if (method
->type
!= NO_VALUE
&& !method
->update
&& !method
->pupdate
)
432 report_error(fp
, method
->name
, "error: evaluation function missing");
435 /* Loop through the parameters to determine if initialization callbacks
439 for (i
= 0; i
< method
->nparams
; ++i
)
441 if (method
->param
[i
].val
.type
== POS_VALUE
442 || method
->param
[i
].val
.type
== GROUP_VALUE
)
446 if (method
->param
[i
].val
.type
!= POS_VALUE
447 && (method
->param
[i
].flags
& (SPAR_VARNUM
| SPAR_ATOMVAL
)))
453 /* Check that the callbacks required by the parameters are present */
454 if (bNeedInit
&& !method
->init
)
456 report_error(fp
, method
->name
, "error: init should be provided");
459 if (bNeedFree
&& !method
->free
)
461 report_error(fp
, method
->name
, "error: free should be provided");
468 * Checks the validity of a selection method.
470 * \param[in] fp File handle to use for diagnostic messages
472 * \param[in,out] method Method to check.
473 * \param[in] symtab Symbol table (used for checking overlaps).
475 * Checks the validity of the given selection method data structure
476 * that does not have \ref SMETH_MODIFIER set.
477 * If you remove a check, please make sure that the selection parser,
478 * compiler, and evaluation functions can deal with the method.
481 check_method(FILE *fp
, gmx_ana_selmethod_t
*method
, gmx_sel_symtab_t
*symtab
)
486 if (method
->type
== NO_VALUE
)
488 report_error(fp
, method
->name
, "error: no value type specified");
491 if (method
->type
== STR_VALUE
&& method
->nparams
> 0)
493 report_error(fp
, method
->name
, "error: evaluates to a string but is not a keyword");
497 if (method
->type
== GROUP_VALUE
)
499 /* Group methods should always have SMETH_SINGLEVAL,
500 * so set it for convenience. */
501 method
->flags
|= SMETH_SINGLEVAL
;
502 /* Check that conflicting flags are not present. */
503 if (method
->flags
& SMETH_VARNUMVAL
)
505 report_error(fp
, method
->name
, "error: SMETH_VARNUMVAL cannot be set for group-valued methods");
511 if ((method
->flags
& SMETH_SINGLEVAL
)
512 && (method
->flags
& SMETH_VARNUMVAL
))
514 report_error(fp
, method
->name
, "error: SMETH_SINGLEVAL and SMETH_VARNUMVAL both set");
518 if ((method
->flags
& SMETH_CHARVAL
) && method
->type
!= STR_VALUE
)
520 report_error(fp
, method
->name
, "error: SMETH_CHARVAL can only be specified for STR_VALUE methods");
523 /* Check the parameters */
524 if (!check_params(fp
, method
->name
, method
->nparams
, method
->param
, symtab
))
528 /* Check the callback pointers */
529 if (!check_callbacks(fp
, method
))
538 * Checks the validity of a selection modifier method.
540 * \param[in] fp File handle to use for diagnostic messages
542 * \param[in,out] method Method to check.
543 * \param[in] symtab Symbol table (used for checking overlaps).
545 * Checks the validity of the given selection method data structure
546 * that has \ref SMETH_MODIFIER set.
547 * If you remove a check, please make sure that the selection parser,
548 * compiler, and evaluation functions can deal with the method.
551 check_modifier(FILE *fp
, gmx_ana_selmethod_t
*method
, gmx_sel_symtab_t
*symtab
)
556 if (method
->type
!= NO_VALUE
&& method
->type
!= POS_VALUE
)
558 report_error(fp
, method
->name
, "error: modifier should have type POS_VALUE or NO_VALUE");
562 if (method
->flags
& (SMETH_SINGLEVAL
| SMETH_VARNUMVAL
))
564 report_error(fp
, method
->name
, "error: modifier should not have SMETH_SINGLEVAL or SMETH_VARNUMVAL set");
567 /* Check the parameters */
568 /* The first parameter is skipped */
569 if (!check_params(fp
, method
->name
, method
->nparams
-1, method
->param
+1, symtab
))
573 /* Check the callback pointers */
574 if (!check_callbacks(fp
, method
))
580 report_error(fp
, method
->name
, "error: modifier should not have update");
583 if (method
->type
== POS_VALUE
&& !method
->pupdate
)
585 report_error(fp
, method
->name
, "error: evaluation function missing");
593 * \param[in,out] sc Selection collection to registered the method to.
594 * \param[in] name Name under which the method should be registered.
595 * \param[in] method Method to register.
596 * \returns 0 on success, EINVAL if there was something wrong with the
599 * \p name does not need to match the name of the method, and the same
600 * method can be registered multiple times under different names.
601 * If \p name equals some previously registered name,
602 * an error message is printed and the method is not registered.
604 * The function also performs some sanity checking on the input method,
605 * and refuses to register it if there are problems.
606 * Some problems only generate warnings.
607 * All problems are described to \p stderr.
610 gmx_ana_selmethod_register(struct gmx_ana_selcollection_t
*sc
,
611 const char *name
, gmx_ana_selmethod_t
*method
)
615 /* Check the method */
616 if (method
->flags
& SMETH_MODIFIER
)
618 bOk
= check_modifier(stderr
, method
, sc
->symtab
);
622 bOk
= check_method(stderr
, method
, sc
->symtab
);
624 /* Try to register the method if everything is ok */
627 if (!_gmx_sel_add_method_symbol(sc
->symtab
, name
, method
))
634 report_error(stderr
, name
, "warning: not registered");
641 * \param[in,out] sc Selection collection to registered the methods to.
642 * \returns 0 on success, -1 if any of the default methods could not be
646 gmx_ana_selmethod_register_defaults(struct gmx_ana_selcollection_t
*sc
)
653 for (i
= 0; i
< asize(smtable_def
); ++i
)
655 rc
= gmx_ana_selmethod_register(sc
, smtable_def
[i
]->name
, smtable_def
[i
]);
665 * \param[in] name Name of the parameter to search.
666 * \param[in] method Method to search for the parameter.
667 * \returns Pointer to the parameter in the
668 * \ref gmx_ana_selmethod_t::param "method->param" array,
669 * or NULL if no parameter with name \p name was found.
671 * This is a simple wrapper for gmx_ana_selparam_find().
674 gmx_ana_selmethod_find_param(const char *name
, gmx_ana_selmethod_t
*method
)
676 return gmx_ana_selparam_find(name
, method
->nparams
, method
->param
);