data_members.hpp 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. // Copyright David Abrahams 2002.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef DATA_MEMBERS_DWA2002328_HPP
  6. # define DATA_MEMBERS_DWA2002328_HPP
  7. # include <boost/python/detail/prefix.hpp>
  8. # include <boost/python/handle.hpp>
  9. # include <boost/python/return_value_policy.hpp>
  10. # include <boost/python/return_by_value.hpp>
  11. # include <boost/python/return_internal_reference.hpp>
  12. # include <boost/python/make_function.hpp>
  13. # include <boost/python/converter/builtin_converters.hpp>
  14. # include <boost/python/detail/indirect_traits.hpp>
  15. # include <boost/python/detail/not_specified.hpp>
  16. # include <boost/python/detail/value_arg.hpp>
  17. # include <boost/type_traits/add_const.hpp>
  18. # include <boost/type_traits/add_reference.hpp>
  19. # include <boost/type_traits/is_member_pointer.hpp>
  20. # if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
  21. # include <boost/type_traits/remove_cv.hpp>
  22. # endif
  23. # include <boost/mpl/eval_if.hpp>
  24. # include <boost/mpl/if.hpp>
  25. # include <boost/mpl/vector/vector10.hpp>
  26. # include <boost/detail/workaround.hpp>
  27. namespace boost { namespace python {
  28. //
  29. // This file defines the make_getter and make_setter function
  30. // families, which are responsible for turning pointers, references,
  31. // and pointers-to-data-members into callable Python objects which
  32. // can be used for attribute access on wrapped classes.
  33. //
  34. namespace detail
  35. {
  36. // A small function object which handles the getting and setting of
  37. // data members.
  38. template <class Data, class Class>
  39. struct member
  40. {
  41. public:
  42. member(Data Class::*which) : m_which(which) {}
  43. Data& operator()(Class& c) const
  44. {
  45. return c.*m_which;
  46. }
  47. void operator()(Class& c, typename value_arg<Data>::type d) const
  48. {
  49. c.*m_which = d;
  50. }
  51. private:
  52. Data Class::*m_which;
  53. };
  54. // A small function object which handles the getting and setting of
  55. // non-member objects.
  56. template <class Data>
  57. struct datum
  58. {
  59. public:
  60. datum(Data *which) : m_which(which) {}
  61. Data& operator()() const
  62. {
  63. return *m_which;
  64. }
  65. void operator()(typename value_arg<Data>::type d) const
  66. {
  67. *m_which = d;
  68. }
  69. private:
  70. Data *m_which;
  71. };
  72. //
  73. // Helper metafunction for determining the default CallPolicy to use
  74. // for attribute access. If T is a [reference to a] class type X
  75. // whose conversion to python would normally produce a new copy of X
  76. // in a wrapped X class instance (as opposed to types such as
  77. // std::string, which are converted to native Python types, and
  78. // smart pointer types which produce a wrapped class instance of the
  79. // pointee type), to-python conversions will attempt to produce an
  80. // object which refers to the original C++ object, rather than a
  81. // copy. See default_member_getter_policy for rationale.
  82. //
  83. template <class T>
  84. struct default_getter_by_ref
  85. : mpl::and_<
  86. mpl::bool_<
  87. to_python_value<
  88. typename value_arg<T>::type
  89. >::uses_registry
  90. >
  91. , indirect_traits::is_reference_to_class<
  92. typename value_arg<T>::type
  93. >
  94. >
  95. {
  96. };
  97. // Metafunction computing the default CallPolicy to use for reading
  98. // data members
  99. //
  100. // If it's a regular class type (not an object manager or other
  101. // type for which we have to_python specializations, use
  102. // return_internal_reference so that we can do things like
  103. // x.y.z = 1
  104. // and get the right result.
  105. template <class T>
  106. struct default_member_getter_policy
  107. : mpl::if_<
  108. default_getter_by_ref<T>
  109. , return_internal_reference<>
  110. , return_value_policy<return_by_value>
  111. >
  112. {};
  113. // Metafunction computing the default CallPolicy to use for reading
  114. // non-member data.
  115. template <class T>
  116. struct default_datum_getter_policy
  117. : mpl::if_<
  118. default_getter_by_ref<T>
  119. , return_value_policy<reference_existing_object>
  120. , return_value_policy<return_by_value>
  121. >
  122. {};
  123. //
  124. // make_getter helper function family -- These helpers to
  125. // boost::python::make_getter are used to dispatch behavior. The
  126. // third argument is a workaround for a CWPro8 partial ordering bug
  127. // with pointers to data members. It should be convertible to
  128. // mpl::true_ iff the first argument is a pointer-to-member, and
  129. // mpl::false_ otherwise. The fourth argument is for compilers
  130. // which don't support partial ordering at all and should always be
  131. // passed 0L.
  132. //
  133. #if BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
  134. template <class D, class P>
  135. inline object make_getter(D& d, P& p, mpl::false_, ...);
  136. #endif
  137. // Handle non-member pointers with policies
  138. template <class D, class Policies>
  139. inline object make_getter(D* d, Policies const& policies, mpl::false_, int)
  140. {
  141. return python::make_function(
  142. detail::datum<D>(d), policies, mpl::vector1<D&>()
  143. );
  144. }
  145. // Handle non-member pointers without policies
  146. template <class D>
  147. inline object make_getter(D* d, not_specified, mpl::false_, long)
  148. {
  149. typedef typename default_datum_getter_policy<D>::type policies;
  150. return detail::make_getter(d, policies(), mpl::false_(), 0);
  151. }
  152. // Handle pointers-to-members with policies
  153. template <class C, class D, class Policies>
  154. inline object make_getter(D C::*pm, Policies const& policies, mpl::true_, int)
  155. {
  156. #if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
  157. typedef typename remove_cv<C>::type Class;
  158. #else
  159. typedef C Class;
  160. #endif
  161. return python::make_function(
  162. detail::member<D,Class>(pm)
  163. , policies
  164. , mpl::vector2<D&,Class&>()
  165. );
  166. }
  167. // Handle pointers-to-members without policies
  168. template <class C, class D>
  169. inline object make_getter(D C::*pm, not_specified, mpl::true_, long)
  170. {
  171. typedef typename default_member_getter_policy<D>::type policies;
  172. return detail::make_getter(pm, policies(), mpl::true_(), 0);
  173. }
  174. // Handle references
  175. template <class D, class P>
  176. inline object make_getter(D& d, P& p, mpl::false_, ...)
  177. {
  178. // Just dispatch to the handler for pointer types.
  179. return detail::make_getter(&d, p, mpl::false_(), 0L);
  180. }
  181. //
  182. // make_setter helper function family -- These helpers to
  183. // boost::python::make_setter are used to dispatch behavior. The
  184. // third argument is for compilers which don't support partial
  185. // ordering at all and should always be passed 0.
  186. //
  187. // Handle non-member pointers
  188. template <class D, class Policies>
  189. inline object make_setter(D* p, Policies const& policies, mpl::false_, int)
  190. {
  191. return python::make_function(
  192. detail::datum<D>(p), policies, mpl::vector2<void,D const&>()
  193. );
  194. }
  195. // Handle pointers-to-members
  196. template <class C, class D, class Policies>
  197. inline object make_setter(D C::*pm, Policies const& policies, mpl::true_, int)
  198. {
  199. return python::make_function(
  200. detail::member<D,C>(pm)
  201. , policies
  202. , mpl::vector3<void, C&, D const&>()
  203. );
  204. }
  205. // Handle references
  206. template <class D, class Policies>
  207. inline object make_setter(D& x, Policies const& policies, mpl::false_, ...)
  208. {
  209. return detail::make_setter(&x, policies, mpl::false_(), 0L);
  210. }
  211. }
  212. //
  213. // make_getter function family -- build a callable object which
  214. // retrieves data through the first argument and is appropriate for
  215. // use as the `get' function in Python properties . The second,
  216. // policies argument, is optional. We need both D& and D const&
  217. // overloads in order be able to handle rvalues.
  218. //
  219. template <class D, class Policies>
  220. inline object make_getter(D& d, Policies const& policies)
  221. {
  222. return detail::make_getter(d, policies, is_member_pointer<D>(), 0L);
  223. }
  224. template <class D, class Policies>
  225. inline object make_getter(D const& d, Policies const& policies)
  226. {
  227. return detail::make_getter(d, policies, is_member_pointer<D>(), 0L);
  228. }
  229. template <class D>
  230. inline object make_getter(D& x)
  231. {
  232. detail::not_specified policy
  233. = detail::not_specified(); // suppress a SunPro warning
  234. return detail::make_getter(x, policy, is_member_pointer<D>(), 0L);
  235. }
  236. # if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
  237. template <class D>
  238. inline object make_getter(D const& d)
  239. {
  240. detail::not_specified policy
  241. = detail::not_specified(); // Suppress a SunPro warning
  242. return detail::make_getter(d, policy, is_member_pointer<D>(), 0L);
  243. }
  244. # endif
  245. //
  246. // make_setter function family -- build a callable object which
  247. // writes data through the first argument and is appropriate for
  248. // use as the `set' function in Python properties . The second,
  249. // policies argument, is optional. We need both D& and D const&
  250. // overloads in order be able to handle rvalues.
  251. //
  252. template <class D, class Policies>
  253. inline object make_setter(D& x, Policies const& policies)
  254. {
  255. return detail::make_setter(x, policies, is_member_pointer<D>(), 0);
  256. }
  257. template <class D, class Policies>
  258. inline object make_setter(D const& x, Policies const& policies)
  259. {
  260. return detail::make_setter(x, policies, is_member_pointer<D>(), 0);
  261. }
  262. template <class D>
  263. inline object make_setter(D& x)
  264. {
  265. return detail::make_setter(x, default_call_policies(), is_member_pointer<D>(), 0);
  266. }
  267. # if !BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
  268. template <class D>
  269. inline object make_setter(D const& x)
  270. {
  271. return detail::make_setter(x, default_call_policies(), is_member_pointer<D>(), 0);
  272. }
  273. # endif
  274. }} // namespace boost::python
  275. #endif // DATA_MEMBERS_DWA2002328_HPP