ファクトリ関数が実際には名前空間レベルの関数であると仮定します。
namespace Factories
{
NodeHandle CreateVarNode(std::wstring var)
{
Node::ptr node(new VarTerminal(var));
return NodeHandle(node);
}
}
これはうまくいくはずです:
value = ( '%' >> +(qi::alpha) >> '%')
[qi::_val = phoenix::bind(&Factories::CreateVarNode, qi::_1)];
という名前のクラスの静的メンバーである場合、これは変更されずに機能するはずFactories
です。少し便利に実装して、次のように書くこともできます。
value = ( '%' >> +(qi::alpha) >> '%') [ createvar ];
これには、Phoenix 関数を使用するための少しの配管が必要です。完全なサンプル:
#define BOOST_SPIRIT_USE_PHOENIX_V3
#include <boost/spirit/include/qi.hpp>
namespace qi = boost::spirit::qi;
namespace phx = boost::phoenix;
struct VarNode { VarNode (std::string ){ /*todo*/ } } ;
struct LitNode { LitNode (double ){ /*todo*/ } } ;
struct Assignment { Assignment (std::string, double){ /*todo*/ } } ;
struct Node { typedef Node* ptr; };
struct NodeHandle { /*todo*/ };
template <typename ProductNode>
struct NodeFactory
{
template<typename... T> struct result { typedef NodeHandle type; };
template<typename... T>
NodeHandle operator()(T&&... a) const
{
Node::ptr node(new ProductNode(std::forward<T>(a)...));
return NodeHandle(node);
}
};
int main ()
{
static const phx::function<NodeFactory<VarNode> > createvar;
static const phx::function<NodeFactory<LitNode> > createliteral;
static const phx::function<NodeFactory<Assignment> > createassign;
qi::rule<std::string::const_iterator, NodeHandle()> value
= ( '%' >> +(qi::alpha) >> '%') [createvar];
const std::string input("%a%");
auto f=begin(input), l=end(input);
assert(qi::parse(f, l, value));
}