Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I iterate over a packed variadic template argument list?

I'm trying to find a method to iterate over an a pack variadic template argument list. Now as with all iterations, you need some sort of method of knowing how many arguments are in the packed list, and more importantly how to individually get data from a packed argument list.

The general idea is to iterate over the list, store all data of type int into a vector, store all data of type char* into a vector, and store all data of type float, into a vector. During this process there also needs to be a seperate vector that stores individual chars of what order the arguments went in. As an example, when you push_back(a_float), you're also doing a push_back('f') which is simply storing an individual char to know the order of the data. I could also use a std::string here and simply use +=. The vector was just used as an example.

Now the way the thing is designed is the function itself is constructed using a macro, despite the evil intentions, it's required, as this is an experiment. So it's literally impossible to use a recursive call, since the actual implementation that will house all this will be expanded at compile time; and you cannot recruse a macro.

Despite all possible attempts, I'm still stuck at figuring out how to actually do this. So instead I'm using a more convoluted method that involves constructing a type, and passing that type into the varadic template, expanding it inside a vector and then simply iterating that. However I do not want to have to call the function like:

foo(arg(1), arg(2.0f), arg("three"); 

So the real question is how can I do without such? To give you guys a better understanding of what the code is actually doing, I've pasted the optimistic approach that I'm currently using.

struct any {   void do_i(int   e) { INT    = e; }   void do_f(float e) { FLOAT  = e; }   void do_s(char* e) { STRING = e; }    int   INT;   float FLOAT;   char *STRING; };   template<typename T> struct get        { T      operator()(const any& t) { return T();      } }; template<>           struct get<int>   { int    operator()(const any& t) { return t.INT;    } }; template<>           struct get<float> { float  operator()(const any& t) { return t.FLOAT;  } }; template<>           struct get<char*> { char*  operator()(const any& t) { return t.STRING; } };  #define def(name)                                  \   template<typename... T>                          \   auto name (T... argv) -> any {                   \    std::initializer_list<any> argin = { argv... }; \     std::vector<any> args = argin; #define get(name,T)  get<T>()(args[name]) #define end }  any arg(int   a) { any arg; arg.INT    = a; return arg; } any arg(float f) { any arg; arg.FLOAT  = f; return arg; } any arg(char* s) { any arg; arg.STRING = s; return arg; } 

I know this is nasty, however it's a pure experiment, and will not be used in production code. It's purely an idea. It could probably be done a better way. But an example of how you would use this system:

def(foo)   int data = get(0, int);   std::cout << data << std::endl; end 

looks a lot like python. it works too, but the only problem is how you call this function. Heres a quick example:

foo(arg(1000)); 

I'm required to construct a new any type, which is highly aesthetic, but thats not to say those macros are not either. Aside the point, I just want to the option of doing: foo(1000);

I know it can be done, I just need some sort of iteration method, or more importantly some std::get method for packed variadic template argument lists. Which I'm sure can be done.

Also to note, I'm well aware that this is not exactly type friendly, as I'm only supporting int,float,char* and thats okay with me. I'm not requiring anything else, and I'll add checks to use type_traits to validate that the arguments passed are indeed the correct ones to produce a compile time error if data is incorrect. This is purely not an issue. I also don't need support for anything other then these POD types.

It would be highly apprecaited if I could get some constructive help, opposed to arguments about my purely illogical and stupid use of macros and POD only types. I'm well aware of how fragile and broken the code is. This is merley an experiment, and I can later rectify issues with non-POD data, and make it more type-safe and useable.

Thanks for your undertstanding, and I'm looking forward to help.

like image 470
graphitemaster Avatar asked Aug 29 '11 13:08

graphitemaster


People also ask

How do you access Variadic arguments?

To access variadic arguments, we must include the <stdarg. h> header.

What is parameter pack in C++?

Parameter packs (C++11) A parameter pack can be a type of parameter for templates. Unlike previous parameters, which can only bind to a single argument, a parameter pack can pack multiple parameters into a single parameter by placing an ellipsis to the left of the parameter name.

Can Variadic methods take any number of parameters?

A variadic function allows you to accept any arbitrary number of arguments in a function.

What is Variadic template in C++?

Variadic templates are class or function templates, that can take any variable(zero or more) number of arguments. In C++, templates can have a fixed number of parameters only that have to be specified at the time of declaration. However, variadic templates help to overcome this issue.


1 Answers

If you want to wrap arguments to any, you can use the following setup. I also made the any class a bit more usable, although it isn't technically an any class.

#include <vector> #include <iostream>  struct any {   enum type {Int, Float, String};   any(int   e) { m_data.INT    = e; m_type = Int;}   any(float e) { m_data.FLOAT  = e; m_type = Float;}   any(char* e) { m_data.STRING = e; m_type = String;}   type get_type() const { return m_type; }   int get_int() const { return m_data.INT; }   float get_float() const { return m_data.FLOAT; }   char* get_string() const { return m_data.STRING; } private:   type m_type;   union {     int   INT;     float FLOAT;     char *STRING;   } m_data; };  template <class ...Args> void foo_imp(const Args&... args) {     std::vector<any> vec = {args...};     for (unsigned i = 0; i < vec.size(); ++i) {         switch (vec[i].get_type()) {             case any::Int: std::cout << vec[i].get_int() << '\n'; break;             case any::Float: std::cout << vec[i].get_float() << '\n'; break;             case any::String: std::cout << vec[i].get_string() << '\n'; break;         }     } }  template <class ...Args> void foo(Args... args) {     foo_imp(any(args)...);  //pass each arg to any constructor, and call foo_imp with resulting any objects }  int main() {     char s[] = "Hello";     foo(1, 3.4f, s); } 

It is however possible to write functions to access the nth argument in a variadic template function and to apply a function to each argument, which might be a better way of doing whatever you want to achieve.

like image 160
UncleBens Avatar answered Oct 06 '22 06:10

UncleBens