Move rvec and friends to math/vectypes.h
[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/utility/common.h"
57 #include "gromacs/utility/real.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  * Mask that covers the flags that describe the number of values.
172  */
173 #define SEL_VALTYPEMASK (SEL_SINGLEVAL | SEL_ATOMVAL | SEL_VARNUMVAL)
174 /*! \brief
175  * Mask that covers the flags that describe the value type.
176  */
177 #define SEL_VALFLAGMASK (SEL_FLAGSSET | SEL_VALTYPEMASK | SEL_DYNAMIC)
178 /*! \brief
179  * Data has been allocated for the \p v.u union.
180  *
181  * If not set, the \p v.u.ptr points to data allocated externally.
182  * This is the case if the value of the element is used as a parameter
183  * for a selection method or if the element evaluates the final value of
184  * a selection.
185  *
186  * Even if the flag is set, \p v.u.ptr can be NULL during initialization.
187  *
188  * \todo
189  * This flag overlaps with the function of \p v.nalloc field, and could
190  * probably be removed, making memory management simpler. Currently, the
191  * \p v.nalloc field is not kept up-to-date in all cases when this flag
192  * is changed and is used in places where this flag is not, so this would
193  * require a careful investigation of the selection code.
194  */
195 #define SEL_ALLOCVAL    (1<<8)
196 /*! \brief
197  * Data has been allocated for the group/position structure.
198  *
199  * If not set, the memory allocated for fields in \p v.u.g or \p v.u.p is
200  * managed externally.
201  *
202  * This field has no effect if the value type is not \ref GROUP_VALUE or
203  * \ref POS_VALUE, but should not be set.
204  */
205 #define SEL_ALLOCDATA   (1<<9)
206 /*! \brief
207  * \p method->init_frame should be called for the frame.
208  */
209 #define SEL_INITFRAME   (1<<10)
210 /*! \brief
211  * Parameter has been evaluated for the current frame.
212  *
213  * This flag is set for children of \ref SEL_EXPRESSION elements (which
214  * describe method parameters) after the element has been evaluated for the
215  * current frame.
216  * It is not set for \ref SEL_ATOMVAL elements, because they may need to
217  * be evaluated multiple times.
218  */
219 #define SEL_EVALFRAME   (1<<11)
220 /*! \brief
221  * \p method->init has been called.
222  */
223 #define SEL_METHODINIT  (1<<12)
224 /*! \brief
225  * \p method->outinit has been called.
226  *
227  * This flag is also used for \ref SEL_SUBEXPRREF elements.
228  */
229 #define SEL_OUTINIT     (1<<13)
230 //!\}
231
232
233 namespace gmx
234 {
235
236 /*! \brief
237  * Function pointer for evaluating a gmx::SelectionTreeElement.
238  */
239 typedef void (*sel_evalfunc)(struct gmx_sel_evaluate_t         *data,
240                              const SelectionTreeElementPointer &sel,
241                              gmx_ana_index_t                   *g);
242
243 /*! \internal \brief
244  * Represents an element of a selection expression.
245  */
246 class SelectionTreeElement
247 {
248     public:
249         /*! \brief
250          * Allocates memory and performs common initialization.
251          *
252          * \param[in] type Type of selection element to create.
253          *
254          * \a type is set to \p type,
255          * \a v::type is set to \ref GROUP_VALUE for boolean and comparison
256          * expressions and \ref NO_VALUE for others, and
257          * \ref SEL_ALLOCVAL is set for non-root elements (\ref SEL_ALLOCDATA
258          * is also set for \ref SEL_BOOLEAN elements).
259          * All the pointers are set to NULL.
260          */
261         explicit SelectionTreeElement(e_selelem_t type);
262         ~SelectionTreeElement();
263
264         //! Frees the memory allocated for the \a v union.
265         void freeValues();
266         //! Frees the memory allocated for the \a u union.
267         void freeExpressionData();
268         /* In compiler.cpp */
269         /*! \brief
270          * Frees the memory allocated for the selection compiler.
271          *
272          * This function only frees the data for the given selection, not its
273          * children.  It is safe to call the function when compiler data has
274          * not been allocated or has already been freed; in such a case,
275          * nothing is done.
276          */
277         void freeCompilerData();
278
279         /*! \brief
280          * Reserves memory for value from a memory pool.
281          *
282          * \param[in]     count Number of values to reserve memory for.
283          *
284          * Reserves memory for the values of this element from the \a mempool
285          * memory pool.
286          * If no memory pool is set, nothing is done.
287          */
288         void mempoolReserve(int count);
289         /*! \brief
290          * Releases memory pool used for value.
291          *
292          * Releases the memory allocated for the values of this element from the
293          * \a mempool memory pool.
294          * If no memory pool is set, nothing is done.
295          */
296         void mempoolRelease();
297
298         //! Returns the name of the element.
299         const std::string &name() const { return name_; }
300         /*! \brief
301          * Sets the name of the element.
302          *
303          * \param[in] name  Name to set (can be NULL).
304          * \throws    std::bad_alloc if out of memory.
305          */
306         void setName(const char *name) { name_ = (name != NULL ? name : ""); }
307         //! \copydoc setName(const char *)
308         void setName(const std::string &name) { name_ = name; }
309         /*! \brief
310          * Sets the name of a root element if it is missing.
311          *
312          * \param[in] selectionText  Full selection text to use as a fallback.
313          * \throws    std::bad_alloc if out of memory.
314          *
315          * If index groups have not yet been set and the selection is a result
316          * of a group reference, the name may still be empty after this call.
317          *
318          * Strong exception safety guarantee.
319          */
320         void fillNameIfMissing(const char *selectionText);
321
322         /*! \brief
323          * Resolved an unresolved reference to an index group.
324          *
325          * \param[in] grps  Index groups to use to resolve the reference.
326          * \throws    std::bad_alloc if out of memory.
327          * \throws    InconsistentInputError if the reference cannot be
328          *     resolved.
329          */
330         void resolveIndexGroupReference(gmx_ana_indexgrps_t *grps);
331
332         //! Type of the element.
333         e_selelem_t                         type;
334         /*! \brief
335          * Value storage of the element.
336          *
337          * This field contains the evaluated value of the element, as well as
338          * the output value type.
339          */
340         gmx_ana_selvalue_t                  v;
341         /*! \brief
342          * Evaluation function for the element.
343          *
344          * Can be either NULL (if the expression is a constant and does not
345          * require evaluation) or point to one of the functions defined in
346          * evaluate.h.
347          */
348         sel_evalfunc                        evaluate;
349         /*! \brief
350          * Information flags about the element.
351          *
352          * Allowed flags are listed here:
353          * \ref selelem_flags "flags for gmx::SelectionTreeElement".
354          */
355         int                                 flags;
356         //! Data required by the evaluation function.
357         union {
358             /*! \brief Index group data for several element types.
359              *
360              *  - \ref SEL_CONST : if the value type is \ref GROUP_VALUE,
361              *    this field holds the unprocessed group value.
362              *  - \ref SEL_ROOT : holds the group value for which the
363              *    selection subtree should be evaluated.
364              *  - \ref SEL_SUBEXPR : holds the group for which the subexpression
365              *    has been evaluated.
366              */
367             gmx_ana_index_t                 cgrp;
368             //! Data for \ref SEL_EXPRESSION and \ref SEL_MODIFIER elements.
369             struct {
370                 //! Pointer the the method used in this expression.
371                 struct gmx_ana_selmethod_t *method;
372                 //! Pointer to the data allocated by the method's \p init_data (see sel_datafunc()).
373                 void                       *mdata;
374                 //! Pointer to the position data passed to the method.
375                 struct gmx_ana_pos_t       *pos;
376                 //! Pointer to the evaluation data for \p pos.
377                 struct gmx_ana_poscalc_t   *pc;
378             }                               expr;
379             //! Operation type for \ref SEL_BOOLEAN elements.
380             e_boolean_t                     boolt;
381             //! Operation type for \ref SEL_ARITHMETIC elements.
382             struct {
383                 //! Operation type.
384                 e_arithmetic_t              type;
385                 //! String representation.
386                 char                       *opstr;
387             }                               arith;
388             //! Associated selection parameter for \ref SEL_SUBEXPRREF elements.
389             struct gmx_ana_selparam_t      *param;
390             //! The string/number used to reference the group.
391             struct {
392                 //! Name of the referenced external group.
393                 char                       *name;
394                 //! If \a name is NULL, the index number of the referenced group.
395                 int                         id;
396             }                               gref;
397         }                                   u;
398         //! Memory pool to use for values, or NULL if standard memory handling.
399         struct gmx_sel_mempool_t           *mempool;
400         //! Internal data for the selection compiler.
401         t_compiler_data                    *cdata;
402
403         /*! \brief The first child element.
404          *
405          * Other children can be accessed through the \p next field of \p child.
406          */
407         SelectionTreeElementPointer         child;
408         //! The next sibling element.
409         SelectionTreeElementPointer         next;
410
411     private:
412         /*! \brief
413          * Name of the element.
414          *
415          * This field is only used for informative purposes.
416          */
417         std::string                         name_;
418
419         GMX_DISALLOW_COPY_AND_ASSIGN(SelectionTreeElement);
420 };
421
422 } // namespace gmx
423
424 /********************************************************************/
425 /*! \name Selection expression functions
426  */
427 //!\{
428
429 /* In evaluate.c */
430 /** Writes out a human-readable name for an evaluation function. */
431 void
432 _gmx_sel_print_evalfunc_name(FILE *fp, gmx::sel_evalfunc evalfunc);
433
434 /** Sets the value type of a gmx::SelectionTreeElement. */
435 void
436 _gmx_selelem_set_vtype(const gmx::SelectionTreeElementPointer &sel,
437                        e_selvalue_t                            vtype);
438
439 /** Frees the memory allocated for a selection method. */
440 void
441 _gmx_selelem_free_method(struct gmx_ana_selmethod_t *method, void *mdata);
442
443 /** Prints a human-readable version of a selection element subtree. */
444 void
445 _gmx_selelem_print_tree(FILE *fp, const gmx::SelectionTreeElement &sel,
446                         bool bValues, int level);
447 /* In compiler.c */
448 /** Prints a human-readable version of the internal compiler data structure. */
449 void
450 _gmx_selelem_print_compiler_info(FILE *fp, const gmx::SelectionTreeElement &sel,
451                                  int level);
452
453 /** Returns true if the selection element subtree requires topology information for evaluation. */
454 bool
455 _gmx_selelem_requires_top(const gmx::SelectionTreeElement &root);
456
457 /* In sm_insolidangle.c */
458 /** Returns true if the covered fraction of the selection can be calculated. */
459 bool
460 _gmx_selelem_can_estimate_cover(const gmx::SelectionTreeElement &sel);
461 /** Returns the covered fraction of the selection for the current frame. */
462 real
463 _gmx_selelem_estimate_coverfrac(const gmx::SelectionTreeElement &sel);
464
465 //!\}
466
467 #endif