Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deduce type from literal string

I want to deduce the parameter types of a function from an string. Similar to what printf does.

Currently I do the following:

#include <utility>

// calculate the length of a literal string
constexpr int length(const char* str)
{
  return *str ? 1 + length(str + 1) : 0;
}

struct Ignore {
};

template <char C1, char C2>
struct Type {
  typedef Ignore type;
};

// %d -> int
template <>
struct Type<'%','d'> {
  typedef int type;
};

// %f -> float
template <>
struct Type<'%','f'> {
  typedef float type;
};

// Get type from string
template <const char * const * const STR, int POS, int N = length(STR[POS])>
struct GetType {
  typedef Ignore type;
};

template <const char * const * const STR, int POS>
struct GetType<STR, POS, 2> {
  typedef typename Type<STR[POS][0],STR[POS][1]>::type type;
};

// My dummy class
template <typename... Targs>
struct Foo
{
    void Send(Targs...) const {}
};

// Deduce type for each literal string array
template <const char * const * STRS,  std::size_t N, std::size_t... index>
constexpr auto parseIt(std::index_sequence<index...>) {
  return Foo<typename GetType<STRS, index>::type...>();
}

template <const char * const * STRS, std::size_t N>
constexpr auto makeFoo(const char * const (&a)[N]) {

  return parseIt<STRS, 2>(std::make_index_sequence<N>{});
}

The problem is, I have to write Ignore() on my function call...

constexpr const char *message[] = {"%d", " hello ", "%f", "good"};
constexpr auto foo = makeFoo<message>(message);

int main()
{   
  foo .Send(10, Ignore(), 20.0f, Ignore());

  return 0;
}

Live Example

What I want is something like (compile-time check only):

MyFoo foo("%d Hello World %f %s");
foo.Send(10, 20.f, "Hello");
like image 905
Viatorus Avatar asked Mar 17 '16 09:03

Viatorus


1 Answers

You may do something like that with a char_sequence:

template <char ... > struct char_sequence {};

template <typename ... Tuples>
using tuple_concat = decltype(std::tuple_cat(std::declval<Tuples>()...));

template <typename> struct format_helper;

template <typename T>
using format_helper_t = typename format_helper<T>::type;

// end case
template <>
struct format_helper<char_sequence<>>
{
    using type = std::tuple<>;
};

// general case
template <char C, char...Cs>
struct format_helper<char_sequence<C, Cs...>>
{
    using type = format_helper_t<char_sequence<Cs...>>;
};

template <typename T>
struct dependant_false : std::false_type {};

// unknown format %
template <char...Cs>
struct format_helper<char_sequence<'%', Cs...>>
{
    static_assert(dependant_false<char_sequence<Cs...>>::value, "Unsupported escape");
};

// %% for %
template <char...Cs>
struct format_helper<char_sequence<'%', '%', Cs...>>
{
    using type = format_helper_t<char_sequence<Cs...>>;
};

// %f float
template <char...Cs>
struct format_helper<char_sequence<'%', 'f', Cs...>>
{
    using type = tuple_concat<std::tuple<float>, format_helper_t<char_sequence<Cs...>>>;
};

// %d int
template <char...Cs>
struct format_helper<char_sequence<'%', 'd', Cs...>>
{
    using type = tuple_concat<std::tuple<int>, format_helper_t<char_sequence<Cs...>>>;
};

That allow to retrieve the list of type from the literal string.

And then

// ...

template <typename... Ts>
struct Foo
{
    // ...
    void Send(Ts... args) const;
};

template <typename T> struct tag{};

template <typename... Ts>
Foo<Ts...> MakeFoo(tag<std::tuple<Ts...>>, const std::string& s)
{
    return Foo<Ts...>(s);
}

template <char ... Cs>
auto MakeFoo(char_sequence<Cs...>)
{
    const char s[] = {Cs..., '\0'};
    return MakeFoo(tag<format_helper_t<char_sequence<Cs...>>>{}, s);
}

Demo

like image 176
Jarod42 Avatar answered Nov 10 '22 02:11

Jarod42