我嘗試使用qi創建泛型分析器元素,因爲我不幸(MSVC必須支持)不能使用X3。 這個想法是有一個模板結構:如何使用qi創建泛型解析器?
template<class T> struct parse_type;
,我可以用這樣的:
template<class T> T from_string(std::string const& s)
{
T res;
parse_type<T> t;
...
if (phrase_parse(...,parse_type<T>(),...,t))
}
或專門這樣
template<class T,class Alloc>
struct parse_type<std::vector<T,Alloc>>
{
// Parse a vector using rule '[' >> parse_type<T> % ',' > ']';
}
主要目的是爲了讓方便解析例如std :: tuple,boost :: optional和boost :: variant(由於qi的貪婪性質,最後一個不能自動)。
我將不勝感激關於如何做到這一點的反饋。目前,我的結構基於qi :: grammar,但X3不支持語法,我希望在MSVC編譯時使用X3,而且我也有點不舒服,因爲必須提供隊長。 另一種方法是在parse_type中有一個返回適當規則的靜態函數。我正在考慮這是否是一種更清潔的方法?
任何反饋將不勝感激。
Update2:用運行時失敗的可編譯示例替換代碼片段。下面是代碼:
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
#include <string>
#include <string>
#include <iostream>
#include <iostream>
// Support to simplify
using iter = std::string::const_iterator;
void print(std::vector<int> const& v)
{
std::cout << '[';
for (auto i: v) std::cout << i << ',';
std::cout << "]";
}
namespace qi = boost::spirit::qi;
// My rule factory - quite useless if you do not specialise
template<class T> struct ps_rule;
// An example of using the factory
template<class T>
T from_string(std::string const& s)
{
T result;
iter first { std::begin(s) };
auto rule = ps_rule<T>::get();
phrase_parse(first,std::end(s),rule,qi::space,result);
return result;
}
// Specialising rule for int
template<>
struct ps_rule<int>
{
static qi::rule<iter,int()> get() { return qi::int_; }
};
// ... and for std::vector (where the elements must have rules)
template<class T,class Alloc>
struct ps_rule<std::vector<T,Alloc>>
{
static qi::rule<iter,std::vector<T,Alloc>()> get()
{
qi::rule<iter,std::vector<T,Alloc>()> res;
res.name("Vector");
res =
qi::lit('{')
>> ps_rule<T>::get() % ','
>> '}';
return res;
}
};
int main()
{
// This one works like a charm.
std::cout << ((from_string<int>("100") == 100) ? "OK\n":"Failed\n");
std::vector<int> v {1,2,3,4,5,6};
// This one fails
std::cout << ((from_string<std::vector<int>>("{1,2,3,4,5,6}") == v) ? "OK\n":"Failed\n");
}
該代碼在升壓/ function_template.hpp行失敗766:
result_type operator()(BOOST_FUNCTION_PARMS) const
{
if (this->empty())
boost::throw_exception(bad_function_call());
return get_vtable()->invoker
(this->functor BOOST_FUNCTION_COMMA BOOST_FUNCTION_ARGS);
}
此代碼是在升壓成員函數:: function4 ,升壓::融合:: vector0> & ,boost :: spirit :: unused_type const &> 問題是get_vtable返回一個無效指針。
不是我關心那麼多,但我想知道在這裏投票的理由是什麼? – user3721426