1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
// -*- mode: c++; c-basic-offset:4 -*-
// This file is part of libdap, A C++ implementation of the OPeNDAP Data
// Access Protocol.
// Copyright (c) 2014 OPeNDAP, Inc.
// Author: James Gallagher <jgallagher@opendap.org>
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// You can contact OPeNDAP, Inc. at PO Box 112, Saunderstown, RI. 02874-0112.
#ifndef D4_FUNCTION_DRIVER_H_
#define D4_FUNCTION_DRIVER_H_
#include <stack>
#include <string>
#include <vector>
namespace libdap {
class location;
class BaseType;
class Array;
class ServerFunctionsList;
class DMR;
class D4Dimension;
class D4RValue;
class D4RValueList;
/**
* Driver for the DAP4 Functional expression parser.
*/
class D4FunctionEvaluator {
bool d_trace_scanning = false;
bool d_trace_parsing = false;
std::string d_expr;
DMR *d_dmr = nullptr;
ServerFunctionsList *d_sf_list = nullptr;
D4RValueList *d_result = nullptr;
std::stack<BaseType *> d_basetype_stack;
unsigned long long d_arg_length_hint = 0;
// d_expr should be set by parse! Its value is used by the parser right before
// the actual parsing operation starts. jhrg 11/26/13
std::string *expression() { return &d_expr; }
void push_basetype(BaseType *btp) { d_basetype_stack.push(btp); }
BaseType *top_basetype() const { return d_basetype_stack.empty() ? nullptr : d_basetype_stack.top(); }
void pop_basetype() { d_basetype_stack.pop(); }
D4RValue *build_rvalue(const std::string &id);
friend class D4FunctionParser;
public:
D4FunctionEvaluator() = default;
D4FunctionEvaluator(DMR *dmr, ServerFunctionsList *sf_list) : d_dmr(dmr), d_sf_list(sf_list) {}
virtual ~D4FunctionEvaluator() = default;
bool parse(const std::string &expr);
bool trace_scanning() const { return d_trace_scanning; }
void set_trace_scanning(bool ts) { d_trace_scanning = ts; }
bool trace_parsing() const { return d_trace_parsing; }
void set_trace_parsing(bool tp) { d_trace_parsing = tp; }
/** Get the result of parsing the function(s)
*
* @return The result(s) packages in a D4RValueList
*/
D4RValueList *result() const { return d_result; }
void set_result(D4RValueList *rv_list) { d_result = rv_list; }
void eval(DMR *dmr);
unsigned long long get_arg_length_hint() const { return d_arg_length_hint; }
void set_arg_length_hint(unsigned long long alh) { d_arg_length_hint = alh; }
DMR *dmr() const { return d_dmr; }
void set_dmr(DMR *dmr) { d_dmr = dmr; }
ServerFunctionsList *sf_list() const { return d_sf_list; }
void set_sf_list(ServerFunctionsList *sf_list) { d_sf_list = sf_list; }
template <typename t> std::vector<t> *init_arg_list(t val);
[[noreturn]] static void error(const libdap::location &l, const std::string &m);
};
} /* namespace libdap */
#endif /* D4_FUNCTION_DRIVER_H_ */
|