summaryrefslogtreecommitdiff
path: root/src/lib/eolian_cxx/grammar/c_type.hpp
blob: 8ff3779f1827f48af5cd9768e8cbcabe4f437042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#ifndef EOLIAN_CXX_C_TYPE_HH
#define EOLIAN_CXX_C_TYPE_HH

#include "grammar/generator.hpp"
#include "grammar/klass_def.hpp"
#include "grammar/string.hpp"
#include "grammar/cxx_class_name.hpp"

namespace efl { namespace eolian { namespace grammar { namespace attributes {

struct c_type_visitor
{
  std::string const* c_type;
  typedef std::string result_type;
  std::string operator()(attributes::klass_name const& name) const
  {
    std::string n;
    as_generator(" ::" << *(string << "_") << string << string << "*")
      .generate(std::back_insert_iterator<std::string>(n)
                , std::make_tuple(name.namespaces, name.eolian_name
                                  , std::string{name.base_qualifier & qualifier_info::is_const ? " const" : ""})
                , context_null {});
    if(name.base_qualifier & qualifier_info::is_ref)
      n += '*';
    return n;
  }
  template <typename T>
  std::string operator()(T const&) const
  {
    return *c_type;
  }
};
        
inline std::string c_type(parameter_def const& param)
{
   switch(param.direction)
     {
     case parameter_direction::in:
       return param.type.original_type.visit(c_type_visitor{&param.type.c_type});
     case parameter_direction::out:
     case parameter_direction::inout:
       return param.type.original_type.visit(c_type_visitor{&param.type.c_type}) + "*";
     default:
       throw std::runtime_error("Unknown parameter direction");
     };
}

}
      
struct c_type_generator
{
  template <typename OutputIterator, typename Context>
  bool generate(OutputIterator sink, attributes::parameter_def const& attribute, Context const& context) const
  {
    return as_generator(attributes::c_type(attribute)).generate(sink, attributes::unused, context);
  }
  template <typename OutputIterator, typename Context>
  bool generate(OutputIterator sink, attributes::type_def const& attribute, Context const& context) const
  {
    return as_generator(attribute.original_type.visit(attributes::c_type_visitor{&attribute.c_type}))
      .generate(sink, attributes::unused, context);
  }
};

template <>
struct is_eager_generator<c_type_generator> : std::true_type {};
template <>
struct is_generator<c_type_generator> : std::true_type {};

namespace type_traits {
template <>
struct attributes_needed<c_type_generator> : std::integral_constant<int, 1> {};
}
      
c_type_generator const c_type = {};
      
} } }

#endif