b49a445365761191e41a857aeeb6744ef17dd2d9
[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, 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 namespace gmx
55 {
56 class MessageStringCollector;
57 }
58
59 struct gmx_ana_indexgrps_t;
60 struct gmx_ana_selcollection_t;
61
62 #ifndef YY_TYPEDEF_YY_SCANNER_T
63 #define YY_TYPEDEF_YY_SCANNER_T
64 typedef void *yyscan_t;
65 #endif
66
67 /** Initializes the selection scanner. */
68 void
69 _gmx_sel_init_lexer(yyscan_t *scannerp, struct gmx_ana_selcollection_t *sc,
70                     bool bInteractive, int maxnr, bool bGroups,
71                     struct gmx_ana_indexgrps_t *grps);
72 /** Frees memory allocated for the selection scanner. */
73 void
74 _gmx_sel_free_lexer(yyscan_t scanner);
75 /** Sets the error reporter object for the selection scanner. */
76 void
77 _gmx_sel_set_lexer_error_reporter(yyscan_t                     scanner,
78                                   gmx::MessageStringCollector *errors);
79 /** Stores an exception that is caught during parsing. */
80 void
81 _gmx_sel_lexer_set_exception(yyscan_t                    scanner,
82                              const boost::exception_ptr &ex);
83 /** Rethrows and clears the stored exception if one is present. */
84 // TODO: The semantics is a bit confusing, need to be thought more,
85 // but easier to do as part of larger refactoring of the parsing.
86 void
87 _gmx_sel_lexer_rethrow_exception_if_occurred(yyscan_t scanner);
88
89 /** Returns true if the scanner is interactive. */
90 bool
91 _gmx_sel_is_lexer_interactive(yyscan_t scanner);
92 /** Returns the selection collection for the scanner. */
93 struct gmx_ana_selcollection_t *
94 _gmx_sel_lexer_selcollection(yyscan_t scanner);
95 /** Returns the error reporter for the scanner. */
96 gmx::MessageStringCollector *
97 _gmx_sel_lexer_error_reporter(yyscan_t scanner);
98 /** Returns true if the external index groups for the scanner are set. */
99 bool
100 _gmx_sel_lexer_has_groups_set(yyscan_t scanner);
101 /** Returns the external index groups for the scanner. */
102 struct gmx_ana_indexgrps_t *
103 _gmx_sel_lexer_indexgrps(yyscan_t scanner);
104 /** Returns the number of selections after which the parser should stop. */
105 int
106 _gmx_sel_lexer_exp_selcount(yyscan_t scanner);
107
108 /** Returns a pretty string of the current selection.  */
109 const char *
110 _gmx_sel_lexer_pselstr(yyscan_t scanner);
111 /*! \brief
112  * Sets the current parser context location.
113  *
114  * This location is set while Bison reductions are being processed, and
115  * identifies the location of the current rule/reduction.
116  */
117 void
118 _gmx_sel_lexer_set_current_location(yyscan_t                      scanner,
119                                     const gmx::SelectionLocation &location);
120 /*! \brief
121  * Returns the current parser context location.
122  *
123  * This returns the location last set with
124  * _gmx_sel_lexer_set_current_location().
125  */
126 const gmx::SelectionLocation &
127 _gmx_sel_lexer_get_current_location(yyscan_t scanner);
128 /*! \brief
129  * Returns the selection text for the current parser context.
130  *
131  * This returns the selection text that corresponds to the position set last
132  * with _gmx_sel_lexer_set_current_location().
133  */
134 std::string
135 _gmx_sel_lexer_get_current_text(yyscan_t scanner);
136 /*! \brief
137  * Returns the selection text at the given location.
138  */
139 std::string
140 _gmx_sel_lexer_get_text(yyscan_t                      scanner,
141                         const gmx::SelectionLocation &location);
142 /** Clears the current selection string.  */
143 void
144 _gmx_sel_lexer_clear_pselstr(yyscan_t scanner);
145 /** Clears the method stack in the scanner in error situations. */
146 void
147 _gmx_sel_lexer_clear_method_stack(yyscan_t scanner);
148 /** Notifies the scanner that a complete method expression has been parsed. */
149 void
150 _gmx_sel_finish_method(yyscan_t scanner);
151 /** Initializes the scanner to scan a file. */
152 void
153 _gmx_sel_set_lex_input_file(yyscan_t scanner, FILE *fp);
154 /** Initializes the scanner to scan a string. */
155 void
156 _gmx_sel_set_lex_input_str(yyscan_t scanner, const char *str);
157
158 /** The scanning function generated by Flex. */
159 #define YY_DECL int _gmx_sel_yylex(YYSTYPE *yylval, YYLTYPE *yylloc, yyscan_t yyscanner)
160 YY_DECL;
161
162 #endif