2008-08-08 12:35:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2008 Andrew Garrett.
|
|
|
|
* Copyright (c) 2008 River Tarnell <river@wikimedia.org>
|
|
|
|
* Derived from public domain code contributed by Victor Vasiliev.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
|
|
* including commercial applications, and to alter it and redistribute it
|
|
|
|
* freely. This software is provided 'as-is', without any express or
|
|
|
|
* implied warranty.
|
|
|
|
*/
|
|
|
|
|
2008-08-08 00:01:22 +00:00
|
|
|
#ifndef EXPRESSOR_H
|
|
|
|
#define EXPRESSOR_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <boost/noncopyable.hpp>
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
|
|
|
|
#include "aftypes.h"
|
|
|
|
|
2008-08-08 03:23:34 +00:00
|
|
|
namespace afp {
|
|
|
|
|
2008-08-08 00:01:22 +00:00
|
|
|
struct parser_grammar;
|
|
|
|
|
|
|
|
struct expressor : boost::noncopyable {
|
2008-08-08 03:23:34 +00:00
|
|
|
typedef boost::function<datum (std::vector<datum>)> func_t;
|
2008-08-08 00:01:22 +00:00
|
|
|
|
|
|
|
expressor();
|
|
|
|
~expressor();
|
|
|
|
|
2008-08-08 03:23:34 +00:00
|
|
|
datum evaluate(std::string const &expr) const;
|
2008-08-08 00:01:22 +00:00
|
|
|
|
2008-08-08 03:23:34 +00:00
|
|
|
void add_variable(std::string const &name, datum value);
|
2008-08-08 00:01:22 +00:00
|
|
|
void add_function(std::string const &name, func_t value);
|
|
|
|
|
|
|
|
private:
|
|
|
|
parser_grammar *grammar_;
|
|
|
|
};
|
|
|
|
|
2008-08-08 03:23:34 +00:00
|
|
|
} // namespace afp
|
|
|
|
|
2008-08-08 00:01:22 +00:00
|
|
|
#endif /* !EXPRESSOR_H */
|