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