Boost.Fusion is a library for working with heterogenous collections of data, commonly referred to as tuples.
0
votes
1answer
37 views
parse string into struct with boost spirit
I have the following code I need to parse a string and move it to a struct defined as follows:
#include "boost\spirit\include\classic.hpp"
#include "boost\spirit\include\qi.hpp"
#include ...
3
votes
1answer
67 views
How to iterate over boost::fusion associative struct and access in a generic way the keys
This is my very first question into this great knowledge exchange and I hope I find some help.
I try to implement a generic way to create PrintTo functions (later to be used in GoogleTest).
So the ...
0
votes
2answers
44 views
Accessing 0th element from boost::fusion::tuple
Normally I would access a regular tuple element (say 0) in the following way
mytuple->get<0>();
However if the tuple is of the type boost::fusion::tuple how do I access the 0th element
...
2
votes
2answers
118 views
Generating Spirit parser expressions from a variadic list of alternative parser expressions
I'm looking for the simplest way to implement variadic function which takes list of boost::spirit::qi rules and expands the list into expression of format: rule1 | rule2 | rule3 |.... Let's assume ...
0
votes
0answers
65 views
Parsing a Boost:Tuple into a char* (with endianess)
I have many classes with varying implementations of their private member boost::tuple<> structures ie. <std::string, int> or <short, short, float>.
I now need to parse that tuple ...
0
votes
1answer
72 views
Returning arbitrary types from a function
I'd like to return an arbitrary type from a function. The return type depends dynamically on a polymorphic function call. Foe example, the following reads values from CSV files with different number ...
2
votes
1answer
78 views
Boost::fusion, Eigen and zip transformation
This question is a spin-off of another question I had concerning boost::fusion. The idea is to use boost::fusion to iterate over a large C-style struct containing N-dimension arrays. Computation on ...
0
votes
0answers
46 views
Streaming strings into a boost::fusion::vector doesn't work?
I'd like to initialize a fusion::vector by streaming from std::cin. It seems this isn't possible as the documentation says:
...extracting Sequence(s) with std::string or C-style string elements does ...
0
votes
2answers
53 views
BOOST_FUSION_ADAPT_TPL_STRUCT and template array size
I am trying to iterate over a C++ template structure thanks to BOOST_FUSION_ADAPT_TPL_STRUCT. My structure contains fixed-size multidimensional arrays whose sizes are template parameters. If we ...
3
votes
1answer
111 views
How to bind/call boost::function stored in fusion::vector from spirit semantic rule?
I am trying to map some keyword handlers (methods) via qi::symbols with values of boost::function type. So If keyword is found I want to call method. But I couldn't bind method from this map. Compiler ...
0
votes
1answer
78 views
Boost fusion/mpl issues after upgrade to a newer version
This is a simplified version of some code I wrote:
#include <iostream>
#include <boost/mpl/vector.hpp>
#include <boost/mpl/contains.hpp>
#include <boost/mpl/placeholders.hpp>
...
1
vote
1answer
200 views
Displaying a Flattened Phoenix Expression using Boost Fusion
Following the Expressions as Fusion Sequences section of the Proto User Guide, I get to the point where I iterate over a flattened proto expression: _1 + 2 + 3 + 4:
#include <iostream>
#include ...
0
votes
1answer
41 views
enable_if boost::fusion callable
Is there a way to use enable_if specifically for boost::fusion callable objects?
template<typename F>
void do_something(F f, enable_if< is_fusion_callable_object<F> >::type * = 0)
{
...
1
vote
1answer
113 views
apply boost::fusion::for_each to boost::fusion::vector with mutable function object
I am trying to use boost::fusion::vector. However, I am in trouble with the very simple problem.
#include <iostream>
#include <string>
#include <boost/fusion/container/vector.hpp>
...
2
votes
1answer
191 views
Evaluating result of boost::phoenix::insert
I'm having difficulties trying to evaluate the result of boost::phoenix::insert which inserts elements into a map. Similar to the regular std::map::insert the actor object returned by ...
1
vote
2answers
162 views
Tag dispatching on mixed runtime/compile time condition
I have the following tag dispatching code (see LiveWorkSpace)
#include <iostream>
// traits types
struct A {}; struct B {}; struct C {};
// helpers
void fun_impl(bool, A) { std::cout << ...
1
vote
1answer
127 views
boost spirit semantic actions and fusion data types
I have a rule which is supposed to return a Boost.Fusion ASSOC_STRUCT. I am trying to assign to _val the results parsed by the rule's parsers, but I cannot make it work. I will skip the talking and ...
2
votes
1answer
118 views
Add references to a boost::fusion::vector
I want to create a boost fusion vector with references to variables. The goal is to pass to a function a various number of parameters and add them to the fusion vector. Because of the reference types, ...
-1
votes
2answers
115 views
with tuples and boost.fusion, is there any reason to use struct?
tuples are similar to structs (discussed here: Boost::Tuples vs Structs for return values). it seems that the only advantage is it's more convenient to write struct because it's shorter and by key ...
5
votes
1answer
128 views
Does D std lib include something like boost.fusion and boost.mpl?
I'm still evaluating if i should start using D for prototyping numerical code in physics.
One thing that stops me is I like boost, specifically fusion and mpl.
D is amazing for template ...
4
votes
2answers
141 views
Casting boost::fusion::vector
Numbered form of boost::fusion::vector looks like
template <class T1>
class vector1;
template<class T1, class T2>
class vector2;
etc.
And variadic form looks like
...
2
votes
1answer
136 views
Unable to convert boost::fusion struct in boost::variant while using boost::spirit
Good time of day!
I wrote this piece of code and expect it being able to be compiled.
#include <string>
#include <boost/spirit/include/qi.hpp>
#include <boost/tuple/tuple.hpp>
...
1
vote
2answers
137 views
How to convert a std::vector<std::string> to be a member of a struct in boost::spirit?
I have a chunk of Spirit code which correctly parses std::string input = "RED.MAGIC( 1, 2, 3 )[9].GREEN" into a simple std::vector<std::string>, by using std::vector<std::string> as the ...
3
votes
2answers
152 views
How to generalize a spirit parser to take lists in arbitrary order?
I have a simple parser which can parse lists of ints or quoted strings.
If I do the SIMPLE_CASE where I take the input to be:
std::string input1 = "{ INT: 42, 24 STR: \"Smith\", \"John\" }";
it ...
1
vote
0answers
148 views
boost fusion vector of different std::vectors to implement data frame
I'm trying to implement a "data frame" type class in C++ (like in S+/R), something along the lines of:
template<typename T1, typename T2, typename T3>
class data_frame;
My goal here is to ...
2
votes
1answer
210 views
How to use BOOST_FUSION_ADAPT_STRUCT with substructures?
For instance, suppose I have the following struct/sub-struct definition:
struct address_rec
{
std::string m_street;
std::string m_state;
unsigned m_zip;
};
struct employee_rec
{
...
0
votes
0answers
58 views
Is it possible to use boost to serialize and pretty-print polymorphic classes?
Is there a minimal way to use boost for marshalling/unmarshalling as well as pretty-printing structs with their field-names (RTTI?) ? It seems like you could use boost::fusion and then somehow ...
1
vote
2answers
109 views
boost fusion and const correctness
I am learning boost fusion and am trying to take a view of a std::vector<boost::fusion::vector<int,double,double> >. The code appears simple but I appear to be running into some problems ...
0
votes
1answer
82 views
Need example of using boost::fusion::filter_if metafunction
Given a boost::fusion::vector type, I want to filter out all the non-ref members to get a new type. For example this would transform boost::fusion::vector into
boost::fusion::vector. I'm guessing the ...
1
vote
1answer
130 views
What is tuple metaprogramming in C++ and in general? [closed]
I began to hardly use C++ metaprogramming capabilities. I have already had some background in this field. But I encountered with the approach called tuple metaprogramming.I saw this concept on the ...
3
votes
1answer
234 views
Using a boost::fusion::map in boost::spirit::karma
I am using boost spirit to parse some text files into a data structure and now I am beginning to generate text from this data structure (using spirit karma).
One attempt at a data structure is a ...
2
votes
1answer
75 views
Is it possible to nest a fusion map inside a fusion map?
I am new to fusion. Is it possible to nest a fusion map inside a fusion map? How do i write code to resolve to B at the below example?
#include <boost/asio.hpp>
#include ...
2
votes
2answers
213 views
How to identify types in boost fusion vector
How would one go about identifying the types inside a boost::fusion vector?
e.g.
fusion::vector<int, double, string> v;
then something that would let me identify v[0] as being type int, v[1] ...
5
votes
2answers
351 views
How to fill boost::fusion::vector at runtime?
Firstly, apologies for the similarity to my previous question here, but I don't think I asked the right thing.
I have a method:
template <typename T>
void some_method( T &t)
{...}
which ...
0
votes
4answers
375 views
Iterating over Boost fusion::vector
I'm trying to iterate over a boost::fusion vector using:
typedef typename fusion::result_of::begin<T>::type t_iter;
std::cout << distance(begin(t), end(t)) << std::endl;
...
2
votes
1answer
138 views
Wrapping a Boost.Fusion Sequence
I'm looking for a way to create a Boost.Fusion sequence wrapper that is itself a Fusion sequence and forwards all 'calls' to its wrapped sequence. Something in the lines of
template< typename ...
0
votes
1answer
83 views
fusion::nview and const headaches
I have been stuck in the code for a while. I can work around the issue but feel very bad if I cannot even get the code to compile. The problems were described in the code.
namespace fusion = ...
0
votes
0answers
117 views
std::vector< fusion::vector<> > and fusion::nview problems
I have been stuck to the problem of viewing the columns of std::vector< fusion::vector> >. Please could anyone help me out?
template<T> struct viewTraits
{
typedef typename ...
2
votes
2answers
858 views
C++ iterate into nested struct field with boost fusion adapt_struct
Two stackoverflow answers suggest the approach using fusion adapt_struct to iterate over struct fields. The approach looks nice. However, how do you iterate into a field which itself is a struct?
...
1
vote
1answer
137 views
C++: BOOST_FUSION_ADAPT_STRUCT Error When Using fusion::at
In the Boost.Fusion documentation it says that BOOST_FUSION_ADAPT_STRUCT makes a struct a fully compatible Boost.Fusion random access sequence.
I tried the following:
#include <iostream>
...
1
vote
1answer
268 views
How to instantiate a boost::fusion::vector member variable of a type which has no default constructor?
I am learning boost::mpl and I have the following class -
#include <string>
#include <boost/mpl/vector.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/at.hpp>
...
3
votes
1answer
394 views
Parsing a structure in an associative manner with Boost Spirit and Fusion
I'm trying to parse a key-value string into a structure. Some key-values may be absent or may be in different order, so I wanted to use boost::fusion to adapt the structure and then parse into it with ...
0
votes
2answers
236 views
Find the index of an element in a fusion map
I am struggling with a small piece of functionality I'm looking for.
I have a class which contains a fusion::map. I would like to use a variadic constructor to initialise the elements in that map.
I ...
1
vote
1answer
157 views
Getting rid of references in an boost::fusion sequence
I'm trying to use Boost::Fusion to transform a list of function's parameter types into a fusion::list. Ultimately, I am trying to turn a list of variables into parameters that I can call a function ...
0
votes
0answers
169 views
Generating wrappings for C++ functions
I'm trying to create a generic way to wrap C++ functions (from a different language). I have a list of parameters (and and an iterator) and a specific C++ function to be called on the list of ...
2
votes
1answer
250 views
Boost Fusion invoke and SFINAE
I would like to achieve partial class template specialization based on whether boost::fusion::invoke() with a particular Fusion sequence would work or not. But it seems that substitution failure in ...
2
votes
0answers
291 views
c++ boost mpl/fusion vectors dynamic push_back
I am new to TMP world and I need some help regarding the use of vectors in boost
mpl or fusion.
So here is the situation:
I have an API for asynchronous function calls in a multithreaded ...
0
votes
1answer
242 views
returning column from a std vector of fusion vectors, without copying
I have a "table" represented by a std::vector where every element is a boost::fusion::vector. I need to return a representation of a "column" of this table as a std::vector, without copying any values ...
1
vote
1answer
189 views
Filling up std::vector with heterogeneous boost::fusion vector type data
I am new to boost and metaprogramming so my problem is this:
typedef fusion::vector<int, char, double, std::string> my_row;
typedef std::vector<my_row> my_vec;
my_row my_data = ...
2
votes
0answers
381 views
how to apply fusion::at_c or fusion::at_key to the result of fusion::filter_if?
I'm using boost::fusion in a project. It is my first time using it and things are getting complicated. Playing around I wrote the following program:
#include <iostream>
#include ...
