Separate management of GPU contexts from modules
[gromacs.git] / src / gromacs / selection / scanner.h
blob3b29c0cabe48f1174eaf7c0751b22f97010cd0d1
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2009,2010,2011,2012,2014,2015, 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 * Parser/scanner interaction functions.
39 * This is an implementation header: there should be no need to use it outside
40 * this directory.
42 * \author Teemu Murtola <teemu.murtola@gmail.com>
43 * \ingroup module_selection
45 #ifndef SELECTION_SCANNER_H
46 #define SELECTION_SCANNER_H
48 #include <exception>
49 #include <string>
51 #include "parser.h"
53 namespace gmx
55 class TextWriter;
58 struct gmx_ana_indexgrps_t;
59 struct gmx_ana_selcollection_t;
61 #ifndef YY_TYPEDEF_YY_SCANNER_T
62 #define YY_TYPEDEF_YY_SCANNER_T
63 typedef void *yyscan_t;
64 #endif
66 /** Initializes the selection scanner. */
67 void
68 _gmx_sel_init_lexer(yyscan_t *scannerp, struct gmx_ana_selcollection_t *sc,
69 gmx::TextWriter *statusWriter, int maxnr, bool bGroups,
70 struct gmx_ana_indexgrps_t *grps);
71 /** Frees memory allocated for the selection scanner. */
72 void
73 _gmx_sel_free_lexer(yyscan_t scanner);
74 /** Stores an exception that is caught during parsing. */
75 void
76 _gmx_sel_lexer_set_exception(yyscan_t scanner,
77 const std::exception_ptr &ex);
78 /** Rethrows and clears the stored exception if one is present. */
79 // TODO: The semantics is a bit confusing, need to be thought more,
80 // but easier to do as part of larger refactoring of the parsing.
81 void
82 _gmx_sel_lexer_rethrow_exception_if_occurred(yyscan_t scanner);
84 /** Returns writer for status output (if not NULL, the scanner is interactive). */
85 gmx::TextWriter *
86 _gmx_sel_lexer_get_status_writer(yyscan_t scanner);
87 /** Returns the selection collection for the scanner. */
88 struct gmx_ana_selcollection_t *
89 _gmx_sel_lexer_selcollection(yyscan_t scanner);
90 /** Returns true if the external index groups for the scanner are set. */
91 bool
92 _gmx_sel_lexer_has_groups_set(yyscan_t scanner);
93 /** Returns the external index groups for the scanner. */
94 struct gmx_ana_indexgrps_t *
95 _gmx_sel_lexer_indexgrps(yyscan_t scanner);
96 /** Returns the number of selections after which the parser should stop. */
97 int
98 _gmx_sel_lexer_exp_selcount(yyscan_t scanner);
100 /** Returns a pretty string of the current selection. */
101 const char *
102 _gmx_sel_lexer_pselstr(yyscan_t scanner);
103 /*! \brief
104 * Sets the current parser context location.
106 * This location is set while Bison reductions are being processed, and
107 * identifies the location of the current rule/reduction.
109 void
110 _gmx_sel_lexer_set_current_location(yyscan_t scanner,
111 const gmx::SelectionLocation &location);
112 /*! \brief
113 * Returns the current parser context location.
115 * This returns the location last set with
116 * _gmx_sel_lexer_set_current_location().
118 const gmx::SelectionLocation &
119 _gmx_sel_lexer_get_current_location(yyscan_t scanner);
120 /*! \brief
121 * Returns the selection text for the current parser context.
123 * This returns the selection text that corresponds to the position set last
124 * with _gmx_sel_lexer_set_current_location().
126 std::string
127 _gmx_sel_lexer_get_current_text(yyscan_t scanner);
128 /*! \brief
129 * Returns the selection text at the given location.
131 std::string
132 _gmx_sel_lexer_get_text(yyscan_t scanner,
133 const gmx::SelectionLocation &location);
134 /** Clears the current selection string. */
135 void
136 _gmx_sel_lexer_clear_pselstr(yyscan_t scanner);
137 /** Clears the method stack in the scanner in error situations. */
138 void
139 _gmx_sel_lexer_clear_method_stack(yyscan_t scanner);
140 /** Notifies the scanner that a complete method expression has been parsed. */
141 void
142 _gmx_sel_finish_method(yyscan_t scanner);
143 /** Initializes the scanner to scan a file. */
144 void
145 _gmx_sel_set_lex_input_file(yyscan_t scanner, FILE *fp);
146 /** Initializes the scanner to scan a string. */
147 void
148 _gmx_sel_set_lex_input_str(yyscan_t scanner, const char *str);
150 /** The scanning function generated by Flex. */
151 #define YY_DECL int _gmx_sel_yylex(YYSTYPE *yylval, YYLTYPE *yylloc, yyscan_t yyscanner)
152 YY_DECL;
154 #endif