Separate management of GPU contexts from modules
[gromacs.git] / src / gromacs / selection / selvalue.h
blobd4a1e13318cc6a59d39572877e20239b4c94b74a
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2009,2010,2011,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.
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.
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.
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.
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.
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.
35 /*! \internal \file
36 * \brief
37 * Declares ::gmx_ana_selvalue_t.
39 * There should be no need to use the data structures in this file directly
40 * unless implementing a custom selection routine.
42 * \author Teemu Murtola <teemu.murtola@gmail.com>
43 * \ingroup module_selection
45 #ifndef GMX_SELECTION_SELVALUE_H
46 #define GMX_SELECTION_SELVALUE_H
48 #include "gromacs/utility/real.h"
50 /** Defines the value type of a different selection objects. */
51 typedef enum
53 NO_VALUE, /**< No value; either an error condition or an boolean
54 parameter. */
55 INT_VALUE, /**< One or more integer values. */
56 REAL_VALUE, /**< One or more real values. */
57 STR_VALUE, /**< One or more string values. */
58 POS_VALUE, /**< One or more position values. */
59 GROUP_VALUE /**< One group of atoms. */
60 } e_selvalue_t;
62 /*! \internal
63 * \brief
64 * Describes a value of a selection expression or of a selection method
65 * parameter.
67 * Which field in the union is used depends on the \p type.
69 typedef struct gmx_ana_selvalue_t
71 /** Type of the value. */
72 e_selvalue_t type;
73 /*! \brief
74 * Number of values in the array pointed by the union.
76 * Note that for position and group values, it is the number of
77 * data structures in the array, not the number of positions or
78 * the number of atoms in the group.
80 int nr;
81 /** Pointer to the value. */
82 union {
83 /*! \brief
84 * Generic pointer for operations that do not need type information.
86 * Needs to be the first member to be able to use initialized arrays.
88 void *ptr;
89 /** Integer value(s) (type \ref INT_VALUE). */
90 int *i;
91 /** Real value(s) (type \ref REAL_VALUE). */
92 real *r;
93 /** String value(s) (type \ref STR_VALUE). */
94 char **s;
95 /** Structure for the position value(s) (type \ref POS_VALUE). */
96 struct gmx_ana_pos_t *p;
97 /** Group value (type \ref GROUP_VALUE). */
98 struct gmx_ana_index_t *g;
99 /** Boolean value (only parameters of type \ref NO_VALUE); */
100 bool *b;
101 } u;
102 /*! \brief
103 * Number of elements allocated for the value array.
105 int nalloc;
106 } gmx_ana_selvalue_t;
108 /*! \brief
109 * Initializes an empty selection value structure.
111 * \param[out] val Output structure
113 * The type of \p val is not touched.
114 * Any contents of \p val are discarded without freeing.
116 void
117 _gmx_selvalue_clear(gmx_ana_selvalue_t *val);
118 /*! \brief
119 * Frees memory allocated for a selection value structure.
121 * \param[in,out] val Values to free.
123 * The type of \p val is not touched.
124 * If memory is not allocated, the value pointers are simply cleared without
125 * freeing.
127 void
128 _gmx_selvalue_free(gmx_ana_selvalue_t *val);
129 /*! \brief
130 * Reserve memory for storing selection values.
132 * \param[in,out] val Value structure to allocate.
133 * \param[in] n Maximum number of values needed.
135 * Reserves memory for the values within \p val to store at least \p n values,
136 * of the type specified in the \p val structure.
138 * If the type is \ref POS_VALUE or \ref GROUP_VALUE, memory is reserved for
139 * the data structures, but no memory is reserved inside these newly allocated
140 * data structures.
141 * Similarly, for \ref STR_VALUE values, the pointers are set to NULL.
142 * For other values, the memory is uninitialized.
144 void
145 _gmx_selvalue_reserve(gmx_ana_selvalue_t *val, int n);
146 /*! \brief
147 * Gets and releases the memory pointer for storing selection values.
149 * \param[in,out] val Value structure to release.
150 * \param[out] ptr Pointer where the values are stored.
151 * \param[out] nalloc Pointer where the values are stored.
153 * Returns the pointer where values of \p val were stored in \p ptr and
154 * \p nalloc, and clears the memory in \p val.
156 void
157 _gmx_selvalue_getstore_and_release(gmx_ana_selvalue_t *val, void **ptr, int *nalloc);
158 /*! \brief
159 * Sets the memory for storing selection values.
161 * \param[in,out] val Value structure to set storage for.
162 * \param[in] ptr Pointer where the values should be stored.
164 * Automatic memory management is disabled for \p ptr.
165 * Asserts if \p val had a previous storage that it owned, as that would result
166 * in a memory leak.
168 void
169 _gmx_selvalue_setstore(gmx_ana_selvalue_t *val, void *ptr);
170 /*! \brief
171 * Sets the memory for storing selection values and marks it for automatic freeing.
173 * \param[in,out] val Value structure to set storage for.
174 * \param[in] ptr Pointer where the values should be stored.
175 * \param[in] nalloc Number of values allocated for \p ptr.
177 * Asserts if \p val had a previous storage that it owned, as that would result
178 * in a memory leak.
180 void
181 _gmx_selvalue_setstore_alloc(gmx_ana_selvalue_t *val, void *ptr, int nalloc);
183 #endif