csharp: Add a documentation_string generator
authorLauro Moura <lauromoura@expertisesolutions.com.br>
Thu, 1 Aug 2019 19:12:12 +0000 (21:12 +0200)
committerWooHyun Jung <wh0705.jung@samsung.com>
Mon, 5 Aug 2019 02:50:59 +0000 (11:50 +0900)
Summary:
Escapes a single string, without leading `///`

Depends on D9481

Reviewers: segfaultxavi, felipealmeida

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9482

src/bin/eolian_mono/eolian/mono/documentation.hh
src/bin/eolian_mono/eolian/mono/struct_fields.hh

index 93bc42e..588d0b6 100644 (file)
@@ -567,6 +567,26 @@ documentation_generator as_generator(documentation_terminal)
     return documentation_generator(0);
 }
 
+/// Escape a single string, HTML-escaping and converting the syntax
+struct documentation_string_generator
+{
+  template<typename OutputIterator, typename Context>
+  bool generate(OutputIterator sink, std::string const& text, Context const& context) const
+  {
+      std::string escaped;
+      if (!as_generator(html_escaped_string).generate(std::back_inserter(escaped), text, context))
+        return false;
+
+      auto options = context_find_tag<options_context>(context);
+      auto state = context_find_tag<eolian_state_context>(context).state;
+      if (!as_generator(string).generate(sink, documentation_generator::syntax_conversion(escaped, state, options.want_beta), context))
+        return false;
+
+      return true;
+  }
+
+} const documentation_string {};
+
 } // namespace eolian_mono
 
 
@@ -578,6 +598,11 @@ template<>
 struct is_generator<::eolian_mono::documentation_generator> : std::true_type {};
 
 template<>
+struct is_eager_generator<::eolian_mono::documentation_string_generator> : std::true_type {};
+template<>
+struct is_generator<::eolian_mono::documentation_string_generator> : std::true_type {};
+
+template<>
 struct is_generator<::eolian_mono::documentation_terminal> : std::true_type {};
 
 namespace type_traits {
@@ -585,6 +610,8 @@ template<>
 struct attributes_needed<struct ::eolian_mono::documentation_generator> : std::integral_constant<int, 1> {};
 template<>
 struct attributes_needed<struct ::eolian_mono::documentation_terminal> : std::integral_constant<int, 1> {};
+template<>
+struct attributes_needed<struct ::eolian_mono::documentation_string_generator> : std::integral_constant<int, 1> {};
 }
 } } }
 
index 5b755a7..02b2cbe 100644 (file)
@@ -42,7 +42,7 @@ struct field_argument_docs_generator
    template<typename OutputIterator, typename Context>
    bool generate(OutputIterator sink, attributes::struct_field_def const& field, Context const& context) const
    {
-       if (!as_generator("/// <param name=\"" << string << "\">" << string << "</param>")
+       if (!as_generator("/// <param name=\"" << string << "\">" << documentation_string << "</param>")
                .generate(sink, std::make_tuple(name_helpers::to_field_name(field.name), field.documentation.summary), context))
            return false;
        return true;