Merge branch 'release-4-6' into release-5-0
[alexxy/gromacs.git] / src / gromacs / selection / selelem.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2009,2010,2011,2012,2013,2014, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  * \brief
37  * Declares gmx::SelectionTreeElement and related things.
38  *
39  * The selection element trees constructed by the parser and the compiler
40  * are described on the respective pages:
41  * \ref page_module_selection_parser and \ref page_module_selection_compiler.
42  *
43  * This is an implementation header: there should be no need to use it outside
44  * this directory.
45  *
46  * \author Teemu Murtola <teemu.murtola@gmail.com>
47  * \ingroup module_selection
48  */
49 #ifndef GMX_SELECTION_SELELEM_H
50 #define GMX_SELECTION_SELELEM_H
51
52 #include <string>
53
54 #include <boost/shared_ptr.hpp>
55
56 #include "gromacs/legacyheaders/types/simple.h"
57 #include "gromacs/utility/common.h"
58
59 #include "indexutil.h"
60 #include "selvalue.h"
61
62 struct gmx_ana_poscalc_t;
63 struct gmx_ana_selparam_t;
64 struct gmx_ana_selmethod_t;
65
66 struct gmx_sel_evaluate_t;
67 struct gmx_sel_mempool_t;
68
69 struct t_compiler_data;
70
71 namespace gmx
72 {
73 class SelectionTreeElement;
74
75 //! Smart pointer type for selection tree element pointers.
76 typedef boost::shared_ptr<SelectionTreeElement> SelectionTreeElementPointer;
77 } // namespace gmx
78
79 /********************************************************************/
80 /*! \name Enumerations for expression types
81  ********************************************************************/
82 //!\{
83
84 /** Defines the type of a gmx::SelectionTreeElement object. */
85 typedef enum
86 {
87     /** Constant-valued expression. */
88     SEL_CONST,
89     /** Method expression that requires evaluation. */
90     SEL_EXPRESSION,
91     /** Boolean expression. */
92     SEL_BOOLEAN,
93     /** Arithmetic expression. */
94     SEL_ARITHMETIC,
95     /** Root node of the evaluation tree. */
96     SEL_ROOT,
97     /** Subexpression that may be referenced several times. */
98     SEL_SUBEXPR,
99     /** Reference to a subexpression. */
100     SEL_SUBEXPRREF,
101     /** Unresolved reference to an external group. */
102     SEL_GROUPREF,
103     /** Post-processing of selection value. */
104     SEL_MODIFIER
105 } e_selelem_t;
106
107 /** Defines the boolean operation of gmx::SelectionTreeElement objects with type \ref SEL_BOOLEAN. */
108 typedef enum
109 {
110     BOOL_NOT,           /**< Not */
111     BOOL_AND,           /**< And */
112     BOOL_OR,            /**< Or */
113     BOOL_XOR            /**< Xor (not implemented). */
114 } e_boolean_t;
115
116 /** Defines the arithmetic operation of gmx::SelectionTreeElement objects with type \ref SEL_ARITHMETIC. */
117 typedef enum
118 {
119     ARITH_PLUS,         /**< Addition (`+`) */
120     ARITH_MINUS,        /**< Subtraction (`-`) */
121     ARITH_NEG,          /**< Unary `-` */
122     ARITH_MULT,         /**< Multiplication (`*`) */
123     ARITH_DIV,          /**< Division (`/`) */
124     ARITH_EXP           /**< Power (`^`) */
125 } e_arithmetic_t;
126
127 /** Returns a string representation of the type of a gmx::SelectionTreeElement. */
128 extern const char *
129 _gmx_selelem_type_str(const gmx::SelectionTreeElement &sel);
130 /** Returns a string representation of the boolean type of a \ref SEL_BOOLEAN gmx::SelectionTreeElement. */
131 extern const char *
132 _gmx_selelem_boolean_type_str(const gmx::SelectionTreeElement &sel);
133 /** Returns a string representation of the type of a \c gmx_ana_selvalue_t. */
134 extern const char *
135 _gmx_sel_value_type_str(const gmx_ana_selvalue_t *val);
136
137 //!\}
138
139
140 /********************************************************************/
141 /*! \name Selection expression flags
142  * \anchor selelem_flags
143  ********************************************************************/
144 //!\{
145 /*! \brief
146  * Selection value flags are set.
147  *
148  * If this flag is set, the flags covered by \ref SEL_VALFLAGMASK
149  * have been set properly for the element.
150  */
151 #define SEL_FLAGSSET    1
152 /*! \brief
153  * The element evaluates to a single value.
154  *
155  * This flag is always set for \ref GROUP_VALUE elements.
156  */
157 #define SEL_SINGLEVAL   2
158 /*! \brief
159  * The element evaluates to one value for each input atom.
160  */
161 #define SEL_ATOMVAL     4
162 /*! \brief
163  * The element evaluates to an arbitrary number of values.
164  */
165 #define SEL_VARNUMVAL   8
166 /*! \brief
167  * The element (or one of its children) is dynamic.
168  */
169 #define SEL_DYNAMIC     16
170 /*! \brief
171  * The element may contain atom indices in an unsorted order.
172  */
173 #define SEL_UNSORTED    32
174 /*! \brief
175  * Mask that covers the flags that describe the number of values.
176  */
177 #define SEL_VALTYPEMASK (SEL_SINGLEVAL | SEL_ATOMVAL | SEL_VARNUMVAL)
178 /*! \brief
179  * Mask that covers the flags that describe the value type.
180  */
181 #define SEL_VALFLAGMASK (SEL_FLAGSSET | SEL_VALTYPEMASK | SEL_DYNAMIC)
182 /*! \brief
183  * Data has been allocated for the \p v.u union.
184  *
185  * If not set, the \p v.u.ptr points to data allocated externally.
186  * This is the case if the value of the element is used as a parameter
187  * for a selection method or if the element evaluates the final value of
188  * a selection.
189  *
190  * Even if the flag is set, \p v.u.ptr can be NULL during initialization.
191  *
192  * \todo
193  * This flag overlaps with the function of \p v.nalloc field, and could
194  * probably be removed, making memory management simpler. Currently, the
195  * \p v.nalloc field is not kept up-to-date in all cases when this flag
196  * is changed and is used in places where this flag is not, so this would
197  * require a careful investigation of the selection code.
198  */
199 #define SEL_ALLOCVAL    (1<<8)
200 /*! \brief
201  * Data has been allocated for the group/position structure.
202  *
203  * If not set, the memory allocated for fields in \p v.u.g or \p v.u.p is
204  * managed externally.
205  *
206  * This field has no effect if the value type is not \ref GROUP_VALUE or
207  * \ref POS_VALUE, but should not be set.
208  */
209 #define SEL_ALLOCDATA   (1<<9)
210 /*! \brief
211  * \p method->init_frame should be called for the frame.
212  */
213 #define SEL_INITFRAME   (1<<10)
214 /*! \brief
215  * Parameter has been evaluated for the current frame.
216  *
217  * This flag is set for children of \ref SEL_EXPRESSION elements (which
218  * describe method parameters) after the element has been evaluated for the
219  * current frame.
220  * It is not set for \ref SEL_ATOMVAL elements, because they may need to
221  * be evaluated multiple times.
222  */
223 #define SEL_EVALFRAME   (1<<11)
224 /*! \brief
225  * \p method->init has been called.
226  */
227 #define SEL_METHODINIT  (1<<12)
228 /*! \brief
229  * \p method->outinit has been called.
230  *
231  * This flag is also used for \ref SEL_SUBEXPRREF elements.
232  */
233 #define SEL_OUTINIT     (1<<13)
234 //!\}
235
236
237 namespace gmx
238 {
239
240 /*! \brief
241  * Function pointer for evaluating a gmx::SelectionTreeElement.
242  */
243 typedef void (*sel_evalfunc)(struct gmx_sel_evaluate_t         *data,
244                              const SelectionTreeElementPointer &sel,
245                              gmx_ana_index_t                   *g);
246
247 /*! \internal \brief
248  * Represents an element of a selection expression.
249  */
250 class SelectionTreeElement
251 {
252     public:
253         /*! \brief
254          * Allocates memory and performs common initialization.
255          *
256          * \param[in] type Type of selection element to create.
257          *
258          * \a type is set to \p type,
259          * \a v::type is set to \ref GROUP_VALUE for boolean and comparison
260          * expressions and \ref NO_VALUE for others, and
261          * \ref SEL_ALLOCVAL is set for non-root elements (\ref SEL_ALLOCDATA
262          * is also set for \ref SEL_BOOLEAN elements).
263          * All the pointers are set to NULL.
264          */
265         explicit SelectionTreeElement(e_selelem_t type);
266         ~SelectionTreeElement();
267
268         //! Frees the memory allocated for the \a v union.
269         void freeValues();
270         //! Frees the memory allocated for the \a u union.
271         void freeExpressionData();
272         /* In compiler.cpp */
273         /*! \brief
274          * Frees the memory allocated for the selection compiler.
275          *
276          * This function only frees the data for the given selection, not its
277          * children.  It is safe to call the function when compiler data has
278          * not been allocated or has already been freed; in such a case,
279          * nothing is done.
280          */
281         void freeCompilerData();
282
283         /*! \brief
284          * Reserves memory for value from a memory pool.
285          *
286          * \param[in]     count Number of values to reserve memory for.
287          *
288          * Reserves memory for the values of this element from the \a mempool
289          * memory pool.
290          * If no memory pool is set, nothing is done.
291          */
292         void mempoolReserve(int count);
293         /*! \brief
294          * Releases memory pool used for value.
295          *
296          * Releases the memory allocated for the values of this element from the
297          * \a mempool memory pool.
298          * If no memory pool is set, nothing is done.
299          */
300         void mempoolRelease();
301
302         //! Returns the name of the element.
303         const std::string &name() const { return name_; }
304         /*! \brief
305          * Sets the name of the element.
306          *
307          * \param[in] name  Name to set (can be NULL).
308          * \throws    std::bad_alloc if out of memory.
309          */
310         void setName(const char *name) { name_ = (name != NULL ? name : ""); }
311         //! \copydoc setName(const char *)
312         void setName(const std::string &name) { name_ = name; }
313         /*! \brief
314          * Sets the name of a root element if it is missing.
315          *
316          * \param[in] selectionText  Full selection text to use as a fallback.
317          * \throws    std::bad_alloc if out of memory.
318          *
319          * If index groups have not yet been set and the selection is a result
320          * of a group reference, the name may still be empty after this call.
321          *
322          * Strong exception safety guarantee.
323          */
324         void fillNameIfMissing(const char *selectionText);
325
326         /*! \brief
327          * Resolved an unresolved reference to an index group.
328          *
329          * \param[in] grps  Index groups to use to resolve the reference.
330          * \throws    std::bad_alloc if out of memory.
331          * \throws    InconsistentInputError if the reference cannot be
332          *     resolved.
333          */
334         void resolveIndexGroupReference(gmx_ana_indexgrps_t *grps);
335
336         //! Type of the element.
337         e_selelem_t                         type;
338         /*! \brief
339          * Value storage of the element.
340          *
341          * This field contains the evaluated value of the element, as well as
342          * the output value type.
343          */
344         gmx_ana_selvalue_t                  v;
345         /*! \brief
346          * Evaluation function for the element.
347          *
348          * Can be either NULL (if the expression is a constant and does not
349          * require evaluation) or point to one of the functions defined in
350          * evaluate.h.
351          */
352         sel_evalfunc                        evaluate;
353         /*! \brief
354          * Information flags about the element.
355          *
356          * Allowed flags are listed here:
357          * \ref selelem_flags "flags for gmx::SelectionTreeElement".
358          */
359         int                                 flags;
360         //! Data required by the evaluation function.
361         union {
362             /*! \brief Index group data for several element types.
363              *
364              *  - \ref SEL_CONST : if the value type is \ref GROUP_VALUE,
365              *    this field holds the unprocessed group value.
366              *  - \ref SEL_ROOT : holds the group value for which the
367              *    selection subtree should be evaluated.
368              *  - \ref SEL_SUBEXPR : holds the group for which the subexpression
369              *    has been evaluated.
370              */
371             gmx_ana_index_t                 cgrp;
372             //! Data for \ref SEL_EXPRESSION and \ref SEL_MODIFIER elements.
373             struct {
374                 //! Pointer the the method used in this expression.
375                 struct gmx_ana_selmethod_t *method;
376                 //! Pointer to the data allocated by the method's \p init_data (see sel_datafunc()).
377                 void                       *mdata;
378                 //! Pointer to the position data passed to the method.
379                 struct gmx_ana_pos_t       *pos;
380                 //! Pointer to the evaluation data for \p pos.
381                 struct gmx_ana_poscalc_t   *pc;
382             }                               expr;
383             //! Operation type for \ref SEL_BOOLEAN elements.
384             e_boolean_t                     boolt;
385             //! Operation type for \ref SEL_ARITHMETIC elements.
386             struct {
387                 //! Operation type.
388                 e_arithmetic_t              type;
389                 //! String representation.
390                 char                       *opstr;
391             }                               arith;
392             //! Associated selection parameter for \ref SEL_SUBEXPRREF elements.
393             struct gmx_ana_selparam_t      *param;
394             //! The string/number used to reference the group.
395             struct {
396                 //! Name of the referenced external group.
397                 char                       *name;
398                 //! If \a name is NULL, the index number of the referenced group.
399                 int                         id;
400             }                               gref;
401         }                                   u;
402         //! Memory pool to use for values, or NULL if standard memory handling.
403         struct gmx_sel_mempool_t           *mempool;
404         //! Internal data for the selection compiler.
405         t_compiler_data                    *cdata;
406
407         /*! \brief The first child element.
408          *
409          * Other children can be accessed through the \p next field of \p child.
410          */
411         SelectionTreeElementPointer         child;
412         //! The next sibling element.
413         SelectionTreeElementPointer         next;
414
415     private:
416         /*! \brief
417          * Name of the element.
418          *
419          * This field is only used for informative purposes.
420          */
421         std::string                         name_;
422
423         GMX_DISALLOW_COPY_AND_ASSIGN(SelectionTreeElement);
424 };
425
426 } // namespace gmx
427
428 /********************************************************************/
429 /*! \name Selection expression functions
430  */
431 //!\{
432
433 /* In evaluate.c */
434 /** Writes out a human-readable name for an evaluation function. */
435 void
436 _gmx_sel_print_evalfunc_name(FILE *fp, gmx::sel_evalfunc evalfunc);
437
438 /** Sets the value type of a gmx::SelectionTreeElement. */
439 void
440 _gmx_selelem_set_vtype(const gmx::SelectionTreeElementPointer &sel,
441                        e_selvalue_t                            vtype);
442
443 /** Frees the memory allocated for a selection method. */
444 void
445 _gmx_selelem_free_method(struct gmx_ana_selmethod_t *method, void *mdata);
446
447 /** Prints a human-readable version of a selection element subtree. */
448 void
449 _gmx_selelem_print_tree(FILE *fp, const gmx::SelectionTreeElement &sel,
450                         bool bValues, int level);
451 /* In compiler.c */
452 /** Prints a human-readable version of the internal compiler data structure. */
453 void
454 _gmx_selelem_print_compiler_info(FILE *fp, const gmx::SelectionTreeElement &sel,
455                                  int level);
456
457 /** Returns true if the selection element subtree requires topology information for evaluation. */
458 bool
459 _gmx_selelem_requires_top(const gmx::SelectionTreeElement &root);
460
461 /* In sm_insolidangle.c */
462 /** Returns true if the covered fraction of the selection can be calculated. */
463 bool
464 _gmx_selelem_can_estimate_cover(const gmx::SelectionTreeElement &sel);
465 /** Returns the covered fraction of the selection for the current frame. */
466 real
467 _gmx_selelem_estimate_coverfrac(const gmx::SelectionTreeElement &sel);
468
469 //!\}
470
471 #endif