debug.hpp 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. ///////////////////////////////////////////////////////////////////////////////
  2. /// \file debug.hpp
  3. /// Utilities for debugging Proto expression trees
  4. //
  5. // Copyright 2008 Eric Niebler. Distributed under the Boost
  6. // Software License, Version 1.0. (See accompanying file
  7. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  8. #ifndef BOOST_PROTO_DEBUG_HPP_EAN_12_31_2006
  9. #define BOOST_PROTO_DEBUG_HPP_EAN_12_31_2006
  10. #include <iostream>
  11. #include <boost/preprocessor/stringize.hpp>
  12. #include <boost/ref.hpp>
  13. #include <boost/mpl/assert.hpp>
  14. #include <boost/proto/proto_fwd.hpp>
  15. #include <boost/proto/traits.hpp>
  16. #include <boost/proto/matches.hpp>
  17. #include <boost/proto/fusion.hpp>
  18. #include <boost/fusion/algorithm/iteration/for_each.hpp>
  19. #include <boost/detail/sp_typeinfo.hpp>
  20. namespace boost { namespace proto
  21. {
  22. namespace tagns_ { namespace tag
  23. {
  24. #define BOOST_PROTO_DEFINE_TAG_INSERTION(Tag) \
  25. /** \brief INTERNAL ONLY */ \
  26. inline std::ostream &operator <<(std::ostream &sout, Tag const &) \
  27. { \
  28. return sout << BOOST_PP_STRINGIZE(Tag); \
  29. } \
  30. /**/
  31. BOOST_PROTO_DEFINE_TAG_INSERTION(terminal)
  32. BOOST_PROTO_DEFINE_TAG_INSERTION(unary_plus)
  33. BOOST_PROTO_DEFINE_TAG_INSERTION(negate)
  34. BOOST_PROTO_DEFINE_TAG_INSERTION(dereference)
  35. BOOST_PROTO_DEFINE_TAG_INSERTION(complement)
  36. BOOST_PROTO_DEFINE_TAG_INSERTION(address_of)
  37. BOOST_PROTO_DEFINE_TAG_INSERTION(logical_not)
  38. BOOST_PROTO_DEFINE_TAG_INSERTION(pre_inc)
  39. BOOST_PROTO_DEFINE_TAG_INSERTION(pre_dec)
  40. BOOST_PROTO_DEFINE_TAG_INSERTION(post_inc)
  41. BOOST_PROTO_DEFINE_TAG_INSERTION(post_dec)
  42. BOOST_PROTO_DEFINE_TAG_INSERTION(shift_left)
  43. BOOST_PROTO_DEFINE_TAG_INSERTION(shift_right)
  44. BOOST_PROTO_DEFINE_TAG_INSERTION(multiplies)
  45. BOOST_PROTO_DEFINE_TAG_INSERTION(divides)
  46. BOOST_PROTO_DEFINE_TAG_INSERTION(modulus)
  47. BOOST_PROTO_DEFINE_TAG_INSERTION(plus)
  48. BOOST_PROTO_DEFINE_TAG_INSERTION(minus)
  49. BOOST_PROTO_DEFINE_TAG_INSERTION(less)
  50. BOOST_PROTO_DEFINE_TAG_INSERTION(greater)
  51. BOOST_PROTO_DEFINE_TAG_INSERTION(less_equal)
  52. BOOST_PROTO_DEFINE_TAG_INSERTION(greater_equal)
  53. BOOST_PROTO_DEFINE_TAG_INSERTION(equal_to)
  54. BOOST_PROTO_DEFINE_TAG_INSERTION(not_equal_to)
  55. BOOST_PROTO_DEFINE_TAG_INSERTION(logical_or)
  56. BOOST_PROTO_DEFINE_TAG_INSERTION(logical_and)
  57. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_and)
  58. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_or)
  59. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_xor)
  60. BOOST_PROTO_DEFINE_TAG_INSERTION(comma)
  61. BOOST_PROTO_DEFINE_TAG_INSERTION(mem_ptr)
  62. BOOST_PROTO_DEFINE_TAG_INSERTION(assign)
  63. BOOST_PROTO_DEFINE_TAG_INSERTION(shift_left_assign)
  64. BOOST_PROTO_DEFINE_TAG_INSERTION(shift_right_assign)
  65. BOOST_PROTO_DEFINE_TAG_INSERTION(multiplies_assign)
  66. BOOST_PROTO_DEFINE_TAG_INSERTION(divides_assign)
  67. BOOST_PROTO_DEFINE_TAG_INSERTION(modulus_assign)
  68. BOOST_PROTO_DEFINE_TAG_INSERTION(plus_assign)
  69. BOOST_PROTO_DEFINE_TAG_INSERTION(minus_assign)
  70. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_and_assign)
  71. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_or_assign)
  72. BOOST_PROTO_DEFINE_TAG_INSERTION(bitwise_xor_assign)
  73. BOOST_PROTO_DEFINE_TAG_INSERTION(subscript)
  74. BOOST_PROTO_DEFINE_TAG_INSERTION(member)
  75. BOOST_PROTO_DEFINE_TAG_INSERTION(if_else_)
  76. BOOST_PROTO_DEFINE_TAG_INSERTION(function)
  77. #undef BOOST_PROTO_DEFINE_TAG_INSERTION
  78. }}
  79. namespace hidden_detail_
  80. {
  81. struct ostream_wrapper
  82. {
  83. ostream_wrapper(std::ostream &sout)
  84. : sout_(sout)
  85. {}
  86. std::ostream &sout_;
  87. private:
  88. ostream_wrapper &operator =(ostream_wrapper const &);
  89. };
  90. struct named_any
  91. {
  92. template<typename T>
  93. named_any(T const &)
  94. : name_(BOOST_SP_TYPEID(T).name())
  95. {}
  96. char const *name_;
  97. };
  98. inline std::ostream &operator <<(ostream_wrapper sout_wrap, named_any t)
  99. {
  100. return sout_wrap.sout_ << t.name_;
  101. }
  102. }
  103. namespace detail
  104. {
  105. struct display_expr_impl
  106. {
  107. explicit display_expr_impl(std::ostream &sout, int depth = 0)
  108. : depth_(depth)
  109. , first_(true)
  110. , sout_(sout)
  111. {}
  112. template<typename Expr>
  113. void operator()(Expr const &expr) const
  114. {
  115. this->impl(expr, mpl::long_<arity_of<Expr>::value>());
  116. }
  117. private:
  118. display_expr_impl(display_expr_impl const &);
  119. display_expr_impl &operator =(display_expr_impl const &);
  120. template<typename Expr>
  121. void impl(Expr const &expr, mpl::long_<0>) const
  122. {
  123. using namespace hidden_detail_;
  124. typedef typename tag_of<Expr>::type tag;
  125. this->sout_.width(this->depth_);
  126. this->sout_ << (this->first_? "" : ", ");
  127. this->sout_ << tag() << "(" << proto::value(expr) << ")\n";
  128. this->first_ = false;
  129. }
  130. template<typename Expr, typename Arity>
  131. void impl(Expr const &expr, Arity) const
  132. {
  133. using namespace hidden_detail_;
  134. typedef typename tag_of<Expr>::type tag;
  135. this->sout_.width(this->depth_);
  136. this->sout_ << (this->first_? "" : ", ");
  137. this->sout_ << tag() << "(\n";
  138. display_expr_impl display(this->sout_, this->depth_ + 4);
  139. fusion::for_each(expr, display);
  140. this->sout_.width(this->depth_);
  141. this->sout_ << "" << ")\n";
  142. this->first_ = false;
  143. }
  144. int depth_;
  145. mutable bool first_;
  146. std::ostream &sout_;
  147. };
  148. }
  149. namespace functional
  150. {
  151. /// \brief Pretty-print a Proto expression tree.
  152. ///
  153. /// A PolymorphicFunctionObject which accepts a Proto expression
  154. /// tree and pretty-prints it to an \c ostream for debugging
  155. /// purposes.
  156. struct display_expr
  157. {
  158. BOOST_PROTO_CALLABLE()
  159. typedef void result_type;
  160. /// \param sout The \c ostream to which the expression tree
  161. /// will be written.
  162. /// \param depth The starting indentation depth for this node.
  163. /// Children nodes will be displayed at a starting
  164. /// depth of <tt>depth+4</tt>.
  165. explicit display_expr(std::ostream &sout = std::cout, int depth = 0)
  166. : depth_(depth)
  167. , sout_(sout)
  168. {}
  169. /// \brief Pretty-print the current node in a Proto expression
  170. /// tree.
  171. template<typename Expr>
  172. void operator()(Expr const &expr) const
  173. {
  174. detail::display_expr_impl(this->sout_, this->depth_)(expr);
  175. }
  176. private:
  177. int depth_;
  178. reference_wrapper<std::ostream> sout_;
  179. };
  180. }
  181. /// \brief Pretty-print a Proto expression tree.
  182. ///
  183. /// \note Equivalent to <tt>functional::display_expr(0, sout)(expr)</tt>
  184. /// \param expr The Proto expression tree to pretty-print
  185. /// \param sout The \c ostream to which the output should be
  186. /// written. If not specified, defaults to
  187. /// <tt>std::cout</tt>.
  188. template<typename Expr>
  189. void display_expr(Expr const &expr, std::ostream &sout)
  190. {
  191. functional::display_expr(sout, 0)(expr);
  192. }
  193. /// \overload
  194. ///
  195. template<typename Expr>
  196. void display_expr(Expr const &expr)
  197. {
  198. functional::display_expr()(expr);
  199. }
  200. /// \brief Assert at compile time that a particular expression
  201. /// matches the specified grammar.
  202. ///
  203. /// \note Equivalent to <tt>BOOST_MPL_ASSERT((proto::matches\<Expr, Grammar\>))</tt>
  204. /// \param expr The Proto expression to check againts <tt>Grammar</tt>
  205. template<typename Grammar, typename Expr>
  206. void assert_matches(Expr const & /*expr*/)
  207. {
  208. BOOST_MPL_ASSERT((proto::matches<Expr, Grammar>));
  209. }
  210. /// \brief Assert at compile time that a particular expression
  211. /// does not match the specified grammar.
  212. ///
  213. /// \note Equivalent to <tt>BOOST_MPL_ASSERT_NOT((proto::matches\<Expr, Grammar\>))</tt>
  214. /// \param expr The Proto expression to check againts <tt>Grammar</tt>
  215. template<typename Grammar, typename Expr>
  216. void assert_matches_not(Expr const & /*expr*/)
  217. {
  218. BOOST_MPL_ASSERT_NOT((proto::matches<Expr, Grammar>));
  219. }
  220. /// \brief Assert at compile time that a particular expression
  221. /// matches the specified grammar.
  222. ///
  223. /// \note Equivalent to <tt>proto::assert_matches\<Grammar\>(Expr)</tt>
  224. /// \param Expr The Proto expression to check againts <tt>Grammar</tt>
  225. /// \param Grammar The grammar used to validate Expr.
  226. #define BOOST_PROTO_ASSERT_MATCHES(Expr, Grammar) \
  227. (true ? (void)0 : boost::proto::assert_matches<Grammar>(Expr))
  228. /// \brief Assert at compile time that a particular expression
  229. /// does not match the specified grammar.
  230. ///
  231. /// \note Equivalent to <tt>proto::assert_matches_not\<Grammar\>(Expr)</tt>
  232. /// \param Expr The Proto expression to check againts <tt>Grammar</tt>
  233. /// \param Grammar The grammar used to validate Expr.
  234. #define BOOST_PROTO_ASSERT_MATCHES_NOT(Expr, Grammar) \
  235. (true ? (void)0 : boost::proto::assert_matches_not<Grammar>(Expr))
  236. }}
  237. #endif