efl/src/lib/eolian_cxx/grammar/parameter.hpp

122 lines
4.0 KiB
C++

/*
* Copyright 2019 by its authors. See AUTHORS.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef EOLIAN_CXX_PARAMETER_HH
#define EOLIAN_CXX_PARAMETER_HH
#include "grammar/generator.hpp"
#include "grammar/klass_def.hpp"
#include "grammar/type.hpp"
namespace efl { namespace eolian { namespace grammar {
struct parameter_type_generator
{
template <typename OutputIterator, typename Context>
bool generate(OutputIterator sink, attributes::parameter_def const& param, Context const& context) const
{
std::string dir;
switch(param.direction)
{
case attributes::parameter_direction::out:
dir = "out";
break;
case attributes::parameter_direction::inout:
dir = "inout";
break;
case attributes::parameter_direction::in:
dir = "in";
break;
case attributes::parameter_direction::unknown:
dir = "";
break;
}
attributes::regular_type_def const* typ =
efl::eina::get<attributes::regular_type_def>(&param.type.original_type);
if (typ && typ->is_function_ptr())
return as_generator("F").generate(sink, attributes::unused, context);
return as_generator
(
" ::efl::eolian::" << string << "_traits<"
<< type << ">::type"
).generate(sink, std::make_tuple(dir, param), context);
}
};
template <>
struct is_eager_generator<parameter_type_generator> : std::true_type {};
template <>
struct is_generator<parameter_type_generator> : std::true_type {};
namespace type_traits {
template <>
struct attributes_needed<parameter_type_generator> : std::integral_constant<int, 1> {};
}
parameter_type_generator const parameter_type = {};
/* */
struct parameter_generator
{
template <typename OutputIterator, typename Context>
bool generate(OutputIterator sink, attributes::parameter_def const& param, Context const& context) const
{
return as_generator(parameter_type << " " << string).generate(sink, std::make_tuple(param, param.param_name), context);
}
};
template <>
struct is_eager_generator<parameter_generator> : std::true_type {};
template <>
struct is_generator<parameter_generator> : std::true_type {};
namespace type_traits {
template <>
struct attributes_needed<parameter_generator> : std::integral_constant<int, 1> {};
}
parameter_generator const parameter = {};
/* */
struct parameter_as_argument_generator
{
template <typename OutputIterator, typename Context>
bool generate(OutputIterator sink, attributes::parameter_def const& param, Context const& context) const
{
attributes::parameter_def param_copy = param;
if (param.direction == attributes::parameter_direction::in)
param_copy.direction = attributes::parameter_direction::out;
else if (param.direction == attributes::parameter_direction::out)
param_copy.direction = attributes::parameter_direction::in;
return as_generator(parameter_type << "(" << string << ")")
.generate(sink, std::make_tuple(param_copy, param_copy.param_name), context);
}
};
template <>
struct is_eager_generator<parameter_as_argument_generator> : std::true_type {};
template <>
struct is_generator<parameter_as_argument_generator> : std::true_type {};
namespace type_traits {
template <>
struct attributes_needed<parameter_as_argument_generator> : std::integral_constant<int, 1> {};
}
parameter_as_argument_generator const parameter_as_argument = {};
} } }
#endif