[boost] [type_erasure] Review report -- ACCEPTED
Hello all,
Steven Watanabe's library Boost.TypeErasure is ACCEPTED into Boost.
SUMMARY
The library was reviewed from July 18 to August 3, 2012. There were 11
votes to accept the library and 2 votes to accept the library under
the condition of some modifications (at the end, these 2 votes were
essentially considered as "no" because there was no agreement on
implementing all the required modifications).
It was noted how the library offers non-intrusive and powerful
programming techniques that can be used in place of usual Object
Oriented (pure) virtual function interfaces (and with support for some
from of virtual "template" functions). The library can also be seen as
a generalization of existing Boost libraries like Any, Function, and
AnyIterator.
The library is accepted "as is", however most reviewers suggested to:
1) Dramatically ease the learning curve of the documentation by
providing a motivation section, step-by-step tutorial(s) to introduce
the basic features of the library, advanced topics section(s) to
introduced the additional features, an example section with
non-trivial use cases for the library, and additional examples to the
reference section.
2) Support down-casting.
While these changes are not a condition for the library acceptance, it
would be best if they were made part of the very first release of the
library.
A few reviewers found the name Type Erasure confusing, however others
did not. Alternative name were: Staged Typing, Deferred Typing, Type
Interface, Interface, Static Interface, Value Interface, Structural
Typing, Duck Typing, and Run-Time Concepts. There was some discussion
on the meaning of Type Erasure in Java and on its definition on wiki
(these should probably be both referenced in the documentation). The
current library name is considered acceptable and the final decision
on the library name is left entirely up to Steven.
DETAILS
"Yes" reviews:
[1] http://lists.boost.org/Archives/boost/2012/07/195288.php
[2] http://lists.boost.org/Archives/boost/2012/07/195297.php
[3] http://lists.boost.org/Archives/boost/2012/07/195299.php
[4] http://lists.boost.org/Archives/boost/2012/07/195308.php
[5] http://lists.boost.org/Archives/boost/2012/07/195323.php
[6] http://www.mentby.com/hossein-haeri/boost-typeerasure-review-ends-today-july...
[7] http://lists.boost.org/Archives/boost/2012/07/195327.php
[8] http://lists.boost.org/Archives/boost/2012/07/195329.php
[9] http://lists.boost.org/Archives/boost/2012/07/195334.php
[10] http://lists.boost.org/Archives/boost/2012/07/195364.php
[11] http://lists.boost.org/Archives/boost/2012/08/195420.php
"Conditional-yes" reviews (essentially considered as "no"):
[12] http://lists.boost.org/Archives/boost/2012/08/195455.php
[13] http://lists.boost.org/Archives/boost/2012/08/195561.php
Notable comments and discussions (not reviews):
(1) http://lists.boost.org/Archives/boost/2012/07/195162.php
(2) http://lists.boost.org/Archives/boost/2012/07/195130.php
(3) http://lists.boost.org/Archives/boost/2012/07/195149.php
(4) http://lists.boost.org/Archives/boost/2012/07/195167.php
(5) http://lists.boost.org/Archives/boost/2012/07/195199.php
(6) http://lists.boost.org/Archives/boost/2012/07/195200.php
(7) http://lists.boost.org/Archives/boost/2012/07/195232.php
(8) http://lists.boost.org/Archives/boost/2012/07/195234.php
(9) http://lists.boost.org/Archives/boost/2012/07/195408.php
(10) http://permalink.gmane.org/gmane.comp.lib.boost.user/75081
(11) http://lists.boost.org/Archives/boost/2012/08/195590.php
(12) http://lists.boost.org/Archives/boost/2012/08/195663.php
(13) http://lists.boost.org/Archives/boost/2012/07/195342.php
(14) http://lists.boost.org/Archives/boost/2012/08/195543.php
Note that Steven might have already implemented some of the changes
listed below.
Features:
* Support down-casting. See [1], [10], and (4).
* Add macros for defining concepts. These macros could be added in
later revisions (they just provide a different syntax, no additional
functionality).
** From [10]:
BOOST_CREATE_CONCEPT(container_concept, typename T,
(void (push_back, T),
void (size))
)
** From Steven:
BOOST_TYPE_ERASURE_MEMBERS((push_back)(size)...)
template
Hello all,
The review of Boost.TypeErasure ended on Aug 3, 2012. Stay tuned for my decision on the library.
Thank you very much to Steven, everyone that submitted a review, and everyone that participated in the discussions.
The review manager, --Lorenzo
On Fri, Aug 3, 2012 at 11:00 AM, Lorenzo Caminiti
wrote: Hello all,
*** The review of Boost.TypeErasure ends today Aug 3, 2012. If you are planning to submit a review, please do so by the end of today. ***
Thank you to all that have participated to the review so far.
The review manager, --Lorenzo
On Jul 27, 2012 1:41 PM, "Lorenzo Caminiti"
wrote: Hello all,
After consulting the review wizards and Steven, I am extending Boost.TypeErasure review of one week, until August 3, 2012.
Thank you to all that have submitted a review already and I am looking forward to receiving additional submissions.
The review manager, --Lorenzo
On Jul 27, 2012 3:22 AM, "Lorenzo Caminiti"
wrote: Hello all,
On Mon, Jul 23, 2012 at 9:09 AM, Lorenzo Caminiti
wrote: On Wed, Jul 18, 2012 at 1:13 AM, Lorenzo Caminiti
wrote: *** The review of Steven Watanabe's proposed Boost.TypeErasure library begins on July 18, 2012 and ends on July 27, 2012. ***
*** Boost.TypeErasure review ends in 5 days. Please submit your reviews :D ***
*** Boost.TypeErasure review ends today July 27, 2012. If you are planning to submit a review, please do so as soon as possible. ***
Thank you to everyone who has commented on the library and submitted a review so far!
The review manager, --Lorenzo P.S. I am considering extending the review until end of day Sunday July 29, 2012... I will keep you posted.
There have been interesting discussions on the library on the ML but I have not received any official review yet :( Especially if you are a user of Boost Any, Function, and Any Iterator, you definitely want to take a look at Type Erasure as it generalizes solutions provided by those other libraries.
Thank you.
The review manager. --Lorenzo
THE LIBRARY
C++ provides runtime polymorphism through virtual functions. They are a very useful feature, but they do have some limitations. * They are intrusive. In generic programming, we can design an interface which allows third-party types to be adapted to it. * They require dynamic memory management. Of course, most of the problems can be avoided by using an appropriate smart pointer type. Even so, it still acts like a pointer rather than a value. * Virtual functions' ability to apply multiple independent concepts to a single object is limited. The Boost.TypeErasure library solves these problems allowing us to mirror static generic programming at runtime.
Library source: http://svn.boost.org/svn/boost/sandbox/type_erasure/
Pre-built documentation:
http://steven_watanabe.users.sourceforge.net/type_erasure/libs/type_erasure/
You can also download archives with pre-built documentation from: http://sourceforge.net/projects/steven-watanabe.u/files/
YOUR REVIEW
Please submit a review to the mailing-list by replying to this email ("[boost] [type_erasure] Review ..." should be in the subject).
Please state clearly whether you think this library should be accepted as a Boost library.
Other questions you may want to consider: 1. What is your evaluation of the design? 2. What is your evaluation of the implementation? 3. What is your evaluation of the documentation? 4. What is your evaluation of the potential usefulness of the library? 5. Did you try to use the library? With what compiler? Did you have any problems? 6. How much effort did you put into your evaluation? A glance? A quick reading? In-depth study? 7. Are you knowledgeable about the problem domain?
Thanks in advance to all who participate in the review discussion -- I'm looking forward to it!
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost
participants (1)
-
Lorenzo Caminiti